diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index ba70acfacf22..2c36f36f61a3 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1055 +1,1055 @@ # 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.3.5 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.14.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. Update _${PORTNAME}_PROJECT_VERSION for the following ports: # devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer -KDE_APPLICATIONS6_VERSION?= 25.04.1 -KDE_APPLICATIONS6_SHLIB_VER?= 6.4.1 +KDE_APPLICATIONS6_VERSION?= 25.04.2 +KDE_APPLICATIONS6_SHLIB_VER?= 6.4.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} . 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 networkmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ notifications notifyconfig package parts people \ plasma-wayland-protocols plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ breeze breeze-gtk decoration discover drkonqi \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw libkexiv2 _USE_GEAR6_ALL= baloo-widgets kate kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma${_KDE_VERSION}-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilouqmlplugin.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-add-printer kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-kate_PORT= editors/kate kde-kate_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2@qt${_KDE_VERSION} kde-libkexiv2_LIB5= libKF${_KDE_VERSION}KExiv2.so kde-libkexiv2_LIB6= libKExiv2Qt${_KDE_VERSION}.so kde-libkexiv2_LIB= ${kde-libkexiv2_LIB${_KDE_VERSION}} kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 84a3a210c997..28b5f16874d7 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557818 -SHA256 (KDE/release-service/25.04.1/kmag-25.04.1.tar.xz) = 37b7a38ec178a551e8245d559b6e8423a83c4716de9f41f0000bee9162456a60 -SIZE (KDE/release-service/25.04.1/kmag-25.04.1.tar.xz) = 680260 +TIMESTAMP = 1749036225 +SHA256 (KDE/release-service/25.04.2/kmag-25.04.2.tar.xz) = 1af6c5d1b093bac1685861333c093eaf351c47f7ba3c34b7ef98feba4fab61f9 +SIZE (KDE/release-service/25.04.2/kmag-25.04.2.tar.xz) = 680296 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index fd7cde0678ec..53864412dcce 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557818 -SHA256 (KDE/release-service/25.04.1/kmousetool-25.04.1.tar.xz) = 3dc3f15c4405289f6c159fb55b762c94b544e0a07ff8300069bd82fa03a0e1b2 -SIZE (KDE/release-service/25.04.1/kmousetool-25.04.1.tar.xz) = 135556 +TIMESTAMP = 1749036228 +SHA256 (KDE/release-service/25.04.2/kmousetool-25.04.2.tar.xz) = 43c4cdcba1760cdedab0939c740f017dff98350af514f2af933775df4585aca4 +SIZE (KDE/release-service/25.04.2/kmousetool-25.04.2.tar.xz) = 135520 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index fad6f1e0befe..d1283def82fc 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557819 -SHA256 (KDE/release-service/25.04.1/kmouth-25.04.1.tar.xz) = 221fc8b347bfaf53f8d5a0c570e8547462847f333c8cef9df50caee99becef29 -SIZE (KDE/release-service/25.04.1/kmouth-25.04.1.tar.xz) = 1945216 +TIMESTAMP = 1749036230 +SHA256 (KDE/release-service/25.04.2/kmouth-25.04.2.tar.xz) = dc3de4d4a24ed352c54882cfae0416359ad8e35ba7163ef3d2aa4bfb82bc8e57 +SIZE (KDE/release-service/25.04.2/kmouth-25.04.2.tar.xz) = 1945196 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 7aae4ee9e6f3..45ed4e364613 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557820 -SHA256 (KDE/release-service/25.04.1/ark-25.04.1.tar.xz) = e9d2267cbb8da2786e8456c12607ac5aa378589e811159e50b5c667df5143a7f -SIZE (KDE/release-service/25.04.1/ark-25.04.1.tar.xz) = 3017272 +TIMESTAMP = 1749036233 +SHA256 (KDE/release-service/25.04.2/ark-25.04.2.tar.xz) = 54a374c2f06ff65abe577865a7fc2521de70f10f438b399f81bbe3c0dd4be68a +SIZE (KDE/release-service/25.04.2/ark-25.04.2.tar.xz) = 3017300 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 4e779d6f5d72..90814ed46403 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557821 -SHA256 (KDE/release-service/25.04.1/kosmindoormap-25.04.1.tar.xz) = 02e21af96492ac85a4a1f52e77b664000d8be7ce7879af0a227e96606a6a7352 -SIZE (KDE/release-service/25.04.1/kosmindoormap-25.04.1.tar.xz) = 736432 +TIMESTAMP = 1749036235 +SHA256 (KDE/release-service/25.04.2/kosmindoormap-25.04.2.tar.xz) = 6a778b538126ad88a3d4e334b05259f4eea40ab07cf30fbe29733eaead59c3fc +SIZE (KDE/release-service/25.04.2/kosmindoormap-25.04.2.tar.xz) = 736444 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 14e4dc5811b0..b105b8ffbed3 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557821 -SHA256 (KDE/release-service/25.04.1/marble-25.04.1.tar.xz) = 6d2469827644f728f9fc9a023388a66813f819687d15fd2c9392d8323e37f0e2 -SIZE (KDE/release-service/25.04.1/marble-25.04.1.tar.xz) = 53785952 +TIMESTAMP = 1749036238 +SHA256 (KDE/release-service/25.04.2/marble-25.04.2.tar.xz) = 53bcb99c51b069f98f671dc3dac27351b33d1da5dd3e62cb0b607adb01d778ea +SIZE (KDE/release-service/25.04.2/marble-25.04.2.tar.xz) = 53777044 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index fcb1c8dd23b8..f6b8a432a8f8 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557822 -SHA256 (KDE/release-service/25.04.1/audiocd-kio-25.04.1.tar.xz) = 7b22c819079af0ce0cd90585c4a60169138328b6777e710dd7a35c7fbe4cac3c -SIZE (KDE/release-service/25.04.1/audiocd-kio-25.04.1.tar.xz) = 583956 +TIMESTAMP = 1749036240 +SHA256 (KDE/release-service/25.04.2/audiocd-kio-25.04.2.tar.xz) = 3d7b7cfb71ab93e9a8b9859f9d5376ebe192a92324a859ba61839825409c25cb +SIZE (KDE/release-service/25.04.2/audiocd-kio-25.04.2.tar.xz) = 583948 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 0c1f23bdb35b..017ac8b4e4f7 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557823 -SHA256 (KDE/release-service/25.04.1/elisa-25.04.1.tar.xz) = 2a6ad4550b84b6d146a81e3ea7896b39b6a4f6bdce1ebd9010d71d687499270c -SIZE (KDE/release-service/25.04.1/elisa-25.04.1.tar.xz) = 1488172 +TIMESTAMP = 1749036242 +SHA256 (KDE/release-service/25.04.2/elisa-25.04.2.tar.xz) = e3d5e341e533e91969ee5f2015a1f81f8ec2b0b1b60102ea7c16882d36bfe750 +SIZE (KDE/release-service/25.04.2/elisa-25.04.2.tar.xz) = 1488520 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index bd8c7ba38b47..8eed38f9b3b3 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557823 -SHA256 (KDE/release-service/25.04.1/juk-25.04.1.tar.xz) = e4d15477ab5074007f93aa8726966b671b827383da1d19daacaf9935490ceadf -SIZE (KDE/release-service/25.04.1/juk-25.04.1.tar.xz) = 1919536 +TIMESTAMP = 1749036245 +SHA256 (KDE/release-service/25.04.2/juk-25.04.2.tar.xz) = e404d37b0ea44b9272035d7135124ffb6ce7052926c4ae365c157df245e0426e +SIZE (KDE/release-service/25.04.2/juk-25.04.2.tar.xz) = 1919208 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 120e6cd9533b..567a7a440344 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557824 -SHA256 (KDE/release-service/25.04.1/kmix-25.04.1.tar.xz) = b28f448df557e1b0ffdf28dedb188e669794033144edea789ef05e83bd300398 -SIZE (KDE/release-service/25.04.1/kmix-25.04.1.tar.xz) = 1177276 +TIMESTAMP = 1749036247 +SHA256 (KDE/release-service/25.04.2/kmix-25.04.2.tar.xz) = 8674160a2aded6239cc2f665925a6efffbe3c26e1af92f9d83f15e8e5bc6cd0f +SIZE (KDE/release-service/25.04.2/kmix-25.04.2.tar.xz) = 1177344 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index ac9519723d09..63d505cd0a44 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557825 -SHA256 (KDE/release-service/25.04.1/kwave-25.04.1.tar.xz) = 1e9074f814006a7c183febf56a40423a7e8e834635194279cdde0d0b47b89333 -SIZE (KDE/release-service/25.04.1/kwave-25.04.1.tar.xz) = 6518756 +TIMESTAMP = 1749036250 +SHA256 (KDE/release-service/25.04.2/kwave-25.04.2.tar.xz) = 1008bb46a0370d833dd6551d3c4db97ca39224d164f6de31ecc45e06d03dcd8e +SIZE (KDE/release-service/25.04.2/kwave-25.04.2.tar.xz) = 6519092 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 5d62491eda06..e0256bb355dc 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557825 -SHA256 (KDE/release-service/25.04.1/libkcddb-25.04.1.tar.xz) = af48bad3f94614fec1f1e3793a2f8808effaebbfbe1603c2d6f2748daff84bec -SIZE (KDE/release-service/25.04.1/libkcddb-25.04.1.tar.xz) = 450224 +TIMESTAMP = 1749036252 +SHA256 (KDE/release-service/25.04.2/libkcddb-25.04.2.tar.xz) = f14258a71ce360fba948d8dc54eb6ed167d16d31f80c83bd27e6bdb79ca790d3 +SIZE (KDE/release-service/25.04.2/libkcddb-25.04.2.tar.xz) = 450184 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 80f4ce9a6d25..a41107beeba7 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557826 -SHA256 (KDE/release-service/25.04.1/libkcompactdisc-25.04.1.tar.xz) = 04aaa0a34b0fc1435d79f04bdbb9f265740425a0649a278135bda3b335fcde50 -SIZE (KDE/release-service/25.04.1/libkcompactdisc-25.04.1.tar.xz) = 100604 +TIMESTAMP = 1749036255 +SHA256 (KDE/release-service/25.04.2/libkcompactdisc-25.04.2.tar.xz) = 93da92c3c6b7cd5665727674406f06beabcfeba02eb7b9445adf441ae6618d58 +SIZE (KDE/release-service/25.04.2/libkcompactdisc-25.04.2.tar.xz) = 100592 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 048d18da2753..2e162fceb73d 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557827 -SHA256 (KDE/release-service/25.04.1/akonadi-25.04.1.tar.xz) = e9bb1e8ab19e243b674c51d9b90732080873d9d35d6201c84f0b821e62f8ac0e -SIZE (KDE/release-service/25.04.1/akonadi-25.04.1.tar.xz) = 1734948 +TIMESTAMP = 1749036257 +SHA256 (KDE/release-service/25.04.2/akonadi-25.04.2.tar.xz) = c4689a6e80d4f8b744e31459e768d977044cbd3b8fb42d14ed1cf7e7bacae52d +SIZE (KDE/release-service/25.04.2/akonadi-25.04.2.tar.xz) = 1735160 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 66cbc6c9c886..b7c3eb0f1bf1 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557827 -SHA256 (KDE/release-service/25.04.1/akonadi-calendar-tools-25.04.1.tar.xz) = bd3980703451299ce92f2e71b30010740fa2846ccc6951bf201798c6bdfdf08e -SIZE (KDE/release-service/25.04.1/akonadi-calendar-tools-25.04.1.tar.xz) = 273380 +TIMESTAMP = 1749036260 +SHA256 (KDE/release-service/25.04.2/akonadi-calendar-tools-25.04.2.tar.xz) = 0afeab98f1af9e87ab6180df75ef119ea8f2d45a3870a2cc06b68cedc426ff7e +SIZE (KDE/release-service/25.04.2/akonadi-calendar-tools-25.04.2.tar.xz) = 273328 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 4e6590990cba..8eb91c895633 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557828 -SHA256 (KDE/release-service/25.04.1/akonadi-import-wizard-25.04.1.tar.xz) = 1462c285b7e7c96b446e73fa2855a460288c2388792ba0466b42e9dc0451fa08 -SIZE (KDE/release-service/25.04.1/akonadi-import-wizard-25.04.1.tar.xz) = 495696 +TIMESTAMP = 1749036262 +SHA256 (KDE/release-service/25.04.2/akonadi-import-wizard-25.04.2.tar.xz) = 10504267930244ad3d409fb6d0191456131e8cb518174b053801a6cc9aef7a01 +SIZE (KDE/release-service/25.04.2/akonadi-import-wizard-25.04.2.tar.xz) = 495748 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 92ac5d638517..78d323e2c1ce 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557829 -SHA256 (KDE/release-service/25.04.1/akonadiconsole-25.04.1.tar.xz) = 0f118f8c6a3d28f0a2a8e07fab8d58723f955f7eb860cbaab0e688ca6bb92ff2 -SIZE (KDE/release-service/25.04.1/akonadiconsole-25.04.1.tar.xz) = 318936 +TIMESTAMP = 1749036265 +SHA256 (KDE/release-service/25.04.2/akonadiconsole-25.04.2.tar.xz) = 90f1e29d50a299fa611a11509c83e192cf2c86fecca50797698cc6c084672266 +SIZE (KDE/release-service/25.04.2/akonadiconsole-25.04.2.tar.xz) = 318848 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 3eaecaaa391a..af1378f47400 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557829 -SHA256 (KDE/release-service/25.04.1/akregator-25.04.1.tar.xz) = fc3829fa3269362b3cf2e9b17b8c0d452a3424efb97b3fdd5e4e86982bdd052c -SIZE (KDE/release-service/25.04.1/akregator-25.04.1.tar.xz) = 2143396 +TIMESTAMP = 1749036267 +SHA256 (KDE/release-service/25.04.2/akregator-25.04.2.tar.xz) = 7fdc786f40e030352f353ea0fb8fcf0393682b824f7605aa895d66d788455a39 +SIZE (KDE/release-service/25.04.2/akregator-25.04.2.tar.xz) = 2143532 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index f7f7fd6d00f4..2cf27a5b7afe 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557830 -SHA256 (KDE/release-service/25.04.1/grantlee-editor-25.04.1.tar.xz) = f036a280544a8ca89af21690e42455ade51e66904ae6b9f37de5003d79201868 -SIZE (KDE/release-service/25.04.1/grantlee-editor-25.04.1.tar.xz) = 128440 +TIMESTAMP = 1749036270 +SHA256 (KDE/release-service/25.04.2/grantlee-editor-25.04.2.tar.xz) = b6bc4b6b9394f87aac06d549ed224af68cf295614182ff434d41da06cd646aeb +SIZE (KDE/release-service/25.04.2/grantlee-editor-25.04.2.tar.xz) = 128452 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 254b08827534..f7a1d5ecf50c 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557831 -SHA256 (KDE/release-service/25.04.1/grantleetheme-25.04.1.tar.xz) = fa60b7cc5cb47e8575fcb8f091d2ead33d751159d4d2118e65dc713a1acb7d5c -SIZE (KDE/release-service/25.04.1/grantleetheme-25.04.1.tar.xz) = 63684 +TIMESTAMP = 1749036272 +SHA256 (KDE/release-service/25.04.2/grantleetheme-25.04.2.tar.xz) = 4386a941fe10ca0bef9b5483adfa3d3eee0056b58efa8a107fcefb26dce932ca +SIZE (KDE/release-service/25.04.2/grantleetheme-25.04.2.tar.xz) = 63676 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 27e52a71673c..0e8894cc5d56 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557831 -SHA256 (KDE/release-service/25.04.1/itinerary-25.04.1.tar.xz) = 0db89d3951c06508673e2932c7ba371701bf34c9510368a3040b1f5b5fa33476 -SIZE (KDE/release-service/25.04.1/itinerary-25.04.1.tar.xz) = 817432 +TIMESTAMP = 1749036274 +SHA256 (KDE/release-service/25.04.2/itinerary-25.04.2.tar.xz) = 650dacceeaa714fb90860b61238840ebc6f6191605cf2943a0785a4bcc003f10 +SIZE (KDE/release-service/25.04.2/itinerary-25.04.2.tar.xz) = 818180 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 589737acb830..9b4891ddec82 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557832 -SHA256 (KDE/release-service/25.04.1/kaddressbook-25.04.1.tar.xz) = 38c477c1ff448e820001843984dae946c4d9f4e5252c0bc5c96b79022e9a7349 -SIZE (KDE/release-service/25.04.1/kaddressbook-25.04.1.tar.xz) = 3441000 +TIMESTAMP = 1749036277 +SHA256 (KDE/release-service/25.04.2/kaddressbook-25.04.2.tar.xz) = 75e0be0389110122b59ef0a56f8bc069875b0584813534bcabdc1ab5e7d3e2e3 +SIZE (KDE/release-service/25.04.2/kaddressbook-25.04.2.tar.xz) = 3441076 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index c1baf234c9f3..1794bfca38e5 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557833 -SHA256 (KDE/release-service/25.04.1/kalarm-25.04.1.tar.xz) = 23894d569afa8b534996f4b63a1a325c4226ba4872f0479fe0f8c99e7836fded -SIZE (KDE/release-service/25.04.1/kalarm-25.04.1.tar.xz) = 2684312 +TIMESTAMP = 1749036279 +SHA256 (KDE/release-service/25.04.2/kalarm-25.04.2.tar.xz) = 6c335b43a66108ad053a634bff728507393ab090ebbb8977453900977c222cc6 +SIZE (KDE/release-service/25.04.2/kalarm-25.04.2.tar.xz) = 2687416 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index b7a61314a0b3..07d54d9322f9 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557833 -SHA256 (KDE/release-service/25.04.1/kcharselect-25.04.1.tar.xz) = 1b4d67e1286f31388fa49f28097bc45d77388c77296db35bc34ace2ad0d9c84a -SIZE (KDE/release-service/25.04.1/kcharselect-25.04.1.tar.xz) = 478164 +TIMESTAMP = 1749036282 +SHA256 (KDE/release-service/25.04.2/kcharselect-25.04.2.tar.xz) = 34ba7813a7b43e758e103516d11b92e68125f813989bc0e9a6e437f3395e3f63 +SIZE (KDE/release-service/25.04.2/kcharselect-25.04.2.tar.xz) = 478176 diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 81910024be62..d3083ca92e82 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,38 +1,38 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Support for KDE to interface between your phone and your computer WWW= https://community.kde.org/KDEConnect LICENSE= GPLv2 LIB_DEPENDS= libdbus-1.so:devel/dbus \ libfakekey.so:x11/libfakekey \ libwayland-client.so:graphics/wayland \ libxkbcommon.so:x11/libxkbcommon \ libKF6PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= ${LOCALBASE}/include/linux/input.h:devel/evdev-proto \ wayland-protocols>=0:graphics/wayland-protocols RUN_DEPENDS= sshpass:security/sshpass \ sshfs:filesystems/sshfs USES= cmake compiler:c++17-lang desktop-file-utils gettext-tools \ gl kde:6 localbase:ldflags pkgconfig qt:6 ssl tar:xz xorg USE_GL= gl opengl # GLX USE_KDE= bookmarks colorscheme completion config configwidgets \ coreaddons crash dbusaddons doctools guiaddons i18n iconthemes \ - itemviews jobwidgets kcmutils kio kirigami-addons kirigami2 \ - notifications package people qqc2-desktop-style service solid \ - statusnotifieritem widgetsaddons windowsystem \ + itemmodels itemviews jobwidgets kcmutils kio kirigami-addons \ + kirigami2 notifications package people qqc2-desktop-style \ + service solid statusnotifieritem widgetsaddons windowsystem \ ecm:build USE_QT= base connectivity declarative multimedia wayland USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect OPTIONS_DEFINE= DOCS KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} .include diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 72f558dc8924..49147a1cafa6 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557991 -SHA256 (KDE/release-service/25.04.1/kdeconnect-kde-25.04.1.tar.xz) = eac858e9db7952e06e87818232c78f7bce78896dd2fc2cfd7ba923d1d91be8a5 -SIZE (KDE/release-service/25.04.1/kdeconnect-kde-25.04.1.tar.xz) = 743204 +TIMESTAMP = 1749036284 +SHA256 (KDE/release-service/25.04.2/kdeconnect-kde-25.04.2.tar.xz) = 4c65e473a57e4e1ffc999838adb5b1aa01a85534b0e46997ab42abda17ccd1b5 +SIZE (KDE/release-service/25.04.2/kdeconnect-kde-25.04.2.tar.xz) = 746716 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 22e89fbce6ee..905d627b21bd 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,914 +1,917 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms bin/kdeconnectd etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.a lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_clipboard_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_virtualmonitor.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf6/kio/kdeconnect.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/DBusProperty.qml %%QT_QMLDIR%%/org/kde/kdeconnect/PluginChecker.qml %%QT_QMLDIR%%/org/kde/kdeconnect/RemoteKeyboard.qml %%QT_QMLDIR%%/org/kde/kdeconnect/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/kdeconnectdeclarativeplugin.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/kdeconnect_findthisdevice_qmlhelper.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/libkdeconnect_findthisdevice_qmlhelper.so %%QT_QMLDIR%%/org/kde/kdeconnect/private/findthisdevice/qmldir %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/kcm_kdeconnect.desktop share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_clipboard_config.qml share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications6/kdeconnect.notifyrc share/locale/ar/LC_MESSAGES/kdeconnect-app.mo share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ar/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ar/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/kdeconnect-settings.mo share/locale/ar/LC_MESSAGES/kdeconnect-sms.mo share/locale/ar/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-core.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-app.mo share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo share/locale/bg/LC_MESSAGES/kdeconnect-core.mo share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eo/LC_MESSAGES/kdeconnect-app.mo share/locale/eo/LC_MESSAGES/kdeconnect-cli.mo share/locale/eo/LC_MESSAGES/kdeconnect-core.mo share/locale/eo/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eo/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eo/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eo/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eo/LC_MESSAGES/kdeconnect-kded.mo share/locale/eo/LC_MESSAGES/kdeconnect-kio.mo share/locale/eo/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eo/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eo/LC_MESSAGES/kdeconnect-settings.mo share/locale/eo/LC_MESSAGES/kdeconnect-sms.mo share/locale/eo/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eo/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/fa/LC_MESSAGES/kdeconnect-app.mo +share/locale/fa/LC_MESSAGES/kdeconnect-cli.mo +share/locale/fa/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-app.mo share/locale/he/LC_MESSAGES/kdeconnect-cli.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/he/LC_MESSAGES/kdeconnect-indicator.mo share/locale/he/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/kdeconnect-settings.mo share/locale/he/LC_MESSAGES/kdeconnect-sms.mo share/locale/he/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hi/LC_MESSAGES/kdeconnect-app.mo share/locale/hi/LC_MESSAGES/kdeconnect-cli.mo share/locale/hi/LC_MESSAGES/kdeconnect-core.mo share/locale/hi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hi/LC_MESSAGES/kdeconnect-kded.mo share/locale/hi/LC_MESSAGES/kdeconnect-kio.mo share/locale/hi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hi/LC_MESSAGES/kdeconnect-settings.mo share/locale/hi/LC_MESSAGES/kdeconnect-sms.mo share/locale/hi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ie/LC_MESSAGES/kdeconnect-app.mo share/locale/ie/LC_MESSAGES/kdeconnect-core.mo share/locale/ie/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ie/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ie/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ie/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ie/LC_MESSAGES/kdeconnect-kio.mo share/locale/ie/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ie/LC_MESSAGES/kdeconnect-settings.mo share/locale/ie/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/is/LC_MESSAGES/kdeconnect-app.mo share/locale/is/LC_MESSAGES/kdeconnect-cli.mo share/locale/is/LC_MESSAGES/kdeconnect-core.mo share/locale/is/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/is/LC_MESSAGES/kdeconnect-indicator.mo share/locale/is/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/is/LC_MESSAGES/kdeconnect-kcm.mo share/locale/is/LC_MESSAGES/kdeconnect-kded.mo share/locale/is/LC_MESSAGES/kdeconnect-kio.mo share/locale/is/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/is/LC_MESSAGES/kdeconnect-plugins.mo share/locale/is/LC_MESSAGES/kdeconnect-settings.mo share/locale/is/LC_MESSAGES/kdeconnect-sms.mo share/locale/is/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ka/LC_MESSAGES/kdeconnect-app.mo share/locale/ka/LC_MESSAGES/kdeconnect-cli.mo share/locale/ka/LC_MESSAGES/kdeconnect-core.mo share/locale/ka/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ka/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ka/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ka/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ka/LC_MESSAGES/kdeconnect-kded.mo share/locale/ka/LC_MESSAGES/kdeconnect-kio.mo share/locale/ka/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ka/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ka/LC_MESSAGES/kdeconnect-settings.mo share/locale/ka/LC_MESSAGES/kdeconnect-sms.mo share/locale/ka/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lv/LC_MESSAGES/kdeconnect-app.mo share/locale/lv/LC_MESSAGES/kdeconnect-cli.mo share/locale/lv/LC_MESSAGES/kdeconnect-core.mo share/locale/lv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lv/LC_MESSAGES/kdeconnect-kded.mo share/locale/lv/LC_MESSAGES/kdeconnect-kio.mo share/locale/lv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lv/LC_MESSAGES/kdeconnect-settings.mo share/locale/lv/LC_MESSAGES/kdeconnect-sms.mo share/locale/lv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pa/LC_MESSAGES/kdeconnect-app.mo share/locale/pa/LC_MESSAGES/kdeconnect-cli.mo share/locale/pa/LC_MESSAGES/kdeconnect-core.mo share/locale/pa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pa/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pa/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pa/LC_MESSAGES/kdeconnect-kded.mo share/locale/pa/LC_MESSAGES/kdeconnect-kio.mo share/locale/pa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pa/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pa/LC_MESSAGES/kdeconnect-settings.mo share/locale/pa/LC_MESSAGES/kdeconnect-sms.mo share/locale/pa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sa/LC_MESSAGES/kdeconnect-app.mo share/locale/sa/LC_MESSAGES/kdeconnect-cli.mo share/locale/sa/LC_MESSAGES/kdeconnect-core.mo share/locale/sa/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sa/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sa/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sa/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sa/LC_MESSAGES/kdeconnect-kded.mo share/locale/sa/LC_MESSAGES/kdeconnect-kio.mo share/locale/sa/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sa/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sa/LC_MESSAGES/kdeconnect-settings.mo share/locale/sa/LC_MESSAGES/kdeconnect-sms.mo share/locale/sa/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sa/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-core.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr@latin/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ta/LC_MESSAGES/kdeconnect-app.mo share/locale/ta/LC_MESSAGES/kdeconnect-cli.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ta/LC_MESSAGES/kdeconnect-kded.mo share/locale/ta/LC_MESSAGES/kdeconnect-kio.mo share/locale/ta/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ta/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/ta/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Clipboard.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/VirtualMonitor.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories6/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 4004aff37637..3c9785960c8b 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557835 -SHA256 (KDE/release-service/25.04.1/kdepim-addons-25.04.1.tar.xz) = de5bfa0c44630f7fcbb6addff91aee3cf5bd675abe34a8b6ce1a39e404b7df72 -SIZE (KDE/release-service/25.04.1/kdepim-addons-25.04.1.tar.xz) = 2642068 +TIMESTAMP = 1749036287 +SHA256 (KDE/release-service/25.04.2/kdepim-addons-25.04.2.tar.xz) = 97dc393e8dc941fa4119a22eb75eed08bf4eb7d281941f879e3a8ba230ffb033 +SIZE (KDE/release-service/25.04.2/kdepim-addons-25.04.2.tar.xz) = 2642580 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index dacd2727c803..032f399eb461 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1318 +1,1317 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/libakonadidatasetools.so.6 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.6 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.6 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.6 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.6 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.6 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.6 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.6 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.6 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.6 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim6/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim6/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim6/kcms/kleopatra/kcm_kmail_gnupgsystem.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antivirusplugin.so -%%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_checkfoldersizeaccount.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim6/ldapactivities/kldapactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim6/mailtransportactivities/kmailtransportactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim6/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/kitinerary_ktexttemplate_extension.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim6/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/locale/af/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/af/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ast/LC_MESSAGES/cryptopageplugin.mo share/locale/ast/LC_MESSAGES/customtoolsplugin.mo share/locale/ast/LC_MESSAGES/importwizard_plugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ast/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ast/LC_MESSAGES/kmail_plugins.mo share/locale/ast/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ast/LC_MESSAGES/korganizer_plugins.mo share/locale/ast/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ast/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ast/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ast/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ast/LC_MESSAGES/messageviewerplugins.mo share/locale/ast/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ast/LC_MESSAGES/webengineurlinterceptor.mo share/locale/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/customtoolsplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kaddressbook_plugins.mo share/locale/az/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/az/LC_MESSAGES/kmail_editor_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo share/locale/az/LC_MESSAGES/kmailtransport_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo share/locale/az/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/az/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/az/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/az/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/az/LC_MESSAGES/messageviewerplugins.mo share/locale/az/LC_MESSAGES/sieveeditor_plugins.mo share/locale/az/LC_MESSAGES/webengineurlinterceptor.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/customtoolsplugin.mo share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/bg/LC_MESSAGES/kmail_plugins.mo share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/bg/LC_MESSAGES/messageviewerplugins.mo share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/korganizer_plugins.mo share/locale/br/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/br/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cy/LC_MESSAGES/korganizer_plugins.mo share/locale/cy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/customtoolsplugin.mo share/locale/eo/LC_MESSAGES/importwizard_plugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eo/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eo/LC_MESSAGES/kmail_plugins.mo share/locale/eo/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eo/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eo/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eo/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eo/LC_MESSAGES/messageviewerplugins.mo share/locale/eo/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eo/LC_MESSAGES/webengineurlinterceptor.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/cryptopageplugin.mo share/locale/eu/LC_MESSAGES/customtoolsplugin.mo share/locale/eu/LC_MESSAGES/importwizard_plugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eu/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eu/LC_MESSAGES/kmail_plugins.mo share/locale/eu/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eu/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eu/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eu/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eu/LC_MESSAGES/messageviewerplugins.mo share/locale/eu/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fy/LC_MESSAGES/korganizer_plugins.mo share/locale/fy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fy/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/cryptopageplugin.mo share/locale/he/LC_MESSAGES/customtoolsplugin.mo share/locale/he/LC_MESSAGES/importwizard_plugins.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/kaddressbook_plugins.mo share/locale/he/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/he/LC_MESSAGES/kmail_editor_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/he/LC_MESSAGES/kmail_plugins.mo share/locale/he/LC_MESSAGES/kmailtransport_plugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/he/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/he/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/he/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/he/LC_MESSAGES/messageviewerplugins.mo share/locale/he/LC_MESSAGES/sieveeditor_plugins.mo share/locale/he/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hi/LC_MESSAGES/cryptopageplugin.mo share/locale/hi/LC_MESSAGES/customtoolsplugin.mo share/locale/hi/LC_MESSAGES/importwizard_plugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/hi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/hi/LC_MESSAGES/kmail_plugins.mo share/locale/hi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/hi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/hi/LC_MESSAGES/messageviewerplugins.mo share/locale/hi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/hi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hne/LC_MESSAGES/korganizer_plugins.mo share/locale/hne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hsb/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/customtoolsplugin.mo share/locale/hu/LC_MESSAGES/importwizard_plugins.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ka/LC_MESSAGES/cryptopageplugin.mo share/locale/ka/LC_MESSAGES/customtoolsplugin.mo share/locale/ka/LC_MESSAGES/importwizard_plugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ka/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ka/LC_MESSAGES/kmail_plugins.mo share/locale/ka/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ka/LC_MESSAGES/korganizer_plugins.mo share/locale/ka/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ka/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ka/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ka/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ka/LC_MESSAGES/messageviewerplugins.mo share/locale/ka/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ka/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mai/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mai/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mk/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ms/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ms/LC_MESSAGES/korganizer_plugins.mo share/locale/ms/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ms/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ne/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ne/LC_MESSAGES/korganizer_plugins.mo share/locale/ne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sa/LC_MESSAGES/cryptopageplugin.mo share/locale/sa/LC_MESSAGES/customtoolsplugin.mo share/locale/sa/LC_MESSAGES/importwizard_plugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sa/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sa/LC_MESSAGES/kmail_plugins.mo share/locale/sa/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sa/LC_MESSAGES/korganizer_plugins.mo share/locale/sa/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sa/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sa/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sa/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sa/LC_MESSAGES/messageviewerplugins.mo share/locale/sa/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sa/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavian/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@latin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@latin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@latin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@latin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@latin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/cryptopageplugin.mo share/locale/ta/LC_MESSAGES/customtoolsplugin.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ta/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ta/LC_MESSAGES/kmail_plugins.mo share/locale/ta/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ta/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ta/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ta/LC_MESSAGES/messageviewerplugins.mo share/locale/ta/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ta/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/th/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/th/LC_MESSAGES/korganizer_plugins.mo share/locale/th/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/th/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/tr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/tr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/uz/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz/LC_MESSAGES/korganizer_plugins.mo share/locale/uz/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer_plugins.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/xh/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/xh/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories6/kdepim-addons.categories share/qlogging-categories6/kdepim-addons.renamecategories diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index cdbe7c2813a1..b2055d87d5a7 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557836 -SHA256 (KDE/release-service/25.04.1/kdepim-runtime-25.04.1.tar.xz) = 959c5335d00c8eb05b17742da1b7a142b8c6f91884194f3f9bfc09f57f2331ee -SIZE (KDE/release-service/25.04.1/kdepim-runtime-25.04.1.tar.xz) = 1704096 +TIMESTAMP = 1749036289 +SHA256 (KDE/release-service/25.04.2/kdepim-runtime-25.04.2.tar.xz) = 65c242e2d27143a3a241454f92aecd1ad9c0a55c4a630fd05da26ef1df01eb28 +SIZE (KDE/release-service/25.04.2/kdepim-runtime-25.04.2.tar.xz) = 1704156 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index f2426886a099..1825faa6a2f7 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1395 +1,1396 @@ bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.6 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.6 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.6 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.6 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.6 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnewmailnotifier.so.6 lib/libnewmailnotifier.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf6/kio/akonadi.so %%QT_PLUGINDIR%%/pim6/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/googleconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim6/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim6/kcms/common/kcm_ldap.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_akonadiplugin.so share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/davgroupware-providers/citadel.desktop share/akonadi/davgroupware-providers/davical.desktop share/akonadi/davgroupware-providers/egroupware.desktop +share/akonadi/davgroupware-providers/fastmail.desktop share/akonadi/davgroupware-providers/mailbox-org.desktop share/akonadi/davgroupware-providers/nextcloud.desktop share/akonadi/davgroupware-providers/opengroupware.desktop -share/akonadi/davgroupware-providers/owncloud-pre5.desktop share/akonadi/davgroupware-providers/owncloud-pre9.desktop share/akonadi/davgroupware-providers/owncloud.desktop share/akonadi/davgroupware-providers/scalix.desktop share/akonadi/davgroupware-providers/sogo.desktop share/akonadi/davgroupware-providers/yahoo.desktop share/akonadi/davgroupware-providers/zarafa.desktop share/akonadi/davgroupware-providers/zimbra.desktop +share/akonadi/davgroupware-providers/zoho.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/applications/org.kde.akonadi_contacts_resource.desktop share/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_ews_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop share/applications/org.kde.akonadi_openxchange_resource.desktop share/applications/org.kde.akonadi_vcard_resource.desktop share/applications/org.kde.akonadi_vcarddir_resource.desktop share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/knotifications6/akonadi_ews_resource.notifyrc share/knotifications6/akonadi_google_resource.notifyrc share/knotifications6/akonadi_imap_resource.notifyrc share/knotifications6/akonadi_maildispatcher_agent.notifyrc share/knotifications6/akonadi_newmailnotifier_agent.notifyrc share/knotifications6/akonadi_pop3_resource.notifyrc share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ast/LC_MESSAGES/akonadi-filestore.mo share/locale/ast/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ast/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ast/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ast/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ast/LC_MESSAGES/akonadi_google_resource.mo share/locale/ast/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ast/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ast/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ast/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ast/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ast/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ast/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ast/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ast/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ast/LC_MESSAGES/gid-migrator.mo share/locale/ast/LC_MESSAGES/kio_akonadi.mo share/locale/ast/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/akonadi-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eo/LC_MESSAGES/akonadi_google_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/gid-migrator.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/eo/LC_MESSAGES/libfolderarchivesettings.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/akonadi-filestore.mo share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eu/LC_MESSAGES/gid-migrator.mo share/locale/eu/LC_MESSAGES/kio_akonadi.mo share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/akonadi-filestore.mo share/locale/he/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/he/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/he/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/he/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/he/LC_MESSAGES/akonadi_ews_resource.mo share/locale/he/LC_MESSAGES/akonadi_google_resource.mo share/locale/he/LC_MESSAGES/akonadi_ical_resource.mo share/locale/he/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/he/LC_MESSAGES/akonadi_imap_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/he/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/he/LC_MESSAGES/akonadi_migration_agent.mo share/locale/he/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/he/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/he/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/he/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/he/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/he/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/he/LC_MESSAGES/gid-migrator.mo share/locale/he/LC_MESSAGES/kio_akonadi.mo share/locale/he/LC_MESSAGES/libfolderarchivesettings.mo share/locale/hi/LC_MESSAGES/akonadi-filestore.mo share/locale/hi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/hi/LC_MESSAGES/akonadi_google_resource.mo share/locale/hi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hi/LC_MESSAGES/gid-migrator.mo share/locale/hi/LC_MESSAGES/kio_akonadi.mo share/locale/hi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hsb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ka/LC_MESSAGES/akonadi-filestore.mo share/locale/ka/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ka/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ka/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ka/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ka/LC_MESSAGES/akonadi_google_resource.mo share/locale/ka/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ka/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ka/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ka/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ka/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ka/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ka/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ka/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ka/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ka/LC_MESSAGES/gid-migrator.mo share/locale/ka/LC_MESSAGES/kio_akonadi.mo share/locale/ka/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/gid-migrator.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/lv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/mai/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mai/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mai/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sa/LC_MESSAGES/akonadi-filestore.mo share/locale/sa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sa/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sa/LC_MESSAGES/akonadi_google_resource.mo share/locale/sa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sa/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sa/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sa/LC_MESSAGES/gid-migrator.mo share/locale/sa/LC_MESSAGES/kio_akonadi.mo share/locale/sa/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavian/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavian/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavian/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/gid-migrator.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sr@latin/LC_MESSAGES/akonadi-filestore.mo share/locale/sr@latin/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr@latin/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr@latin/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr@latin/LC_MESSAGES/gid-migrator.mo share/locale/sr@latin/LC_MESSAGES/kio_akonadi.mo share/locale/sr@latin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ta/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ta/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ta/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ta/LC_MESSAGES/libfolderarchivesettings.mo share/locale/th/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/th/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/th/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories6/kdepim-runtime.categories share/qlogging-categories6/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index c57f632ecc8e..10f18509d1fa 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557837 -SHA256 (KDE/release-service/25.04.1/keditbookmarks-25.04.1.tar.xz) = dd1cbd286cc65e273b9b32ccbf1d5828976b57106a8be90b22498c5af5989e68 -SIZE (KDE/release-service/25.04.1/keditbookmarks-25.04.1.tar.xz) = 262512 +TIMESTAMP = 1749036292 +SHA256 (KDE/release-service/25.04.2/keditbookmarks-25.04.2.tar.xz) = 639e5eff6bb962195088c7360eafb36bf9aaf3ad700d160c065d263f4d9d8233 +SIZE (KDE/release-service/25.04.2/keditbookmarks-25.04.2.tar.xz) = 262480 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index d5181496610b..2398a99f999f 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557837 -SHA256 (KDE/release-service/25.04.1/kfind-25.04.1.tar.xz) = ac431e0df142cc28737b9ab0d33ac37d32d4b5a3c3fcc0e0f650fa6541c90f22 -SIZE (KDE/release-service/25.04.1/kfind-25.04.1.tar.xz) = 333344 +TIMESTAMP = 1749036294 +SHA256 (KDE/release-service/25.04.2/kfind-25.04.2.tar.xz) = f282b2d324aa9d6105466fb2f05ff7b344a3dd6a10bf8219e182c498f2ac98da +SIZE (KDE/release-service/25.04.2/kfind-25.04.2.tar.xz) = 333300 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 2cef9e78501d..41be14e4fe5b 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557839 -SHA256 (KDE/release-service/25.04.1/kmail-account-wizard-25.04.1.tar.xz) = 0a3ec1f686d0c6748228811b77ad02c59e99f1588a79f61d7073c86ff4e741e7 -SIZE (KDE/release-service/25.04.1/kmail-account-wizard-25.04.1.tar.xz) = 171664 +TIMESTAMP = 1749036299 +SHA256 (KDE/release-service/25.04.2/kmail-account-wizard-25.04.2.tar.xz) = 12d762f9b0dcc67bfe9d26e0bc4dadc0cf4a0cf3d14284ce4441c45d63c76cce +SIZE (KDE/release-service/25.04.2/kmail-account-wizard-25.04.2.tar.xz) = 171688 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 8f5199da2b71..dbbeb222a391 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557838 -SHA256 (KDE/release-service/25.04.1/kmail-25.04.1.tar.xz) = fbe7b70f65ffd42a54a25b890ecc3c88bd0507c398d4d938fd1301d06d63d777 -SIZE (KDE/release-service/25.04.1/kmail-25.04.1.tar.xz) = 7807264 +TIMESTAMP = 1749036296 +SHA256 (KDE/release-service/25.04.2/kmail-25.04.2.tar.xz) = ccb6d5998c64959454879c1b059c7fe2cd1dc05b88f698fc2c60e61deee19433 +SIZE (KDE/release-service/25.04.2/kmail-25.04.2.tar.xz) = 7807480 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 4543a01dd302..9fbf589950f1 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557839 -SHA256 (KDE/release-service/25.04.1/kongress-25.04.1.tar.xz) = 0269c6c689094e75a89bf351c6e81a1b862a6a87a7c7ef6c0b9daa3acaaa33cc -SIZE (KDE/release-service/25.04.1/kongress-25.04.1.tar.xz) = 164500 +TIMESTAMP = 1749036301 +SHA256 (KDE/release-service/25.04.2/kongress-25.04.2.tar.xz) = 8250dec033b008b0039c09acc8e7d71be4cd68ef2d8340726f42ba92a3a06a06 +SIZE (KDE/release-service/25.04.2/kongress-25.04.2.tar.xz) = 164296 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 9354acd4609b..12e1b58fb4f8 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557840 -SHA256 (KDE/release-service/25.04.1/kontact-25.04.1.tar.xz) = e6e69e7144ccd6ec8dd1e69c28601d0a2039a523e167c9985d3db4f81cee7b13 -SIZE (KDE/release-service/25.04.1/kontact-25.04.1.tar.xz) = 886288 +TIMESTAMP = 1749036304 +SHA256 (KDE/release-service/25.04.2/kontact-25.04.2.tar.xz) = 467e736f55429efb980029cdd796bce3d7127f9417bed2c6429b51b289d5c615 +SIZE (KDE/release-service/25.04.2/kontact-25.04.2.tar.xz) = 886320 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index df2f0ad2c985..3622c9d2e89b 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557841 -SHA256 (KDE/release-service/25.04.1/korganizer-25.04.1.tar.xz) = a9cdb46ffe8b76a8712cb685f8229cbf783224cb2dbd01e1594d671d8d74403d -SIZE (KDE/release-service/25.04.1/korganizer-25.04.1.tar.xz) = 2976852 +TIMESTAMP = 1749036306 +SHA256 (KDE/release-service/25.04.2/korganizer-25.04.2.tar.xz) = 57605dabcd66d4f946d2b4a496d3ac174736f74480a9a632340610909da1d230 +SIZE (KDE/release-service/25.04.2/korganizer-25.04.2.tar.xz) = 2977460 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index c6706a10e74c..1d3c53d0de1b 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557841 -SHA256 (KDE/release-service/25.04.1/kruler-25.04.1.tar.xz) = 3de77a762f4a72b242cb9e32f3e42c41514722ce6240079e12d67507211eee8f -SIZE (KDE/release-service/25.04.1/kruler-25.04.1.tar.xz) = 287368 +TIMESTAMP = 1749036309 +SHA256 (KDE/release-service/25.04.2/kruler-25.04.2.tar.xz) = 852ff32540ac764874d4012871f93d42ca0b482418bf25084140f992a08f2ec2 +SIZE (KDE/release-service/25.04.2/kruler-25.04.2.tar.xz) = 287076 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index 6aff232b6a26..c2575f3c9149 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557841 -SHA256 (KDE/release-service/25.04.1/kweather-25.04.1.tar.xz) = 7e0216c5625841adfa47363186c0e46d906922c8c5d56e5fbe3bf4a8a5596568 -SIZE (KDE/release-service/25.04.1/kweather-25.04.1.tar.xz) = 365316 +TIMESTAMP = 1749036309 +SHA256 (KDE/release-service/25.04.2/kweather-25.04.2.tar.xz) = 01d719ffcccd36031f3f337e485ab4fe9a57db48a4333a8647f1e9bb37f342c0 +SIZE (KDE/release-service/25.04.2/kweather-25.04.2.tar.xz) = 366244 diff --git a/deskutils/kweather/pkg-plist b/deskutils/kweather/pkg-plist index e07eb9695ba2..0689e10fce03 100644 --- a/deskutils/kweather/pkg-plist +++ b/deskutils/kweather/pkg-plist @@ -1,55 +1,56 @@ bin/kweather %%QT_PLUGINDIR%%/plasma/applets/plasma_applet_kweather_1x4.so share/applications/org.kde.kweather.desktop share/dbus-1/services/org.kde.kweather.service share/icons/hicolor/scalable/apps/org.kde.kweather.svg +share/locale/ar/LC_MESSAGES/kweather.mo share/locale/ast/LC_MESSAGES/kweather.mo share/locale/az/LC_MESSAGES/kweather.mo share/locale/bg/LC_MESSAGES/kweather.mo share/locale/ca/LC_MESSAGES/kweather.mo share/locale/ca@valencia/LC_MESSAGES/kweather.mo share/locale/cs/LC_MESSAGES/kweather.mo share/locale/de/LC_MESSAGES/kweather.mo share/locale/el/LC_MESSAGES/kweather.mo share/locale/en_GB/LC_MESSAGES/kweather.mo share/locale/eo/LC_MESSAGES/kweather.mo share/locale/es/LC_MESSAGES/kweather.mo share/locale/et/LC_MESSAGES/kweather.mo share/locale/eu/LC_MESSAGES/kweather.mo share/locale/fi/LC_MESSAGES/kweather.mo share/locale/fr/LC_MESSAGES/kweather.mo share/locale/gl/LC_MESSAGES/kweather.mo share/locale/he/LC_MESSAGES/kweather.mo share/locale/hi/LC_MESSAGES/kweather.mo share/locale/hu/LC_MESSAGES/kweather.mo share/locale/ia/LC_MESSAGES/kweather.mo share/locale/is/LC_MESSAGES/kweather.mo share/locale/it/LC_MESSAGES/kweather.mo share/locale/ja/LC_MESSAGES/kweather.mo share/locale/ka/LC_MESSAGES/kweather.mo share/locale/ko/LC_MESSAGES/kweather.mo share/locale/lt/LC_MESSAGES/kweather.mo share/locale/lv/LC_MESSAGES/kweather.mo share/locale/nb/LC_MESSAGES/kweather.mo share/locale/nl/LC_MESSAGES/kweather.mo share/locale/nn/LC_MESSAGES/kweather.mo share/locale/pa/LC_MESSAGES/kweather.mo share/locale/pl/LC_MESSAGES/kweather.mo share/locale/pt/LC_MESSAGES/kweather.mo share/locale/pt_BR/LC_MESSAGES/kweather.mo share/locale/ru/LC_MESSAGES/kweather.mo share/locale/sa/LC_MESSAGES/kweather.mo share/locale/sk/LC_MESSAGES/kweather.mo share/locale/sl/LC_MESSAGES/kweather.mo share/locale/sv/LC_MESSAGES/kweather.mo share/locale/tr/LC_MESSAGES/kweather.mo share/locale/uk/LC_MESSAGES/kweather.mo share/locale/zh_CN/LC_MESSAGES/kweather.mo share/locale/zh_TW/LC_MESSAGES/kweather.mo share/metainfo/org.kde.kweather.appdata.xml share/metainfo/org.kde.plasma.kweather_1x4.appdata.xml share/plasma/plasmoids/org.kde.plasma.kweather_1x4/contents/ui/LocationSelector.qml share/plasma/plasmoids/org.kde.plasma.kweather_1x4/contents/ui/WeatherContainer.qml share/plasma/plasmoids/org.kde.plasma.kweather_1x4/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.kweather_1x4/metadata.json share/plasma/plasmoids/org.kde.plasma.kweather_1x4/metadata.json.license diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index 36a5a1473644..7004415f1c04 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557842 -SHA256 (KDE/release-service/25.04.1/kweathercore-25.04.1.tar.xz) = 7bf61733ffa76ac660b66f65b0e0c0ac46230d077f03cd93958d5c91a98afdf6 -SIZE (KDE/release-service/25.04.1/kweathercore-25.04.1.tar.xz) = 78708 +TIMESTAMP = 1749036309 +SHA256 (KDE/release-service/25.04.2/kweathercore-25.04.2.tar.xz) = 2f597682b3161e356ef80510bbf24c51e8fdd364bd0108a067f592ec2171272b +SIZE (KDE/release-service/25.04.2/kweathercore-25.04.2.tar.xz) = 78756 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index b0393b8c8dd2..60193ed6eb81 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557842 -SHA256 (KDE/release-service/25.04.1/libkdepim-25.04.1.tar.xz) = 7e9512f5b7b65a946cf8c1b63ca3cea182ac9f44c0c557df9d4fa0983d14fa45 -SIZE (KDE/release-service/25.04.1/libkdepim-25.04.1.tar.xz) = 283032 +TIMESTAMP = 1749036312 +SHA256 (KDE/release-service/25.04.2/libkdepim-25.04.2.tar.xz) = b7563e21c5653cb49b14e50f78f4de9c8ba6b2cce1165d6497b6186849ec05d9 +SIZE (KDE/release-service/25.04.2/libkdepim-25.04.2.tar.xz) = 282956 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 95ec939e6983..db57a6c2498c 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557843 -SHA256 (KDE/release-service/25.04.1/mbox-importer-25.04.1.tar.xz) = efd133cb6a9b164a2989f6bf6424ca24efd979a848ed38d0c420bd42a992b659 -SIZE (KDE/release-service/25.04.1/mbox-importer-25.04.1.tar.xz) = 31864 +TIMESTAMP = 1749036314 +SHA256 (KDE/release-service/25.04.2/mbox-importer-25.04.2.tar.xz) = 8c5b924087a568c0e43abff6b3b6561f8740c412eafc6a45f8692d255bb68cbc +SIZE (KDE/release-service/25.04.2/mbox-importer-25.04.2.tar.xz) = 31860 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 82b7eecfeba8..ab8bb0963b84 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557844 -SHA256 (KDE/release-service/25.04.1/merkuro-25.04.1.tar.xz) = 3d0f11a75ba6414ef8ed23c99a520af9063473b981bb651a10d187bfb64ed270 -SIZE (KDE/release-service/25.04.1/merkuro-25.04.1.tar.xz) = 821540 +TIMESTAMP = 1749036317 +SHA256 (KDE/release-service/25.04.2/merkuro-25.04.2.tar.xz) = 544d677fbbdf6372880e4cb132e47d9dd619ca453873163a9d956fe7b01f57f4 +SIZE (KDE/release-service/25.04.2/merkuro-25.04.2.tar.xz) = 821544 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 15da4e0a9b8e..306a00d62323 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557844 -SHA256 (KDE/release-service/25.04.1/pim-data-exporter-25.04.1.tar.xz) = 0fa1fe38149ed9975ac2d2f185ccd351118e49d4a67cafc8be0efd1d9a748370 -SIZE (KDE/release-service/25.04.1/pim-data-exporter-25.04.1.tar.xz) = 428228 +TIMESTAMP = 1749036319 +SHA256 (KDE/release-service/25.04.2/pim-data-exporter-25.04.2.tar.xz) = 5c1797f984c243a67daa66b0527aed1009e71ddc81553363b01b8875a45138c3 +SIZE (KDE/release-service/25.04.2/pim-data-exporter-25.04.2.tar.xz) = 428284 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index d0eae11db81a..e2fb8b0bc42e 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557845 -SHA256 (KDE/release-service/25.04.1/pim-sieve-editor-25.04.1.tar.xz) = 57a1e77ef6b9588c1e22d90ca3f12480bf7b1cd57251a41d06d637ab5c299b66 -SIZE (KDE/release-service/25.04.1/pim-sieve-editor-25.04.1.tar.xz) = 479592 +TIMESTAMP = 1749036322 +SHA256 (KDE/release-service/25.04.2/pim-sieve-editor-25.04.2.tar.xz) = 5c473c61ab31d5f947bc601a3798f645750ebacb3c570c4c1c013c2d9548887e +SIZE (KDE/release-service/25.04.2/pim-sieve-editor-25.04.2.tar.xz) = 479656 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 5fda437867d3..0afafcff6d59 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557846 -SHA256 (KDE/release-service/25.04.1/zanshin-25.04.1.tar.xz) = 7f1b3e676b44580524b4be73ebe1043514d9412c8d57426136507decb9e1e018 -SIZE (KDE/release-service/25.04.1/zanshin-25.04.1.tar.xz) = 387384 +TIMESTAMP = 1749036324 +SHA256 (KDE/release-service/25.04.2/zanshin-25.04.2.tar.xz) = 09e7e5ca4fd78877722efbb56de5f0c0bd4811ccbf52f4fb23e7b626d8bdb122 +SIZE (KDE/release-service/25.04.2/zanshin-25.04.2.tar.xz) = 387460 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 3bbb61d16566..ce10dbab94c9 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557846 -SHA256 (KDE/release-service/25.04.1/cervisia-25.04.1.tar.xz) = b760582e02522bf54910a363e0fbcdecb3b851517ffa8fdf14db38fb0426da84 -SIZE (KDE/release-service/25.04.1/cervisia-25.04.1.tar.xz) = 1809912 +TIMESTAMP = 1749036326 +SHA256 (KDE/release-service/25.04.2/cervisia-25.04.2.tar.xz) = 6b2e7ac2c40f6d4eb0e68e847ef62497fdb9c510492a202dce366f3f033a1fad +SIZE (KDE/release-service/25.04.2/cervisia-25.04.2.tar.xz) = 1809896 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 6ea5d36a0836..8aed3858f70e 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557847 -SHA256 (KDE/release-service/25.04.1/dolphin-plugins-25.04.1.tar.xz) = 24b63ff465bfe0da337cdaaea48b8f05a8f959d110ff613c8568c0a437ce5277 -SIZE (KDE/release-service/25.04.1/dolphin-plugins-25.04.1.tar.xz) = 329476 +TIMESTAMP = 1749036329 +SHA256 (KDE/release-service/25.04.2/dolphin-plugins-25.04.2.tar.xz) = b57925e3c289d9c1c1b97d29b5efddf6008ba4faa07a563e8c95e830be2dda41 +SIZE (KDE/release-service/25.04.2/dolphin-plugins-25.04.2.tar.xz) = 329600 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 4637bac824d5..051e164a78b6 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557848 -SHA256 (KDE/release-service/25.04.1/kapptemplate-25.04.1.tar.xz) = 4bce79b263097825581d21a51086c8f1d814536dd6e414f7db99043f935a7bbe -SIZE (KDE/release-service/25.04.1/kapptemplate-25.04.1.tar.xz) = 479552 +TIMESTAMP = 1749036331 +SHA256 (KDE/release-service/25.04.2/kapptemplate-25.04.2.tar.xz) = d1f4f20afe0c8769dfb315004b4b48f7ffffea021f996788fc3a1a726d879b92 +SIZE (KDE/release-service/25.04.2/kapptemplate-25.04.2.tar.xz) = 479596 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index c8140233f6d5..835418d104f0 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557849 -SHA256 (KDE/release-service/25.04.1/kcachegrind-25.04.1.tar.xz) = 0b7349b84f5e90a9d9cb05b2642b2a79c27a629dacb85ba94e57b9528be1f975 -SIZE (KDE/release-service/25.04.1/kcachegrind-25.04.1.tar.xz) = 991988 +TIMESTAMP = 1749036334 +SHA256 (KDE/release-service/25.04.2/kcachegrind-25.04.2.tar.xz) = cf4f8d9471ffe24fc42537eed00a0bf9feea0e9d705334bf8c5c3176d8b7cc6b +SIZE (KDE/release-service/25.04.2/kcachegrind-25.04.2.tar.xz) = 990884 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 23848da91012..1510fd80d9e1 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557850 -SHA256 (KDE/release-service/25.04.1/kde-dev-scripts-25.04.1.tar.xz) = 42cd9f3f6bf32d98822cd7c0f69927e2f6ba46d77d3dae5204a89677b7d55005 -SIZE (KDE/release-service/25.04.1/kde-dev-scripts-25.04.1.tar.xz) = 376208 +TIMESTAMP = 1749047315 +SHA256 (KDE/release-service/25.04.2/kde-dev-scripts-25.04.2.tar.xz) = 9a61e253c17c11f89b8e36affa66a7e2d34947a6571e6a1643522cad55b69457 +SIZE (KDE/release-service/25.04.2/kde-dev-scripts-25.04.2.tar.xz) = 376204 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 8b8d9023da7c..84462c14bee9 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557850 -SHA256 (KDE/release-service/25.04.1/kde-dev-utils-25.04.1.tar.xz) = daa4c9b7f70c439c1e832a61a9c8c68353314995f0ca1ac72e68acd207060d34 -SIZE (KDE/release-service/25.04.1/kde-dev-utils-25.04.1.tar.xz) = 77104 +TIMESTAMP = 1749036336 +SHA256 (KDE/release-service/25.04.2/kde-dev-utils-25.04.2.tar.xz) = 6555bd2e65cee7e5f7dc0d14aa4a3dabcf96867233d85adfb7b23877ef8bdf77 +SIZE (KDE/release-service/25.04.2/kde-dev-utils-25.04.2.tar.xz) = 77160 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 4ef8d55f81ba..34fae34a3107 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557851 -SHA256 (KDE/release-service/25.04.1/kdesdk-kio-25.04.1.tar.xz) = 462ff6cd8b4b5b62c3c0d6e69a9f2551436c5f8f66f8e031c1a2bd072644ad3c -SIZE (KDE/release-service/25.04.1/kdesdk-kio-25.04.1.tar.xz) = 42336 +TIMESTAMP = 1749036339 +SHA256 (KDE/release-service/25.04.2/kdesdk-kio-25.04.2.tar.xz) = d6da84eb16f509a4e3ae9cea4ad1d99732af8402098e6150e396c50b7bf2ebf7 +SIZE (KDE/release-service/25.04.2/kdesdk-kio-25.04.2.tar.xz) = 42932 diff --git a/devel/kdesdk-kio/pkg-plist b/devel/kdesdk-kio/pkg-plist index 5aabbb933a72..3b78291c8df9 100644 --- a/devel/kdesdk-kio/pkg-plist +++ b/devel/kdesdk-kio/pkg-plist @@ -1,49 +1,50 @@ %%QT_PLUGINDIR%%/kf6/kio/perldoc.so share/kio_perldoc/pod2html.pl +share/locale/ar/LC_MESSAGES/kio6_perldoc.mo share/locale/bs/LC_MESSAGES/kio6_perldoc.mo share/locale/ca/LC_MESSAGES/kio6_perldoc.mo share/locale/ca@valencia/LC_MESSAGES/kio6_perldoc.mo share/locale/cs/LC_MESSAGES/kio6_perldoc.mo share/locale/da/LC_MESSAGES/kio6_perldoc.mo share/locale/de/LC_MESSAGES/kio6_perldoc.mo share/locale/el/LC_MESSAGES/kio6_perldoc.mo share/locale/en_GB/LC_MESSAGES/kio6_perldoc.mo share/locale/eo/LC_MESSAGES/kio6_perldoc.mo share/locale/es/LC_MESSAGES/kio6_perldoc.mo share/locale/et/LC_MESSAGES/kio6_perldoc.mo share/locale/eu/LC_MESSAGES/kio6_perldoc.mo share/locale/fi/LC_MESSAGES/kio6_perldoc.mo share/locale/fr/LC_MESSAGES/kio6_perldoc.mo share/locale/ga/LC_MESSAGES/kio6_perldoc.mo share/locale/gl/LC_MESSAGES/kio6_perldoc.mo share/locale/he/LC_MESSAGES/kio6_perldoc.mo share/locale/hi/LC_MESSAGES/kio6_perldoc.mo share/locale/hu/LC_MESSAGES/kio6_perldoc.mo share/locale/ia/LC_MESSAGES/kio6_perldoc.mo share/locale/it/LC_MESSAGES/kio6_perldoc.mo share/locale/ja/LC_MESSAGES/kio6_perldoc.mo share/locale/ka/LC_MESSAGES/kio6_perldoc.mo share/locale/kk/LC_MESSAGES/kio6_perldoc.mo share/locale/ko/LC_MESSAGES/kio6_perldoc.mo share/locale/lt/LC_MESSAGES/kio6_perldoc.mo share/locale/lv/LC_MESSAGES/kio6_perldoc.mo share/locale/mr/LC_MESSAGES/kio6_perldoc.mo share/locale/nb/LC_MESSAGES/kio6_perldoc.mo share/locale/nds/LC_MESSAGES/kio6_perldoc.mo share/locale/nl/LC_MESSAGES/kio6_perldoc.mo share/locale/nn/LC_MESSAGES/kio6_perldoc.mo share/locale/pa/LC_MESSAGES/kio6_perldoc.mo share/locale/pl/LC_MESSAGES/kio6_perldoc.mo share/locale/pt/LC_MESSAGES/kio6_perldoc.mo share/locale/pt_BR/LC_MESSAGES/kio6_perldoc.mo share/locale/ru/LC_MESSAGES/kio6_perldoc.mo share/locale/sa/LC_MESSAGES/kio6_perldoc.mo share/locale/sk/LC_MESSAGES/kio6_perldoc.mo share/locale/sl/LC_MESSAGES/kio6_perldoc.mo share/locale/sq/LC_MESSAGES/kio6_perldoc.mo share/locale/sv/LC_MESSAGES/kio6_perldoc.mo share/locale/tr/LC_MESSAGES/kio6_perldoc.mo share/locale/ug/LC_MESSAGES/kio6_perldoc.mo share/locale/uk/LC_MESSAGES/kio6_perldoc.mo share/locale/zh_CN/LC_MESSAGES/kio6_perldoc.mo share/locale/zh_TW/LC_MESSAGES/kio6_perldoc.mo diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 68a649c2e40b..0ec6c12d7826 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557852 -SHA256 (KDE/release-service/25.04.1/kdesdk-thumbnailers-25.04.1.tar.xz) = 4905f9de4d58bda9aa1406a4914b0fbc7e1629b1c51be89b88152c1c348dfcb1 -SIZE (KDE/release-service/25.04.1/kdesdk-thumbnailers-25.04.1.tar.xz) = 27272 +TIMESTAMP = 1749036341 +SHA256 (KDE/release-service/25.04.2/kdesdk-thumbnailers-25.04.2.tar.xz) = 23d79da0d578bfd9fd08278f0ddd7643965f2acc350f3c134e05db0aaec41d8f +SIZE (KDE/release-service/25.04.2/kdesdk-thumbnailers-25.04.2.tar.xz) = 27272 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index e39eab962387..abaa860a0a3d 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557852 -SHA256 (KDE/release-service/25.04.1/kdev-php-25.04.1.tar.xz) = 17efe16fb6d50677c25a6219c3554e848d1a6878db1e71a1e68cb16c2f7b7242 -SIZE (KDE/release-service/25.04.1/kdev-php-25.04.1.tar.xz) = 1099292 +TIMESTAMP = 1749036344 +SHA256 (KDE/release-service/25.04.2/kdev-php-25.04.2.tar.xz) = 0c6b9ef749d0f8435651fd01dc25a0dcb4a13a73485e66ed6d53e8244ec84e4d +SIZE (KDE/release-service/25.04.2/kdev-php-25.04.2.tar.xz) = 1099132 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 20dae77fa30c..ee61bde43a5e 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557853 -SHA256 (KDE/release-service/25.04.1/kdev-python-25.04.1.tar.xz) = 391cabce5472ed0a9f742454439488664f89d9b527c49d602229c4f0da9c7bbe -SIZE (KDE/release-service/25.04.1/kdev-python-25.04.1.tar.xz) = 1109236 +TIMESTAMP = 1749036346 +SHA256 (KDE/release-service/25.04.2/kdev-python-25.04.2.tar.xz) = 005ee17a747903ec082e1d8f6764a24ace846e841cc90ae7c240b5bafd22294d +SIZE (KDE/release-service/25.04.2/kdev-python-25.04.2.tar.xz) = 1109180 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 375367d5ecb0..169517826f8a 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557854 -SHA256 (KDE/release-service/25.04.1/kdevelop-25.04.1.tar.xz) = 1c01c0c55c8e85b72e1440541d078451d429a4937d439c0d4c51fa9f1d036e36 -SIZE (KDE/release-service/25.04.1/kdevelop-25.04.1.tar.xz) = 8930464 +TIMESTAMP = 1749036349 +SHA256 (KDE/release-service/25.04.2/kdevelop-25.04.2.tar.xz) = 946f314f735936b94e1298bb6caae2b3a8a5c04f0a98a13c1effc7d9d826f04b +SIZE (KDE/release-service/25.04.2/kdevelop-25.04.2.tar.xz) = 8919492 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 1bf33f821283..3a6bf709d404 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557854 -SHA256 (KDE/release-service/25.04.1/kio-extras-25.04.1.tar.xz) = f8277fbf8aa4725926b252e2de0367677673c8db585a5ef7bd26760d3c534458 -SIZE (KDE/release-service/25.04.1/kio-extras-25.04.1.tar.xz) = 3549808 +TIMESTAMP = 1749036351 +SHA256 (KDE/release-service/25.04.2/kio-extras-25.04.2.tar.xz) = d36c0a8827f09007d257ef4ca06eb4f2123db7a38255ba37fe0748ab639d7f99 +SIZE (KDE/release-service/25.04.2/kio-extras-25.04.2.tar.xz) = 3526948 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 06d24ecaf36a..f5180d37f213 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557855 -SHA256 (KDE/release-service/25.04.1/kirigami-gallery-25.04.1.tar.xz) = bbdac5b53ae73e82b79ef976e5c4f336f2ad1e82aaf007e27635b0448e04b413 -SIZE (KDE/release-service/25.04.1/kirigami-gallery-25.04.1.tar.xz) = 377336 +TIMESTAMP = 1749036354 +SHA256 (KDE/release-service/25.04.2/kirigami-gallery-25.04.2.tar.xz) = f958e50b397d7d7bda174842adc2f0f8eb78f308893ab0da74c9629dcfc9a7f7 +SIZE (KDE/release-service/25.04.2/kirigami-gallery-25.04.2.tar.xz) = 376688 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 246c7a100d0f..070648c54794 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557856 -SHA256 (KDE/release-service/25.04.1/kopeninghours-25.04.1.tar.xz) = 228637a75a1566e8e073e0e9ec21b67d30d6f2356eda8840049d2e93e1278433 -SIZE (KDE/release-service/25.04.1/kopeninghours-25.04.1.tar.xz) = 75216 +TIMESTAMP = 1749036356 +SHA256 (KDE/release-service/25.04.2/kopeninghours-25.04.2.tar.xz) = 809f13438aca245a95ffbfff44241391b55a38595e73d68c37479672b23585fa +SIZE (KDE/release-service/25.04.2/kopeninghours-25.04.2.tar.xz) = 75880 diff --git a/devel/kopeninghours/pkg-plist b/devel/kopeninghours/pkg-plist index 3a166d65def2..de598b0bf1d2 100644 --- a/devel/kopeninghours/pkg-plist +++ b/devel/kopeninghours/pkg-plist @@ -1,59 +1,60 @@ include/KOpeningHours/Display include/KOpeningHours/Interval include/KOpeningHours/IntervalModel include/KOpeningHours/OpeningHours include/kopeninghours/display.h include/kopeninghours/interval.h include/kopeninghours/intervalmodel.h include/kopeninghours/kopeninghours_export.h include/kopeninghours/openinghours.h include/kopeninghours_version.h lib/cmake/KOpeningHours/KOpeningHoursConfig.cmake lib/cmake/KOpeningHours/KOpeningHoursConfigVersion.cmake lib/cmake/KOpeningHours/KOpeningHoursTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOpeningHours/KOpeningHoursTargets.cmake lib/libKOpeningHours.so lib/libKOpeningHours.so.1 lib/libKOpeningHours.so.%%SHLIB_VER%% %%QT_QMLDIR%%/org/kde/kopeninghours/kde-qmlmodule.version %%QT_QMLDIR%%/org/kde/kopeninghours/kopeninghoursqmlplugin.qmltypes %%QT_QMLDIR%%/org/kde/kopeninghours/libkopeninghoursqmlplugin.so %%QT_QMLDIR%%/org/kde/kopeninghours/qmldir +share/locale/ar/LC_MESSAGES/kopeninghours.mo share/locale/ast/LC_MESSAGES/kopeninghours.mo share/locale/ca/LC_MESSAGES/kopeninghours.mo share/locale/ca@valencia/LC_MESSAGES/kopeninghours.mo share/locale/cs/LC_MESSAGES/kopeninghours.mo share/locale/de/LC_MESSAGES/kopeninghours.mo share/locale/en_GB/LC_MESSAGES/kopeninghours.mo share/locale/eo/LC_MESSAGES/kopeninghours.mo share/locale/es/LC_MESSAGES/kopeninghours.mo share/locale/eu/LC_MESSAGES/kopeninghours.mo share/locale/fi/LC_MESSAGES/kopeninghours.mo share/locale/fr/LC_MESSAGES/kopeninghours.mo share/locale/gl/LC_MESSAGES/kopeninghours.mo share/locale/he/LC_MESSAGES/kopeninghours.mo share/locale/hi/LC_MESSAGES/kopeninghours.mo share/locale/hu/LC_MESSAGES/kopeninghours.mo share/locale/ia/LC_MESSAGES/kopeninghours.mo share/locale/it/LC_MESSAGES/kopeninghours.mo share/locale/ja/LC_MESSAGES/kopeninghours.mo share/locale/ka/LC_MESSAGES/kopeninghours.mo share/locale/ko/LC_MESSAGES/kopeninghours.mo share/locale/lt/LC_MESSAGES/kopeninghours.mo share/locale/lv/LC_MESSAGES/kopeninghours.mo share/locale/nl/LC_MESSAGES/kopeninghours.mo share/locale/nn/LC_MESSAGES/kopeninghours.mo share/locale/pl/LC_MESSAGES/kopeninghours.mo share/locale/pt/LC_MESSAGES/kopeninghours.mo share/locale/pt_BR/LC_MESSAGES/kopeninghours.mo share/locale/ro/LC_MESSAGES/kopeninghours.mo share/locale/ru/LC_MESSAGES/kopeninghours.mo share/locale/sa/LC_MESSAGES/kopeninghours.mo share/locale/sk/LC_MESSAGES/kopeninghours.mo share/locale/sl/LC_MESSAGES/kopeninghours.mo share/locale/sv/LC_MESSAGES/kopeninghours.mo share/locale/tr/LC_MESSAGES/kopeninghours.mo share/locale/uk/LC_MESSAGES/kopeninghours.mo share/locale/zh_CN/LC_MESSAGES/kopeninghours.mo share/locale/zh_TW/LC_MESSAGES/kopeninghours.mo share/qlogging-categories6/org_kde_kopeninghours.categories diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 020d88072d9d..6f63471c83ca 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557856 -SHA256 (KDE/release-service/25.04.1/kpublictransport-25.04.1.tar.xz) = 04786ba7e86bd54a11bc64c318cd6b9ffb91787ea6892c0330ce7ccc0570b2a8 -SIZE (KDE/release-service/25.04.1/kpublictransport-25.04.1.tar.xz) = 828836 +TIMESTAMP = 1749036359 +SHA256 (KDE/release-service/25.04.2/kpublictransport-25.04.2.tar.xz) = 8815e68e2e9a004a8665074ca91619c0003d2845b5211f9dc03c8904db8262a4 +SIZE (KDE/release-service/25.04.2/kpublictransport-25.04.2.tar.xz) = 834704 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index be56799b1f84..8ca1d4c1f15e 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557857 -SHA256 (KDE/release-service/25.04.1/lokalize-25.04.1.tar.xz) = d57d65ef2a2a226e0e038d2d0aabb1910b6cd5d8f401be107db36d1645417cb0 -SIZE (KDE/release-service/25.04.1/lokalize-25.04.1.tar.xz) = 2069104 +TIMESTAMP = 1749036361 +SHA256 (KDE/release-service/25.04.2/lokalize-25.04.2.tar.xz) = 85408af36f906ada01f30342940e065eb2bd9da8cd5de72e2bd4579e3364289e +SIZE (KDE/release-service/25.04.2/lokalize-25.04.2.tar.xz) = 2068348 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index 0b94f3a61411..ea2b20fb0063 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557858 -SHA256 (KDE/release-service/25.04.1/massif-visualizer-25.04.1.tar.xz) = d185babe9fd154c9dd1788943381c95d6a80cc8e633906655f2868f94ebd7da8 -SIZE (KDE/release-service/25.04.1/massif-visualizer-25.04.1.tar.xz) = 283932 +TIMESTAMP = 1749036363 +SHA256 (KDE/release-service/25.04.2/massif-visualizer-25.04.2.tar.xz) = 103ed4be91baeaff7ee49e58eaaab0c774f3648865a9a106fc1323b191667917 +SIZE (KDE/release-service/25.04.2/massif-visualizer-25.04.2.tar.xz) = 283884 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 2003e4a51917..69b5c7a6de64 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557858 -SHA256 (KDE/release-service/25.04.1/poxml-25.04.1.tar.xz) = 913b6183a975c0ec67f29d7fcc4f6a431e2bf9d4bde0968d8c34847837cae683 -SIZE (KDE/release-service/25.04.1/poxml-25.04.1.tar.xz) = 45220 +TIMESTAMP = 1749036366 +SHA256 (KDE/release-service/25.04.2/poxml-25.04.2.tar.xz) = 5ba86b06e155b34da8f7a070b30ed88cd8d8f245c56b85cf992f574ab359ddb8 +SIZE (KDE/release-service/25.04.2/poxml-25.04.2.tar.xz) = 45212 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index bb0e058f29cc..0735fb74af6d 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557859 -SHA256 (KDE/release-service/25.04.1/umbrello-25.04.1.tar.xz) = 5da5f63dbc8b56b29cc4f7cbeed91a80a23215627613f4dbb51ba23b689c02a5 -SIZE (KDE/release-service/25.04.1/umbrello-25.04.1.tar.xz) = 5618944 +TIMESTAMP = 1749036368 +SHA256 (KDE/release-service/25.04.2/umbrello-25.04.2.tar.xz) = 039b9716547392d7281abe1440cf24219c8c02b59278bad7f2d3a621456c7d24 +SIZE (KDE/release-service/25.04.2/umbrello-25.04.2.tar.xz) = 5618916 diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 3c9bea090f6a..a62936a14eb8 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557860 -SHA256 (KDE/release-service/25.04.1/calligra-25.04.1.tar.xz) = f81e832b9b562d39e2177b45569608be94ee03bae061a5e7c27eb2dc0b2bd3e8 -SIZE (KDE/release-service/25.04.1/calligra-25.04.1.tar.xz) = 58071980 +TIMESTAMP = 1749047332 +SHA256 (KDE/release-service/25.04.2/calligra-25.04.2.tar.xz) = 0c06c1df4200e3e5167829a52907553f83d8de50e0ea45c26898fea9c1850b42 +SIZE (KDE/release-service/25.04.2/calligra-25.04.2.tar.xz) = 58079932 diff --git a/editors/calligra/pkg-plist b/editors/calligra/pkg-plist index 96891dd03ebe..f37312f1164d 100644 --- a/editors/calligra/pkg-plist +++ b/editors/calligra/pkg-plist @@ -1,7569 +1,7570 @@ bin/calligraconverter bin/calligralauncher bin/calligrasheets bin/calligrastage bin/calligrawords bin/karbon etc/xdg/calligrasheetsrc etc/xdg/calligrastagerc etc/xdg/calligrawordsrc etc/xdg/karbonrc lib/libRtfReader.so lib/libRtfReader.so.%%KDE_APPLICATIONS_VERSION%% lib/libRtfReader.so.%%SHLIB_VER%% lib/libautocorrection.so lib/libautocorrection.so.%%KDE_APPLICATIONS_VERSION%% lib/libautocorrection.so.%%SHLIB_VER%% lib/libbasicflakes.so lib/libbasicflakes.so.%%KDE_APPLICATIONS_VERSION%% lib/libbasicflakes.so.%%SHLIB_VER%% lib/libcalligrasheetscore.so lib/libcalligrasheetscore.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetscore.so.%%SHLIB_VER%% lib/libcalligrasheetsengine.so lib/libcalligrasheetsengine.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsengine.so.%%SHLIB_VER%% lib/libcalligrasheetspartlib.so lib/libcalligrasheetspartlib.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetspartlib.so.%%SHLIB_VER%% lib/libcalligrasheetsui.so lib/libcalligrasheetsui.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsui.so.%%SHLIB_VER%% lib/libcalligrastageprivate.so lib/libcalligrastageprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrastageprivate.so.%%SHLIB_VER%% lib/libflake.so lib/libflake.so.%%KDE_APPLICATIONS_VERSION%% lib/libflake.so.%%SHLIB_VER%% lib/libkarboncommon.so lib/libkarboncommon.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarboncommon.so.%%SHLIB_VER%% lib/libkarbonui.so lib/libkarbonui.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarbonui.so.%%SHLIB_VER%% lib/libkoformula.so lib/libkoformula.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoformula.so.%%SHLIB_VER%% lib/libkomain.so lib/libkomain.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomain.so.%%SHLIB_VER%% lib/libkomsooxml.so lib/libkomsooxml.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomsooxml.so.%%SHLIB_VER%% lib/libkoodf.so lib/libkoodf.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf.so.%%SHLIB_VER%% lib/libkoodf2.so lib/libkoodf2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf2.so.%%SHLIB_VER%% lib/libkoodfreader.so lib/libkoodfreader.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodfreader.so.%%SHLIB_VER%% lib/libkookularGenerator_odp.so lib/libkookularGenerator_odp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odp.so.%%SHLIB_VER%% lib/libkookularGenerator_odt.so lib/libkookularGenerator_odt.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odt.so.%%SHLIB_VER%% lib/libkopageapp.so lib/libkopageapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkopageapp.so.%%SHLIB_VER%% lib/libkoplugin.so lib/libkoplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoplugin.so.%%SHLIB_VER%% lib/libkostore.so lib/libkostore.so.%%KDE_APPLICATIONS_VERSION%% lib/libkostore.so.%%SHLIB_VER%% lib/libkotext.so lib/libkotext.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotext.so.%%SHLIB_VER%% lib/libkotextlayout.so lib/libkotextlayout.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotextlayout.so.%%SHLIB_VER%% lib/libkovectorimage.so lib/libkovectorimage.so.%%KDE_APPLICATIONS_VERSION%% lib/libkovectorimage.so.%%SHLIB_VER%% lib/libkowidgets.so lib/libkowidgets.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgets.so.%%SHLIB_VER%% lib/libkowidgetutils.so lib/libkowidgetutils.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgetutils.so.%%SHLIB_VER%% lib/libkundo2.so lib/libkundo2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkundo2.so.%%SHLIB_VER%% lib/libpigmentcms.so lib/libpigmentcms.so.%%KDE_APPLICATIONS_VERSION%% lib/libpigmentcms.so.%%SHLIB_VER%% lib/libwordsprivate.so lib/libwordsprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libwordsprivate.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_defaults.so %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_stencils.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixspread2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixword2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ascii2words.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_csv2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_dbase2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_docx2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_eps2svgai.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_gnumeric2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_html2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon1x2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2image.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2wmf.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_key2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kpr2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kspread2tex.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2ascii.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2docx.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2epub2.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2mobi.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2wiki.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_opencalc2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ppt2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pptx2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_qpro2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_rtf2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2csv.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2gnumeric.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2opencalc.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_svg2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_vsdx2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wmf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpd2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wps2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xfig2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xls2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xlsx2ods.so %%QT_PLUGINDIR%%/calligra/pageapptools/kopabackgroundtool.so %%QT_PLUGINDIR%%/calligra/parts/calligrasheetspart.so %%QT_PLUGINDIR%%/calligra/parts/calligrastagepart.so %%QT_PLUGINDIR%%/calligra/parts/calligrawordspart.so %%QT_PLUGINDIR%%/calligra/parts/karbonpart.so %%QT_PLUGINDIR%%/calligra/presentationeventactions/calligrastageeventactions.so %%QT_PLUGINDIR%%/calligra/shapefiltereffects/calligra_filtereffects.so %%QT_PLUGINDIR%%/calligra/shapes/braindump_shape_web.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_artistictext.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_chart.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_formula.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_music.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_paths.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_picture.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_plugin.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_text.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_threed.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_vector.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_video.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_autocorrect.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_changecase.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_spellcheck.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_thesaurus.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/calligra_textinlineobject_variables.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/kprvariables.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_basicflakes.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_defaults.so %%QT_PLUGINDIR%%/calligra/tools/karbon_tools.so %%QT_PLUGINDIR%%/calligrasheets/extensions/sheetssolver.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadbitopsmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadconversionmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatabasemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatetimemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadengineeringmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadfinancialmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadinformationmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadlogicmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadmathmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadreferencemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadstatisticalmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtextmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtrigonometrymodule.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_barwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_clockwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_edgewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_fade.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_iriswipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_matrixwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_slidewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_spacerotation.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_swapeffect.so %%QT_PLUGINDIR%%/calligrastage/shapeanimations/kpr_shapeanimation_example.so %%QT_PLUGINDIR%%/calligrastage/tools/calligrastagetoolanimation.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_flattenpath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_refinepath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_roundcorners.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_whirlpinch.so %%QT_PLUGINDIR%%/kf6/propertiesdialog/calligradocinfopropspage.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligraimagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligrathumbnail.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_docx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odp_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odt_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_powerpoint_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_pptx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_rtf_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_wpd_calligra.so share/applications/calligra.desktop share/applications/okularApplication_docx_calligra.desktop share/applications/okularApplication_odp_calligra.desktop share/applications/okularApplication_odt_calligra.desktop share/applications/okularApplication_powerpoint_calligra.desktop share/applications/okularApplication_pptx_calligra.desktop share/applications/okularApplication_rtf_calligra.desktop share/applications/okularApplication_wpd_calligra.desktop share/applications/org.kde.calligra.desktop share/applications/org.kde.calligra.karbon.desktop share/applications/org.kde.calligra.sheets.desktop share/applications/org.kde.calligra.stage.desktop share/applications/org.kde.calligra.words.desktop share/applications/org.kde.calligrawords_ascii.desktop %%DATADIR%%/autocorrect/af_ZA.xml %%DATADIR%%/autocorrect/bg_BG.xml %%DATADIR%%/autocorrect/ca_ES.xml %%DATADIR%%/autocorrect/cs_CZ.xml %%DATADIR%%/autocorrect/da_DK.xml %%DATADIR%%/autocorrect/de.xml %%DATADIR%%/autocorrect/dsb.xml %%DATADIR%%/autocorrect/el_GR.xml %%DATADIR%%/autocorrect/en_AU.xml %%DATADIR%%/autocorrect/en_GB.xml %%DATADIR%%/autocorrect/en_US.xml %%DATADIR%%/autocorrect/en_ZA.xml %%DATADIR%%/autocorrect/fa_IR.xml %%DATADIR%%/autocorrect/fi_FI.xml %%DATADIR%%/autocorrect/ga_IE.xml %%DATADIR%%/autocorrect/hr_HR.xml %%DATADIR%%/autocorrect/hsb.xml %%DATADIR%%/autocorrect/hu_HU.xml %%DATADIR%%/autocorrect/is_IS.xml %%DATADIR%%/autocorrect/it.xml %%DATADIR%%/autocorrect/ja_JP.xml %%DATADIR%%/autocorrect/ko_KR.xml %%DATADIR%%/autocorrect/lb_LU.xml %%DATADIR%%/autocorrect/lt_LT.xml %%DATADIR%%/autocorrect/mn_MN.xml %%DATADIR%%/autocorrect/nb.xml %%DATADIR%%/autocorrect/nl_BE.xml %%DATADIR%%/autocorrect/nl_NL.xml %%DATADIR%%/autocorrect/nn.xml %%DATADIR%%/autocorrect/pl_PL.xml %%DATADIR%%/autocorrect/pt_BR.xml %%DATADIR%%/autocorrect/pt_PT.xml %%DATADIR%%/autocorrect/ro_RO.xml %%DATADIR%%/autocorrect/ru_RU.xml %%DATADIR%%/autocorrect/sk_SK.xml %%DATADIR%%/autocorrect/sl_SI.xml %%DATADIR%%/autocorrect/sr_CS.xml %%DATADIR%%/autocorrect/sr_Latn_CS.xml %%DATADIR%%/autocorrect/sr_Latn_ME.xml %%DATADIR%%/autocorrect/sr_Latn_RS.xml %%DATADIR%%/autocorrect/sr_ME.xml %%DATADIR%%/autocorrect/sr_RS.xml %%DATADIR%%/autocorrect/sv_SE.xml %%DATADIR%%/autocorrect/tr_TR.xml %%DATADIR%%/autocorrect/vi_VN.xml %%DATADIR%%/autocorrect/vro_EE.xml %%DATADIR%%/autocorrect/zh_CN.xml %%DATADIR%%/autocorrect/zh_TW.xml %%DATADIR%%/calligra_shell.rc %%DATADIR%%/cursors/cursor_connect.png %%DATADIR%%/cursors/cursor_rotate.png %%DATADIR%%/cursors/cursor_shear.png %%DATADIR%%/cursors/zoom_in_cursor.png %%DATADIR%%/cursors/zoom_out_cursor.png %%DATADIR%%/icons/hicolor/24x24/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/abs.png %%DATADIR%%/icons/hicolor/16x16/actions/animation-stage.png %%DATADIR%%/icons/hicolor/16x16/actions/bevelled.png %%DATADIR%%/icons/hicolor/16x16/actions/borderpainter.png %%DATADIR%%/icons/hicolor/16x16/actions/brackets.png %%DATADIR%%/icons/hicolor/16x16/actions/curve-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/enclosed.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-all.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-down.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-horizontal.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-left.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-right.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-up.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-vertical.png %%DATADIR%%/icons/hicolor/16x16/actions/frac.png %%DATADIR%%/icons/hicolor/16x16/actions/gsub.png %%DATADIR%%/icons/hicolor/16x16/actions/gsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/gsup.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/int.png %%DATADIR%%/icons/hicolor/16x16/actions/lines-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/lsub.png %%DATADIR%%/icons/hicolor/16x16/actions/lsup.png %%DATADIR%%/icons/hicolor/16x16/actions/matrix.png %%DATADIR%%/icons/hicolor/16x16/actions/multiline.png %%DATADIR%%/icons/hicolor/16x16/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/16x16/actions/over.png %%DATADIR%%/icons/hicolor/16x16/actions/paren.png %%DATADIR%%/icons/hicolor/16x16/actions/root.png %%DATADIR%%/icons/hicolor/16x16/actions/rsub.png %%DATADIR%%/icons/hicolor/16x16/actions/rsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/rsup.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-bounding-box.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-extension.png %%DATADIR%%/icons/hicolor/16x16/actions/sqrt.png %%DATADIR%%/icons/hicolor/16x16/actions/standard-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/straight-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/table.png %%DATADIR%%/icons/hicolor/16x16/actions/under.png %%DATADIR%%/icons/hicolor/16x16/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/abs.png %%DATADIR%%/icons/hicolor/22x22/actions/artistictext-tool.png %%DATADIR%%/icons/hicolor/22x22/actions/backgroundtool.png %%DATADIR%%/icons/hicolor/22x22/actions/bevelled.png %%DATADIR%%/icons/hicolor/22x22/actions/brackets.png %%DATADIR%%/icons/hicolor/22x22/actions/calligraphy.png %%DATADIR%%/icons/hicolor/22x22/actions/callout-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/circular-arrow-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/createpath.png %%DATADIR%%/icons/hicolor/22x22/actions/cross-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/editpath.png %%DATADIR%%/icons/hicolor/22x22/actions/edittext.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipse-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/enclosed.png %%DATADIR%%/icons/hicolor/22x22/actions/flower-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/format-break-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-connect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-convert-to-path.png %%DATADIR%%/icons/hicolor/22x22/actions/format-disconnect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-insert-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-join-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-line.png %%DATADIR%%/icons/hicolor/22x22/actions/format-remove-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-line.png %%DATADIR%%/icons/hicolor/22x22/actions/frac.png %%DATADIR%%/icons/hicolor/22x22/actions/gearhead-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/gradient.png %%DATADIR%%/icons/hicolor/22x22/actions/gsub.png %%DATADIR%%/icons/hicolor/22x22/actions/gsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/gsup.png %%DATADIR%%/icons/hicolor/22x22/actions/hand.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/inscol.png %%DATADIR%%/icons/hicolor/22x22/actions/insrow.png %%DATADIR%%/icons/hicolor/22x22/actions/int.png %%DATADIR%%/icons/hicolor/22x22/actions/lsub.png %%DATADIR%%/icons/hicolor/22x22/actions/lsup.png %%DATADIR%%/icons/hicolor/22x22/actions/matrix.png %%DATADIR%%/icons/hicolor/22x22/actions/multiline.png %%DATADIR%%/icons/hicolor/22x22/actions/music-cross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-dottednote.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doublecross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doubleflat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-flat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-natural.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-tiednote.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-cusp.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-smooth.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-symmetric.png %%DATADIR%%/icons/hicolor/22x22/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/22x22/actions/over.png %%DATADIR%%/icons/hicolor/22x22/actions/paren.png %%DATADIR%%/icons/hicolor/22x22/actions/pathshape.png %%DATADIR%%/icons/hicolor/22x22/actions/pattern.png %%DATADIR%%/icons/hicolor/22x22/actions/pentagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/rectangle-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/remcol.png %%DATADIR%%/icons/hicolor/22x22/actions/remrow.png %%DATADIR%%/icons/hicolor/22x22/actions/root.png %%DATADIR%%/icons/hicolor/22x22/actions/rsub.png %%DATADIR%%/icons/hicolor/22x22/actions/rsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/rsup.png %%DATADIR%%/icons/hicolor/22x22/actions/select.png %%DATADIR%%/icons/hicolor/22x22/actions/smiley-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/spiral-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/sqrt.png %%DATADIR%%/icons/hicolor/22x22/actions/star-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/table.png %%DATADIR%%/icons/hicolor/22x22/actions/text-put-on-path.png %%DATADIR%%/icons/hicolor/22x22/actions/text-remove-from-path.png %%DATADIR%%/icons/hicolor/22x22/actions/tool-text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_references.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_review.png %%DATADIR%%/icons/hicolor/22x22/actions/under.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/zoom-pixels.png %%DATADIR%%/icons/hicolor/32x32/actions/abs.png %%DATADIR%%/icons/hicolor/32x32/actions/bevelled.png %%DATADIR%%/icons/hicolor/32x32/actions/brackets.png %%DATADIR%%/icons/hicolor/32x32/actions/enclosed.png %%DATADIR%%/icons/hicolor/32x32/actions/frac.png %%DATADIR%%/icons/hicolor/32x32/actions/gsub.png %%DATADIR%%/icons/hicolor/32x32/actions/gsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/gsup.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-endnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-footnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-of-contents.png %%DATADIR%%/icons/hicolor/32x32/actions/int.png %%DATADIR%%/icons/hicolor/32x32/actions/lsub.png %%DATADIR%%/icons/hicolor/32x32/actions/lsup.png %%DATADIR%%/icons/hicolor/32x32/actions/matrix.png %%DATADIR%%/icons/hicolor/32x32/actions/multiline.png %%DATADIR%%/icons/hicolor/32x32/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/32x32/actions/over.png %%DATADIR%%/icons/hicolor/32x32/actions/paren.png %%DATADIR%%/icons/hicolor/32x32/actions/root.png %%DATADIR%%/icons/hicolor/32x32/actions/rsub.png %%DATADIR%%/icons/hicolor/32x32/actions/rsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/rsup.png %%DATADIR%%/icons/hicolor/32x32/actions/shape-choose.png %%DATADIR%%/icons/hicolor/32x32/actions/sqrt.png %%DATADIR%%/icons/hicolor/32x32/actions/table.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_imageeffects.png %%DATADIR%%/icons/hicolor/32x32/actions/under.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-connection.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-formula.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-image.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-text.png %%DATADIR%%/icons/hicolor/48x48/actions/table.png %%DATADIR%%/icons/hicolor/scalable/actions/artistictext-tool.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-bounding-box.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-extension.svg %%DATADIR%%/icons/hicolor/scalable/actions/table.svgz %%DATADIR%%/icons/hicolor/scalable/actions/text-put-on-path.svg %%DATADIR%%/icons/hicolor/scalable/actions/text-remove-from-path.svg %%DATADIR%%/palettes/concept-cookie.gpl %%DATADIR%%/palettes/default.gpl %%DATADIR%%/palettes/gradient.gpl %%DATADIR%%/palettes/marker.gpl %%DATADIR%%/palettes/pixelart-16.gpl %%DATADIR%%/palettes/pixelart-32.gpl %%DATADIR%%/palettes/ps.gpl %%DATADIR%%/palettes/swatch-cmyk.gpl %%DATADIR%%/palettes/swatch-colored-grey.gpl %%DATADIR%%/palettes/swatch-rgb.gpl %%DATADIR%%/palettes/swatche.gpl %%DATADIR%%/palettes/web.gpl %%DATADIR%%/pics/questionmark.png %%DATADIR%%/stencils/Assorted/arrow-chevron.desktop %%DATADIR%%/stencils/Assorted/arrow-chevron.odg %%DATADIR%%/stencils/Assorted/arrow-chevron.png %%DATADIR%%/stencils/Assorted/arrow-down.desktop %%DATADIR%%/stencils/Assorted/arrow-down.odg %%DATADIR%%/stencils/Assorted/arrow-down.png %%DATADIR%%/stencils/Assorted/arrow-left-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-left-notched.odg %%DATADIR%%/stencils/Assorted/arrow-left-notched.png %%DATADIR%%/stencils/Assorted/arrow-left-right-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-right-up.png %%DATADIR%%/stencils/Assorted/arrow-left-right.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right.odg %%DATADIR%%/stencils/Assorted/arrow-left-right.png %%DATADIR%%/stencils/Assorted/arrow-left-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-up.png %%DATADIR%%/stencils/Assorted/arrow-left.desktop %%DATADIR%%/stencils/Assorted/arrow-left.odg %%DATADIR%%/stencils/Assorted/arrow-left.png %%DATADIR%%/stencils/Assorted/arrow-pentagon.desktop %%DATADIR%%/stencils/Assorted/arrow-pentagon.odg %%DATADIR%%/stencils/Assorted/arrow-pentagon.png %%DATADIR%%/stencils/Assorted/arrow-quad.desktop %%DATADIR%%/stencils/Assorted/arrow-quad.odg %%DATADIR%%/stencils/Assorted/arrow-quad.png %%DATADIR%%/stencils/Assorted/arrow-right-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-right-notched.odg %%DATADIR%%/stencils/Assorted/arrow-right-notched.png %%DATADIR%%/stencils/Assorted/arrow-right.desktop %%DATADIR%%/stencils/Assorted/arrow-right.odg %%DATADIR%%/stencils/Assorted/arrow-right.png %%DATADIR%%/stencils/Assorted/arrow-turn-up.desktop %%DATADIR%%/stencils/Assorted/arrow-turn-up.odg %%DATADIR%%/stencils/Assorted/arrow-turn-up.png %%DATADIR%%/stencils/Assorted/arrow-up-down-left.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down-left.odg %%DATADIR%%/stencils/Assorted/arrow-up-down-left.png %%DATADIR%%/stencils/Assorted/arrow-up-down.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down.odg %%DATADIR%%/stencils/Assorted/arrow-up-down.png %%DATADIR%%/stencils/Assorted/arrow-up.desktop %%DATADIR%%/stencils/Assorted/arrow-up.odg %%DATADIR%%/stencils/Assorted/arrow-up.png %%DATADIR%%/stencils/Assorted/circle-quarter.desktop %%DATADIR%%/stencils/Assorted/circle-quarter.odg %%DATADIR%%/stencils/Assorted/circle-quarter.png %%DATADIR%%/stencils/Assorted/circle.desktop %%DATADIR%%/stencils/Assorted/circle.odg %%DATADIR%%/stencils/Assorted/circle.png %%DATADIR%%/stencils/Assorted/collection.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.odg %%DATADIR%%/stencils/Assorted/cross-maltese.png %%DATADIR%%/stencils/Assorted/cross-swiss.desktop %%DATADIR%%/stencils/Assorted/cross-swiss.odg %%DATADIR%%/stencils/Assorted/cross-swiss.png %%DATADIR%%/stencils/Assorted/diamond.desktop %%DATADIR%%/stencils/Assorted/diamond.odg %%DATADIR%%/stencils/Assorted/diamond.png %%DATADIR%%/stencils/Assorted/heart.desktop %%DATADIR%%/stencils/Assorted/heart.odg %%DATADIR%%/stencils/Assorted/heart.png %%DATADIR%%/stencils/Assorted/heptagon.desktop %%DATADIR%%/stencils/Assorted/heptagon.odg %%DATADIR%%/stencils/Assorted/heptagon.png %%DATADIR%%/stencils/Assorted/hexagon.desktop %%DATADIR%%/stencils/Assorted/hexagon.odg %%DATADIR%%/stencils/Assorted/hexagon.png %%DATADIR%%/stencils/Assorted/moon-quarter.desktop %%DATADIR%%/stencils/Assorted/moon-quarter.odg %%DATADIR%%/stencils/Assorted/moon-quarter.png %%DATADIR%%/stencils/Assorted/octagon.desktop %%DATADIR%%/stencils/Assorted/octagon.odg %%DATADIR%%/stencils/Assorted/octagon.png %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.desktop %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.odg %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.png %%DATADIR%%/stencils/Assorted/parallelogram-vertical.desktop %%DATADIR%%/stencils/Assorted/parallelogram-vertical.odg %%DATADIR%%/stencils/Assorted/parallelogram-vertical.png %%DATADIR%%/stencils/Assorted/pentagon.desktop %%DATADIR%%/stencils/Assorted/pentagon.odg %%DATADIR%%/stencils/Assorted/pentagon.png %%DATADIR%%/stencils/Assorted/square.desktop %%DATADIR%%/stencils/Assorted/square.odg %%DATADIR%%/stencils/Assorted/square.png %%DATADIR%%/stencils/Assorted/star4.desktop %%DATADIR%%/stencils/Assorted/star4.odg %%DATADIR%%/stencils/Assorted/star4.png %%DATADIR%%/stencils/Assorted/star4curved.desktop %%DATADIR%%/stencils/Assorted/star4curved.odg %%DATADIR%%/stencils/Assorted/star4curved.png %%DATADIR%%/stencils/Assorted/star5.desktop %%DATADIR%%/stencils/Assorted/star5.odg %%DATADIR%%/stencils/Assorted/star5.png %%DATADIR%%/stencils/Assorted/star6.desktop %%DATADIR%%/stencils/Assorted/star6.odg %%DATADIR%%/stencils/Assorted/star6.png %%DATADIR%%/stencils/Assorted/star7.desktop %%DATADIR%%/stencils/Assorted/star7.odg %%DATADIR%%/stencils/Assorted/star7.png %%DATADIR%%/stencils/Assorted/star8.desktop %%DATADIR%%/stencils/Assorted/star8.odg %%DATADIR%%/stencils/Assorted/star8.png %%DATADIR%%/stencils/Assorted/star8curved.desktop %%DATADIR%%/stencils/Assorted/star8curved.odg %%DATADIR%%/stencils/Assorted/star8curved.png %%DATADIR%%/stencils/Assorted/star8sharp.desktop %%DATADIR%%/stencils/Assorted/star8sharp.odg %%DATADIR%%/stencils/Assorted/star8sharp.png %%DATADIR%%/stencils/Assorted/sun.desktop %%DATADIR%%/stencils/Assorted/sun.odg %%DATADIR%%/stencils/Assorted/sun.png %%DATADIR%%/stencils/Assorted/trapezoid.desktop %%DATADIR%%/stencils/Assorted/trapezoid.odg %%DATADIR%%/stencils/Assorted/trapezoid.png %%DATADIR%%/stencils/Assorted/triangle-isoceles.desktop %%DATADIR%%/stencils/Assorted/triangle-isoceles.odg %%DATADIR%%/stencils/Assorted/triangle-isoceles.png %%DATADIR%%/stencils/Assorted/triangle-rightangle.desktop %%DATADIR%%/stencils/Assorted/triangle-rightangle.odg %%DATADIR%%/stencils/Assorted/triangle-rightangle.png %%DATADIR%%/stencils/BPMN/Activity-Looping.desktop %%DATADIR%%/stencils/BPMN/Activity-Looping.odg %%DATADIR%%/stencils/BPMN/Activity-Looping.png %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation.desktop %%DATADIR%%/stencils/BPMN/Compensation.odg %%DATADIR%%/stencils/BPMN/Compensation.png %%DATADIR%%/stencils/BPMN/Data-Object.desktop %%DATADIR%%/stencils/BPMN/Data-Object.odg %%DATADIR%%/stencils/BPMN/Data-Object.png %%DATADIR%%/stencils/BPMN/End-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/End-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/End-Event-Cancel.png %%DATADIR%%/stencils/BPMN/End-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/End-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/End-Event-Compensation.png %%DATADIR%%/stencils/BPMN/End-Event-Error.desktop %%DATADIR%%/stencils/BPMN/End-Event-Error.odg %%DATADIR%%/stencils/BPMN/End-Event-Error.png %%DATADIR%%/stencils/BPMN/End-Event-Link.desktop %%DATADIR%%/stencils/BPMN/End-Event-Link.odg %%DATADIR%%/stencils/BPMN/End-Event-Link.png %%DATADIR%%/stencils/BPMN/End-Event-Message.desktop %%DATADIR%%/stencils/BPMN/End-Event-Message.odg %%DATADIR%%/stencils/BPMN/End-Event-Message.png %%DATADIR%%/stencils/BPMN/End-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/End-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/End-Event-Multiple.png %%DATADIR%%/stencils/BPMN/End-Event-Terminate.desktop %%DATADIR%%/stencils/BPMN/End-Event-Terminate.odg %%DATADIR%%/stencils/BPMN/End-Event-Terminate.png %%DATADIR%%/stencils/BPMN/End-Event.desktop %%DATADIR%%/stencils/BPMN/End-Event.odg %%DATADIR%%/stencils/BPMN/End-Event.png %%DATADIR%%/stencils/BPMN/Gateway-Complex.desktop %%DATADIR%%/stencils/BPMN/Gateway-Complex.odg %%DATADIR%%/stencils/BPMN/Gateway-Complex.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.desktop %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.odg %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.png %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.desktop %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.odg %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.png %%DATADIR%%/stencils/BPMN/Gateway.desktop %%DATADIR%%/stencils/BPMN/Gateway.odg %%DATADIR%%/stencils/BPMN/Gateway.png %%DATADIR%%/stencils/BPMN/Group.desktop %%DATADIR%%/stencils/BPMN/Group.odg %%DATADIR%%/stencils/BPMN/Group.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.png %%DATADIR%%/stencils/BPMN/Intermediate-Event.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event.png %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.png %%DATADIR%%/stencils/BPMN/Start-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Link.odg %%DATADIR%%/stencils/BPMN/Start-Event-Link.png %%DATADIR%%/stencils/BPMN/Start-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Message.odg %%DATADIR%%/stencils/BPMN/Start-Event-Message.png %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Start-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Start-Event-Rule.png %%DATADIR%%/stencils/BPMN/Start-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Start-Event-Timer.png %%DATADIR%%/stencils/BPMN/Start-Event.desktop %%DATADIR%%/stencils/BPMN/Start-Event.odg %%DATADIR%%/stencils/BPMN/Start-Event.png %%DATADIR%%/stencils/BPMN/Task.desktop %%DATADIR%%/stencils/BPMN/Task.odg %%DATADIR%%/stencils/BPMN/Task.png %%DATADIR%%/stencils/BPMN/Text-Annotation.desktop %%DATADIR%%/stencils/BPMN/Text-Annotation.odg %%DATADIR%%/stencils/BPMN/Text-Annotation.png %%DATADIR%%/stencils/BPMN/Transaction.desktop %%DATADIR%%/stencils/BPMN/Transaction.odg %%DATADIR%%/stencils/BPMN/Transaction.png %%DATADIR%%/stencils/BPMN/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.odg %%DATADIR%%/stencils/Basic_Flowchart/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.odg %%DATADIR%%/stencils/Basic_Flowchart/database.desktop %%DATADIR%%/stencils/Basic_Flowchart/database.odg %%DATADIR%%/stencils/Basic_Flowchart/decision.desktop %%DATADIR%%/stencils/Basic_Flowchart/decision.odg %%DATADIR%%/stencils/Basic_Flowchart/delay.desktop %%DATADIR%%/stencils/Basic_Flowchart/delay.odg %%DATADIR%%/stencils/Basic_Flowchart/direct_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/direct_data.odg %%DATADIR%%/stencils/Basic_Flowchart/display.desktop %%DATADIR%%/stencils/Basic_Flowchart/display.odg %%DATADIR%%/stencils/Basic_Flowchart/document.desktop %%DATADIR%%/stencils/Basic_Flowchart/document.odg %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.desktop %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.odg %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.desktop %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_input.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_input.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.odg %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.desktop %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.odg %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.desktop %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.odg %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.desktop %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.odg %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.desktop %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.odg %%DATADIR%%/stencils/Basic_Flowchart/preparation.desktop %%DATADIR%%/stencils/Basic_Flowchart/preparation.odg %%DATADIR%%/stencils/Basic_Flowchart/process.desktop %%DATADIR%%/stencils/Basic_Flowchart/process.odg %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.odg %%DATADIR%%/stencils/Basic_Flowchart/start_1.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_1.odg %%DATADIR%%/stencils/Basic_Flowchart/start_2.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_2.odg %%DATADIR%%/stencils/Basic_Flowchart/stored_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/stored_data.odg %%DATADIR%%/stencils/Basic_Flowchart/terminator.desktop %%DATADIR%%/stencils/Basic_Flowchart/terminator.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.desktop %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.png %%DATADIR%%/stencils/Building_Site/collection.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.odg %%DATADIR%%/stencils/Building_Site/concrete_mixer.png %%DATADIR%%/stencils/Building_Site/fence_horizontal.desktop %%DATADIR%%/stencils/Building_Site/fence_horizontal.odg %%DATADIR%%/stencils/Building_Site/fence_horizontal.png %%DATADIR%%/stencils/Building_Site/fence_vertical.desktop %%DATADIR%%/stencils/Building_Site/fence_vertical.odg %%DATADIR%%/stencils/Building_Site/fence_vertical.png %%DATADIR%%/stencils/Building_Site/pre_silo.desktop %%DATADIR%%/stencils/Building_Site/pre_silo.odg %%DATADIR%%/stencils/Building_Site/pre_silo.png %%DATADIR%%/stencils/Building_Site/proportioning_batcher.desktop %%DATADIR%%/stencils/Building_Site/proportioning_batcher.odg %%DATADIR%%/stencils/Building_Site/proportioning_batcher.png %%DATADIR%%/stencils/Building_Site/road_crossroads.desktop %%DATADIR%%/stencils/Building_Site/road_crossroads.odg %%DATADIR%%/stencils/Building_Site/road_crossroads.png %%DATADIR%%/stencils/Building_Site/road_horizontal.desktop %%DATADIR%%/stencils/Building_Site/road_horizontal.odg %%DATADIR%%/stencils/Building_Site/road_horizontal.png %%DATADIR%%/stencils/Building_Site/road_rotated_tee.desktop %%DATADIR%%/stencils/Building_Site/road_rotated_tee.odg %%DATADIR%%/stencils/Building_Site/road_rotated_tee.png %%DATADIR%%/stencils/Building_Site/road_tee.desktop %%DATADIR%%/stencils/Building_Site/road_tee.odg %%DATADIR%%/stencils/Building_Site/road_tee.png %%DATADIR%%/stencils/Building_Site/road_turn.desktop %%DATADIR%%/stencils/Building_Site/road_turn.odg %%DATADIR%%/stencils/Building_Site/road_turn.png %%DATADIR%%/stencils/Building_Site/road_vertical.desktop %%DATADIR%%/stencils/Building_Site/road_vertical.odg %%DATADIR%%/stencils/Building_Site/road_vertical.png %%DATADIR%%/stencils/Building_Site/slope_horizontal.desktop %%DATADIR%%/stencils/Building_Site/slope_horizontal.odg %%DATADIR%%/stencils/Building_Site/slope_horizontal.png %%DATADIR%%/stencils/Building_Site/slope_vertical.desktop %%DATADIR%%/stencils/Building_Site/slope_vertical.odg %%DATADIR%%/stencils/Building_Site/slope_vertical.png %%DATADIR%%/stencils/Building_Site/wall_horizontal.desktop %%DATADIR%%/stencils/Building_Site/wall_horizontal.odg %%DATADIR%%/stencils/Building_Site/wall_horizontal.png %%DATADIR%%/stencils/Building_Site/wall_vertical.desktop %%DATADIR%%/stencils/Building_Site/wall_vertical.odg %%DATADIR%%/stencils/Building_Site/wall_vertical.png %%DATADIR%%/stencils/CMOS/collection.desktop %%DATADIR%%/stencils/CMOS/gnd_h.desktop %%DATADIR%%/stencils/CMOS/gnd_h.odg %%DATADIR%%/stencils/CMOS/gnd_h.png %%DATADIR%%/stencils/CMOS/gnd_v.desktop %%DATADIR%%/stencils/CMOS/gnd_v.odg %%DATADIR%%/stencils/CMOS/gnd_v.png %%DATADIR%%/stencils/CMOS/nmos_h.desktop %%DATADIR%%/stencils/CMOS/nmos_h.odg %%DATADIR%%/stencils/CMOS/nmos_h.png %%DATADIR%%/stencils/CMOS/nmos_v.desktop %%DATADIR%%/stencils/CMOS/nmos_v.odg %%DATADIR%%/stencils/CMOS/nmos_v.png %%DATADIR%%/stencils/CMOS/pmos_h.desktop %%DATADIR%%/stencils/CMOS/pmos_h.odg %%DATADIR%%/stencils/CMOS/pmos_h.png %%DATADIR%%/stencils/CMOS/pmos_v.desktop %%DATADIR%%/stencils/CMOS/pmos_v.odg %%DATADIR%%/stencils/CMOS/pmos_v.png %%DATADIR%%/stencils/CMOS/vdd_h.desktop %%DATADIR%%/stencils/CMOS/vdd_h.odg %%DATADIR%%/stencils/CMOS/vdd_h.png %%DATADIR%%/stencils/CMOS/vdd_v.desktop %%DATADIR%%/stencils/CMOS/vdd_v.odg %%DATADIR%%/stencils/CMOS/vdd_v.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.png %%DATADIR%%/stencils/Central_Data_Processing/Litter.desktop %%DATADIR%%/stencils/Central_Data_Processing/Litter.odg %%DATADIR%%/stencils/Central_Data_Processing/Litter.png %%DATADIR%%/stencils/Central_Data_Processing/Modem.desktop %%DATADIR%%/stencils/Central_Data_Processing/Modem.odg %%DATADIR%%/stencils/Central_Data_Processing/Modem.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Router.desktop %%DATADIR%%/stencils/Central_Data_Processing/Router.odg %%DATADIR%%/stencils/Central_Data_Processing/Router.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.png %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.desktop %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.odg %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.png %%DATADIR%%/stencils/Central_Data_Processing/collection.desktop %%DATADIR%%/stencils/ChemEng/ACgen.desktop %%DATADIR%%/stencils/ChemEng/ACgen.odg %%DATADIR%%/stencils/ChemEng/ACgen.png %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.desktop %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.odg %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.png %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.desktop %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.odg %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.png %%DATADIR%%/stencils/ChemEng/aircooler.desktop %%DATADIR%%/stencils/ChemEng/aircooler.odg %%DATADIR%%/stencils/ChemEng/aircooler.png %%DATADIR%%/stencils/ChemEng/airforced.desktop %%DATADIR%%/stencils/ChemEng/airforced.odg %%DATADIR%%/stencils/ChemEng/airforced.png %%DATADIR%%/stencils/ChemEng/airinduced.desktop %%DATADIR%%/stencils/ChemEng/airinduced.odg %%DATADIR%%/stencils/ChemEng/airinduced.png %%DATADIR%%/stencils/ChemEng/autoclave.desktop %%DATADIR%%/stencils/ChemEng/autoclave.odg %%DATADIR%%/stencils/ChemEng/autoclave.png %%DATADIR%%/stencils/ChemEng/bigtraycol.desktop %%DATADIR%%/stencils/ChemEng/bigtraycol.odg %%DATADIR%%/stencils/ChemEng/bigtraycol.png %%DATADIR%%/stencils/ChemEng/centrifuge.desktop %%DATADIR%%/stencils/ChemEng/centrifuge.odg %%DATADIR%%/stencils/ChemEng/centrifuge.png %%DATADIR%%/stencils/ChemEng/coil.desktop %%DATADIR%%/stencils/ChemEng/coil.odg %%DATADIR%%/stencils/ChemEng/coil.png %%DATADIR%%/stencils/ChemEng/coilv.desktop %%DATADIR%%/stencils/ChemEng/coilv.odg %%DATADIR%%/stencils/ChemEng/coilv.png %%DATADIR%%/stencils/ChemEng/collection.desktop %%DATADIR%%/stencils/ChemEng/compr.desktop %%DATADIR%%/stencils/ChemEng/compr.odg %%DATADIR%%/stencils/ChemEng/compr.png %%DATADIR%%/stencils/ChemEng/coveredtank.desktop %%DATADIR%%/stencils/ChemEng/coveredtank.odg %%DATADIR%%/stencils/ChemEng/coveredtank.png %%DATADIR%%/stencils/ChemEng/cyclone.desktop %%DATADIR%%/stencils/ChemEng/cyclone.odg %%DATADIR%%/stencils/ChemEng/cyclone.png %%DATADIR%%/stencils/ChemEng/displa.desktop %%DATADIR%%/stencils/ChemEng/displa.odg %%DATADIR%%/stencils/ChemEng/displa.png %%DATADIR%%/stencils/ChemEng/doublepipe.desktop %%DATADIR%%/stencils/ChemEng/doublepipe.odg %%DATADIR%%/stencils/ChemEng/doublepipe.png %%DATADIR%%/stencils/ChemEng/ejector.desktop %%DATADIR%%/stencils/ChemEng/ejector.odg %%DATADIR%%/stencils/ChemEng/ejector.png %%DATADIR%%/stencils/ChemEng/fan.desktop %%DATADIR%%/stencils/ChemEng/fan.odg %%DATADIR%%/stencils/ChemEng/fan.png %%DATADIR%%/stencils/ChemEng/filter.desktop %%DATADIR%%/stencils/ChemEng/filter.odg %%DATADIR%%/stencils/ChemEng/filter.png %%DATADIR%%/stencils/ChemEng/fixedroof.desktop %%DATADIR%%/stencils/ChemEng/fixedroof.odg %%DATADIR%%/stencils/ChemEng/fixedroof.png %%DATADIR%%/stencils/ChemEng/floatingroof.desktop %%DATADIR%%/stencils/ChemEng/floatingroof.odg %%DATADIR%%/stencils/ChemEng/floatingroof.png %%DATADIR%%/stencils/ChemEng/flowfan.desktop %%DATADIR%%/stencils/ChemEng/flowfan.odg %%DATADIR%%/stencils/ChemEng/flowfan.png %%DATADIR%%/stencils/ChemEng/fluidcont.desktop %%DATADIR%%/stencils/ChemEng/fluidcont.odg %%DATADIR%%/stencils/ChemEng/fluidcont.png %%DATADIR%%/stencils/ChemEng/furnace.desktop %%DATADIR%%/stencils/ChemEng/furnace.odg %%DATADIR%%/stencils/ChemEng/furnace.png %%DATADIR%%/stencils/ChemEng/gasholder.desktop %%DATADIR%%/stencils/ChemEng/gasholder.odg %%DATADIR%%/stencils/ChemEng/gasholder.png %%DATADIR%%/stencils/ChemEng/hx.desktop %%DATADIR%%/stencils/ChemEng/hx.odg %%DATADIR%%/stencils/ChemEng/hx.png %%DATADIR%%/stencils/ChemEng/hxv.desktop %%DATADIR%%/stencils/ChemEng/hxv.odg %%DATADIR%%/stencils/ChemEng/hxv.png %%DATADIR%%/stencils/ChemEng/kettle.desktop %%DATADIR%%/stencils/ChemEng/kettle.odg %%DATADIR%%/stencils/ChemEng/kettle.png %%DATADIR%%/stencils/ChemEng/knockout.desktop %%DATADIR%%/stencils/ChemEng/knockout.odg %%DATADIR%%/stencils/ChemEng/knockout.png %%DATADIR%%/stencils/ChemEng/measure.desktop %%DATADIR%%/stencils/ChemEng/measure.odg %%DATADIR%%/stencils/ChemEng/measure.png %%DATADIR%%/stencils/ChemEng/mixer.desktop %%DATADIR%%/stencils/ChemEng/mixer.odg %%DATADIR%%/stencils/ChemEng/mixer.png %%DATADIR%%/stencils/ChemEng/plate.desktop %%DATADIR%%/stencils/ChemEng/plate.odg %%DATADIR%%/stencils/ChemEng/plate.png %%DATADIR%%/stencils/ChemEng/pneum.desktop %%DATADIR%%/stencils/ChemEng/pneum.odg %%DATADIR%%/stencils/ChemEng/pneum.png %%DATADIR%%/stencils/ChemEng/pneumv.desktop %%DATADIR%%/stencils/ChemEng/pneumv.odg %%DATADIR%%/stencils/ChemEng/pneumv.png %%DATADIR%%/stencils/ChemEng/pnuemv.desktop %%DATADIR%%/stencils/ChemEng/pnuemv.odg %%DATADIR%%/stencils/ChemEng/pnuemv.png %%DATADIR%%/stencils/ChemEng/pump.desktop %%DATADIR%%/stencils/ChemEng/pump.odg %%DATADIR%%/stencils/ChemEng/pump.png %%DATADIR%%/stencils/ChemEng/reactor.desktop %%DATADIR%%/stencils/ChemEng/reactor.odg %%DATADIR%%/stencils/ChemEng/reactor.png %%DATADIR%%/stencils/ChemEng/recipr.desktop %%DATADIR%%/stencils/ChemEng/recipr.odg %%DATADIR%%/stencils/ChemEng/recipr.png %%DATADIR%%/stencils/ChemEng/regval.desktop %%DATADIR%%/stencils/ChemEng/regval.odg %%DATADIR%%/stencils/ChemEng/regval.png %%DATADIR%%/stencils/ChemEng/regvalv.desktop %%DATADIR%%/stencils/ChemEng/regvalv.odg %%DATADIR%%/stencils/ChemEng/regvalv.png %%DATADIR%%/stencils/ChemEng/sealedtank.desktop %%DATADIR%%/stencils/ChemEng/sealedtank.odg %%DATADIR%%/stencils/ChemEng/sealedtank.png %%DATADIR%%/stencils/ChemEng/settling.desktop %%DATADIR%%/stencils/ChemEng/settling.odg %%DATADIR%%/stencils/ChemEng/settling.png %%DATADIR%%/stencils/ChemEng/spray.desktop %%DATADIR%%/stencils/ChemEng/spray.odg %%DATADIR%%/stencils/ChemEng/spray.png %%DATADIR%%/stencils/ChemEng/spraydrier.desktop %%DATADIR%%/stencils/ChemEng/spraydrier.odg %%DATADIR%%/stencils/ChemEng/spraydrier.png %%DATADIR%%/stencils/ChemEng/storagesphere.desktop %%DATADIR%%/stencils/ChemEng/storagesphere.odg %%DATADIR%%/stencils/ChemEng/storagesphere.png %%DATADIR%%/stencils/ChemEng/tank.desktop %%DATADIR%%/stencils/ChemEng/tank.odg %%DATADIR%%/stencils/ChemEng/tank.png %%DATADIR%%/stencils/ChemEng/traycol.desktop %%DATADIR%%/stencils/ChemEng/traycol.odg %%DATADIR%%/stencils/ChemEng/traycol.png %%DATADIR%%/stencils/ChemEng/val.desktop %%DATADIR%%/stencils/ChemEng/val.odg %%DATADIR%%/stencils/ChemEng/val.png %%DATADIR%%/stencils/ChemEng/valv.desktop %%DATADIR%%/stencils/ChemEng/valv.odg %%DATADIR%%/stencils/ChemEng/valv.png %%DATADIR%%/stencils/ChemEng/vessel.desktop %%DATADIR%%/stencils/ChemEng/vessel.odg %%DATADIR%%/stencils/ChemEng/vessel.png %%DATADIR%%/stencils/ChemEng/wcool.desktop %%DATADIR%%/stencils/ChemEng/wcool.odg %%DATADIR%%/stencils/ChemEng/wcool.png %%DATADIR%%/stencils/ChemEng/wcoolv.desktop %%DATADIR%%/stencils/ChemEng/wcoolv.odg %%DATADIR%%/stencils/ChemEng/wcoolv.png %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.desktop %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.odg %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.png %%DATADIR%%/stencils/Chemistry_Lab/beaker.desktop %%DATADIR%%/stencils/Chemistry_Lab/beaker.odg %%DATADIR%%/stencils/Chemistry_Lab/beaker.png %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/burette.desktop %%DATADIR%%/stencils/Chemistry_Lab/burette.odg %%DATADIR%%/stencils/Chemistry_Lab/burette.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp.png %%DATADIR%%/stencils/Chemistry_Lab/collection.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.png %%DATADIR%%/stencils/Chemistry_Lab/condenser.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser.png %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.desktop %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.odg %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.png %%DATADIR%%/stencils/Chemistry_Lab/funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/funnel.png %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.desktop %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.odg %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.png %%DATADIR%%/stencils/Chemistry_Lab/ring-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring-front.odg %%DATADIR%%/stencils/Chemistry_Lab/ring-front.png %%DATADIR%%/stencils/Chemistry_Lab/ring.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring.odg %%DATADIR%%/stencils/Chemistry_Lab/ring.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/stirbar.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirbar.odg %%DATADIR%%/stencils/Chemistry_Lab/stirbar.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate.png %%DATADIR%%/stencils/Circuit/collection.desktop %%DATADIR%%/stencils/Circuit/ground.desktop %%DATADIR%%/stencils/Circuit/ground.odg %%DATADIR%%/stencils/Circuit/ground.png %%DATADIR%%/stencils/Circuit/hcapacitor.desktop %%DATADIR%%/stencils/Circuit/hcapacitor.odg %%DATADIR%%/stencils/Circuit/hcapacitor.png %%DATADIR%%/stencils/Circuit/hdiode.desktop %%DATADIR%%/stencils/Circuit/hdiode.odg %%DATADIR%%/stencils/Circuit/hdiode.png %%DATADIR%%/stencils/Circuit/hfuse_de.desktop %%DATADIR%%/stencils/Circuit/hfuse_de.odg %%DATADIR%%/stencils/Circuit/hfuse_de.png %%DATADIR%%/stencils/Circuit/hinductor.desktop %%DATADIR%%/stencils/Circuit/hinductor.odg %%DATADIR%%/stencils/Circuit/hinductor.png %%DATADIR%%/stencils/Circuit/hinductor_de.desktop %%DATADIR%%/stencils/Circuit/hinductor_de.odg %%DATADIR%%/stencils/Circuit/hinductor_de.png %%DATADIR%%/stencils/Circuit/hjumper.desktop %%DATADIR%%/stencils/Circuit/hjumper.odg %%DATADIR%%/stencils/Circuit/hjumper.png %%DATADIR%%/stencils/Circuit/hled_de.desktop %%DATADIR%%/stencils/Circuit/hled_de.odg %%DATADIR%%/stencils/Circuit/hled_de.png %%DATADIR%%/stencils/Circuit/hpowersource_de.desktop %%DATADIR%%/stencils/Circuit/hpowersource_de.odg %%DATADIR%%/stencils/Circuit/hpowersource_de.png %%DATADIR%%/stencils/Circuit/hresistor.desktop %%DATADIR%%/stencils/Circuit/hresistor.odg %%DATADIR%%/stencils/Circuit/hresistor.png %%DATADIR%%/stencils/Circuit/hresistor_de.desktop %%DATADIR%%/stencils/Circuit/hresistor_de.odg %%DATADIR%%/stencils/Circuit/hresistor_de.png %%DATADIR%%/stencils/Circuit/hzener.desktop %%DATADIR%%/stencils/Circuit/hzener.odg %%DATADIR%%/stencils/Circuit/hzener.png %%DATADIR%%/stencils/Circuit/lamp_de.desktop %%DATADIR%%/stencils/Circuit/lamp_de.odg %%DATADIR%%/stencils/Circuit/lamp_de.png %%DATADIR%%/stencils/Circuit/microphone_de.desktop %%DATADIR%%/stencils/Circuit/microphone_de.odg %%DATADIR%%/stencils/Circuit/microphone_de.png %%DATADIR%%/stencils/Circuit/nmos_de.desktop %%DATADIR%%/stencils/Circuit/nmos_de.odg %%DATADIR%%/stencils/Circuit/nmos_de.png %%DATADIR%%/stencils/Circuit/npn.desktop %%DATADIR%%/stencils/Circuit/npn.odg %%DATADIR%%/stencils/Circuit/npn.png %%DATADIR%%/stencils/Circuit/opamp.desktop %%DATADIR%%/stencils/Circuit/opamp.odg %%DATADIR%%/stencils/Circuit/opamp.png %%DATADIR%%/stencils/Circuit/pmos_de.desktop %%DATADIR%%/stencils/Circuit/pmos_de.odg %%DATADIR%%/stencils/Circuit/pmos_de.png %%DATADIR%%/stencils/Circuit/pnp.desktop %%DATADIR%%/stencils/Circuit/pnp.odg %%DATADIR%%/stencils/Circuit/pnp.png %%DATADIR%%/stencils/Circuit/speaker_de.desktop %%DATADIR%%/stencils/Circuit/speaker_de.odg %%DATADIR%%/stencils/Circuit/speaker_de.png %%DATADIR%%/stencils/Circuit/vcapacitor.desktop %%DATADIR%%/stencils/Circuit/vcapacitor.odg %%DATADIR%%/stencils/Circuit/vcapacitor.png %%DATADIR%%/stencils/Circuit/vdiode.desktop %%DATADIR%%/stencils/Circuit/vdiode.odg %%DATADIR%%/stencils/Circuit/vdiode.png %%DATADIR%%/stencils/Circuit/vfuse_de.desktop %%DATADIR%%/stencils/Circuit/vfuse_de.odg %%DATADIR%%/stencils/Circuit/vfuse_de.png %%DATADIR%%/stencils/Circuit/vinductor.desktop %%DATADIR%%/stencils/Circuit/vinductor.odg %%DATADIR%%/stencils/Circuit/vinductor.png %%DATADIR%%/stencils/Circuit/vinductor_de.desktop %%DATADIR%%/stencils/Circuit/vinductor_de.odg %%DATADIR%%/stencils/Circuit/vinductor_de.png %%DATADIR%%/stencils/Circuit/vled_de.desktop %%DATADIR%%/stencils/Circuit/vled_de.odg %%DATADIR%%/stencils/Circuit/vled_de.png %%DATADIR%%/stencils/Circuit/vpowersource_de.desktop %%DATADIR%%/stencils/Circuit/vpowersource_de.odg %%DATADIR%%/stencils/Circuit/vpowersource_de.png %%DATADIR%%/stencils/Circuit/vresistor.desktop %%DATADIR%%/stencils/Circuit/vresistor.odg %%DATADIR%%/stencils/Circuit/vresistor.png %%DATADIR%%/stencils/Circuit/vresistor_de.desktop %%DATADIR%%/stencils/Circuit/vresistor_de.odg %%DATADIR%%/stencils/Circuit/vresistor_de.png %%DATADIR%%/stencils/Circuit/vzener.desktop %%DATADIR%%/stencils/Circuit/vzener.odg %%DATADIR%%/stencils/Circuit/vzener.png %%DATADIR%%/stencils/Circuit2/collection.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.odg %%DATADIR%%/stencils/Circuit2/dcapacitor.png %%DATADIR%%/stencils/Circuit2/ddiode.desktop %%DATADIR%%/stencils/Circuit2/ddiode.odg %%DATADIR%%/stencils/Circuit2/ddiode.png %%DATADIR%%/stencils/Circuit2/dinductor.desktop %%DATADIR%%/stencils/Circuit2/dinductor.odg %%DATADIR%%/stencils/Circuit2/dinductor.png %%DATADIR%%/stencils/Circuit2/dinductor_de.desktop %%DATADIR%%/stencils/Circuit2/dinductor_de.odg %%DATADIR%%/stencils/Circuit2/dinductor_de.png %%DATADIR%%/stencils/Circuit2/dled_de.desktop %%DATADIR%%/stencils/Circuit2/dled_de.odg %%DATADIR%%/stencils/Circuit2/dled_de.png %%DATADIR%%/stencils/Circuit2/dpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dpcapacitor.odg %%DATADIR%%/stencils/Circuit2/dpcapacitor.png %%DATADIR%%/stencils/Circuit2/dresistor.desktop %%DATADIR%%/stencils/Circuit2/dresistor.odg %%DATADIR%%/stencils/Circuit2/dresistor.png %%DATADIR%%/stencils/Circuit2/dresistor_de.desktop %%DATADIR%%/stencils/Circuit2/dresistor_de.odg %%DATADIR%%/stencils/Circuit2/dresistor_de.png %%DATADIR%%/stencils/Circuit2/dzener.desktop %%DATADIR%%/stencils/Circuit2/dzener.odg %%DATADIR%%/stencils/Circuit2/dzener.png %%DATADIR%%/stencils/Circuit2/hammeter.desktop %%DATADIR%%/stencils/Circuit2/hammeter.odg %%DATADIR%%/stencils/Circuit2/hammeter.png %%DATADIR%%/stencils/Circuit2/hpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/hpcapacitor.odg %%DATADIR%%/stencils/Circuit2/hpcapacitor.png %%DATADIR%%/stencils/Circuit2/hvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/hvoltmeter.odg %%DATADIR%%/stencils/Circuit2/hvoltmeter.png %%DATADIR%%/stencils/Circuit2/newhled.desktop %%DATADIR%%/stencils/Circuit2/newhled.odg %%DATADIR%%/stencils/Circuit2/newhled.png %%DATADIR%%/stencils/Circuit2/newvled.desktop %%DATADIR%%/stencils/Circuit2/newvled.odg %%DATADIR%%/stencils/Circuit2/newvled.png %%DATADIR%%/stencils/Circuit2/opto.desktop %%DATADIR%%/stencils/Circuit2/opto.odg %%DATADIR%%/stencils/Circuit2/opto.png %%DATADIR%%/stencils/Circuit2/ramp.desktop %%DATADIR%%/stencils/Circuit2/ramp.odg %%DATADIR%%/stencils/Circuit2/ramp.png %%DATADIR%%/stencils/Circuit2/relay.desktop %%DATADIR%%/stencils/Circuit2/relay.odg %%DATADIR%%/stencils/Circuit2/relay.png %%DATADIR%%/stencils/Circuit2/sine.desktop %%DATADIR%%/stencils/Circuit2/sine.odg %%DATADIR%%/stencils/Circuit2/sine.png %%DATADIR%%/stencils/Circuit2/square.desktop %%DATADIR%%/stencils/Circuit2/square.odg %%DATADIR%%/stencils/Circuit2/square.png %%DATADIR%%/stencils/Circuit2/triac.desktop %%DATADIR%%/stencils/Circuit2/triac.odg %%DATADIR%%/stencils/Circuit2/triac.png %%DATADIR%%/stencils/Circuit2/triangle.desktop %%DATADIR%%/stencils/Circuit2/triangle.odg %%DATADIR%%/stencils/Circuit2/triangle.png %%DATADIR%%/stencils/Circuit2/vammeter.desktop %%DATADIR%%/stencils/Circuit2/vammeter.odg %%DATADIR%%/stencils/Circuit2/vammeter.png %%DATADIR%%/stencils/Circuit2/vpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/vpcapacitor.odg %%DATADIR%%/stencils/Circuit2/vpcapacitor.png %%DATADIR%%/stencils/Circuit2/vvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/vvoltmeter.odg %%DATADIR%%/stencils/Circuit2/vvoltmeter.png %%DATADIR%%/stencils/Cisco/1000.desktop %%DATADIR%%/stencils/Cisco/1000.odg %%DATADIR%%/stencils/Cisco/1000.png %%DATADIR%%/stencils/Cisco/100baset_hub.desktop %%DATADIR%%/stencils/Cisco/100baset_hub.odg %%DATADIR%%/stencils/Cisco/100baset_hub.png %%DATADIR%%/stencils/Cisco/10700.desktop %%DATADIR%%/stencils/Cisco/10700.odg %%DATADIR%%/stencils/Cisco/10700.png %%DATADIR%%/stencils/Cisco/15200.desktop %%DATADIR%%/stencils/Cisco/15200.odg %%DATADIR%%/stencils/Cisco/15200.png %%DATADIR%%/stencils/Cisco/15800.desktop %%DATADIR%%/stencils/Cisco/15800.odg %%DATADIR%%/stencils/Cisco/15800.png %%DATADIR%%/stencils/Cisco/3174.desktop %%DATADIR%%/stencils/Cisco/3174.odg %%DATADIR%%/stencils/Cisco/3174.png %%DATADIR%%/stencils/Cisco/3x74.desktop %%DATADIR%%/stencils/Cisco/3x74.odg %%DATADIR%%/stencils/Cisco/3x74.png %%DATADIR%%/stencils/Cisco/5000.desktop %%DATADIR%%/stencils/Cisco/5000.odg %%DATADIR%%/stencils/Cisco/5000.png %%DATADIR%%/stencils/Cisco/5002.desktop %%DATADIR%%/stencils/Cisco/5002.odg %%DATADIR%%/stencils/Cisco/5002.png %%DATADIR%%/stencils/Cisco/5500.desktop %%DATADIR%%/stencils/Cisco/5500.odg %%DATADIR%%/stencils/Cisco/5500.png %%DATADIR%%/stencils/Cisco/6701.desktop %%DATADIR%%/stencils/Cisco/6701.odg %%DATADIR%%/stencils/Cisco/6701.png %%DATADIR%%/stencils/Cisco/6705.desktop %%DATADIR%%/stencils/Cisco/6705.odg %%DATADIR%%/stencils/Cisco/6705.png %%DATADIR%%/stencils/Cisco/6732.desktop %%DATADIR%%/stencils/Cisco/6732.odg %%DATADIR%%/stencils/Cisco/6732.png %%DATADIR%%/stencils/Cisco/7500ars.desktop %%DATADIR%%/stencils/Cisco/7500ars.odg %%DATADIR%%/stencils/Cisco/7500ars.png %%DATADIR%%/stencils/Cisco/7505.desktop %%DATADIR%%/stencils/Cisco/7505.odg %%DATADIR%%/stencils/Cisco/7505.png %%DATADIR%%/stencils/Cisco/7507.desktop %%DATADIR%%/stencils/Cisco/7507.odg %%DATADIR%%/stencils/Cisco/7507.png %%DATADIR%%/stencils/Cisco/access_gateway.desktop %%DATADIR%%/stencils/Cisco/access_gateway.odg %%DATADIR%%/stencils/Cisco/access_gateway.png %%DATADIR%%/stencils/Cisco/access_server.desktop %%DATADIR%%/stencils/Cisco/access_server.odg %%DATADIR%%/stencils/Cisco/access_server.png %%DATADIR%%/stencils/Cisco/accesspoint.desktop %%DATADIR%%/stencils/Cisco/accesspoint.odg %%DATADIR%%/stencils/Cisco/accesspoint.png %%DATADIR%%/stencils/Cisco/adm.desktop %%DATADIR%%/stencils/Cisco/adm.odg %%DATADIR%%/stencils/Cisco/adm.png %%DATADIR%%/stencils/Cisco/androgynous_person.desktop %%DATADIR%%/stencils/Cisco/androgynous_person.odg %%DATADIR%%/stencils/Cisco/androgynous_person.png %%DATADIR%%/stencils/Cisco/antenna.desktop %%DATADIR%%/stencils/Cisco/antenna.odg %%DATADIR%%/stencils/Cisco/antenna.png %%DATADIR%%/stencils/Cisco/asic.desktop %%DATADIR%%/stencils/Cisco/asic.odg %%DATADIR%%/stencils/Cisco/asic.png %%DATADIR%%/stencils/Cisco/ata.desktop %%DATADIR%%/stencils/Cisco/ata.odg %%DATADIR%%/stencils/Cisco/ata.png %%DATADIR%%/stencils/Cisco/atm3800.desktop %%DATADIR%%/stencils/Cisco/atm3800.odg %%DATADIR%%/stencils/Cisco/atm3800.png %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.desktop %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.odg %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.png %%DATADIR%%/stencils/Cisco/atm_router.desktop %%DATADIR%%/stencils/Cisco/atm_router.odg %%DATADIR%%/stencils/Cisco/atm_switch.desktop %%DATADIR%%/stencils/Cisco/atm_switch.odg %%DATADIR%%/stencils/Cisco/atm_switch.png %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.desktop %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.odg %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.png %%DATADIR%%/stencils/Cisco/automatic_protection_switching.desktop %%DATADIR%%/stencils/Cisco/automatic_protection_switching.odg %%DATADIR%%/stencils/Cisco/automatic_protection_switching.png %%DATADIR%%/stencils/Cisco/bbfw.desktop %%DATADIR%%/stencils/Cisco/bbfw.odg %%DATADIR%%/stencils/Cisco/bbfw.png %%DATADIR%%/stencils/Cisco/bbfw_media.desktop %%DATADIR%%/stencils/Cisco/bbfw_media.odg %%DATADIR%%/stencils/Cisco/bbfw_media.png %%DATADIR%%/stencils/Cisco/bbs.desktop %%DATADIR%%/stencils/Cisco/bbs.odg %%DATADIR%%/stencils/Cisco/bbs.png %%DATADIR%%/stencils/Cisco/bbsm.desktop %%DATADIR%%/stencils/Cisco/bbsm.odg %%DATADIR%%/stencils/Cisco/bbsm.png %%DATADIR%%/stencils/Cisco/branch_office.desktop %%DATADIR%%/stencils/Cisco/branch_office.odg %%DATADIR%%/stencils/Cisco/branch_office.png %%DATADIR%%/stencils/Cisco/branch_office_blue.desktop %%DATADIR%%/stencils/Cisco/branch_office_blue.odg %%DATADIR%%/stencils/Cisco/branch_office_blue.png %%DATADIR%%/stencils/Cisco/branch_office_subdued.desktop %%DATADIR%%/stencils/Cisco/branch_office_subdued.odg %%DATADIR%%/stencils/Cisco/branch_office_subdued.png %%DATADIR%%/stencils/Cisco/breakout_box.desktop %%DATADIR%%/stencils/Cisco/breakout_box.odg %%DATADIR%%/stencils/Cisco/breakout_box.png %%DATADIR%%/stencils/Cisco/bridge.desktop %%DATADIR%%/stencils/Cisco/bridge.odg %%DATADIR%%/stencils/Cisco/bridge.png %%DATADIR%%/stencils/Cisco/broadband_router.desktop %%DATADIR%%/stencils/Cisco/broadband_router.odg %%DATADIR%%/stencils/Cisco/broadband_router.png %%DATADIR%%/stencils/Cisco/bts10200.desktop %%DATADIR%%/stencils/Cisco/bts10200.odg %%DATADIR%%/stencils/Cisco/bts10200.png %%DATADIR%%/stencils/Cisco/ca.desktop %%DATADIR%%/stencils/Cisco/ca.odg %%DATADIR%%/stencils/Cisco/ca.png %%DATADIR%%/stencils/Cisco/cable_modem.desktop %%DATADIR%%/stencils/Cisco/cable_modem.odg %%DATADIR%%/stencils/Cisco/cable_modem.png %%DATADIR%%/stencils/Cisco/callmanager.desktop %%DATADIR%%/stencils/Cisco/callmanager.odg %%DATADIR%%/stencils/Cisco/callmanager.png %%DATADIR%%/stencils/Cisco/car.desktop %%DATADIR%%/stencils/Cisco/car.odg %%DATADIR%%/stencils/Cisco/car.png %%DATADIR%%/stencils/Cisco/carrier_routing_system.desktop %%DATADIR%%/stencils/Cisco/carrier_routing_system.odg %%DATADIR%%/stencils/Cisco/carrier_routing_system.png %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.desktop %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.odg %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.png %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.desktop %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.odg %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.png %%DATADIR%%/stencils/Cisco/cdm.desktop %%DATADIR%%/stencils/Cisco/cdm.odg %%DATADIR%%/stencils/Cisco/cdm.png %%DATADIR%%/stencils/Cisco/cellular_phone.desktop %%DATADIR%%/stencils/Cisco/cellular_phone.odg %%DATADIR%%/stencils/Cisco/cellular_phone.png %%DATADIR%%/stencils/Cisco/centri_firewall.desktop %%DATADIR%%/stencils/Cisco/centri_firewall.odg %%DATADIR%%/stencils/Cisco/centri_firewall.png %%DATADIR%%/stencils/Cisco/channelized_pipe.desktop %%DATADIR%%/stencils/Cisco/channelized_pipe.odg %%DATADIR%%/stencils/Cisco/channelized_pipe.png %%DATADIR%%/stencils/Cisco/cisco_hub.desktop %%DATADIR%%/stencils/Cisco/cisco_hub.odg %%DATADIR%%/stencils/Cisco/cisco_hub.png %%DATADIR%%/stencils/Cisco/ciscosecurity.desktop %%DATADIR%%/stencils/Cisco/ciscosecurity.odg %%DATADIR%%/stencils/Cisco/ciscosecurity.png %%DATADIR%%/stencils/Cisco/ciscoworks.desktop %%DATADIR%%/stencils/Cisco/ciscoworks.odg %%DATADIR%%/stencils/Cisco/ciscoworks.png %%DATADIR%%/stencils/Cisco/ciscoworks_man.desktop %%DATADIR%%/stencils/Cisco/ciscoworks_man.odg %%DATADIR%%/stencils/Cisco/ciscoworks_man.png %%DATADIR%%/stencils/Cisco/class45_switch.desktop %%DATADIR%%/stencils/Cisco/class45_switch.odg %%DATADIR%%/stencils/Cisco/class45_switch.png %%DATADIR%%/stencils/Cisco/cloud.desktop %%DATADIR%%/stencils/Cisco/cloud.odg %%DATADIR%%/stencils/Cisco/cloud.png %%DATADIR%%/stencils/Cisco/cloud_dark.desktop %%DATADIR%%/stencils/Cisco/cloud_dark.odg %%DATADIR%%/stencils/Cisco/cloud_dark.png %%DATADIR%%/stencils/Cisco/cloud_gold.desktop %%DATADIR%%/stencils/Cisco/cloud_gold.odg %%DATADIR%%/stencils/Cisco/cloud_gold.png %%DATADIR%%/stencils/Cisco/cloud_white.desktop %%DATADIR%%/stencils/Cisco/cloud_white.odg %%DATADIR%%/stencils/Cisco/cloud_white.png %%DATADIR%%/stencils/Cisco/collection.desktop %%DATADIR%%/stencils/Cisco/communications_server.desktop %%DATADIR%%/stencils/Cisco/communications_server.odg %%DATADIR%%/stencils/Cisco/communications_server.png %%DATADIR%%/stencils/Cisco/concatenated_payload.desktop %%DATADIR%%/stencils/Cisco/concatenated_payload.odg %%DATADIR%%/stencils/Cisco/concatenated_payload.png %%DATADIR%%/stencils/Cisco/content_engine.desktop %%DATADIR%%/stencils/Cisco/content_engine.odg %%DATADIR%%/stencils/Cisco/content_engine.png %%DATADIR%%/stencils/Cisco/content_router.desktop %%DATADIR%%/stencils/Cisco/content_router.odg %%DATADIR%%/stencils/Cisco/content_router.png %%DATADIR%%/stencils/Cisco/content_service_module.desktop %%DATADIR%%/stencils/Cisco/content_service_module.odg %%DATADIR%%/stencils/Cisco/content_service_module.png %%DATADIR%%/stencils/Cisco/content_switch.desktop %%DATADIR%%/stencils/Cisco/content_switch.odg %%DATADIR%%/stencils/Cisco/content_switch.png %%DATADIR%%/stencils/Cisco/csm-s.desktop %%DATADIR%%/stencils/Cisco/csm-s.odg %%DATADIR%%/stencils/Cisco/csm-s.png %%DATADIR%%/stencils/Cisco/css1100.desktop %%DATADIR%%/stencils/Cisco/css1100.odg %%DATADIR%%/stencils/Cisco/css1100.png %%DATADIR%%/stencils/Cisco/csu_dsu.desktop %%DATADIR%%/stencils/Cisco/csu_dsu.odg %%DATADIR%%/stencils/Cisco/csu_dsu.png %%DATADIR%%/stencils/Cisco/cte.desktop %%DATADIR%%/stencils/Cisco/cte.odg %%DATADIR%%/stencils/Cisco/cte.png %%DATADIR%%/stencils/Cisco/data_center_switch.desktop %%DATADIR%%/stencils/Cisco/data_center_switch.odg %%DATADIR%%/stencils/Cisco/data_center_switch.png %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.desktop %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.odg %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.png %%DATADIR%%/stencils/Cisco/data_switch_processor.desktop %%DATADIR%%/stencils/Cisco/data_switch_processor.odg %%DATADIR%%/stencils/Cisco/data_switch_processor.png %%DATADIR%%/stencils/Cisco/detector.desktop %%DATADIR%%/stencils/Cisco/detector.odg %%DATADIR%%/stencils/Cisco/detector.png %%DATADIR%%/stencils/Cisco/digital_cross-connect.desktop %%DATADIR%%/stencils/Cisco/digital_cross-connect.odg %%DATADIR%%/stencils/Cisco/digital_cross-connect.png %%DATADIR%%/stencils/Cisco/director_fcis.desktop %%DATADIR%%/stencils/Cisco/director_fcis.odg %%DATADIR%%/stencils/Cisco/director_fcis.png %%DATADIR%%/stencils/Cisco/directory_server.desktop %%DATADIR%%/stencils/Cisco/directory_server.odg %%DATADIR%%/stencils/Cisco/directory_server.png %%DATADIR%%/stencils/Cisco/disk_subsystem.desktop %%DATADIR%%/stencils/Cisco/disk_subsystem.odg %%DATADIR%%/stencils/Cisco/disk_subsystem.png %%DATADIR%%/stencils/Cisco/diskette.desktop %%DATADIR%%/stencils/Cisco/diskette.odg %%DATADIR%%/stencils/Cisco/diskette.png %%DATADIR%%/stencils/Cisco/distributed_director.desktop %%DATADIR%%/stencils/Cisco/distributed_director.odg %%DATADIR%%/stencils/Cisco/distributed_director.png %%DATADIR%%/stencils/Cisco/dot_dot.desktop %%DATADIR%%/stencils/Cisco/dot_dot.odg %%DATADIR%%/stencils/Cisco/dot_dot.png %%DATADIR%%/stencils/Cisco/dpt.desktop %%DATADIR%%/stencils/Cisco/dpt.odg %%DATADIR%%/stencils/Cisco/dpt.png %%DATADIR%%/stencils/Cisco/dslam.desktop %%DATADIR%%/stencils/Cisco/dslam.odg %%DATADIR%%/stencils/Cisco/dslam.png %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.desktop %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.odg %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.png %%DATADIR%%/stencils/Cisco/dwdm_filter.desktop %%DATADIR%%/stencils/Cisco/dwdm_filter.odg %%DATADIR%%/stencils/Cisco/dwdm_filter.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.desktop %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.odg %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.png %%DATADIR%%/stencils/Cisco/end_office.desktop %%DATADIR%%/stencils/Cisco/end_office.odg %%DATADIR%%/stencils/Cisco/end_office.png %%DATADIR%%/stencils/Cisco/etherclient.desktop %%DATADIR%%/stencils/Cisco/etherclient.odg %%DATADIR%%/stencils/Cisco/etherclient.png %%DATADIR%%/stencils/Cisco/fax.desktop %%DATADIR%%/stencils/Cisco/fax.odg %%DATADIR%%/stencils/Cisco/fax.png %%DATADIR%%/stencils/Cisco/fc_storage.desktop %%DATADIR%%/stencils/Cisco/fc_storage.odg %%DATADIR%%/stencils/Cisco/fc_storage.png %%DATADIR%%/stencils/Cisco/fddi_ring.desktop %%DATADIR%%/stencils/Cisco/fddi_ring.odg %%DATADIR%%/stencils/Cisco/fddi_ring.png %%DATADIR%%/stencils/Cisco/file_cabinet.desktop %%DATADIR%%/stencils/Cisco/file_cabinet.odg %%DATADIR%%/stencils/Cisco/file_cabinet.png %%DATADIR%%/stencils/Cisco/file_engine.desktop %%DATADIR%%/stencils/Cisco/file_engine.odg %%DATADIR%%/stencils/Cisco/file_engine.png %%DATADIR%%/stencils/Cisco/file_server.desktop %%DATADIR%%/stencils/Cisco/file_server.odg %%DATADIR%%/stencils/Cisco/file_server.png %%DATADIR%%/stencils/Cisco/firewall.desktop %%DATADIR%%/stencils/Cisco/firewall.odg %%DATADIR%%/stencils/Cisco/firewall.png %%DATADIR%%/stencils/Cisco/firewall_horizontal.desktop %%DATADIR%%/stencils/Cisco/firewall_horizontal.odg %%DATADIR%%/stencils/Cisco/firewall_horizontal.png %%DATADIR%%/stencils/Cisco/firewall_subdued.desktop %%DATADIR%%/stencils/Cisco/firewall_subdued.odg %%DATADIR%%/stencils/Cisco/firewall_subdued.png %%DATADIR%%/stencils/Cisco/front_end_processor.desktop %%DATADIR%%/stencils/Cisco/front_end_processor.odg %%DATADIR%%/stencils/Cisco/front_end_processor.png %%DATADIR%%/stencils/Cisco/fwsm.desktop %%DATADIR%%/stencils/Cisco/fwsm.odg %%DATADIR%%/stencils/Cisco/fwsm.png %%DATADIR%%/stencils/Cisco/general_appliance.desktop %%DATADIR%%/stencils/Cisco/general_appliance.odg %%DATADIR%%/stencils/Cisco/general_appliance.png %%DATADIR%%/stencils/Cisco/generic_building.desktop %%DATADIR%%/stencils/Cisco/generic_building.odg %%DATADIR%%/stencils/Cisco/generic_building.png %%DATADIR%%/stencils/Cisco/generic_building_blue.desktop %%DATADIR%%/stencils/Cisco/generic_building_blue.odg %%DATADIR%%/stencils/Cisco/generic_building_blue.png %%DATADIR%%/stencils/Cisco/generic_building_subdued.desktop %%DATADIR%%/stencils/Cisco/generic_building_subdued.odg %%DATADIR%%/stencils/Cisco/generic_building_subdued.png %%DATADIR%%/stencils/Cisco/generic_gateway.desktop %%DATADIR%%/stencils/Cisco/generic_gateway.odg %%DATADIR%%/stencils/Cisco/generic_gateway.png %%DATADIR%%/stencils/Cisco/generic_processor.desktop %%DATADIR%%/stencils/Cisco/generic_processor.odg %%DATADIR%%/stencils/Cisco/generic_processor.png %%DATADIR%%/stencils/Cisco/generic_softswitch.desktop %%DATADIR%%/stencils/Cisco/generic_softswitch.odg %%DATADIR%%/stencils/Cisco/generic_softswitch.png %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.desktop %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.odg %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.png %%DATADIR%%/stencils/Cisco/government_building.desktop %%DATADIR%%/stencils/Cisco/government_building.odg %%DATADIR%%/stencils/Cisco/government_building.png %%DATADIR%%/stencils/Cisco/guard.desktop %%DATADIR%%/stencils/Cisco/guard.odg %%DATADIR%%/stencils/Cisco/guard.png %%DATADIR%%/stencils/Cisco/h323.desktop %%DATADIR%%/stencils/Cisco/h323.odg %%DATADIR%%/stencils/Cisco/h323.png %%DATADIR%%/stencils/Cisco/handheld.desktop %%DATADIR%%/stencils/Cisco/handheld.odg %%DATADIR%%/stencils/Cisco/handheld.png %%DATADIR%%/stencils/Cisco/headphones.desktop %%DATADIR%%/stencils/Cisco/headphones.odg %%DATADIR%%/stencils/Cisco/headphones.png %%DATADIR%%/stencils/Cisco/home_office.desktop %%DATADIR%%/stencils/Cisco/home_office.odg %%DATADIR%%/stencils/Cisco/home_office.png %%DATADIR%%/stencils/Cisco/hootphone.desktop %%DATADIR%%/stencils/Cisco/hootphone.odg %%DATADIR%%/stencils/Cisco/hootphone.png %%DATADIR%%/stencils/Cisco/host.desktop %%DATADIR%%/stencils/Cisco/host.odg %%DATADIR%%/stencils/Cisco/host.png %%DATADIR%%/stencils/Cisco/house.desktop %%DATADIR%%/stencils/Cisco/house.odg %%DATADIR%%/stencils/Cisco/house.png %%DATADIR%%/stencils/Cisco/house_blue.desktop %%DATADIR%%/stencils/Cisco/house_blue.odg %%DATADIR%%/stencils/Cisco/house_blue.png %%DATADIR%%/stencils/Cisco/hp_mini.desktop %%DATADIR%%/stencils/Cisco/hp_mini.odg %%DATADIR%%/stencils/Cisco/hp_mini.png %%DATADIR%%/stencils/Cisco/hub.desktop %%DATADIR%%/stencils/Cisco/hub.odg %%DATADIR%%/stencils/Cisco/hub.png %%DATADIR%%/stencils/Cisco/hub_subdued.desktop %%DATADIR%%/stencils/Cisco/hub_subdued.odg %%DATADIR%%/stencils/Cisco/hub_subdued.png %%DATADIR%%/stencils/Cisco/iad_router.desktop %%DATADIR%%/stencils/Cisco/iad_router.odg %%DATADIR%%/stencils/Cisco/iad_router.png %%DATADIR%%/stencils/Cisco/ibm_mainframe.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe.png %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.png %%DATADIR%%/stencils/Cisco/ibm_mini.desktop %%DATADIR%%/stencils/Cisco/ibm_mini.odg %%DATADIR%%/stencils/Cisco/ibm_mini.png %%DATADIR%%/stencils/Cisco/ibm_tower.desktop %%DATADIR%%/stencils/Cisco/ibm_tower.odg %%DATADIR%%/stencils/Cisco/ibm_tower.png %%DATADIR%%/stencils/Cisco/icm.desktop %%DATADIR%%/stencils/Cisco/icm.odg %%DATADIR%%/stencils/Cisco/icm.png %%DATADIR%%/stencils/Cisco/ics.desktop %%DATADIR%%/stencils/Cisco/ics.odg %%DATADIR%%/stencils/Cisco/ics.png %%DATADIR%%/stencils/Cisco/intelliswitch_stack.desktop %%DATADIR%%/stencils/Cisco/intelliswitch_stack.odg %%DATADIR%%/stencils/Cisco/intelliswitch_stack.png %%DATADIR%%/stencils/Cisco/ios_firewall.desktop %%DATADIR%%/stencils/Cisco/ios_firewall.odg %%DATADIR%%/stencils/Cisco/ios_firewall.png %%DATADIR%%/stencils/Cisco/ios_slb.desktop %%DATADIR%%/stencils/Cisco/ios_slb.odg %%DATADIR%%/stencils/Cisco/ios_slb.png %%DATADIR%%/stencils/Cisco/ip.desktop %%DATADIR%%/stencils/Cisco/ip.odg %%DATADIR%%/stencils/Cisco/ip.png %%DATADIR%%/stencils/Cisco/ip_dsl.desktop %%DATADIR%%/stencils/Cisco/ip_dsl.odg %%DATADIR%%/stencils/Cisco/ip_dsl.png %%DATADIR%%/stencils/Cisco/ip_old-style.desktop %%DATADIR%%/stencils/Cisco/ip_old-style.odg %%DATADIR%%/stencils/Cisco/ip_old-style.png %%DATADIR%%/stencils/Cisco/ip_phone.desktop %%DATADIR%%/stencils/Cisco/ip_phone.odg %%DATADIR%%/stencils/Cisco/ip_phone.png %%DATADIR%%/stencils/Cisco/ip_softphone.desktop %%DATADIR%%/stencils/Cisco/ip_softphone.odg %%DATADIR%%/stencils/Cisco/ip_softphone.png %%DATADIR%%/stencils/Cisco/ip_telephony_router.desktop %%DATADIR%%/stencils/Cisco/ip_telephony_router.odg %%DATADIR%%/stencils/Cisco/ip_telephony_router.png %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.desktop %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.odg %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.png %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.desktop %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.odg %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.png %%DATADIR%%/stencils/Cisco/iptv_content_manager.desktop %%DATADIR%%/stencils/Cisco/iptv_content_manager.odg %%DATADIR%%/stencils/Cisco/iptv_content_manager.png %%DATADIR%%/stencils/Cisco/iscsi_switch.desktop %%DATADIR%%/stencils/Cisco/iscsi_switch.odg %%DATADIR%%/stencils/Cisco/iscsi_switch.png %%DATADIR%%/stencils/Cisco/isdn_switch.desktop %%DATADIR%%/stencils/Cisco/isdn_switch.odg %%DATADIR%%/stencils/Cisco/isdn_switch.png %%DATADIR%%/stencils/Cisco/itp.desktop %%DATADIR%%/stencils/Cisco/itp.odg %%DATADIR%%/stencils/Cisco/itp.png %%DATADIR%%/stencils/Cisco/jbod.desktop %%DATADIR%%/stencils/Cisco/jbod.odg %%DATADIR%%/stencils/Cisco/jbod.png %%DATADIR%%/stencils/Cisco/key.desktop %%DATADIR%%/stencils/Cisco/key.odg %%DATADIR%%/stencils/Cisco/key.png %%DATADIR%%/stencils/Cisco/label_switch_router.desktop %%DATADIR%%/stencils/Cisco/label_switch_router.odg %%DATADIR%%/stencils/Cisco/label_switch_router.png %%DATADIR%%/stencils/Cisco/lan2lan_switch.desktop %%DATADIR%%/stencils/Cisco/lan2lan_switch.odg %%DATADIR%%/stencils/Cisco/lan2lan_switch.png %%DATADIR%%/stencils/Cisco/lan_to_lan.desktop %%DATADIR%%/stencils/Cisco/lan_to_lan.odg %%DATADIR%%/stencils/Cisco/lan_to_lan.png %%DATADIR%%/stencils/Cisco/laptop.desktop %%DATADIR%%/stencils/Cisco/laptop.odg %%DATADIR%%/stencils/Cisco/laptop.png %%DATADIR%%/stencils/Cisco/layer3_switch.desktop %%DATADIR%%/stencils/Cisco/layer3_switch.odg %%DATADIR%%/stencils/Cisco/layer3_switch.png %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.desktop %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.odg %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.png %%DATADIR%%/stencils/Cisco/lightweight_ap.desktop %%DATADIR%%/stencils/Cisco/lightweight_ap.odg %%DATADIR%%/stencils/Cisco/lightweight_ap.png %%DATADIR%%/stencils/Cisco/localdirector.desktop %%DATADIR%%/stencils/Cisco/localdirector.odg %%DATADIR%%/stencils/Cisco/localdirector.png %%DATADIR%%/stencils/Cisco/location_server.desktop %%DATADIR%%/stencils/Cisco/location_server.odg %%DATADIR%%/stencils/Cisco/location_server.png %%DATADIR%%/stencils/Cisco/lock.desktop %%DATADIR%%/stencils/Cisco/lock.odg %%DATADIR%%/stencils/Cisco/lock.png %%DATADIR%%/stencils/Cisco/lock_and_key.desktop %%DATADIR%%/stencils/Cisco/lock_and_key.odg %%DATADIR%%/stencils/Cisco/lock_and_key.png %%DATADIR%%/stencils/Cisco/longreach_cpe.desktop %%DATADIR%%/stencils/Cisco/longreach_cpe.odg %%DATADIR%%/stencils/Cisco/longreach_cpe.png %%DATADIR%%/stencils/Cisco/mac_woman.desktop %%DATADIR%%/stencils/Cisco/mac_woman.odg %%DATADIR%%/stencils/Cisco/mac_woman.png %%DATADIR%%/stencils/Cisco/mac_woman_right.desktop %%DATADIR%%/stencils/Cisco/mac_woman_right.odg %%DATADIR%%/stencils/Cisco/mac_woman_right.png %%DATADIR%%/stencils/Cisco/macintosh.desktop %%DATADIR%%/stencils/Cisco/macintosh.odg %%DATADIR%%/stencils/Cisco/macintosh.png %%DATADIR%%/stencils/Cisco/man.desktop %%DATADIR%%/stencils/Cisco/man.odg %%DATADIR%%/stencils/Cisco/man.png %%DATADIR%%/stencils/Cisco/man_blue.desktop %%DATADIR%%/stencils/Cisco/man_blue.odg %%DATADIR%%/stencils/Cisco/man_blue.png %%DATADIR%%/stencils/Cisco/man_gold.desktop %%DATADIR%%/stencils/Cisco/man_gold.odg %%DATADIR%%/stencils/Cisco/man_gold.png %%DATADIR%%/stencils/Cisco/man_red.desktop %%DATADIR%%/stencils/Cisco/man_red.odg %%DATADIR%%/stencils/Cisco/man_red.png %%DATADIR%%/stencils/Cisco/man_woman.desktop %%DATADIR%%/stencils/Cisco/man_woman.odg %%DATADIR%%/stencils/Cisco/man_woman.png %%DATADIR%%/stencils/Cisco/mas_gateway.desktop %%DATADIR%%/stencils/Cisco/mas_gateway.odg %%DATADIR%%/stencils/Cisco/mas_gateway.png %%DATADIR%%/stencils/Cisco/mau.desktop %%DATADIR%%/stencils/Cisco/mau.odg %%DATADIR%%/stencils/Cisco/mau.png %%DATADIR%%/stencils/Cisco/mcu.desktop %%DATADIR%%/stencils/Cisco/mcu.odg %%DATADIR%%/stencils/Cisco/mcu.png %%DATADIR%%/stencils/Cisco/mdu.desktop %%DATADIR%%/stencils/Cisco/mdu.odg %%DATADIR%%/stencils/Cisco/mdu.png %%DATADIR%%/stencils/Cisco/me1100.desktop %%DATADIR%%/stencils/Cisco/me1100.odg %%DATADIR%%/stencils/Cisco/me1100.png %%DATADIR%%/stencils/Cisco/medium_building.desktop %%DATADIR%%/stencils/Cisco/medium_building.odg %%DATADIR%%/stencils/Cisco/medium_building.png %%DATADIR%%/stencils/Cisco/medium_building_blue.desktop %%DATADIR%%/stencils/Cisco/medium_building_blue.odg %%DATADIR%%/stencils/Cisco/medium_building_blue.png %%DATADIR%%/stencils/Cisco/medium_building_subdued.desktop %%DATADIR%%/stencils/Cisco/medium_building_subdued.odg %%DATADIR%%/stencils/Cisco/medium_building_subdued.png %%DATADIR%%/stencils/Cisco/metro1500.desktop %%DATADIR%%/stencils/Cisco/metro1500.odg %%DATADIR%%/stencils/Cisco/metro1500.png %%DATADIR%%/stencils/Cisco/mgx8240.desktop %%DATADIR%%/stencils/Cisco/mgx8240.odg %%DATADIR%%/stencils/Cisco/mgx8240.png %%DATADIR%%/stencils/Cisco/mgx8220.desktop %%DATADIR%%/stencils/Cisco/mgx8220.odg %%DATADIR%%/stencils/Cisco/mgx8220.png %%DATADIR%%/stencils/Cisco/mgx8260.desktop %%DATADIR%%/stencils/Cisco/mgx8260.odg %%DATADIR%%/stencils/Cisco/mgx8260.png %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.desktop %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.odg %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.png %%DATADIR%%/stencils/Cisco/microphone.desktop %%DATADIR%%/stencils/Cisco/microphone.odg %%DATADIR%%/stencils/Cisco/microphone.png %%DATADIR%%/stencils/Cisco/microwebserver.desktop %%DATADIR%%/stencils/Cisco/microwebserver.odg %%DATADIR%%/stencils/Cisco/microwebserver.png %%DATADIR%%/stencils/Cisco/mini_vax.desktop %%DATADIR%%/stencils/Cisco/mini_vax.odg %%DATADIR%%/stencils/Cisco/mini_vax.png %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.desktop %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.odg %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.png %%DATADIR%%/stencils/Cisco/mobile_access_router.desktop %%DATADIR%%/stencils/Cisco/mobile_access_router.odg %%DATADIR%%/stencils/Cisco/mobile_access_router.png %%DATADIR%%/stencils/Cisco/modem.desktop %%DATADIR%%/stencils/Cisco/modem.odg %%DATADIR%%/stencils/Cisco/modem.png %%DATADIR%%/stencils/Cisco/moh_server.desktop %%DATADIR%%/stencils/Cisco/moh_server.odg %%DATADIR%%/stencils/Cisco/moh_server.png %%DATADIR%%/stencils/Cisco/monitor.desktop %%DATADIR%%/stencils/Cisco/monitor.odg %%DATADIR%%/stencils/Cisco/monitor.png %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.desktop %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.odg %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.png %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.png %%DATADIR%%/stencils/Cisco/multiswitch_device.desktop %%DATADIR%%/stencils/Cisco/multiswitch_device.odg %%DATADIR%%/stencils/Cisco/multiswitch_device.png %%DATADIR%%/stencils/Cisco/mux.desktop %%DATADIR%%/stencils/Cisco/mux.odg %%DATADIR%%/stencils/Cisco/mux.png %%DATADIR%%/stencils/Cisco/nat.desktop %%DATADIR%%/stencils/Cisco/nat.odg %%DATADIR%%/stencils/Cisco/nat.png %%DATADIR%%/stencils/Cisco/netflow_router.desktop %%DATADIR%%/stencils/Cisco/netflow_router.odg %%DATADIR%%/stencils/Cisco/netflow_router.png %%DATADIR%%/stencils/Cisco/netranger.desktop %%DATADIR%%/stencils/Cisco/netranger.odg %%DATADIR%%/stencils/Cisco/netranger.png %%DATADIR%%/stencils/Cisco/netsonar.desktop %%DATADIR%%/stencils/Cisco/netsonar.odg %%DATADIR%%/stencils/Cisco/netsonar.png %%DATADIR%%/stencils/Cisco/network_management.desktop %%DATADIR%%/stencils/Cisco/network_management.odg %%DATADIR%%/stencils/Cisco/network_management.png %%DATADIR%%/stencils/Cisco/newton.desktop %%DATADIR%%/stencils/Cisco/newton.odg %%DATADIR%%/stencils/Cisco/newton.png %%DATADIR%%/stencils/Cisco/octel.desktop %%DATADIR%%/stencils/Cisco/octel.odg %%DATADIR%%/stencils/Cisco/octel.png %%DATADIR%%/stencils/Cisco/ons15104.desktop %%DATADIR%%/stencils/Cisco/ons15104.odg %%DATADIR%%/stencils/Cisco/ons15104.png %%DATADIR%%/stencils/Cisco/ons15540.desktop %%DATADIR%%/stencils/Cisco/ons15540.odg %%DATADIR%%/stencils/Cisco/ons15540.png %%DATADIR%%/stencils/Cisco/optical_amplifier.desktop %%DATADIR%%/stencils/Cisco/optical_amplifier.odg %%DATADIR%%/stencils/Cisco/optical_amplifier.png %%DATADIR%%/stencils/Cisco/optical_cross-connect.desktop %%DATADIR%%/stencils/Cisco/optical_cross-connect.odg %%DATADIR%%/stencils/Cisco/optical_cross-connect.png %%DATADIR%%/stencils/Cisco/optical_fiber.desktop %%DATADIR%%/stencils/Cisco/optical_fiber.odg %%DATADIR%%/stencils/Cisco/optical_fiber.png %%DATADIR%%/stencils/Cisco/optical_services_router.desktop %%DATADIR%%/stencils/Cisco/optical_services_router.odg %%DATADIR%%/stencils/Cisco/optical_services_router.png %%DATADIR%%/stencils/Cisco/optical_transport.desktop %%DATADIR%%/stencils/Cisco/optical_transport.odg %%DATADIR%%/stencils/Cisco/optical_transport.png %%DATADIR%%/stencils/Cisco/pad.desktop %%DATADIR%%/stencils/Cisco/pad.odg %%DATADIR%%/stencils/Cisco/pad.png %%DATADIR%%/stencils/Cisco/pager.desktop %%DATADIR%%/stencils/Cisco/pager.odg %%DATADIR%%/stencils/Cisco/pager.png %%DATADIR%%/stencils/Cisco/pbx.desktop %%DATADIR%%/stencils/Cisco/pbx.odg %%DATADIR%%/stencils/Cisco/pbx.png %%DATADIR%%/stencils/Cisco/pbx_switch.desktop %%DATADIR%%/stencils/Cisco/pbx_switch.odg %%DATADIR%%/stencils/Cisco/pbx_switch.png %%DATADIR%%/stencils/Cisco/pc.desktop %%DATADIR%%/stencils/Cisco/pc.odg %%DATADIR%%/stencils/Cisco/pc.png %%DATADIR%%/stencils/Cisco/pc_adapter_card.desktop %%DATADIR%%/stencils/Cisco/pc_adapter_card.odg %%DATADIR%%/stencils/Cisco/pc_adapter_card.png %%DATADIR%%/stencils/Cisco/pc_card.desktop %%DATADIR%%/stencils/Cisco/pc_card.odg %%DATADIR%%/stencils/Cisco/pc_card.png %%DATADIR%%/stencils/Cisco/pc_man.desktop %%DATADIR%%/stencils/Cisco/pc_man.odg %%DATADIR%%/stencils/Cisco/pc_man.png %%DATADIR%%/stencils/Cisco/pc_man_left.desktop %%DATADIR%%/stencils/Cisco/pc_man_left.odg %%DATADIR%%/stencils/Cisco/pc_man_left.png %%DATADIR%%/stencils/Cisco/pc_router_card.desktop %%DATADIR%%/stencils/Cisco/pc_router_card.odg %%DATADIR%%/stencils/Cisco/pc_router_card.png %%DATADIR%%/stencils/Cisco/pc_software.desktop %%DATADIR%%/stencils/Cisco/pc_software.odg %%DATADIR%%/stencils/Cisco/pc_software.png %%DATADIR%%/stencils/Cisco/pc_video.desktop %%DATADIR%%/stencils/Cisco/pc_video.odg %%DATADIR%%/stencils/Cisco/pc_video.png %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.desktop %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.odg %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.png %%DATADIR%%/stencils/Cisco/pda.desktop %%DATADIR%%/stencils/Cisco/pda.odg %%DATADIR%%/stencils/Cisco/pda.png %%DATADIR%%/stencils/Cisco/phone.desktop %%DATADIR%%/stencils/Cisco/phone.odg %%DATADIR%%/stencils/Cisco/phone.png %%DATADIR%%/stencils/Cisco/phone_2.desktop %%DATADIR%%/stencils/Cisco/phone_2.odg %%DATADIR%%/stencils/Cisco/phone_2.png %%DATADIR%%/stencils/Cisco/phone_appliance.desktop %%DATADIR%%/stencils/Cisco/phone_appliance.odg %%DATADIR%%/stencils/Cisco/phone_appliance.png %%DATADIR%%/stencils/Cisco/phone_ethernet.desktop %%DATADIR%%/stencils/Cisco/phone_ethernet.odg %%DATADIR%%/stencils/Cisco/phone_ethernet.png %%DATADIR%%/stencils/Cisco/phone_fax.desktop %%DATADIR%%/stencils/Cisco/phone_fax.odg %%DATADIR%%/stencils/Cisco/phone_fax.png %%DATADIR%%/stencils/Cisco/phone_feature.desktop %%DATADIR%%/stencils/Cisco/phone_feature.odg %%DATADIR%%/stencils/Cisco/phone_feature.png %%DATADIR%%/stencils/Cisco/pix_firewall.desktop %%DATADIR%%/stencils/Cisco/pix_firewall.odg %%DATADIR%%/stencils/Cisco/pix_firewall.png %%DATADIR%%/stencils/Cisco/pix_firewall_left.desktop %%DATADIR%%/stencils/Cisco/pix_firewall_left.odg %%DATADIR%%/stencils/Cisco/pix_firewall_left.png %%DATADIR%%/stencils/Cisco/printer.desktop %%DATADIR%%/stencils/Cisco/printer.odg %%DATADIR%%/stencils/Cisco/printer.png %%DATADIR%%/stencils/Cisco/programmable_switch.desktop %%DATADIR%%/stencils/Cisco/programmable_switch.odg %%DATADIR%%/stencils/Cisco/programmable_switch.png %%DATADIR%%/stencils/Cisco/protocol_translator.desktop %%DATADIR%%/stencils/Cisco/protocol_translator.odg %%DATADIR%%/stencils/Cisco/protocol_translator.png %%DATADIR%%/stencils/Cisco/pxf.desktop %%DATADIR%%/stencils/Cisco/pxf.odg %%DATADIR%%/stencils/Cisco/pxf.png %%DATADIR%%/stencils/Cisco/radio_tower.desktop %%DATADIR%%/stencils/Cisco/radio_tower.odg %%DATADIR%%/stencils/Cisco/radio_tower.png %%DATADIR%%/stencils/Cisco/ratemux.desktop %%DATADIR%%/stencils/Cisco/ratemux.odg %%DATADIR%%/stencils/Cisco/ratemux.png %%DATADIR%%/stencils/Cisco/relational_database.desktop %%DATADIR%%/stencils/Cisco/relational_database.odg %%DATADIR%%/stencils/Cisco/relational_database.png %%DATADIR%%/stencils/Cisco/repeater.desktop %%DATADIR%%/stencils/Cisco/repeater.odg %%DATADIR%%/stencils/Cisco/repeater.png %%DATADIR%%/stencils/Cisco/route_switch_processor.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor.odg %%DATADIR%%/stencils/Cisco/route_switch_processor.png %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.odg %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.png %%DATADIR%%/stencils/Cisco/router.desktop %%DATADIR%%/stencils/Cisco/router.odg %%DATADIR%%/stencils/Cisco/router.png %%DATADIR%%/stencils/Cisco/router_in_building.desktop %%DATADIR%%/stencils/Cisco/router_in_building.odg %%DATADIR%%/stencils/Cisco/router_in_building.png %%DATADIR%%/stencils/Cisco/router_subdued.desktop %%DATADIR%%/stencils/Cisco/router_subdued.odg %%DATADIR%%/stencils/Cisco/router_subdued.png %%DATADIR%%/stencils/Cisco/router_with_firewall.desktop %%DATADIR%%/stencils/Cisco/router_with_firewall.odg %%DATADIR%%/stencils/Cisco/router_with_firewall.png %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.desktop %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.odg %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.png %%DATADIR%%/stencils/Cisco/rps.desktop %%DATADIR%%/stencils/Cisco/rps.odg %%DATADIR%%/stencils/Cisco/rps.png %%DATADIR%%/stencils/Cisco/running_man.desktop %%DATADIR%%/stencils/Cisco/running_man.odg %%DATADIR%%/stencils/Cisco/running_man.png %%DATADIR%%/stencils/Cisco/running_man_subdued.desktop %%DATADIR%%/stencils/Cisco/running_man_subdued.odg %%DATADIR%%/stencils/Cisco/running_man_subdued.png %%DATADIR%%/stencils/Cisco/running_woman.desktop %%DATADIR%%/stencils/Cisco/running_woman.odg %%DATADIR%%/stencils/Cisco/running_woman.png %%DATADIR%%/stencils/Cisco/satellite.desktop %%DATADIR%%/stencils/Cisco/satellite.odg %%DATADIR%%/stencils/Cisco/satellite.png %%DATADIR%%/stencils/Cisco/satellite_dish.desktop %%DATADIR%%/stencils/Cisco/satellite_dish.odg %%DATADIR%%/stencils/Cisco/satellite_dish.png %%DATADIR%%/stencils/Cisco/sc2200.desktop %%DATADIR%%/stencils/Cisco/sc2200.odg %%DATADIR%%/stencils/Cisco/sc2200.png %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.desktop %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.odg %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.png %%DATADIR%%/stencils/Cisco/scanner.desktop %%DATADIR%%/stencils/Cisco/scanner.odg %%DATADIR%%/stencils/Cisco/scanner.png %%DATADIR%%/stencils/Cisco/security_appliance.desktop %%DATADIR%%/stencils/Cisco/security_appliance.odg %%DATADIR%%/stencils/Cisco/security_appliance.png %%DATADIR%%/stencils/Cisco/server_switch.desktop %%DATADIR%%/stencils/Cisco/server_switch.odg %%DATADIR%%/stencils/Cisco/server_switch.png %%DATADIR%%/stencils/Cisco/server_with_pc_router.desktop %%DATADIR%%/stencils/Cisco/server_with_pc_router.odg %%DATADIR%%/stencils/Cisco/server_with_pc_router.png %%DATADIR%%/stencils/Cisco/service_control.desktop %%DATADIR%%/stencils/Cisco/service_control.odg %%DATADIR%%/stencils/Cisco/service_control.png %%DATADIR%%/stencils/Cisco/sip_proxy_server.desktop %%DATADIR%%/stencils/Cisco/sip_proxy_server.odg %%DATADIR%%/stencils/Cisco/sip_proxy_server.png %%DATADIR%%/stencils/Cisco/sitting_woman.desktop %%DATADIR%%/stencils/Cisco/sitting_woman.odg %%DATADIR%%/stencils/Cisco/sitting_woman.png %%DATADIR%%/stencils/Cisco/small_business.desktop %%DATADIR%%/stencils/Cisco/small_business.odg %%DATADIR%%/stencils/Cisco/small_business.png %%DATADIR%%/stencils/Cisco/small_hub.desktop %%DATADIR%%/stencils/Cisco/small_hub.odg %%DATADIR%%/stencils/Cisco/small_hub.png %%DATADIR%%/stencils/Cisco/softphone.desktop %%DATADIR%%/stencils/Cisco/softphone.odg %%DATADIR%%/stencils/Cisco/softphone.png %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.desktop %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.odg %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.png %%DATADIR%%/stencils/Cisco/sonet_mux.desktop %%DATADIR%%/stencils/Cisco/sonet_mux.odg %%DATADIR%%/stencils/Cisco/sonet_mux.png %%DATADIR%%/stencils/Cisco/speaker.desktop %%DATADIR%%/stencils/Cisco/speaker.odg %%DATADIR%%/stencils/Cisco/speaker.png %%DATADIR%%/stencils/Cisco/ssl_terminator.desktop %%DATADIR%%/stencils/Cisco/ssl_terminator.odg %%DATADIR%%/stencils/Cisco/ssl_terminator.png %%DATADIR%%/stencils/Cisco/standing_man.desktop %%DATADIR%%/stencils/Cisco/standing_man.odg %%DATADIR%%/stencils/Cisco/standing_man.png %%DATADIR%%/stencils/Cisco/stb.desktop %%DATADIR%%/stencils/Cisco/stb.odg %%DATADIR%%/stencils/Cisco/stb.png %%DATADIR%%/stencils/Cisco/storage_array.desktop %%DATADIR%%/stencils/Cisco/storage_array.odg %%DATADIR%%/stencils/Cisco/storage_array.png %%DATADIR%%/stencils/Cisco/storage_router.desktop %%DATADIR%%/stencils/Cisco/storage_router.odg %%DATADIR%%/stencils/Cisco/storage_router.png %%DATADIR%%/stencils/Cisco/storage_solution_engine.desktop %%DATADIR%%/stencils/Cisco/storage_solution_engine.odg %%DATADIR%%/stencils/Cisco/storage_solution_engine.png %%DATADIR%%/stencils/Cisco/stp.desktop %%DATADIR%%/stencils/Cisco/stp.odg %%DATADIR%%/stencils/Cisco/stp.png %%DATADIR%%/stencils/Cisco/sun_workstation.desktop %%DATADIR%%/stencils/Cisco/sun_workstation.odg %%DATADIR%%/stencils/Cisco/sun_workstation.png %%DATADIR%%/stencils/Cisco/supercomputer.desktop %%DATADIR%%/stencils/Cisco/supercomputer.odg %%DATADIR%%/stencils/Cisco/supercomputer.png %%DATADIR%%/stencils/Cisco/svx.desktop %%DATADIR%%/stencils/Cisco/svx.odg %%DATADIR%%/stencils/Cisco/svx.png %%DATADIR%%/stencils/Cisco/switch_processor.desktop %%DATADIR%%/stencils/Cisco/switch_processor.odg %%DATADIR%%/stencils/Cisco/switch_processor.png %%DATADIR%%/stencils/Cisco/system_controller.desktop %%DATADIR%%/stencils/Cisco/system_controller.odg %%DATADIR%%/stencils/Cisco/system_controller.png %%DATADIR%%/stencils/Cisco/tablet.desktop %%DATADIR%%/stencils/Cisco/tablet.odg %%DATADIR%%/stencils/Cisco/tablet.png %%DATADIR%%/stencils/Cisco/tape_array.desktop %%DATADIR%%/stencils/Cisco/tape_array.odg %%DATADIR%%/stencils/Cisco/tape_array.png %%DATADIR%%/stencils/Cisco/tdm_router.desktop %%DATADIR%%/stencils/Cisco/tdm_router.odg %%DATADIR%%/stencils/Cisco/tdm_router.png %%DATADIR%%/stencils/Cisco/telecommuter.desktop %%DATADIR%%/stencils/Cisco/telecommuter.odg %%DATADIR%%/stencils/Cisco/telecommuter.png %%DATADIR%%/stencils/Cisco/telecommuter_house.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house.odg %%DATADIR%%/stencils/Cisco/telecommuter_house.png %%DATADIR%%/stencils/Cisco/telecommuter_house_router.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_router.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_router.png %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.png %%DATADIR%%/stencils/Cisco/terminal.desktop %%DATADIR%%/stencils/Cisco/terminal.odg %%DATADIR%%/stencils/Cisco/terminal.png %%DATADIR%%/stencils/Cisco/terminal_server.desktop %%DATADIR%%/stencils/Cisco/terminal_server.odg %%DATADIR%%/stencils/Cisco/terminal_server.png %%DATADIR%%/stencils/Cisco/tokenring.desktop %%DATADIR%%/stencils/Cisco/tokenring.odg %%DATADIR%%/stencils/Cisco/tokenring.png %%DATADIR%%/stencils/Cisco/transpath.desktop %%DATADIR%%/stencils/Cisco/transpath.odg %%DATADIR%%/stencils/Cisco/transpath.png %%DATADIR%%/stencils/Cisco/truck.desktop %%DATADIR%%/stencils/Cisco/truck.odg %%DATADIR%%/stencils/Cisco/truck.png %%DATADIR%%/stencils/Cisco/turret.desktop %%DATADIR%%/stencils/Cisco/turret.odg %%DATADIR%%/stencils/Cisco/turret.png %%DATADIR%%/stencils/Cisco/tv.desktop %%DATADIR%%/stencils/Cisco/tv.odg %%DATADIR%%/stencils/Cisco/tv.png %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.desktop %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.odg %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.png %%DATADIR%%/stencils/Cisco/umg_series.desktop %%DATADIR%%/stencils/Cisco/umg_series.odg %%DATADIR%%/stencils/Cisco/umg_series.png %%DATADIR%%/stencils/Cisco/unity_express.desktop %%DATADIR%%/stencils/Cisco/unity_express.odg %%DATADIR%%/stencils/Cisco/unity_express.png %%DATADIR%%/stencils/Cisco/unity_server.desktop %%DATADIR%%/stencils/Cisco/unity_server.odg %%DATADIR%%/stencils/Cisco/unity_server.png %%DATADIR%%/stencils/Cisco/universal_gateway.desktop %%DATADIR%%/stencils/Cisco/universal_gateway.odg %%DATADIR%%/stencils/Cisco/universal_gateway.png %%DATADIR%%/stencils/Cisco/university.desktop %%DATADIR%%/stencils/Cisco/university.odg %%DATADIR%%/stencils/Cisco/university.png %%DATADIR%%/stencils/Cisco/ups.desktop %%DATADIR%%/stencils/Cisco/ups.odg %%DATADIR%%/stencils/Cisco/ups.png %%DATADIR%%/stencils/Cisco/video_camera.desktop %%DATADIR%%/stencils/Cisco/video_camera.odg %%DATADIR%%/stencils/Cisco/video_camera.png %%DATADIR%%/stencils/Cisco/video_camera_right.desktop %%DATADIR%%/stencils/Cisco/video_camera_right.odg %%DATADIR%%/stencils/Cisco/video_camera_right.png %%DATADIR%%/stencils/Cisco/vip.desktop %%DATADIR%%/stencils/Cisco/vip.odg %%DATADIR%%/stencils/Cisco/vip.png %%DATADIR%%/stencils/Cisco/virtual_layer_switch.desktop %%DATADIR%%/stencils/Cisco/virtual_layer_switch.odg %%DATADIR%%/stencils/Cisco/virtual_layer_switch.png %%DATADIR%%/stencils/Cisco/vn2900.desktop %%DATADIR%%/stencils/Cisco/vn2900.odg %%DATADIR%%/stencils/Cisco/vn2900.png %%DATADIR%%/stencils/Cisco/vn5900.desktop %%DATADIR%%/stencils/Cisco/vn5900.odg %%DATADIR%%/stencils/Cisco/vn5900.png %%DATADIR%%/stencils/Cisco/vn5902.desktop %%DATADIR%%/stencils/Cisco/vn5902.odg %%DATADIR%%/stencils/Cisco/vn5902.png %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.odg %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.png %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.odg %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.png %%DATADIR%%/stencils/Cisco/voice-enabled_router.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_router.odg %%DATADIR%%/stencils/Cisco/voice-enabled_router.png %%DATADIR%%/stencils/Cisco/voice_switch2.desktop %%DATADIR%%/stencils/Cisco/voice_switch2.odg %%DATADIR%%/stencils/Cisco/voice_switch2.png %%DATADIR%%/stencils/Cisco/vpn_concentrator.desktop %%DATADIR%%/stencils/Cisco/vpn_concentrator.odg %%DATADIR%%/stencils/Cisco/vpn_concentrator.png %%DATADIR%%/stencils/Cisco/vpn_gateway.desktop %%DATADIR%%/stencils/Cisco/vpn_gateway.odg %%DATADIR%%/stencils/Cisco/vpn_gateway.png %%DATADIR%%/stencils/Cisco/vsc3000.desktop %%DATADIR%%/stencils/Cisco/vsc3000.odg %%DATADIR%%/stencils/Cisco/vsc3000.png %%DATADIR%%/stencils/Cisco/wan.desktop %%DATADIR%%/stencils/Cisco/wan.odg %%DATADIR%%/stencils/Cisco/wan.png %%DATADIR%%/stencils/Cisco/wavelength_router.desktop %%DATADIR%%/stencils/Cisco/wavelength_router.odg %%DATADIR%%/stencils/Cisco/wavelength_router.png %%DATADIR%%/stencils/Cisco/wdm.desktop %%DATADIR%%/stencils/Cisco/wdm.odg %%DATADIR%%/stencils/Cisco/wdm.png %%DATADIR%%/stencils/Cisco/web_browser.desktop %%DATADIR%%/stencils/Cisco/web_browser.odg %%DATADIR%%/stencils/Cisco/web_browser.png %%DATADIR%%/stencils/Cisco/web_cluster.desktop %%DATADIR%%/stencils/Cisco/web_cluster.odg %%DATADIR%%/stencils/Cisco/web_cluster.png %%DATADIR%%/stencils/Cisco/wi-fi_tag.desktop %%DATADIR%%/stencils/Cisco/wi-fi_tag.odg %%DATADIR%%/stencils/Cisco/wi-fi_tag.png %%DATADIR%%/stencils/Cisco/wireless.desktop %%DATADIR%%/stencils/Cisco/wireless.odg %%DATADIR%%/stencils/Cisco/wireless.png %%DATADIR%%/stencils/Cisco/wireless_bridge.desktop %%DATADIR%%/stencils/Cisco/wireless_bridge.odg %%DATADIR%%/stencils/Cisco/wireless_bridge.png %%DATADIR%%/stencils/Cisco/wireless_connectivity.desktop %%DATADIR%%/stencils/Cisco/wireless_connectivity.odg %%DATADIR%%/stencils/Cisco/wireless_connectivity.png %%DATADIR%%/stencils/Cisco/wireless_location_appliance.desktop %%DATADIR%%/stencils/Cisco/wireless_location_appliance.odg %%DATADIR%%/stencils/Cisco/wireless_location_appliance.png %%DATADIR%%/stencils/Cisco/wireless_router.desktop %%DATADIR%%/stencils/Cisco/wireless_router.odg %%DATADIR%%/stencils/Cisco/wireless_router.png %%DATADIR%%/stencils/Cisco/wireless_transport.desktop %%DATADIR%%/stencils/Cisco/wireless_transport.odg %%DATADIR%%/stencils/Cisco/wireless_transport.png %%DATADIR%%/stencils/Cisco/wlan_controller.desktop %%DATADIR%%/stencils/Cisco/wlan_controller.odg %%DATADIR%%/stencils/Cisco/wlan_controller.png %%DATADIR%%/stencils/Cisco/woman.desktop %%DATADIR%%/stencils/Cisco/woman.odg %%DATADIR%%/stencils/Cisco/woman.png %%DATADIR%%/stencils/Cisco/woman_blue.desktop %%DATADIR%%/stencils/Cisco/woman_blue.odg %%DATADIR%%/stencils/Cisco/woman_blue.png %%DATADIR%%/stencils/Cisco/woman_gold.desktop %%DATADIR%%/stencils/Cisco/woman_gold.odg %%DATADIR%%/stencils/Cisco/woman_gold.png %%DATADIR%%/stencils/Cisco/woman_red.desktop %%DATADIR%%/stencils/Cisco/woman_red.odg %%DATADIR%%/stencils/Cisco/woman_red.png %%DATADIR%%/stencils/Cisco/workgroup_director.desktop %%DATADIR%%/stencils/Cisco/workgroup_director.odg %%DATADIR%%/stencils/Cisco/workgroup_director.png %%DATADIR%%/stencils/Cisco/workgroup_fcis.desktop %%DATADIR%%/stencils/Cisco/workgroup_fcis.odg %%DATADIR%%/stencils/Cisco/workgroup_fcis.png %%DATADIR%%/stencils/Cisco/workgroup_switch.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch.odg %%DATADIR%%/stencils/Cisco/workgroup_switch.png %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.png %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.png %%DATADIR%%/stencils/Cisco/workstation.desktop %%DATADIR%%/stencils/Cisco/workstation.odg %%DATADIR%%/stencils/Cisco/workstation.png %%DATADIR%%/stencils/Cisco/www_server.desktop %%DATADIR%%/stencils/Cisco/www_server.odg %%DATADIR%%/stencils/Cisco/www_server.png %%DATADIR%%/stencils/Civil/bvrest.desktop %%DATADIR%%/stencils/Civil/bvrest.odg %%DATADIR%%/stencils/Civil/bvrest.png %%DATADIR%%/stencils/Civil/civil_aerator.desktop %%DATADIR%%/stencils/Civil/civil_aerator.odg %%DATADIR%%/stencils/Civil/civil_aerator.png %%DATADIR%%/stencils/Civil/civil_arrow_right.desktop %%DATADIR%%/stencils/Civil/civil_arrow_right.odg %%DATADIR%%/stencils/Civil/civil_arrow_right.png %%DATADIR%%/stencils/Civil/civil_arrow_up.desktop %%DATADIR%%/stencils/Civil/civil_arrow_up.odg %%DATADIR%%/stencils/Civil/civil_arrow_up.png %%DATADIR%%/stencils/Civil/civil_backflow_preventer.desktop %%DATADIR%%/stencils/Civil/civil_backflow_preventer.odg %%DATADIR%%/stencils/Civil/civil_backflow_preventer.png %%DATADIR%%/stencils/Civil/civil_basin.desktop %%DATADIR%%/stencils/Civil/civil_basin.odg %%DATADIR%%/stencils/Civil/civil_basin.png %%DATADIR%%/stencils/Civil/civil_container.desktop %%DATADIR%%/stencils/Civil/civil_container.odg %%DATADIR%%/stencils/Civil/civil_container.png %%DATADIR%%/stencils/Civil/civil_final-settling_basin.desktop %%DATADIR%%/stencils/Civil/civil_final-settling_basin.odg %%DATADIR%%/stencils/Civil/civil_final-settling_basin.png %%DATADIR%%/stencils/Civil/civil_frequency_converter.desktop %%DATADIR%%/stencils/Civil/civil_frequency_converter.odg %%DATADIR%%/stencils/Civil/civil_frequency_converter.png %%DATADIR%%/stencils/Civil/civil_gas_bottle.desktop %%DATADIR%%/stencils/Civil/civil_gas_bottle.odg %%DATADIR%%/stencils/Civil/civil_gas_bottle.png %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.png %%DATADIR%%/stencils/Civil/civil_horizontal_valve.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_valve.odg %%DATADIR%%/stencils/Civil/civil_horizontal_valve.png %%DATADIR%%/stencils/Civil/civil_motor.desktop %%DATADIR%%/stencils/Civil/civil_motor.odg %%DATADIR%%/stencils/Civil/civil_motor.png %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.desktop %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.odg %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.png %%DATADIR%%/stencils/Civil/civil_rotor.desktop %%DATADIR%%/stencils/Civil/civil_rotor.odg %%DATADIR%%/stencils/Civil/civil_rotor.png %%DATADIR%%/stencils/Civil/civil_soil.desktop %%DATADIR%%/stencils/Civil/civil_soil.odg %%DATADIR%%/stencils/Civil/civil_soil.png %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.png %%DATADIR%%/stencils/Civil/civil_vertical_propeller.desktop %%DATADIR%%/stencils/Civil/civil_vertical_propeller.odg %%DATADIR%%/stencils/Civil/civil_vertical_propeller.png %%DATADIR%%/stencils/Civil/collection.desktop %%DATADIR%%/stencils/Civil/hcompressor.desktop %%DATADIR%%/stencils/Civil/hcompressor.odg %%DATADIR%%/stencils/Civil/hcompressor.png %%DATADIR%%/stencils/Civil/hpump.desktop %%DATADIR%%/stencils/Civil/hpump.odg %%DATADIR%%/stencils/Civil/hpump.png %%DATADIR%%/stencils/Civil/hrest.desktop %%DATADIR%%/stencils/Civil/hrest.odg %%DATADIR%%/stencils/Civil/hrest.png %%DATADIR%%/stencils/Civil/line.desktop %%DATADIR%%/stencils/Civil/line.odg %%DATADIR%%/stencils/Civil/line.png %%DATADIR%%/stencils/Civil/vcompressor.desktop %%DATADIR%%/stencils/Civil/vcompressor.odg %%DATADIR%%/stencils/Civil/vcompressor.png %%DATADIR%%/stencils/Civil/vpump.desktop %%DATADIR%%/stencils/Civil/vpump.odg %%DATADIR%%/stencils/Civil/vpump.png %%DATADIR%%/stencils/Civil/vrest.desktop %%DATADIR%%/stencils/Civil/vrest.odg %%DATADIR%%/stencils/Civil/vrest.png %%DATADIR%%/stencils/Civil/water_level.desktop %%DATADIR%%/stencils/Civil/water_level.odg %%DATADIR%%/stencils/Civil/water_level.png %%DATADIR%%/stencils/Contact/c_if.desktop %%DATADIR%%/stencils/Contact/c_if.odg %%DATADIR%%/stencils/Contact/c_if.png %%DATADIR%%/stencils/Contact/c_ifnot.desktop %%DATADIR%%/stencils/Contact/c_ifnot.odg %%DATADIR%%/stencils/Contact/c_ifnot.png %%DATADIR%%/stencils/Contact/c_lamp.desktop %%DATADIR%%/stencils/Contact/c_lamp.odg %%DATADIR%%/stencils/Contact/c_lamp.png %%DATADIR%%/stencils/Contact/c_relay.desktop %%DATADIR%%/stencils/Contact/c_relay.odg %%DATADIR%%/stencils/Contact/c_relay.png %%DATADIR%%/stencils/Contact/collection.desktop %%DATADIR%%/stencils/Contact/l_if.desktop %%DATADIR%%/stencils/Contact/l_if.odg %%DATADIR%%/stencils/Contact/l_if.png %%DATADIR%%/stencils/Contact/l_ifnot.desktop %%DATADIR%%/stencils/Contact/l_ifnot.odg %%DATADIR%%/stencils/Contact/l_ifnot.png %%DATADIR%%/stencils/Contact/l_out.desktop %%DATADIR%%/stencils/Contact/l_out.odg %%DATADIR%%/stencils/Contact/l_out.png %%DATADIR%%/stencils/Contact/l_outj.desktop %%DATADIR%%/stencils/Contact/l_outj.odg %%DATADIR%%/stencils/Contact/l_outj.png %%DATADIR%%/stencils/Contact/l_outnot.desktop %%DATADIR%%/stencils/Contact/l_outnot.odg %%DATADIR%%/stencils/Contact/l_outnot.png %%DATADIR%%/stencils/Contact/l_outr.desktop %%DATADIR%%/stencils/Contact/l_outr.odg %%DATADIR%%/stencils/Contact/l_outr.png %%DATADIR%%/stencils/Contact/l_outrcep.desktop %%DATADIR%%/stencils/Contact/l_outrcep.odg %%DATADIR%%/stencils/Contact/l_outrcep.png %%DATADIR%%/stencils/Contact/l_outs.desktop %%DATADIR%%/stencils/Contact/l_outs.odg %%DATADIR%%/stencils/Contact/l_outs.png %%DATADIR%%/stencils/Contact/l_sout.desktop %%DATADIR%%/stencils/Contact/l_sout.odg %%DATADIR%%/stencils/Contact/l_sout.png %%DATADIR%%/stencils/Contact/l_soutnot.desktop %%DATADIR%%/stencils/Contact/l_soutnot.odg %%DATADIR%%/stencils/Contact/l_soutnot.png %%DATADIR%%/stencils/Contact/l_soutr.desktop %%DATADIR%%/stencils/Contact/l_soutr.odg %%DATADIR%%/stencils/Contact/l_soutr.png %%DATADIR%%/stencils/Contact/l_souts.desktop %%DATADIR%%/stencils/Contact/l_souts.odg %%DATADIR%%/stencils/Contact/l_souts.png %%DATADIR%%/stencils/Cybernetics/b-integrator.desktop %%DATADIR%%/stencils/Cybernetics/b-integrator.odg %%DATADIR%%/stencils/Cybernetics/b-integrator.png %%DATADIR%%/stencils/Cybernetics/b-minus.desktop %%DATADIR%%/stencils/Cybernetics/b-minus.odg %%DATADIR%%/stencils/Cybernetics/b-minus.png %%DATADIR%%/stencils/Cybernetics/b-sens.desktop %%DATADIR%%/stencils/Cybernetics/b-sens.odg %%DATADIR%%/stencils/Cybernetics/b-sens.png %%DATADIR%%/stencils/Cybernetics/collection.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.odg %%DATADIR%%/stencils/Cybernetics/delta-t.png %%DATADIR%%/stencils/Cybernetics/empty-func.desktop %%DATADIR%%/stencils/Cybernetics/empty-func.odg %%DATADIR%%/stencils/Cybernetics/empty-func.png %%DATADIR%%/stencils/Cybernetics/factor-0to-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to-1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to-1.png %%DATADIR%%/stencils/Cybernetics/factor-0to1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to1.png %%DATADIR%%/stencils/Cybernetics/factor-greater1.desktop %%DATADIR%%/stencils/Cybernetics/factor-greater1.odg %%DATADIR%%/stencils/Cybernetics/factor-greater1.png %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.odg %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.png %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/hpf.desktop %%DATADIR%%/stencils/Cybernetics/hpf.odg %%DATADIR%%/stencils/Cybernetics/hpf.png %%DATADIR%%/stencils/Cybernetics/l-integrator.desktop %%DATADIR%%/stencils/Cybernetics/l-integrator.odg %%DATADIR%%/stencils/Cybernetics/l-integrator.png %%DATADIR%%/stencils/Cybernetics/l-minus.desktop %%DATADIR%%/stencils/Cybernetics/l-minus.odg %%DATADIR%%/stencils/Cybernetics/l-minus.png %%DATADIR%%/stencils/Cybernetics/l-sens.desktop %%DATADIR%%/stencils/Cybernetics/l-sens.odg %%DATADIR%%/stencils/Cybernetics/l-sens.png %%DATADIR%%/stencils/Cybernetics/lpf.desktop %%DATADIR%%/stencils/Cybernetics/lpf.odg %%DATADIR%%/stencils/Cybernetics/lpf.png %%DATADIR%%/stencils/Cybernetics/negative-shift.desktop %%DATADIR%%/stencils/Cybernetics/negative-shift.odg %%DATADIR%%/stencils/Cybernetics/negative-shift.png %%DATADIR%%/stencils/Cybernetics/positive-shift.desktop %%DATADIR%%/stencils/Cybernetics/positive-shift.odg %%DATADIR%%/stencils/Cybernetics/positive-shift.png %%DATADIR%%/stencils/Cybernetics/product.desktop %%DATADIR%%/stencils/Cybernetics/product.odg %%DATADIR%%/stencils/Cybernetics/product.png %%DATADIR%%/stencils/Cybernetics/r-integrator.desktop %%DATADIR%%/stencils/Cybernetics/r-integrator.odg %%DATADIR%%/stencils/Cybernetics/r-integrator.png %%DATADIR%%/stencils/Cybernetics/r-minus.desktop %%DATADIR%%/stencils/Cybernetics/r-minus.odg %%DATADIR%%/stencils/Cybernetics/r-minus.png %%DATADIR%%/stencils/Cybernetics/r-sens.desktop %%DATADIR%%/stencils/Cybernetics/r-sens.odg %%DATADIR%%/stencils/Cybernetics/r-sens.png %%DATADIR%%/stencils/Cybernetics/relay.desktop %%DATADIR%%/stencils/Cybernetics/relay.odg %%DATADIR%%/stencils/Cybernetics/relay.png %%DATADIR%%/stencils/Cybernetics/saturation.desktop %%DATADIR%%/stencils/Cybernetics/saturation.odg %%DATADIR%%/stencils/Cybernetics/saturation.png %%DATADIR%%/stencils/Cybernetics/sigmoid.desktop %%DATADIR%%/stencils/Cybernetics/sigmoid.odg %%DATADIR%%/stencils/Cybernetics/sigmoid.png %%DATADIR%%/stencils/Cybernetics/sine.desktop %%DATADIR%%/stencils/Cybernetics/sine.odg %%DATADIR%%/stencils/Cybernetics/sine.png %%DATADIR%%/stencils/Cybernetics/sum.desktop %%DATADIR%%/stencils/Cybernetics/sum.odg %%DATADIR%%/stencils/Cybernetics/sum.png %%DATADIR%%/stencils/Cybernetics/t-integrator.desktop %%DATADIR%%/stencils/Cybernetics/t-integrator.odg %%DATADIR%%/stencils/Cybernetics/t-integrator.png %%DATADIR%%/stencils/Cybernetics/t-minus.desktop %%DATADIR%%/stencils/Cybernetics/t-minus.odg %%DATADIR%%/stencils/Cybernetics/t-minus.png %%DATADIR%%/stencils/Cybernetics/t-sens.desktop %%DATADIR%%/stencils/Cybernetics/t-sens.odg %%DATADIR%%/stencils/Cybernetics/t-sens.png %%DATADIR%%/stencils/Digital/add_h.desktop %%DATADIR%%/stencils/Digital/add_h.odg %%DATADIR%%/stencils/Digital/add_h.png %%DATADIR%%/stencils/Digital/add_v.desktop %%DATADIR%%/stencils/Digital/add_v.odg %%DATADIR%%/stencils/Digital/add_v.png %%DATADIR%%/stencils/Digital/and_h.desktop %%DATADIR%%/stencils/Digital/and_h.odg %%DATADIR%%/stencils/Digital/and_h.png %%DATADIR%%/stencils/Digital/and_v.desktop %%DATADIR%%/stencils/Digital/and_v.odg %%DATADIR%%/stencils/Digital/and_v.png %%DATADIR%%/stencils/Digital/buff_h.desktop %%DATADIR%%/stencils/Digital/buff_h.odg %%DATADIR%%/stencils/Digital/buff_h.png %%DATADIR%%/stencils/Digital/buff_v.desktop %%DATADIR%%/stencils/Digital/buff_v.odg %%DATADIR%%/stencils/Digital/buff_v.png %%DATADIR%%/stencils/Digital/collection.desktop %%DATADIR%%/stencils/Digital/conn.desktop %%DATADIR%%/stencils/Digital/conn.odg %%DATADIR%%/stencils/Digital/conn.png %%DATADIR%%/stencils/Digital/inv_h.desktop %%DATADIR%%/stencils/Digital/inv_h.odg %%DATADIR%%/stencils/Digital/inv_h.png %%DATADIR%%/stencils/Digital/inv_v.desktop %%DATADIR%%/stencils/Digital/inv_v.odg %%DATADIR%%/stencils/Digital/inv_v.png %%DATADIR%%/stencils/Digital/mux_h.desktop %%DATADIR%%/stencils/Digital/mux_h.odg %%DATADIR%%/stencils/Digital/mux_h.png %%DATADIR%%/stencils/Digital/mux_v.desktop %%DATADIR%%/stencils/Digital/mux_v.odg %%DATADIR%%/stencils/Digital/mux_v.png %%DATADIR%%/stencils/Digital/nand_h.desktop %%DATADIR%%/stencils/Digital/nand_h.odg %%DATADIR%%/stencils/Digital/nand_h.png %%DATADIR%%/stencils/Digital/nand_v.desktop %%DATADIR%%/stencils/Digital/nand_v.odg %%DATADIR%%/stencils/Digital/nand_v.png %%DATADIR%%/stencils/Digital/nor_h.desktop %%DATADIR%%/stencils/Digital/nor_h.odg %%DATADIR%%/stencils/Digital/nor_h.png %%DATADIR%%/stencils/Digital/nor_v.desktop %%DATADIR%%/stencils/Digital/nor_v.odg %%DATADIR%%/stencils/Digital/nor_v.png %%DATADIR%%/stencils/Digital/or_h.desktop %%DATADIR%%/stencils/Digital/or_h.odg %%DATADIR%%/stencils/Digital/or_h.png %%DATADIR%%/stencils/Digital/or_v.desktop %%DATADIR%%/stencils/Digital/or_v.odg %%DATADIR%%/stencils/Digital/or_v.png %%DATADIR%%/stencils/Digital/reg_h.desktop %%DATADIR%%/stencils/Digital/reg_h.odg %%DATADIR%%/stencils/Digital/reg_h.png %%DATADIR%%/stencils/Digital/reg_v.desktop %%DATADIR%%/stencils/Digital/reg_v.odg %%DATADIR%%/stencils/Digital/reg_v.png %%DATADIR%%/stencils/Digital/xnor_h.desktop %%DATADIR%%/stencils/Digital/xnor_h.odg %%DATADIR%%/stencils/Digital/xnor_h.png %%DATADIR%%/stencils/Digital/xnor_v.desktop %%DATADIR%%/stencils/Digital/xnor_v.odg %%DATADIR%%/stencils/Digital/xnor_v.png %%DATADIR%%/stencils/Digital/xor_h.desktop %%DATADIR%%/stencils/Digital/xor_h.odg %%DATADIR%%/stencils/Digital/xor_h.png %%DATADIR%%/stencils/Digital/xor_v.desktop %%DATADIR%%/stencils/Digital/xor_v.odg %%DATADIR%%/stencils/Digital/xor_v.png %%DATADIR%%/stencils/Edpc/and.desktop %%DATADIR%%/stencils/Edpc/and.odg %%DATADIR%%/stencils/Edpc/and.png %%DATADIR%%/stencils/Edpc/collection.desktop %%DATADIR%%/stencils/Edpc/function.desktop %%DATADIR%%/stencils/Edpc/function.odg %%DATADIR%%/stencils/Edpc/function.png %%DATADIR%%/stencils/Edpc/or.desktop %%DATADIR%%/stencils/Edpc/or.odg %%DATADIR%%/stencils/Edpc/or.png %%DATADIR%%/stencils/Edpc/organisation_unit.desktop %%DATADIR%%/stencils/Edpc/organisation_unit.odg %%DATADIR%%/stencils/Edpc/organisation_unit.png %%DATADIR%%/stencils/Edpc/xor.desktop %%DATADIR%%/stencils/Edpc/xor.odg %%DATADIR%%/stencils/Edpc/xor.png %%DATADIR%%/stencils/Electric/cnx.desktop %%DATADIR%%/stencils/Electric/cnx.odg %%DATADIR%%/stencils/Electric/cnx.png %%DATADIR%%/stencils/Electric/collection.desktop %%DATADIR%%/stencils/Electric/command.desktop %%DATADIR%%/stencils/Electric/command.odg %%DATADIR%%/stencils/Electric/command.png %%DATADIR%%/stencils/Electric/contact_f.desktop %%DATADIR%%/stencils/Electric/contact_f.odg %%DATADIR%%/stencils/Electric/contact_f.png %%DATADIR%%/stencils/Electric/contact_o.desktop %%DATADIR%%/stencils/Electric/contact_o.odg %%DATADIR%%/stencils/Electric/contact_o.png %%DATADIR%%/stencils/Electric/intpos_f.desktop %%DATADIR%%/stencils/Electric/intpos_f.odg %%DATADIR%%/stencils/Electric/intpos_f.png %%DATADIR%%/stencils/Electric/intpos_o.desktop %%DATADIR%%/stencils/Electric/intpos_o.odg %%DATADIR%%/stencils/Electric/intpos_o.png %%DATADIR%%/stencils/Electric/lamp.desktop %%DATADIR%%/stencils/Electric/lamp.odg %%DATADIR%%/stencils/Electric/lamp.png %%DATADIR%%/stencils/Electric/relay.desktop %%DATADIR%%/stencils/Electric/relay.odg %%DATADIR%%/stencils/Electric/relay.png %%DATADIR%%/stencils/Electric/vcommand.desktop %%DATADIR%%/stencils/Electric/vcommand.odg %%DATADIR%%/stencils/Electric/vcommand.png %%DATADIR%%/stencils/Electric/vcontact_f.desktop %%DATADIR%%/stencils/Electric/vcontact_f.odg %%DATADIR%%/stencils/Electric/vcontact_f.png %%DATADIR%%/stencils/Electric/vcontact_o.desktop %%DATADIR%%/stencils/Electric/vcontact_o.odg %%DATADIR%%/stencils/Electric/vcontact_o.png %%DATADIR%%/stencils/Electric/vintpos_f.desktop %%DATADIR%%/stencils/Electric/vintpos_f.odg %%DATADIR%%/stencils/Electric/vintpos_f.png %%DATADIR%%/stencils/Electric/vintpos_o.desktop %%DATADIR%%/stencils/Electric/vintpos_o.odg %%DATADIR%%/stencils/Electric/vintpos_o.png %%DATADIR%%/stencils/Electric/vlamp.desktop %%DATADIR%%/stencils/Electric/vlamp.odg %%DATADIR%%/stencils/Electric/vlamp.png %%DATADIR%%/stencils/Electric/vrelay.desktop %%DATADIR%%/stencils/Electric/vrelay.odg %%DATADIR%%/stencils/Electric/vrelay.png %%DATADIR%%/stencils/Electric2/ckt-breaker.desktop %%DATADIR%%/stencils/Electric2/ckt-breaker.odg %%DATADIR%%/stencils/Electric2/ckt-breaker.png %%DATADIR%%/stencils/Electric2/collection.desktop %%DATADIR%%/stencils/Electric2/generator.desktop %%DATADIR%%/stencils/Electric2/generator.odg %%DATADIR%%/stencils/Electric2/generator.png %%DATADIR%%/stencils/Electric2/isolator.desktop %%DATADIR%%/stencils/Electric2/isolator.odg %%DATADIR%%/stencils/Electric2/isolator.png %%DATADIR%%/stencils/Electric2/transformer.desktop %%DATADIR%%/stencils/Electric2/transformer.odg %%DATADIR%%/stencils/Electric2/transformer.png %%DATADIR%%/stencils/Electronic/ampermeter.desktop %%DATADIR%%/stencils/Electronic/ampermeter.odg %%DATADIR%%/stencils/Electronic/ampermeter.png %%DATADIR%%/stencils/Electronic/antenna.desktop %%DATADIR%%/stencils/Electronic/antenna.odg %%DATADIR%%/stencils/Electronic/antenna.png %%DATADIR%%/stencils/Electronic/bell.desktop %%DATADIR%%/stencils/Electronic/bell.odg %%DATADIR%%/stencils/Electronic/bell.png %%DATADIR%%/stencils/Electronic/button.desktop %%DATADIR%%/stencils/Electronic/button.odg %%DATADIR%%/stencils/Electronic/button.png %%DATADIR%%/stencils/Electronic/capacitor.desktop %%DATADIR%%/stencils/Electronic/capacitor.odg %%DATADIR%%/stencils/Electronic/capacitor.png %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.desktop %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.odg %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.png %%DATADIR%%/stencils/Electronic/collection.desktop %%DATADIR%%/stencils/Electronic/contact.desktop %%DATADIR%%/stencils/Electronic/contact.odg %%DATADIR%%/stencils/Electronic/contact.png %%DATADIR%%/stencils/Electronic/contact_pair.desktop %%DATADIR%%/stencils/Electronic/contact_pair.odg %%DATADIR%%/stencils/Electronic/contact_pair.png %%DATADIR%%/stencils/Electronic/crystal.desktop %%DATADIR%%/stencils/Electronic/crystal.odg %%DATADIR%%/stencils/Electronic/crystal.png %%DATADIR%%/stencils/Electronic/di_gate.desktop %%DATADIR%%/stencils/Electronic/di_gate.odg %%DATADIR%%/stencils/Electronic/di_gate.png %%DATADIR%%/stencils/Electronic/diac.desktop %%DATADIR%%/stencils/Electronic/diac.odg %%DATADIR%%/stencils/Electronic/diac.png %%DATADIR%%/stencils/Electronic/diode_inverse.desktop %%DATADIR%%/stencils/Electronic/diode_inverse.odg %%DATADIR%%/stencils/Electronic/diode_inverse.png %%DATADIR%%/stencils/Electronic/diode_schottky.desktop %%DATADIR%%/stencils/Electronic/diode_schottky.odg %%DATADIR%%/stencils/Electronic/diode_schottky.png %%DATADIR%%/stencils/Electronic/diode_tunnel.desktop %%DATADIR%%/stencils/Electronic/diode_tunnel.odg %%DATADIR%%/stencils/Electronic/diode_tunnel.png %%DATADIR%%/stencils/Electronic/diode_zenner.desktop %%DATADIR%%/stencils/Electronic/diode_zenner.odg %%DATADIR%%/stencils/Electronic/diode_zenner.png %%DATADIR%%/stencils/Electronic/engine.desktop %%DATADIR%%/stencils/Electronic/engine.odg %%DATADIR%%/stencils/Electronic/engine.png %%DATADIR%%/stencils/Electronic/ground.desktop %%DATADIR%%/stencils/Electronic/ground.odg %%DATADIR%%/stencils/Electronic/ground.png %%DATADIR%%/stencils/Electronic/headphone.desktop %%DATADIR%%/stencils/Electronic/headphone.odg %%DATADIR%%/stencils/Electronic/headphone.png %%DATADIR%%/stencils/Electronic/inductor.desktop %%DATADIR%%/stencils/Electronic/inductor.odg %%DATADIR%%/stencils/Electronic/inductor.png %%DATADIR%%/stencils/Electronic/led_display.desktop %%DATADIR%%/stencils/Electronic/led_display.odg %%DATADIR%%/stencils/Electronic/led_display.png %%DATADIR%%/stencils/Electronic/microphone.desktop %%DATADIR%%/stencils/Electronic/microphone.odg %%DATADIR%%/stencils/Electronic/microphone.png %%DATADIR%%/stencils/Electronic/photo_emiting_part.desktop %%DATADIR%%/stencils/Electronic/photo_emiting_part.odg %%DATADIR%%/stencils/Electronic/photo_emiting_part.png %%DATADIR%%/stencils/Electronic/photo_sensitive_part.desktop %%DATADIR%%/stencils/Electronic/photo_sensitive_part.odg %%DATADIR%%/stencils/Electronic/photo_sensitive_part.png %%DATADIR%%/stencils/Electronic/port_in.desktop %%DATADIR%%/stencils/Electronic/port_in.odg %%DATADIR%%/stencils/Electronic/port_in.png %%DATADIR%%/stencils/Electronic/port_inout.desktop %%DATADIR%%/stencils/Electronic/port_inout.odg %%DATADIR%%/stencils/Electronic/port_inout.png %%DATADIR%%/stencils/Electronic/port_out.desktop %%DATADIR%%/stencils/Electronic/port_out.odg %%DATADIR%%/stencils/Electronic/port_out.png %%DATADIR%%/stencils/Electronic/potenciometer.desktop %%DATADIR%%/stencils/Electronic/potenciometer.odg %%DATADIR%%/stencils/Electronic/potenciometer.png %%DATADIR%%/stencils/Electronic/source.desktop %%DATADIR%%/stencils/Electronic/source.odg %%DATADIR%%/stencils/Electronic/source.png %%DATADIR%%/stencils/Electronic/source_current.desktop %%DATADIR%%/stencils/Electronic/source_current.odg %%DATADIR%%/stencils/Electronic/source_current.png %%DATADIR%%/stencils/Electronic/source_substitution.desktop %%DATADIR%%/stencils/Electronic/source_substitution.odg %%DATADIR%%/stencils/Electronic/source_substitution.png %%DATADIR%%/stencils/Electronic/source_voltage.desktop %%DATADIR%%/stencils/Electronic/source_voltage.odg %%DATADIR%%/stencils/Electronic/source_voltage.png %%DATADIR%%/stencils/Electronic/source_voltage_alternating.desktop %%DATADIR%%/stencils/Electronic/source_voltage_alternating.odg %%DATADIR%%/stencils/Electronic/source_voltage_alternating.png %%DATADIR%%/stencils/Electronic/source_voltage_direct.desktop %%DATADIR%%/stencils/Electronic/source_voltage_direct.odg %%DATADIR%%/stencils/Electronic/source_voltage_direct.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.png %%DATADIR%%/stencils/Electronic/transistor_jfe_n.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_n.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_n.png %%DATADIR%%/stencils/Electronic/transistor_jfe_p.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_p.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.png %%DATADIR%%/stencils/Electronic/transistor_single_pn.desktop %%DATADIR%%/stencils/Electronic/transistor_single_pn.odg %%DATADIR%%/stencils/Electronic/transistor_single_pn.png %%DATADIR%%/stencils/Electronic/triac.desktop %%DATADIR%%/stencils/Electronic/triac.odg %%DATADIR%%/stencils/Electronic/triac.png %%DATADIR%%/stencils/Electronic/tyristor_diode.desktop %%DATADIR%%/stencils/Electronic/tyristor_diode.odg %%DATADIR%%/stencils/Electronic/tyristor_diode.png %%DATADIR%%/stencils/Electronic/tyristor_triode.desktop %%DATADIR%%/stencils/Electronic/tyristor_triode.odg %%DATADIR%%/stencils/Electronic/tyristor_triode.png %%DATADIR%%/stencils/Electronic/vacuum_diode.desktop %%DATADIR%%/stencils/Electronic/vacuum_diode.odg %%DATADIR%%/stencils/Electronic/vacuum_diode.png %%DATADIR%%/stencils/Electronic/vacuum_pentode.desktop %%DATADIR%%/stencils/Electronic/vacuum_pentode.odg %%DATADIR%%/stencils/Electronic/vacuum_pentode.png %%DATADIR%%/stencils/Electronic/vacuum_triode.desktop %%DATADIR%%/stencils/Electronic/vacuum_triode.odg %%DATADIR%%/stencils/Electronic/vacuum_triode.png %%DATADIR%%/stencils/Electronic/variable_linear_part.desktop %%DATADIR%%/stencils/Electronic/variable_linear_part.odg %%DATADIR%%/stencils/Electronic/variable_linear_part.png %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.desktop %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.odg %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.png %%DATADIR%%/stencils/Electronic/varicap.desktop %%DATADIR%%/stencils/Electronic/varicap.odg %%DATADIR%%/stencils/Electronic/varicap.png %%DATADIR%%/stencils/Electronic/voltmeter.desktop %%DATADIR%%/stencils/Electronic/voltmeter.odg %%DATADIR%%/stencils/Electronic/voltmeter.png %%DATADIR%%/stencils/Flags/afghanistan.desktop %%DATADIR%%/stencils/Flags/afghanistan.odg %%DATADIR%%/stencils/Flags/afghanistan.png %%DATADIR%%/stencils/Flags/albania.desktop %%DATADIR%%/stencils/Flags/albania.odg %%DATADIR%%/stencils/Flags/albania.png %%DATADIR%%/stencils/Flags/algeria.desktop %%DATADIR%%/stencils/Flags/algeria.odg %%DATADIR%%/stencils/Flags/algeria.png %%DATADIR%%/stencils/Flags/andorra.desktop %%DATADIR%%/stencils/Flags/andorra.odg %%DATADIR%%/stencils/Flags/andorra.png %%DATADIR%%/stencils/Flags/angola.desktop %%DATADIR%%/stencils/Flags/angola.odg %%DATADIR%%/stencils/Flags/angola.png %%DATADIR%%/stencils/Flags/antarctica.desktop %%DATADIR%%/stencils/Flags/antarctica.odg %%DATADIR%%/stencils/Flags/antarctica.png %%DATADIR%%/stencils/Flags/antigua_and_barbuda.desktop %%DATADIR%%/stencils/Flags/antigua_and_barbuda.odg %%DATADIR%%/stencils/Flags/antigua_and_barbuda.png %%DATADIR%%/stencils/Flags/argentina.desktop %%DATADIR%%/stencils/Flags/argentina.odg %%DATADIR%%/stencils/Flags/argentina.png %%DATADIR%%/stencils/Flags/armenia.desktop %%DATADIR%%/stencils/Flags/armenia.odg %%DATADIR%%/stencils/Flags/armenia.png %%DATADIR%%/stencils/Flags/australia.desktop %%DATADIR%%/stencils/Flags/australia.odg %%DATADIR%%/stencils/Flags/australia.png %%DATADIR%%/stencils/Flags/austria.desktop %%DATADIR%%/stencils/Flags/austria.odg %%DATADIR%%/stencils/Flags/austria.png %%DATADIR%%/stencils/Flags/azerbaijan.desktop %%DATADIR%%/stencils/Flags/azerbaijan.odg %%DATADIR%%/stencils/Flags/azerbaijan.png %%DATADIR%%/stencils/Flags/bahamas.desktop %%DATADIR%%/stencils/Flags/bahamas.odg %%DATADIR%%/stencils/Flags/bahamas.png %%DATADIR%%/stencils/Flags/bahrain.desktop %%DATADIR%%/stencils/Flags/bahrain.odg %%DATADIR%%/stencils/Flags/bahrain.png %%DATADIR%%/stencils/Flags/bangladesh.desktop %%DATADIR%%/stencils/Flags/bangladesh.odg %%DATADIR%%/stencils/Flags/bangladesh.png %%DATADIR%%/stencils/Flags/barbados.desktop %%DATADIR%%/stencils/Flags/barbados.odg %%DATADIR%%/stencils/Flags/barbados.png %%DATADIR%%/stencils/Flags/belarus.desktop %%DATADIR%%/stencils/Flags/belarus.odg %%DATADIR%%/stencils/Flags/belarus.png %%DATADIR%%/stencils/Flags/belgium.desktop %%DATADIR%%/stencils/Flags/belgium.odg %%DATADIR%%/stencils/Flags/belgium.png %%DATADIR%%/stencils/Flags/belize.desktop %%DATADIR%%/stencils/Flags/belize.odg %%DATADIR%%/stencils/Flags/belize.png %%DATADIR%%/stencils/Flags/benin.desktop %%DATADIR%%/stencils/Flags/benin.odg %%DATADIR%%/stencils/Flags/benin.png %%DATADIR%%/stencils/Flags/bhutan.desktop %%DATADIR%%/stencils/Flags/bhutan.odg %%DATADIR%%/stencils/Flags/bhutan.png %%DATADIR%%/stencils/Flags/bolivia.desktop %%DATADIR%%/stencils/Flags/bolivia.odg %%DATADIR%%/stencils/Flags/bolivia.png %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.desktop %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.odg %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.png %%DATADIR%%/stencils/Flags/botswana.desktop %%DATADIR%%/stencils/Flags/botswana.odg %%DATADIR%%/stencils/Flags/botswana.png %%DATADIR%%/stencils/Flags/brazil.desktop %%DATADIR%%/stencils/Flags/brazil.odg %%DATADIR%%/stencils/Flags/brazil.png %%DATADIR%%/stencils/Flags/brunei_darussalam.desktop %%DATADIR%%/stencils/Flags/brunei_darussalam.odg %%DATADIR%%/stencils/Flags/brunei_darussalam.png %%DATADIR%%/stencils/Flags/bulgaria.desktop %%DATADIR%%/stencils/Flags/bulgaria.odg %%DATADIR%%/stencils/Flags/bulgaria.png %%DATADIR%%/stencils/Flags/burkina_faso.desktop %%DATADIR%%/stencils/Flags/burkina_faso.odg %%DATADIR%%/stencils/Flags/burkina_faso.png %%DATADIR%%/stencils/Flags/burundi.desktop %%DATADIR%%/stencils/Flags/burundi.odg %%DATADIR%%/stencils/Flags/burundi.png %%DATADIR%%/stencils/Flags/cambodia.desktop %%DATADIR%%/stencils/Flags/cambodia.odg %%DATADIR%%/stencils/Flags/cambodia.png %%DATADIR%%/stencils/Flags/cameroon.desktop %%DATADIR%%/stencils/Flags/cameroon.odg %%DATADIR%%/stencils/Flags/cameroon.png %%DATADIR%%/stencils/Flags/canada.desktop %%DATADIR%%/stencils/Flags/canada.odg %%DATADIR%%/stencils/Flags/canada.png %%DATADIR%%/stencils/Flags/cape_verde.desktop %%DATADIR%%/stencils/Flags/cape_verde.odg %%DATADIR%%/stencils/Flags/cape_verde.png %%DATADIR%%/stencils/Flags/central_african_republic.desktop %%DATADIR%%/stencils/Flags/central_african_republic.odg %%DATADIR%%/stencils/Flags/central_african_republic.png %%DATADIR%%/stencils/Flags/chad.desktop %%DATADIR%%/stencils/Flags/chad.odg %%DATADIR%%/stencils/Flags/chad.png %%DATADIR%%/stencils/Flags/chile.desktop %%DATADIR%%/stencils/Flags/chile.odg %%DATADIR%%/stencils/Flags/chile.png %%DATADIR%%/stencils/Flags/china_hong_kong.desktop %%DATADIR%%/stencils/Flags/china_hong_kong.odg %%DATADIR%%/stencils/Flags/china_hong_kong.png %%DATADIR%%/stencils/Flags/china_macao.desktop %%DATADIR%%/stencils/Flags/china_macao.odg %%DATADIR%%/stencils/Flags/china_macao.png %%DATADIR%%/stencils/Flags/china_prc.desktop %%DATADIR%%/stencils/Flags/china_prc.odg %%DATADIR%%/stencils/Flags/china_prc.png %%DATADIR%%/stencils/Flags/china_roc.desktop %%DATADIR%%/stencils/Flags/china_roc.odg %%DATADIR%%/stencils/Flags/china_roc.png %%DATADIR%%/stencils/Flags/collection.desktop %%DATADIR%%/stencils/Flags/colombia.desktop %%DATADIR%%/stencils/Flags/colombia.odg %%DATADIR%%/stencils/Flags/colombia.png %%DATADIR%%/stencils/Flags/comoros.desktop %%DATADIR%%/stencils/Flags/comoros.odg %%DATADIR%%/stencils/Flags/comoros.png %%DATADIR%%/stencils/Flags/congo_brazzaville.desktop %%DATADIR%%/stencils/Flags/congo_brazzaville.odg %%DATADIR%%/stencils/Flags/congo_brazzaville.png %%DATADIR%%/stencils/Flags/congo_kinshasa.desktop %%DATADIR%%/stencils/Flags/congo_kinshasa.odg %%DATADIR%%/stencils/Flags/congo_kinshasa.png %%DATADIR%%/stencils/Flags/costa_rica.desktop %%DATADIR%%/stencils/Flags/costa_rica.odg %%DATADIR%%/stencils/Flags/costa_rica.png %%DATADIR%%/stencils/Flags/cote_divoire.desktop %%DATADIR%%/stencils/Flags/cote_divoire.odg %%DATADIR%%/stencils/Flags/cote_divoire.png %%DATADIR%%/stencils/Flags/croatia.desktop %%DATADIR%%/stencils/Flags/croatia.odg %%DATADIR%%/stencils/Flags/croatia.png %%DATADIR%%/stencils/Flags/cuba.desktop %%DATADIR%%/stencils/Flags/cuba.odg %%DATADIR%%/stencils/Flags/cuba.png %%DATADIR%%/stencils/Flags/cyprus.desktop %%DATADIR%%/stencils/Flags/cyprus.odg %%DATADIR%%/stencils/Flags/cyprus.png %%DATADIR%%/stencils/Flags/czechia.desktop %%DATADIR%%/stencils/Flags/czechia.odg %%DATADIR%%/stencils/Flags/czechia.png %%DATADIR%%/stencils/Flags/denmark.desktop %%DATADIR%%/stencils/Flags/denmark.odg %%DATADIR%%/stencils/Flags/denmark.png %%DATADIR%%/stencils/Flags/djibouti.desktop %%DATADIR%%/stencils/Flags/djibouti.odg %%DATADIR%%/stencils/Flags/djibouti.png %%DATADIR%%/stencils/Flags/dominica.desktop %%DATADIR%%/stencils/Flags/dominica.odg %%DATADIR%%/stencils/Flags/dominica.png %%DATADIR%%/stencils/Flags/dominican_republic.desktop %%DATADIR%%/stencils/Flags/dominican_republic.odg %%DATADIR%%/stencils/Flags/dominican_republic.png %%DATADIR%%/stencils/Flags/ecuador.desktop %%DATADIR%%/stencils/Flags/ecuador.odg %%DATADIR%%/stencils/Flags/ecuador.png %%DATADIR%%/stencils/Flags/egypt.desktop %%DATADIR%%/stencils/Flags/egypt.odg %%DATADIR%%/stencils/Flags/egypt.png %%DATADIR%%/stencils/Flags/el_salvador.desktop %%DATADIR%%/stencils/Flags/el_salvador.odg %%DATADIR%%/stencils/Flags/el_salvador.png %%DATADIR%%/stencils/Flags/equatorial_guinea.desktop %%DATADIR%%/stencils/Flags/equatorial_guinea.odg %%DATADIR%%/stencils/Flags/equatorial_guinea.png %%DATADIR%%/stencils/Flags/eritrea.desktop %%DATADIR%%/stencils/Flags/eritrea.odg %%DATADIR%%/stencils/Flags/eritrea.png %%DATADIR%%/stencils/Flags/estonia.desktop %%DATADIR%%/stencils/Flags/estonia.odg %%DATADIR%%/stencils/Flags/estonia.png %%DATADIR%%/stencils/Flags/ethiopia.desktop %%DATADIR%%/stencils/Flags/ethiopia.odg %%DATADIR%%/stencils/Flags/ethiopia.png %%DATADIR%%/stencils/Flags/europeanunion.desktop %%DATADIR%%/stencils/Flags/europeanunion.odg %%DATADIR%%/stencils/Flags/europeanunion.png %%DATADIR%%/stencils/Flags/fiji.desktop %%DATADIR%%/stencils/Flags/fiji.odg %%DATADIR%%/stencils/Flags/fiji.png %%DATADIR%%/stencils/Flags/finland.desktop %%DATADIR%%/stencils/Flags/finland.odg %%DATADIR%%/stencils/Flags/finland.png %%DATADIR%%/stencils/Flags/france.desktop %%DATADIR%%/stencils/Flags/france.odg %%DATADIR%%/stencils/Flags/france.png %%DATADIR%%/stencils/Flags/gabon.desktop %%DATADIR%%/stencils/Flags/gabon.odg %%DATADIR%%/stencils/Flags/gabon.png %%DATADIR%%/stencils/Flags/gambia.desktop %%DATADIR%%/stencils/Flags/gambia.odg %%DATADIR%%/stencils/Flags/gambia.png %%DATADIR%%/stencils/Flags/georgia.desktop %%DATADIR%%/stencils/Flags/georgia.odg %%DATADIR%%/stencils/Flags/georgia.png %%DATADIR%%/stencils/Flags/germany.desktop %%DATADIR%%/stencils/Flags/germany.odg %%DATADIR%%/stencils/Flags/germany.png %%DATADIR%%/stencils/Flags/ghana.desktop %%DATADIR%%/stencils/Flags/ghana.odg %%DATADIR%%/stencils/Flags/ghana.png %%DATADIR%%/stencils/Flags/greece.desktop %%DATADIR%%/stencils/Flags/greece.odg %%DATADIR%%/stencils/Flags/greece.png %%DATADIR%%/stencils/Flags/grenada.desktop %%DATADIR%%/stencils/Flags/grenada.odg %%DATADIR%%/stencils/Flags/grenada.png %%DATADIR%%/stencils/Flags/guatemala.desktop %%DATADIR%%/stencils/Flags/guatemala.odg %%DATADIR%%/stencils/Flags/guatemala.png %%DATADIR%%/stencils/Flags/guinea.desktop %%DATADIR%%/stencils/Flags/guinea.odg %%DATADIR%%/stencils/Flags/guinea.png %%DATADIR%%/stencils/Flags/guyana.desktop %%DATADIR%%/stencils/Flags/guyana.odg %%DATADIR%%/stencils/Flags/guyana.png %%DATADIR%%/stencils/Flags/haiti.desktop %%DATADIR%%/stencils/Flags/haiti.odg %%DATADIR%%/stencils/Flags/haiti.png %%DATADIR%%/stencils/Flags/honduras.desktop %%DATADIR%%/stencils/Flags/honduras.odg %%DATADIR%%/stencils/Flags/honduras.png %%DATADIR%%/stencils/Flags/hungary.desktop %%DATADIR%%/stencils/Flags/hungary.odg %%DATADIR%%/stencils/Flags/hungary.png %%DATADIR%%/stencils/Flags/iceland.desktop %%DATADIR%%/stencils/Flags/iceland.odg %%DATADIR%%/stencils/Flags/iceland.png %%DATADIR%%/stencils/Flags/india.desktop %%DATADIR%%/stencils/Flags/india.odg %%DATADIR%%/stencils/Flags/india.png %%DATADIR%%/stencils/Flags/indonesia.desktop %%DATADIR%%/stencils/Flags/indonesia.odg %%DATADIR%%/stencils/Flags/indonesia.png %%DATADIR%%/stencils/Flags/iran.desktop %%DATADIR%%/stencils/Flags/iran.odg %%DATADIR%%/stencils/Flags/iran.png %%DATADIR%%/stencils/Flags/iraq.desktop %%DATADIR%%/stencils/Flags/iraq.odg %%DATADIR%%/stencils/Flags/iraq.png %%DATADIR%%/stencils/Flags/ireland.desktop %%DATADIR%%/stencils/Flags/ireland.odg %%DATADIR%%/stencils/Flags/ireland.png %%DATADIR%%/stencils/Flags/israel.desktop %%DATADIR%%/stencils/Flags/israel.odg %%DATADIR%%/stencils/Flags/israel.png %%DATADIR%%/stencils/Flags/italy.desktop %%DATADIR%%/stencils/Flags/italy.odg %%DATADIR%%/stencils/Flags/italy.png %%DATADIR%%/stencils/Flags/jamaica.desktop %%DATADIR%%/stencils/Flags/jamaica.odg %%DATADIR%%/stencils/Flags/jamaica.png %%DATADIR%%/stencils/Flags/japan.desktop %%DATADIR%%/stencils/Flags/japan.odg %%DATADIR%%/stencils/Flags/japan.png %%DATADIR%%/stencils/Flags/jordan.desktop %%DATADIR%%/stencils/Flags/jordan.odg %%DATADIR%%/stencils/Flags/jordan.png %%DATADIR%%/stencils/Flags/kazakhstan.desktop %%DATADIR%%/stencils/Flags/kazakhstan.odg %%DATADIR%%/stencils/Flags/kazakhstan.png %%DATADIR%%/stencils/Flags/kenya.desktop %%DATADIR%%/stencils/Flags/kenya.odg %%DATADIR%%/stencils/Flags/kenya.png %%DATADIR%%/stencils/Flags/kiribati.desktop %%DATADIR%%/stencils/Flags/kiribati.odg %%DATADIR%%/stencils/Flags/kiribati.png %%DATADIR%%/stencils/Flags/kuwait.desktop %%DATADIR%%/stencils/Flags/kuwait.odg %%DATADIR%%/stencils/Flags/kuwait.png %%DATADIR%%/stencils/Flags/kyrgyzstan.desktop %%DATADIR%%/stencils/Flags/kyrgyzstan.odg %%DATADIR%%/stencils/Flags/kyrgyzstan.png %%DATADIR%%/stencils/Flags/laos.desktop %%DATADIR%%/stencils/Flags/laos.odg %%DATADIR%%/stencils/Flags/laos.png %%DATADIR%%/stencils/Flags/latvia.desktop %%DATADIR%%/stencils/Flags/latvia.odg %%DATADIR%%/stencils/Flags/latvia.png %%DATADIR%%/stencils/Flags/lebanon.desktop %%DATADIR%%/stencils/Flags/lebanon.odg %%DATADIR%%/stencils/Flags/lebanon.png %%DATADIR%%/stencils/Flags/lesotho.desktop %%DATADIR%%/stencils/Flags/lesotho.odg %%DATADIR%%/stencils/Flags/lesotho.png %%DATADIR%%/stencils/Flags/liberia.desktop %%DATADIR%%/stencils/Flags/liberia.odg %%DATADIR%%/stencils/Flags/liberia.png %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.desktop %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.odg %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.png %%DATADIR%%/stencils/Flags/liechtenstein.desktop %%DATADIR%%/stencils/Flags/liechtenstein.odg %%DATADIR%%/stencils/Flags/liechtenstein.png %%DATADIR%%/stencils/Flags/lithuania.desktop %%DATADIR%%/stencils/Flags/lithuania.odg %%DATADIR%%/stencils/Flags/lithuania.png %%DATADIR%%/stencils/Flags/luxembourg.desktop %%DATADIR%%/stencils/Flags/luxembourg.odg %%DATADIR%%/stencils/Flags/luxembourg.png %%DATADIR%%/stencils/Flags/macedonia.desktop %%DATADIR%%/stencils/Flags/macedonia.odg %%DATADIR%%/stencils/Flags/macedonia.png %%DATADIR%%/stencils/Flags/madagascar.desktop %%DATADIR%%/stencils/Flags/madagascar.odg %%DATADIR%%/stencils/Flags/madagascar.png %%DATADIR%%/stencils/Flags/malawi.desktop %%DATADIR%%/stencils/Flags/malawi.odg %%DATADIR%%/stencils/Flags/malawi.png %%DATADIR%%/stencils/Flags/malaysia.desktop %%DATADIR%%/stencils/Flags/malaysia.odg %%DATADIR%%/stencils/Flags/malaysia.png %%DATADIR%%/stencils/Flags/maldives.desktop %%DATADIR%%/stencils/Flags/maldives.odg %%DATADIR%%/stencils/Flags/maldives.png %%DATADIR%%/stencils/Flags/mali.desktop %%DATADIR%%/stencils/Flags/mali.odg %%DATADIR%%/stencils/Flags/mali.png %%DATADIR%%/stencils/Flags/malta.desktop %%DATADIR%%/stencils/Flags/malta.odg %%DATADIR%%/stencils/Flags/malta.png %%DATADIR%%/stencils/Flags/marshall_islands.desktop %%DATADIR%%/stencils/Flags/marshall_islands.odg %%DATADIR%%/stencils/Flags/marshall_islands.png %%DATADIR%%/stencils/Flags/mauritania.desktop %%DATADIR%%/stencils/Flags/mauritania.odg %%DATADIR%%/stencils/Flags/mauritania.png %%DATADIR%%/stencils/Flags/mauritius.desktop %%DATADIR%%/stencils/Flags/mauritius.odg %%DATADIR%%/stencils/Flags/mauritius.png %%DATADIR%%/stencils/Flags/mexico.desktop %%DATADIR%%/stencils/Flags/mexico.odg %%DATADIR%%/stencils/Flags/mexico.png %%DATADIR%%/stencils/Flags/micronesia.desktop %%DATADIR%%/stencils/Flags/micronesia.odg %%DATADIR%%/stencils/Flags/micronesia.png %%DATADIR%%/stencils/Flags/moldova.desktop %%DATADIR%%/stencils/Flags/moldova.odg %%DATADIR%%/stencils/Flags/moldova.png %%DATADIR%%/stencils/Flags/monaco.desktop %%DATADIR%%/stencils/Flags/monaco.odg %%DATADIR%%/stencils/Flags/monaco.png %%DATADIR%%/stencils/Flags/mongolia.desktop %%DATADIR%%/stencils/Flags/mongolia.odg %%DATADIR%%/stencils/Flags/mongolia.png %%DATADIR%%/stencils/Flags/montenegro.desktop %%DATADIR%%/stencils/Flags/montenegro.odg %%DATADIR%%/stencils/Flags/montenegro.png %%DATADIR%%/stencils/Flags/morocco.desktop %%DATADIR%%/stencils/Flags/morocco.odg %%DATADIR%%/stencils/Flags/morocco.png %%DATADIR%%/stencils/Flags/mozambique.desktop %%DATADIR%%/stencils/Flags/mozambique.odg %%DATADIR%%/stencils/Flags/mozambique.png %%DATADIR%%/stencils/Flags/myanmar.desktop %%DATADIR%%/stencils/Flags/myanmar.odg %%DATADIR%%/stencils/Flags/myanmar.png %%DATADIR%%/stencils/Flags/namibia.desktop %%DATADIR%%/stencils/Flags/namibia.odg %%DATADIR%%/stencils/Flags/namibia.png %%DATADIR%%/stencils/Flags/nauru.desktop %%DATADIR%%/stencils/Flags/nauru.odg %%DATADIR%%/stencils/Flags/nauru.png %%DATADIR%%/stencils/Flags/nepal.desktop %%DATADIR%%/stencils/Flags/nepal.odg %%DATADIR%%/stencils/Flags/nepal.png %%DATADIR%%/stencils/Flags/netherlands.desktop %%DATADIR%%/stencils/Flags/netherlands.odg %%DATADIR%%/stencils/Flags/netherlands.png %%DATADIR%%/stencils/Flags/netherlands_antilles.desktop %%DATADIR%%/stencils/Flags/netherlands_antilles.odg %%DATADIR%%/stencils/Flags/netherlands_antilles.png %%DATADIR%%/stencils/Flags/newzealand.desktop %%DATADIR%%/stencils/Flags/newzealand.odg %%DATADIR%%/stencils/Flags/newzealand.png %%DATADIR%%/stencils/Flags/nicaragua.desktop %%DATADIR%%/stencils/Flags/nicaragua.odg %%DATADIR%%/stencils/Flags/nicaragua.png %%DATADIR%%/stencils/Flags/niger.desktop %%DATADIR%%/stencils/Flags/niger.odg %%DATADIR%%/stencils/Flags/niger.png %%DATADIR%%/stencils/Flags/nigeria.desktop %%DATADIR%%/stencils/Flags/nigeria.odg %%DATADIR%%/stencils/Flags/nigeria.png %%DATADIR%%/stencils/Flags/north_korea.desktop %%DATADIR%%/stencils/Flags/north_korea.odg %%DATADIR%%/stencils/Flags/north_korea.png %%DATADIR%%/stencils/Flags/norway.desktop %%DATADIR%%/stencils/Flags/norway.odg %%DATADIR%%/stencils/Flags/norway.png %%DATADIR%%/stencils/Flags/olympic.desktop %%DATADIR%%/stencils/Flags/olympic.odg %%DATADIR%%/stencils/Flags/olympic.png %%DATADIR%%/stencils/Flags/oman.desktop %%DATADIR%%/stencils/Flags/oman.odg %%DATADIR%%/stencils/Flags/oman.png %%DATADIR%%/stencils/Flags/pakistan.desktop %%DATADIR%%/stencils/Flags/pakistan.odg %%DATADIR%%/stencils/Flags/pakistan.png %%DATADIR%%/stencils/Flags/palau.desktop %%DATADIR%%/stencils/Flags/palau.odg %%DATADIR%%/stencils/Flags/palau.png %%DATADIR%%/stencils/Flags/palestine.desktop %%DATADIR%%/stencils/Flags/palestine.odg %%DATADIR%%/stencils/Flags/palestine.png %%DATADIR%%/stencils/Flags/panama.desktop %%DATADIR%%/stencils/Flags/panama.odg %%DATADIR%%/stencils/Flags/panama.png %%DATADIR%%/stencils/Flags/papua_new_guinea.desktop %%DATADIR%%/stencils/Flags/papua_new_guinea.odg %%DATADIR%%/stencils/Flags/papua_new_guinea.png %%DATADIR%%/stencils/Flags/paraguay.desktop %%DATADIR%%/stencils/Flags/paraguay.odg %%DATADIR%%/stencils/Flags/paraguay.png %%DATADIR%%/stencils/Flags/peru.desktop %%DATADIR%%/stencils/Flags/peru.odg %%DATADIR%%/stencils/Flags/peru.png %%DATADIR%%/stencils/Flags/philippines.desktop %%DATADIR%%/stencils/Flags/philippines.odg %%DATADIR%%/stencils/Flags/philippines.png %%DATADIR%%/stencils/Flags/poland.desktop %%DATADIR%%/stencils/Flags/poland.odg %%DATADIR%%/stencils/Flags/poland.png %%DATADIR%%/stencils/Flags/portugal.desktop %%DATADIR%%/stencils/Flags/portugal.odg %%DATADIR%%/stencils/Flags/portugal.png %%DATADIR%%/stencils/Flags/qatar.desktop %%DATADIR%%/stencils/Flags/qatar.odg %%DATADIR%%/stencils/Flags/qatar.png %%DATADIR%%/stencils/Flags/romania.desktop %%DATADIR%%/stencils/Flags/romania.odg %%DATADIR%%/stencils/Flags/romania.png %%DATADIR%%/stencils/Flags/russian_federation.desktop %%DATADIR%%/stencils/Flags/russian_federation.odg %%DATADIR%%/stencils/Flags/russian_federation.png %%DATADIR%%/stencils/Flags/rwanda.desktop %%DATADIR%%/stencils/Flags/rwanda.odg %%DATADIR%%/stencils/Flags/rwanda.png %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.desktop %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.odg %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.png %%DATADIR%%/stencils/Flags/saint_lucia.desktop %%DATADIR%%/stencils/Flags/saint_lucia.odg %%DATADIR%%/stencils/Flags/saint_lucia.png %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.desktop %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.odg %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.png %%DATADIR%%/stencils/Flags/samoa.desktop %%DATADIR%%/stencils/Flags/samoa.odg %%DATADIR%%/stencils/Flags/samoa.png %%DATADIR%%/stencils/Flags/san_marino.desktop %%DATADIR%%/stencils/Flags/san_marino.odg %%DATADIR%%/stencils/Flags/san_marino.png %%DATADIR%%/stencils/Flags/sao_tome_and_principe.desktop %%DATADIR%%/stencils/Flags/sao_tome_and_principe.odg %%DATADIR%%/stencils/Flags/sao_tome_and_principe.png %%DATADIR%%/stencils/Flags/saudi_arabia.desktop %%DATADIR%%/stencils/Flags/saudi_arabia.odg %%DATADIR%%/stencils/Flags/saudi_arabia.png %%DATADIR%%/stencils/Flags/senegal.desktop %%DATADIR%%/stencils/Flags/senegal.odg %%DATADIR%%/stencils/Flags/senegal.png %%DATADIR%%/stencils/Flags/serbia.desktop %%DATADIR%%/stencils/Flags/serbia.odg %%DATADIR%%/stencils/Flags/serbia.png %%DATADIR%%/stencils/Flags/seychelles.desktop %%DATADIR%%/stencils/Flags/seychelles.odg %%DATADIR%%/stencils/Flags/seychelles.png %%DATADIR%%/stencils/Flags/sierra_leone.desktop %%DATADIR%%/stencils/Flags/sierra_leone.odg %%DATADIR%%/stencils/Flags/sierra_leone.png %%DATADIR%%/stencils/Flags/singapore.desktop %%DATADIR%%/stencils/Flags/singapore.odg %%DATADIR%%/stencils/Flags/singapore.png %%DATADIR%%/stencils/Flags/slovakia.desktop %%DATADIR%%/stencils/Flags/slovakia.odg %%DATADIR%%/stencils/Flags/slovakia.png %%DATADIR%%/stencils/Flags/slovenia.desktop %%DATADIR%%/stencils/Flags/slovenia.odg %%DATADIR%%/stencils/Flags/slovenia.png %%DATADIR%%/stencils/Flags/solomonislands.desktop %%DATADIR%%/stencils/Flags/solomonislands.odg %%DATADIR%%/stencils/Flags/solomonislands.png %%DATADIR%%/stencils/Flags/somalia.desktop %%DATADIR%%/stencils/Flags/somalia.odg %%DATADIR%%/stencils/Flags/somalia.png %%DATADIR%%/stencils/Flags/south_africa.desktop %%DATADIR%%/stencils/Flags/south_africa.odg %%DATADIR%%/stencils/Flags/south_africa.png %%DATADIR%%/stencils/Flags/south_korea.desktop %%DATADIR%%/stencils/Flags/south_korea.odg %%DATADIR%%/stencils/Flags/south_korea.png %%DATADIR%%/stencils/Flags/spain.desktop %%DATADIR%%/stencils/Flags/spain.odg %%DATADIR%%/stencils/Flags/spain.png %%DATADIR%%/stencils/Flags/sri_lanka.desktop %%DATADIR%%/stencils/Flags/sri_lanka.odg %%DATADIR%%/stencils/Flags/sri_lanka.png %%DATADIR%%/stencils/Flags/sudan.desktop %%DATADIR%%/stencils/Flags/sudan.odg %%DATADIR%%/stencils/Flags/sudan.png %%DATADIR%%/stencils/Flags/suisse.desktop %%DATADIR%%/stencils/Flags/suisse.odg %%DATADIR%%/stencils/Flags/suisse.png %%DATADIR%%/stencils/Flags/suriname.desktop %%DATADIR%%/stencils/Flags/suriname.odg %%DATADIR%%/stencils/Flags/suriname.png %%DATADIR%%/stencils/Flags/swaziland.desktop %%DATADIR%%/stencils/Flags/swaziland.odg %%DATADIR%%/stencils/Flags/swaziland.png %%DATADIR%%/stencils/Flags/sweden.desktop %%DATADIR%%/stencils/Flags/sweden.odg %%DATADIR%%/stencils/Flags/sweden.png %%DATADIR%%/stencils/Flags/syrian_arab_republic.desktop %%DATADIR%%/stencils/Flags/syrian_arab_republic.odg %%DATADIR%%/stencils/Flags/syrian_arab_republic.png %%DATADIR%%/stencils/Flags/tajikistan.desktop %%DATADIR%%/stencils/Flags/tajikistan.odg %%DATADIR%%/stencils/Flags/tajikistan.png %%DATADIR%%/stencils/Flags/tanzania.desktop %%DATADIR%%/stencils/Flags/tanzania.odg %%DATADIR%%/stencils/Flags/tanzania.png %%DATADIR%%/stencils/Flags/thailand.desktop %%DATADIR%%/stencils/Flags/thailand.odg %%DATADIR%%/stencils/Flags/thailand.png %%DATADIR%%/stencils/Flags/timor_leste.desktop %%DATADIR%%/stencils/Flags/timor_leste.odg %%DATADIR%%/stencils/Flags/timor_leste.png %%DATADIR%%/stencils/Flags/togo.desktop %%DATADIR%%/stencils/Flags/togo.odg %%DATADIR%%/stencils/Flags/togo.png %%DATADIR%%/stencils/Flags/tonga.desktop %%DATADIR%%/stencils/Flags/tonga.odg %%DATADIR%%/stencils/Flags/tonga.png %%DATADIR%%/stencils/Flags/trinidad_and_tobago.desktop %%DATADIR%%/stencils/Flags/trinidad_and_tobago.odg %%DATADIR%%/stencils/Flags/trinidad_and_tobago.png %%DATADIR%%/stencils/Flags/tunisia.desktop %%DATADIR%%/stencils/Flags/tunisia.odg %%DATADIR%%/stencils/Flags/tunisia.png %%DATADIR%%/stencils/Flags/turkey.desktop %%DATADIR%%/stencils/Flags/turkey.odg %%DATADIR%%/stencils/Flags/turkey.png %%DATADIR%%/stencils/Flags/turkmenistan.desktop %%DATADIR%%/stencils/Flags/turkmenistan.odg %%DATADIR%%/stencils/Flags/turkmenistan.png %%DATADIR%%/stencils/Flags/tuvalu.desktop %%DATADIR%%/stencils/Flags/tuvalu.odg %%DATADIR%%/stencils/Flags/tuvalu.png %%DATADIR%%/stencils/Flags/uganda.desktop %%DATADIR%%/stencils/Flags/uganda.odg %%DATADIR%%/stencils/Flags/uganda.png %%DATADIR%%/stencils/Flags/ukraine.desktop %%DATADIR%%/stencils/Flags/ukraine.odg %%DATADIR%%/stencils/Flags/ukraine.png %%DATADIR%%/stencils/Flags/unesco.desktop %%DATADIR%%/stencils/Flags/unesco.odg %%DATADIR%%/stencils/Flags/unesco.png %%DATADIR%%/stencils/Flags/unicef.desktop %%DATADIR%%/stencils/Flags/unicef.odg %%DATADIR%%/stencils/Flags/unicef.png %%DATADIR%%/stencils/Flags/united_arab_emirates.desktop %%DATADIR%%/stencils/Flags/united_arab_emirates.odg %%DATADIR%%/stencils/Flags/united_arab_emirates.png %%DATADIR%%/stencils/Flags/united_kingdom.desktop %%DATADIR%%/stencils/Flags/united_kingdom.odg %%DATADIR%%/stencils/Flags/united_kingdom.png %%DATADIR%%/stencils/Flags/united_states.desktop %%DATADIR%%/stencils/Flags/united_states.odg %%DATADIR%%/stencils/Flags/united_states.png %%DATADIR%%/stencils/Flags/unitednations.desktop %%DATADIR%%/stencils/Flags/unitednations.odg %%DATADIR%%/stencils/Flags/unitednations.png %%DATADIR%%/stencils/Flags/uruguay.desktop %%DATADIR%%/stencils/Flags/uruguay.odg %%DATADIR%%/stencils/Flags/uruguay.png %%DATADIR%%/stencils/Flags/uzbekistan.desktop %%DATADIR%%/stencils/Flags/uzbekistan.odg %%DATADIR%%/stencils/Flags/uzbekistan.png %%DATADIR%%/stencils/Flags/vanuatu.desktop %%DATADIR%%/stencils/Flags/vanuatu.odg %%DATADIR%%/stencils/Flags/vanuatu.png %%DATADIR%%/stencils/Flags/vatican.desktop %%DATADIR%%/stencils/Flags/vatican.odg %%DATADIR%%/stencils/Flags/vatican.png %%DATADIR%%/stencils/Flags/venezuela.desktop %%DATADIR%%/stencils/Flags/venezuela.odg %%DATADIR%%/stencils/Flags/venezuela.png %%DATADIR%%/stencils/Flags/vietnam.desktop %%DATADIR%%/stencils/Flags/vietnam.odg %%DATADIR%%/stencils/Flags/vietnam.png %%DATADIR%%/stencils/Flags/wake_island.desktop %%DATADIR%%/stencils/Flags/wake_island.odg %%DATADIR%%/stencils/Flags/wake_island.png %%DATADIR%%/stencils/Flags/western_sahara.desktop %%DATADIR%%/stencils/Flags/western_sahara.odg %%DATADIR%%/stencils/Flags/western_sahara.png %%DATADIR%%/stencils/Flags/who.desktop %%DATADIR%%/stencils/Flags/who.odg %%DATADIR%%/stencils/Flags/who.png %%DATADIR%%/stencils/Flags/yemen.desktop %%DATADIR%%/stencils/Flags/yemen.odg %%DATADIR%%/stencils/Flags/yemen.png %%DATADIR%%/stencils/Flags/zambia.desktop %%DATADIR%%/stencils/Flags/zambia.odg %%DATADIR%%/stencils/Flags/zambia.png %%DATADIR%%/stencils/Flags/zimbabwe.desktop %%DATADIR%%/stencils/Flags/zimbabwe.odg %%DATADIR%%/stencils/Flags/zimbabwe.png %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.png %%DATADIR%%/stencils/Gane_and_Sarson/collection.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.odg %%DATADIR%%/stencils/Gane_and_Sarson/data_store.png %%DATADIR%%/stencils/Gane_and_Sarson/entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/entity.png %%DATADIR%%/stencils/Gane_and_Sarson/process.desktop %%DATADIR%%/stencils/Gane_and_Sarson/process.odg %%DATADIR%%/stencils/Gane_and_Sarson/process.png %%DATADIR%%/stencils/Jigsaw/collection.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.odg %%DATADIR%%/stencils/Jigsaw/part_iiii.png %%DATADIR%%/stencils/Jigsaw/part_iiio.desktop %%DATADIR%%/stencils/Jigsaw/part_iiio.odg %%DATADIR%%/stencils/Jigsaw/part_iiio.png %%DATADIR%%/stencils/Jigsaw/part_iioi.desktop %%DATADIR%%/stencils/Jigsaw/part_iioi.odg %%DATADIR%%/stencils/Jigsaw/part_iioi.png %%DATADIR%%/stencils/Jigsaw/part_iioo.desktop %%DATADIR%%/stencils/Jigsaw/part_iioo.odg %%DATADIR%%/stencils/Jigsaw/part_iioo.png %%DATADIR%%/stencils/Jigsaw/part_ioii.desktop %%DATADIR%%/stencils/Jigsaw/part_ioii.odg %%DATADIR%%/stencils/Jigsaw/part_ioii.png %%DATADIR%%/stencils/Jigsaw/part_ioio.desktop %%DATADIR%%/stencils/Jigsaw/part_ioio.odg %%DATADIR%%/stencils/Jigsaw/part_ioio.png %%DATADIR%%/stencils/Jigsaw/part_iooi.desktop %%DATADIR%%/stencils/Jigsaw/part_iooi.odg %%DATADIR%%/stencils/Jigsaw/part_iooi.png %%DATADIR%%/stencils/Jigsaw/part_iooo.desktop %%DATADIR%%/stencils/Jigsaw/part_iooo.odg %%DATADIR%%/stencils/Jigsaw/part_iooo.png %%DATADIR%%/stencils/Jigsaw/part_oiii.desktop %%DATADIR%%/stencils/Jigsaw/part_oiii.odg %%DATADIR%%/stencils/Jigsaw/part_oiii.png %%DATADIR%%/stencils/Jigsaw/part_oiio.desktop %%DATADIR%%/stencils/Jigsaw/part_oiio.odg %%DATADIR%%/stencils/Jigsaw/part_oiio.png %%DATADIR%%/stencils/Jigsaw/part_oioi.desktop %%DATADIR%%/stencils/Jigsaw/part_oioi.odg %%DATADIR%%/stencils/Jigsaw/part_oioi.png %%DATADIR%%/stencils/Jigsaw/part_oioo.desktop %%DATADIR%%/stencils/Jigsaw/part_oioo.odg %%DATADIR%%/stencils/Jigsaw/part_oioo.png %%DATADIR%%/stencils/Jigsaw/part_ooii.desktop %%DATADIR%%/stencils/Jigsaw/part_ooii.odg %%DATADIR%%/stencils/Jigsaw/part_ooii.png %%DATADIR%%/stencils/Jigsaw/part_ooio.desktop %%DATADIR%%/stencils/Jigsaw/part_ooio.odg %%DATADIR%%/stencils/Jigsaw/part_ooio.png %%DATADIR%%/stencils/Jigsaw/part_oooi.desktop %%DATADIR%%/stencils/Jigsaw/part_oooi.odg %%DATADIR%%/stencils/Jigsaw/part_oooi.png %%DATADIR%%/stencils/Jigsaw/part_oooo.desktop %%DATADIR%%/stencils/Jigsaw/part_oooo.odg %%DATADIR%%/stencils/Jigsaw/part_oooo.png %%DATADIR%%/stencils/LST/associator_subsystem.desktop %%DATADIR%%/stencils/LST/associator_subsystem.odg %%DATADIR%%/stencils/LST/associator_subsystem.png %%DATADIR%%/stencils/LST/boundary.png %%DATADIR%%/stencils/LST/cn_subsystem.desktop %%DATADIR%%/stencils/LST/cn_subsystem.odg %%DATADIR%%/stencils/LST/cn_subsystem.png %%DATADIR%%/stencils/LST/collection.desktop %%DATADIR%%/stencils/LST/convert_subsystem.desktop %%DATADIR%%/stencils/LST/convert_subsystem.odg %%DATADIR%%/stencils/LST/convert_subsystem.png %%DATADIR%%/stencils/LST/converter.png %%DATADIR%%/stencils/LST/decider_subsystem.desktop %%DATADIR%%/stencils/LST/decider_subsystem.odg %%DATADIR%%/stencils/LST/decider_subsystem.png %%DATADIR%%/stencils/LST/decode_subsystem.desktop %%DATADIR%%/stencils/LST/decode_subsystem.odg %%DATADIR%%/stencils/LST/decode_subsystem.png %%DATADIR%%/stencils/LST/decoder.desktop %%DATADIR%%/stencils/LST/decoder.odg %%DATADIR%%/stencils/LST/decoder.png %%DATADIR%%/stencils/LST/distributor_subsystem.desktop %%DATADIR%%/stencils/LST/distributor_subsystem.odg %%DATADIR%%/stencils/LST/distributor_subsystem.png %%DATADIR%%/stencils/LST/encode_subsystem.desktop %%DATADIR%%/stencils/LST/encode_subsystem.odg %%DATADIR%%/stencils/LST/encode_subsystem.png %%DATADIR%%/stencils/LST/encoder.desktop %%DATADIR%%/stencils/LST/encoder.odg %%DATADIR%%/stencils/LST/encoder.png %%DATADIR%%/stencils/LST/extruder.desktop %%DATADIR%%/stencils/LST/extruder.odg %%DATADIR%%/stencils/LST/extruder.png %%DATADIR%%/stencils/LST/ingestor.png %%DATADIR%%/stencils/LST/ingestor_subsystem.desktop %%DATADIR%%/stencils/LST/ingestor_subsystem.odg %%DATADIR%%/stencils/LST/ingestor_subsystem.png %%DATADIR%%/stencils/LST/internal_subsystem.desktop %%DATADIR%%/stencils/LST/internal_subsystem.odg %%DATADIR%%/stencils/LST/internal_subsystem.png %%DATADIR%%/stencils/LST/it_subsystem.desktop %%DATADIR%%/stencils/LST/it_subsystem.odg %%DATADIR%%/stencils/LST/it_subsystem.png %%DATADIR%%/stencils/LST/memory_subsystem.desktop %%DATADIR%%/stencils/LST/memory_subsystem.odg %%DATADIR%%/stencils/LST/memory_subsystem.png %%DATADIR%%/stencils/LST/mestorage.desktop %%DATADIR%%/stencils/LST/mestorage.odg %%DATADIR%%/stencils/LST/mestorage.png %%DATADIR%%/stencils/LST/motor.desktop %%DATADIR%%/stencils/LST/motor.odg %%DATADIR%%/stencils/LST/motor.png %%DATADIR%%/stencils/LST/ot_subsystem.desktop %%DATADIR%%/stencils/LST/ot_subsystem.odg %%DATADIR%%/stencils/LST/ot_subsystem.png %%DATADIR%%/stencils/LST/producer.desktop %%DATADIR%%/stencils/LST/producer.odg %%DATADIR%%/stencils/LST/producer.png %%DATADIR%%/stencils/LST/reproducer_subsystem.desktop %%DATADIR%%/stencils/LST/reproducer_subsystem.odg %%DATADIR%%/stencils/LST/reproducer_subsystem.png %%DATADIR%%/stencils/LST/supporter_subsystem.desktop %%DATADIR%%/stencils/LST/supporter_subsystem.odg %%DATADIR%%/stencils/LST/supporter_subsystem.png %%DATADIR%%/stencils/LST/timer.desktop %%DATADIR%%/stencils/LST/timer.odg %%DATADIR%%/stencils/LST/timer.png %%DATADIR%%/stencils/Lights/ACL.desktop %%DATADIR%%/stencils/Lights/ACL.odg %%DATADIR%%/stencils/Lights/ACL.png %%DATADIR%%/stencils/Lights/Blacklight.desktop %%DATADIR%%/stencils/Lights/Blacklight.odg %%DATADIR%%/stencils/Lights/Blacklight.png %%DATADIR%%/stencils/Lights/Blinders.desktop %%DATADIR%%/stencils/Lights/Blinders.odg %%DATADIR%%/stencils/Lights/Blinders.png %%DATADIR%%/stencils/Lights/ERS.desktop %%DATADIR%%/stencils/Lights/ERS.odg %%DATADIR%%/stencils/Lights/ERS.png %%DATADIR%%/stencils/Lights/Fresnel.desktop %%DATADIR%%/stencils/Lights/Fresnel.odg %%DATADIR%%/stencils/Lights/Fresnel.png %%DATADIR%%/stencils/Lights/Moving_head.desktop %%DATADIR%%/stencils/Lights/Moving_head.odg %%DATADIR%%/stencils/Lights/Moving_head.png %%DATADIR%%/stencils/Lights/PAR.desktop %%DATADIR%%/stencils/Lights/PAR.odg %%DATADIR%%/stencils/Lights/PAR.png %%DATADIR%%/stencils/Lights/PAR_floor.desktop %%DATADIR%%/stencils/Lights/PAR_floor.odg %%DATADIR%%/stencils/Lights/PAR_floor.png %%DATADIR%%/stencils/Lights/PC.desktop %%DATADIR%%/stencils/Lights/PC.odg %%DATADIR%%/stencils/Lights/PC.png %%DATADIR%%/stencils/Lights/Scanner.desktop %%DATADIR%%/stencils/Lights/Scanner.odg %%DATADIR%%/stencils/Lights/Scanner.png %%DATADIR%%/stencils/Lights/Striplight.desktop %%DATADIR%%/stencils/Lights/Striplight.odg %%DATADIR%%/stencils/Lights/Striplight.png %%DATADIR%%/stencils/Lights/Stroboscope.desktop %%DATADIR%%/stencils/Lights/Stroboscope.odg %%DATADIR%%/stencils/Lights/Stroboscope.png %%DATADIR%%/stencils/Lights/Structure.desktop %%DATADIR%%/stencils/Lights/Structure.odg %%DATADIR%%/stencils/Lights/Structure.png %%DATADIR%%/stencils/Lights/collection.desktop %%DATADIR%%/stencils/Logic/and.desktop %%DATADIR%%/stencils/Logic/and.odg %%DATADIR%%/stencils/Logic/and.png %%DATADIR%%/stencils/Logic/buffer.desktop %%DATADIR%%/stencils/Logic/buffer.odg %%DATADIR%%/stencils/Logic/buffer.png %%DATADIR%%/stencils/Logic/collection.desktop %%DATADIR%%/stencils/Logic/connector.desktop %%DATADIR%%/stencils/Logic/connector.odg %%DATADIR%%/stencils/Logic/connector.png %%DATADIR%%/stencils/Logic/inverter.desktop %%DATADIR%%/stencils/Logic/inverter.odg %%DATADIR%%/stencils/Logic/inverter.png %%DATADIR%%/stencils/Logic/nand.desktop %%DATADIR%%/stencils/Logic/nand.odg %%DATADIR%%/stencils/Logic/nand.png %%DATADIR%%/stencils/Logic/nor.desktop %%DATADIR%%/stencils/Logic/nor.odg %%DATADIR%%/stencils/Logic/nor.png %%DATADIR%%/stencils/Logic/not.desktop %%DATADIR%%/stencils/Logic/not.odg %%DATADIR%%/stencils/Logic/not.png %%DATADIR%%/stencils/Logic/or.desktop %%DATADIR%%/stencils/Logic/or.odg %%DATADIR%%/stencils/Logic/or.png %%DATADIR%%/stencils/Logic/xor.desktop %%DATADIR%%/stencils/Logic/xor.odg %%DATADIR%%/stencils/Logic/xor.png %%DATADIR%%/stencils/MSE/collection.desktop %%DATADIR%%/stencils/MSE/demultiplexer.desktop %%DATADIR%%/stencils/MSE/demultiplexer.odg %%DATADIR%%/stencils/MSE/demultiplexer.png %%DATADIR%%/stencils/MSE/large_extension_node.desktop %%DATADIR%%/stencils/MSE/large_extension_node.odg %%DATADIR%%/stencils/MSE/large_extension_node.png %%DATADIR%%/stencils/MSE/multiplexer.desktop %%DATADIR%%/stencils/MSE/multiplexer.odg %%DATADIR%%/stencils/MSE/multiplexer.png %%DATADIR%%/stencils/MSE/node_center.desktop %%DATADIR%%/stencils/MSE/node_center.odg %%DATADIR%%/stencils/MSE/node_center.png %%DATADIR%%/stencils/MSE/small_extension_node.desktop %%DATADIR%%/stencils/MSE/small_extension_node.odg %%DATADIR%%/stencils/MSE/small_extension_node.png %%DATADIR%%/stencils/MSE/tacsat.desktop %%DATADIR%%/stencils/MSE/tacsat.odg %%DATADIR%%/stencils/MSE/tacsat.png %%DATADIR%%/stencils/Map/Block1.desktop %%DATADIR%%/stencils/Map/Block1.odg %%DATADIR%%/stencils/Map/Block1.png %%DATADIR%%/stencils/Map/Block2.desktop %%DATADIR%%/stencils/Map/Block2.odg %%DATADIR%%/stencils/Map/Block2.png %%DATADIR%%/stencils/Map/Block3.desktop %%DATADIR%%/stencils/Map/Block3.odg %%DATADIR%%/stencils/Map/Block3.png %%DATADIR%%/stencils/Map/Block4.desktop %%DATADIR%%/stencils/Map/Block4.odg %%DATADIR%%/stencils/Map/Block4.png %%DATADIR%%/stencils/Map/Block5.desktop %%DATADIR%%/stencils/Map/Block5.odg %%DATADIR%%/stencils/Map/Block5.png %%DATADIR%%/stencils/Map/Block6.desktop %%DATADIR%%/stencils/Map/Block6.odg %%DATADIR%%/stencils/Map/Block6.png %%DATADIR%%/stencils/Map/Block7.desktop %%DATADIR%%/stencils/Map/Block7.odg %%DATADIR%%/stencils/Map/Block7.png %%DATADIR%%/stencils/Map/Car1.desktop %%DATADIR%%/stencils/Map/Car1.odg %%DATADIR%%/stencils/Map/Car1.png %%DATADIR%%/stencils/Map/Car2.desktop %%DATADIR%%/stencils/Map/Car2.odg %%DATADIR%%/stencils/Map/Car2.png %%DATADIR%%/stencils/Map/Corner1.desktop %%DATADIR%%/stencils/Map/Corner1.odg %%DATADIR%%/stencils/Map/Corner1.png %%DATADIR%%/stencils/Map/Corner2.desktop %%DATADIR%%/stencils/Map/Corner2.odg %%DATADIR%%/stencils/Map/Corner2.png %%DATADIR%%/stencils/Map/Crossroads.desktop %%DATADIR%%/stencils/Map/Crossroads.odg %%DATADIR%%/stencils/Map/Crossroads.png %%DATADIR%%/stencils/Map/Elevated.desktop %%DATADIR%%/stencils/Map/Elevated.odg %%DATADIR%%/stencils/Map/Elevated.png %%DATADIR%%/stencils/Map/Factory.desktop %%DATADIR%%/stencils/Map/Factory.odg %%DATADIR%%/stencils/Map/Factory.png %%DATADIR%%/stencils/Map/FootBridge.desktop %%DATADIR%%/stencils/Map/FootBridge.odg %%DATADIR%%/stencils/Map/FootBridge.png %%DATADIR%%/stencils/Map/OneWay.desktop %%DATADIR%%/stencils/Map/OneWay.odg %%DATADIR%%/stencils/Map/OneWay.png %%DATADIR%%/stencils/Map/RedCar.desktop %%DATADIR%%/stencils/Map/RedCar.odg %%DATADIR%%/stencils/Map/RedCar.png %%DATADIR%%/stencils/Map/River.desktop %%DATADIR%%/stencils/Map/River.odg %%DATADIR%%/stencils/Map/River.png %%DATADIR%%/stencils/Map/Road1.desktop %%DATADIR%%/stencils/Map/Road1.odg %%DATADIR%%/stencils/Map/Road1.png %%DATADIR%%/stencils/Map/Roof1.desktop %%DATADIR%%/stencils/Map/Roof1.odg %%DATADIR%%/stencils/Map/Roof1.png %%DATADIR%%/stencils/Map/StraightRoad1.desktop %%DATADIR%%/stencils/Map/StraightRoad1.odg %%DATADIR%%/stencils/Map/StraightRoad1.png %%DATADIR%%/stencils/Map/T-Junction.desktop %%DATADIR%%/stencils/Map/T-Junction.odg %%DATADIR%%/stencils/Map/T-Junction.png %%DATADIR%%/stencils/Map/Train1.desktop %%DATADIR%%/stencils/Map/Train1.odg %%DATADIR%%/stencils/Map/Train1.png %%DATADIR%%/stencils/Map/Train2.desktop %%DATADIR%%/stencils/Map/Train2.odg %%DATADIR%%/stencils/Map/Train2.png %%DATADIR%%/stencils/Map/Tree1.desktop %%DATADIR%%/stencils/Map/Tree1.odg %%DATADIR%%/stencils/Map/Tree1.png %%DATADIR%%/stencils/Map/collection.desktop %%DATADIR%%/stencils/Misc/collection.desktop %%DATADIR%%/stencils/Misc/expended-node.desktop %%DATADIR%%/stencils/Misc/expended-node.odg %%DATADIR%%/stencils/Misc/expended-node.png %%DATADIR%%/stencils/Misc/expensible-node.desktop %%DATADIR%%/stencils/Misc/expensible-node.odg %%DATADIR%%/stencils/Misc/expensible-node.png %%DATADIR%%/stencils/Misc/file.desktop %%DATADIR%%/stencils/Misc/file.odg %%DATADIR%%/stencils/Misc/file.png %%DATADIR%%/stencils/Misc/folder.desktop %%DATADIR%%/stencils/Misc/folder.odg %%DATADIR%%/stencils/Misc/folder.png %%DATADIR%%/stencils/Network/antenna.desktop %%DATADIR%%/stencils/Network/antenna.odg %%DATADIR%%/stencils/Network/antenna.png %%DATADIR%%/stencils/Network/collection.desktop %%DATADIR%%/stencils/Network/computer.desktop %%DATADIR%%/stencils/Network/computer.odg %%DATADIR%%/stencils/Network/computer.png %%DATADIR%%/stencils/Network/dat_external.desktop %%DATADIR%%/stencils/Network/dat_external.odg %%DATADIR%%/stencils/Network/dat_external.png %%DATADIR%%/stencils/Network/digitizing_board.desktop %%DATADIR%%/stencils/Network/digitizing_board.odg %%DATADIR%%/stencils/Network/digitizing_board.png %%DATADIR%%/stencils/Network/disc.desktop %%DATADIR%%/stencils/Network/disc.odg %%DATADIR%%/stencils/Network/disc.png %%DATADIR%%/stencils/Network/diskette.desktop %%DATADIR%%/stencils/Network/diskette.odg %%DATADIR%%/stencils/Network/diskette.png %%DATADIR%%/stencils/Network/firewall.desktop %%DATADIR%%/stencils/Network/firewall.odg %%DATADIR%%/stencils/Network/firewall.png %%DATADIR%%/stencils/Network/flash.desktop %%DATADIR%%/stencils/Network/flash.odg %%DATADIR%%/stencils/Network/flash.png %%DATADIR%%/stencils/Network/genmonitor.desktop %%DATADIR%%/stencils/Network/genmonitor.odg %%DATADIR%%/stencils/Network/genmonitor.png %%DATADIR%%/stencils/Network/hub.desktop %%DATADIR%%/stencils/Network/hub.odg %%DATADIR%%/stencils/Network/hub.png %%DATADIR%%/stencils/Network/mobile_phone.desktop %%DATADIR%%/stencils/Network/mobile_phone.odg %%DATADIR%%/stencils/Network/mobile_phone.png %%DATADIR%%/stencils/Network/modem.desktop %%DATADIR%%/stencils/Network/modem.odg %%DATADIR%%/stencils/Network/modem.png %%DATADIR%%/stencils/Network/modularswitch.desktop %%DATADIR%%/stencils/Network/modularswitch.odg %%DATADIR%%/stencils/Network/modularswitch.png %%DATADIR%%/stencils/Network/monitor.desktop %%DATADIR%%/stencils/Network/monitor.odg %%DATADIR%%/stencils/Network/monitor.png %%DATADIR%%/stencils/Network/nwcloud.desktop %%DATADIR%%/stencils/Network/nwcloud.odg %%DATADIR%%/stencils/Network/nwcloud.png %%DATADIR%%/stencils/Network/patch-panel.desktop %%DATADIR%%/stencils/Network/patch-panel.odg %%DATADIR%%/stencils/Network/patch-panel.png %%DATADIR%%/stencils/Network/pc_bigtower.desktop %%DATADIR%%/stencils/Network/pc_bigtower.odg %%DATADIR%%/stencils/Network/pc_bigtower.png %%DATADIR%%/stencils/Network/pc_desktop.desktop %%DATADIR%%/stencils/Network/pc_desktop.odg %%DATADIR%%/stencils/Network/pc_desktop.png %%DATADIR%%/stencils/Network/pc_miditower.desktop %%DATADIR%%/stencils/Network/pc_miditower.odg %%DATADIR%%/stencils/Network/pc_miditower.png %%DATADIR%%/stencils/Network/pc_minitower.desktop %%DATADIR%%/stencils/Network/pc_minitower.odg %%DATADIR%%/stencils/Network/pc_minitower.png %%DATADIR%%/stencils/Network/plotter.desktop %%DATADIR%%/stencils/Network/plotter.odg %%DATADIR%%/stencils/Network/plotter.png %%DATADIR%%/stencils/Network/printer.desktop %%DATADIR%%/stencils/Network/printer.odg %%DATADIR%%/stencils/Network/printer.png %%DATADIR%%/stencils/Network/rj45plug.desktop %%DATADIR%%/stencils/Network/rj45plug.odg %%DATADIR%%/stencils/Network/rj45plug.png %%DATADIR%%/stencils/Network/router-symbol.desktop %%DATADIR%%/stencils/Network/router-symbol.odg %%DATADIR%%/stencils/Network/router-symbol.png %%DATADIR%%/stencils/Network/sceadplug.desktop %%DATADIR%%/stencils/Network/sceadplug.odg %%DATADIR%%/stencils/Network/sceadplug.png %%DATADIR%%/stencils/Network/speaker.desktop %%DATADIR%%/stencils/Network/speaker.odg %%DATADIR%%/stencils/Network/speaker.png %%DATADIR%%/stencils/Network/speaker_amp.desktop %%DATADIR%%/stencils/Network/speaker_amp.odg %%DATADIR%%/stencils/Network/speaker_amp.png %%DATADIR%%/stencils/Network/switch-atm-symbol.desktop %%DATADIR%%/stencils/Network/switch-atm-symbol.odg %%DATADIR%%/stencils/Network/switch-atm-symbol.png %%DATADIR%%/stencils/Network/switch-symbol.desktop %%DATADIR%%/stencils/Network/switch-symbol.odg %%DATADIR%%/stencils/Network/switch-symbol.png %%DATADIR%%/stencils/Network/telephone.desktop %%DATADIR%%/stencils/Network/telephone.odg %%DATADIR%%/stencils/Network/telephone.png %%DATADIR%%/stencils/Network/workstation.desktop %%DATADIR%%/stencils/Network/workstation.odg %%DATADIR%%/stencils/Network/workstation.png %%DATADIR%%/stencils/Network/zip-disk.desktop %%DATADIR%%/stencils/Network/zip-disk.odg %%DATADIR%%/stencils/Network/zip-disk.png %%DATADIR%%/stencils/Optics/atten.desktop %%DATADIR%%/stencils/Optics/atten.odg %%DATADIR%%/stencils/Optics/atten.png %%DATADIR%%/stencils/Optics/beam.desktop %%DATADIR%%/stencils/Optics/beam.odg %%DATADIR%%/stencils/Optics/beam.png %%DATADIR%%/stencils/Optics/circulator.desktop %%DATADIR%%/stencils/Optics/circulator.odg %%DATADIR%%/stencils/Optics/circulator.png %%DATADIR%%/stencils/Optics/collection.desktop %%DATADIR%%/stencils/Optics/coupler.desktop %%DATADIR%%/stencils/Optics/coupler.odg %%DATADIR%%/stencils/Optics/coupler.png %%DATADIR%%/stencils/Optics/coupler_vert.desktop %%DATADIR%%/stencils/Optics/coupler_vert.odg %%DATADIR%%/stencils/Optics/coupler_vert.png %%DATADIR%%/stencils/Optics/detector.desktop %%DATADIR%%/stencils/Optics/detector.odg %%DATADIR%%/stencils/Optics/detector.png %%DATADIR%%/stencils/Optics/detector_vert.desktop %%DATADIR%%/stencils/Optics/detector_vert.odg %%DATADIR%%/stencils/Optics/detector_vert.png %%DATADIR%%/stencils/Optics/dfb_laser.desktop %%DATADIR%%/stencils/Optics/dfb_laser.odg %%DATADIR%%/stencils/Optics/dfb_laser.png %%DATADIR%%/stencils/Optics/dfb_laser_big.png %%DATADIR%%/stencils/Optics/dfb_laser_vert.desktop %%DATADIR%%/stencils/Optics/dfb_laser_vert.odg %%DATADIR%%/stencils/Optics/dfb_laser_vert.png %%DATADIR%%/stencils/Optics/edfa.desktop %%DATADIR%%/stencils/Optics/edfa.odg %%DATADIR%%/stencils/Optics/edfa.png %%DATADIR%%/stencils/Optics/edfa_vert.desktop %%DATADIR%%/stencils/Optics/edfa_vert.odg %%DATADIR%%/stencils/Optics/edfa_vert.png %%DATADIR%%/stencils/Optics/fibre.desktop %%DATADIR%%/stencils/Optics/fibre.odg %%DATADIR%%/stencils/Optics/fibre.png %%DATADIR%%/stencils/Optics/fibre_vert.desktop %%DATADIR%%/stencils/Optics/fibre_vert.odg %%DATADIR%%/stencils/Optics/fibre_vert.png %%DATADIR%%/stencils/Optics/isolator.desktop %%DATADIR%%/stencils/Optics/isolator.odg %%DATADIR%%/stencils/Optics/isolator.png %%DATADIR%%/stencils/Optics/isolator_vert.desktop %%DATADIR%%/stencils/Optics/isolator_vert.odg %%DATADIR%%/stencils/Optics/isolator_vert.png %%DATADIR%%/stencils/Optics/lpg.desktop %%DATADIR%%/stencils/Optics/lpg.odg %%DATADIR%%/stencils/Optics/lpg.png %%DATADIR%%/stencils/Optics/lpg_vert.desktop %%DATADIR%%/stencils/Optics/lpg_vert.odg %%DATADIR%%/stencils/Optics/lpg_vert.png %%DATADIR%%/stencils/Optics/mod.desktop %%DATADIR%%/stencils/Optics/mod.odg %%DATADIR%%/stencils/Optics/mod.png %%DATADIR%%/stencils/Optics/mod_vert.desktop %%DATADIR%%/stencils/Optics/mod_vert.odg %%DATADIR%%/stencils/Optics/mod_vert.png %%DATADIR%%/stencils/Optics/phasemod.desktop %%DATADIR%%/stencils/Optics/phasemod.odg %%DATADIR%%/stencils/Optics/phasemod.png %%DATADIR%%/stencils/Optics/phasemod_vert.desktop %%DATADIR%%/stencils/Optics/phasemod_vert.odg %%DATADIR%%/stencils/Optics/phasemod_vert.png %%DATADIR%%/stencils/Optics/polarisation_control.desktop %%DATADIR%%/stencils/Optics/polarisation_control.odg %%DATADIR%%/stencils/Optics/polarisation_control.png %%DATADIR%%/stencils/Optics/polarisation_control_vert.desktop %%DATADIR%%/stencils/Optics/polarisation_control_vert.odg %%DATADIR%%/stencils/Optics/polarisation_control_vert.png %%DATADIR%%/stencils/Optics/scope.desktop %%DATADIR%%/stencils/Optics/scope.odg %%DATADIR%%/stencils/Optics/scope.png %%DATADIR%%/stencils/Optics/sine.desktop %%DATADIR%%/stencils/Optics/sine.odg %%DATADIR%%/stencils/Optics/sine.png %%DATADIR%%/stencils/Optics/spectrum.desktop %%DATADIR%%/stencils/Optics/spectrum.odg %%DATADIR%%/stencils/Optics/spectrum.png %%DATADIR%%/stencils/Optics/square.desktop %%DATADIR%%/stencils/Optics/square.odg %%DATADIR%%/stencils/Optics/square.png %%DATADIR%%/stencils/Optics/tuneable.desktop %%DATADIR%%/stencils/Optics/tuneable.odg %%DATADIR%%/stencils/Optics/tuneable.png %%DATADIR%%/stencils/Optics/wave.desktop %%DATADIR%%/stencils/Optics/wave.odg %%DATADIR%%/stencils/Optics/wave.png %%DATADIR%%/stencils/Pneumatic/cnx.desktop %%DATADIR%%/stencils/Pneumatic/cnx.odg %%DATADIR%%/stencils/Pneumatic/cnx.png %%DATADIR%%/stencils/Pneumatic/collection.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.odg %%DATADIR%%/stencils/Pneumatic/comelec1.png %%DATADIR%%/stencils/Pneumatic/comelec2.desktop %%DATADIR%%/stencils/Pneumatic/comelec2.odg %%DATADIR%%/stencils/Pneumatic/comelec2.png %%DATADIR%%/stencils/Pneumatic/commusc.desktop %%DATADIR%%/stencils/Pneumatic/commusc.odg %%DATADIR%%/stencils/Pneumatic/commusc.png %%DATADIR%%/stencils/Pneumatic/compb.desktop %%DATADIR%%/stencils/Pneumatic/compb.odg %%DATADIR%%/stencils/Pneumatic/compb.png %%DATADIR%%/stencils/Pneumatic/compilh.desktop %%DATADIR%%/stencils/Pneumatic/compilh.odg %%DATADIR%%/stencils/Pneumatic/compilh.png %%DATADIR%%/stencils/Pneumatic/compilp.desktop %%DATADIR%%/stencils/Pneumatic/compilp.odg %%DATADIR%%/stencils/Pneumatic/compilp.png %%DATADIR%%/stencils/Pneumatic/compush.desktop %%DATADIR%%/stencils/Pneumatic/compush.odg %%DATADIR%%/stencils/Pneumatic/compush.png %%DATADIR%%/stencils/Pneumatic/comspr.desktop %%DATADIR%%/stencils/Pneumatic/comspr.odg %%DATADIR%%/stencils/Pneumatic/comspr.png %%DATADIR%%/stencils/Pneumatic/dejack.desktop %%DATADIR%%/stencils/Pneumatic/dejack.odg %%DATADIR%%/stencils/Pneumatic/dejack.png %%DATADIR%%/stencils/Pneumatic/dist22.desktop %%DATADIR%%/stencils/Pneumatic/dist22.odg %%DATADIR%%/stencils/Pneumatic/dist22.png %%DATADIR%%/stencils/Pneumatic/dist32.desktop %%DATADIR%%/stencils/Pneumatic/dist32.odg %%DATADIR%%/stencils/Pneumatic/dist32.png %%DATADIR%%/stencils/Pneumatic/dist42.desktop %%DATADIR%%/stencils/Pneumatic/dist42.odg %%DATADIR%%/stencils/Pneumatic/dist42.png %%DATADIR%%/stencils/Pneumatic/dist52.desktop %%DATADIR%%/stencils/Pneumatic/dist52.odg %%DATADIR%%/stencils/Pneumatic/dist52.png %%DATADIR%%/stencils/Pneumatic/drain.desktop %%DATADIR%%/stencils/Pneumatic/drain.odg %%DATADIR%%/stencils/Pneumatic/drain.png %%DATADIR%%/stencils/Pneumatic/press.desktop %%DATADIR%%/stencils/Pneumatic/press.odg %%DATADIR%%/stencils/Pneumatic/press.png %%DATADIR%%/stencils/Pneumatic/presshy.desktop %%DATADIR%%/stencils/Pneumatic/presshy.odg %%DATADIR%%/stencils/Pneumatic/presshy.png %%DATADIR%%/stencils/Pneumatic/presspn.desktop %%DATADIR%%/stencils/Pneumatic/presspn.odg %%DATADIR%%/stencils/Pneumatic/presspn.png %%DATADIR%%/stencils/Pneumatic/seijack.desktop %%DATADIR%%/stencils/Pneumatic/seijack.odg %%DATADIR%%/stencils/Pneumatic/seijack.png %%DATADIR%%/stencils/Pneumatic/seojack.desktop %%DATADIR%%/stencils/Pneumatic/seojack.odg %%DATADIR%%/stencils/Pneumatic/seojack.png %%DATADIR%%/stencils/RDP/collection.desktop %%DATADIR%%/stencils/RDP/place.desktop %%DATADIR%%/stencils/RDP/place.odg %%DATADIR%%/stencils/RDP/place.png %%DATADIR%%/stencils/RDP/place_marquee.desktop %%DATADIR%%/stencils/RDP/place_marquee.odg %%DATADIR%%/stencils/RDP/place_marquee.png %%DATADIR%%/stencils/RDP/t_transition.desktop %%DATADIR%%/stencils/RDP/t_transition.odg %%DATADIR%%/stencils/RDP/t_transition.png %%DATADIR%%/stencils/RDP/transition.desktop %%DATADIR%%/stencils/RDP/transition.odg %%DATADIR%%/stencils/RDP/transition.png %%DATADIR%%/stencils/Racks/collection.desktop %%DATADIR%%/stencils/Racks/equipment_10u.desktop %%DATADIR%%/stencils/Racks/equipment_10u.odg %%DATADIR%%/stencils/Racks/equipment_10u.png %%DATADIR%%/stencils/Racks/equipment_11u.desktop %%DATADIR%%/stencils/Racks/equipment_11u.odg %%DATADIR%%/stencils/Racks/equipment_11u.png %%DATADIR%%/stencils/Racks/equipment_12u.desktop %%DATADIR%%/stencils/Racks/equipment_12u.odg %%DATADIR%%/stencils/Racks/equipment_12u.png %%DATADIR%%/stencils/Racks/equipment_1u.desktop %%DATADIR%%/stencils/Racks/equipment_1u.odg %%DATADIR%%/stencils/Racks/equipment_1u.png %%DATADIR%%/stencils/Racks/equipment_2u.desktop %%DATADIR%%/stencils/Racks/equipment_2u.odg %%DATADIR%%/stencils/Racks/equipment_2u.png %%DATADIR%%/stencils/Racks/equipment_3u.desktop %%DATADIR%%/stencils/Racks/equipment_3u.odg %%DATADIR%%/stencils/Racks/equipment_3u.png %%DATADIR%%/stencils/Racks/equipment_4u.desktop %%DATADIR%%/stencils/Racks/equipment_4u.odg %%DATADIR%%/stencils/Racks/equipment_4u.png %%DATADIR%%/stencils/Racks/equipment_5u.desktop %%DATADIR%%/stencils/Racks/equipment_5u.odg %%DATADIR%%/stencils/Racks/equipment_5u.png %%DATADIR%%/stencils/Racks/equipment_6u.desktop %%DATADIR%%/stencils/Racks/equipment_6u.odg %%DATADIR%%/stencils/Racks/equipment_6u.png %%DATADIR%%/stencils/Racks/equipment_7u.desktop %%DATADIR%%/stencils/Racks/equipment_7u.odg %%DATADIR%%/stencils/Racks/equipment_7u.png %%DATADIR%%/stencils/Racks/equipment_8u.desktop %%DATADIR%%/stencils/Racks/equipment_8u.odg %%DATADIR%%/stencils/Racks/equipment_8u.png %%DATADIR%%/stencils/Racks/equipment_9u.desktop %%DATADIR%%/stencils/Racks/equipment_9u.odg %%DATADIR%%/stencils/Racks/equipment_9u.png %%DATADIR%%/stencils/Racks/power_strip_bs.png %%DATADIR%%/stencils/Racks/power_strip_bs_7.desktop %%DATADIR%%/stencils/Racks/power_strip_bs_7.odg %%DATADIR%%/stencils/Racks/power_strip_schuko.png %%DATADIR%%/stencils/Racks/power_strip_schuko_8.desktop %%DATADIR%%/stencils/Racks/power_strip_schuko_8.odg %%DATADIR%%/stencils/Racks/power_strip_ute.png %%DATADIR%%/stencils/Racks/power_strip_ute_8.desktop %%DATADIR%%/stencils/Racks/power_strip_ute_8.odg %%DATADIR%%/stencils/Racks/rack_12u.desktop %%DATADIR%%/stencils/Racks/rack_12u.odg %%DATADIR%%/stencils/Racks/rack_12u.png %%DATADIR%%/stencils/Racks/rack_16u.desktop %%DATADIR%%/stencils/Racks/rack_16u.odg %%DATADIR%%/stencils/Racks/rack_16u.png %%DATADIR%%/stencils/Racks/rack_20u.desktop %%DATADIR%%/stencils/Racks/rack_20u.odg %%DATADIR%%/stencils/Racks/rack_20u.png %%DATADIR%%/stencils/Racks/rack_38u.desktop %%DATADIR%%/stencils/Racks/rack_38u.odg %%DATADIR%%/stencils/Racks/rack_38u.png %%DATADIR%%/stencils/Racks/rack_42u.desktop %%DATADIR%%/stencils/Racks/rack_42u.odg %%DATADIR%%/stencils/Racks/rack_42u.png %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.desktop %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.odg %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.png %%DATADIR%%/stencils/Renewable_Energy/collection.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.odg %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.png %%DATADIR%%/stencils/Renewable_Energy/data_logger.desktop %%DATADIR%%/stencils/Renewable_Energy/data_logger.odg %%DATADIR%%/stencils/Renewable_Energy/data_logger.png %%DATADIR%%/stencils/Renewable_Energy/meas_tower.desktop %%DATADIR%%/stencils/Renewable_Energy/meas_tower.odg %%DATADIR%%/stencils/Renewable_Energy/meas_tower.png %%DATADIR%%/stencils/Renewable_Energy/solar_module.desktop %%DATADIR%%/stencils/Renewable_Energy/solar_module.odg %%DATADIR%%/stencils/Renewable_Energy/solar_module.png %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.desktop %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.odg %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.png %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.odg %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.png %%DATADIR%%/stencils/Renewable_Energy/wind_vane.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_vane.odg %%DATADIR%%/stencils/Renewable_Energy/wind_vane.png %%DATADIR%%/stencils/SDL/block.desktop %%DATADIR%%/stencils/SDL/block.odg %%DATADIR%%/stencils/SDL/block.png %%DATADIR%%/stencils/SDL/collection.desktop %%DATADIR%%/stencils/SDL/comment.desktop %%DATADIR%%/stencils/SDL/comment.odg %%DATADIR%%/stencils/SDL/comment.png %%DATADIR%%/stencils/SDL/decision.desktop %%DATADIR%%/stencils/SDL/decision.odg %%DATADIR%%/stencils/SDL/decision.png %%DATADIR%%/stencils/SDL/function.desktop %%DATADIR%%/stencils/SDL/function.odg %%DATADIR%%/stencils/SDL/function.png %%DATADIR%%/stencils/SDL/header.desktop %%DATADIR%%/stencils/SDL/header.odg %%DATADIR%%/stencils/SDL/header.png %%DATADIR%%/stencils/SDL/inout.desktop %%DATADIR%%/stencils/SDL/inout.odg %%DATADIR%%/stencils/SDL/inout.png %%DATADIR%%/stencils/SDL/macro.desktop %%DATADIR%%/stencils/SDL/macro.odg %%DATADIR%%/stencils/SDL/macro.png %%DATADIR%%/stencils/SDL/note.desktop %%DATADIR%%/stencils/SDL/note.odg %%DATADIR%%/stencils/SDL/note.png %%DATADIR%%/stencils/SDL/process.desktop %%DATADIR%%/stencils/SDL/process.odg %%DATADIR%%/stencils/SDL/process.png %%DATADIR%%/stencils/SDL/receive.desktop %%DATADIR%%/stencils/SDL/receive.odg %%DATADIR%%/stencils/SDL/receive.png %%DATADIR%%/stencils/SDL/return.desktop %%DATADIR%%/stencils/SDL/return.odg %%DATADIR%%/stencils/SDL/return.png %%DATADIR%%/stencils/SDL/save.desktop %%DATADIR%%/stencils/SDL/save.odg %%DATADIR%%/stencils/SDL/save.png %%DATADIR%%/stencils/SDL/send.desktop %%DATADIR%%/stencils/SDL/send.odg %%DATADIR%%/stencils/SDL/send.png %%DATADIR%%/stencils/SDL/service.desktop %%DATADIR%%/stencils/SDL/service.odg %%DATADIR%%/stencils/SDL/service.png %%DATADIR%%/stencils/SDL/state.desktop %%DATADIR%%/stencils/SDL/state.odg %%DATADIR%%/stencils/SDL/state.png %%DATADIR%%/stencils/SDL/stop.desktop %%DATADIR%%/stencils/SDL/stop.odg %%DATADIR%%/stencils/SDL/stop.png %%DATADIR%%/stencils/SDL/task.desktop %%DATADIR%%/stencils/SDL/task.odg %%DATADIR%%/stencils/SDL/task.png %%DATADIR%%/stencils/Scenegraph/appearance.desktop %%DATADIR%%/stencils/Scenegraph/appearance.odg %%DATADIR%%/stencils/Scenegraph/appearance.png %%DATADIR%%/stencils/Scenegraph/callback.desktop %%DATADIR%%/stencils/Scenegraph/callback.odg %%DATADIR%%/stencils/Scenegraph/callback.png %%DATADIR%%/stencils/Scenegraph/camera.desktop %%DATADIR%%/stencils/Scenegraph/camera.odg %%DATADIR%%/stencils/Scenegraph/camera.png %%DATADIR%%/stencils/Scenegraph/collection.desktop %%DATADIR%%/stencils/Scenegraph/component.desktop %%DATADIR%%/stencils/Scenegraph/component.odg %%DATADIR%%/stencils/Scenegraph/component.png %%DATADIR%%/stencils/Scenegraph/engine.desktop %%DATADIR%%/stencils/Scenegraph/engine.odg %%DATADIR%%/stencils/Scenegraph/engine.png %%DATADIR%%/stencils/Scenegraph/field.desktop %%DATADIR%%/stencils/Scenegraph/field.odg %%DATADIR%%/stencils/Scenegraph/field.png %%DATADIR%%/stencils/Scenegraph/group.desktop %%DATADIR%%/stencils/Scenegraph/group.odg %%DATADIR%%/stencils/Scenegraph/group.png %%DATADIR%%/stencils/Scenegraph/light.desktop %%DATADIR%%/stencils/Scenegraph/light.odg %%DATADIR%%/stencils/Scenegraph/light.png %%DATADIR%%/stencils/Scenegraph/manipulator.desktop %%DATADIR%%/stencils/Scenegraph/manipulator.odg %%DATADIR%%/stencils/Scenegraph/manipulator.png %%DATADIR%%/stencils/Scenegraph/metric.desktop %%DATADIR%%/stencils/Scenegraph/metric.odg %%DATADIR%%/stencils/Scenegraph/metric.png %%DATADIR%%/stencils/Scenegraph/nodekit.desktop %%DATADIR%%/stencils/Scenegraph/nodekit.odg %%DATADIR%%/stencils/Scenegraph/nodekit.png %%DATADIR%%/stencils/Scenegraph/property.desktop %%DATADIR%%/stencils/Scenegraph/property.odg %%DATADIR%%/stencils/Scenegraph/property.png %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.desktop %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.odg %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.png %%DATADIR%%/stencils/Scenegraph/separator.desktop %%DATADIR%%/stencils/Scenegraph/separator.odg %%DATADIR%%/stencils/Scenegraph/separator.png %%DATADIR%%/stencils/Scenegraph/shape.desktop %%DATADIR%%/stencils/Scenegraph/shape.odg %%DATADIR%%/stencils/Scenegraph/shape.png %%DATADIR%%/stencils/Scenegraph/soselection.desktop %%DATADIR%%/stencils/Scenegraph/soselection.odg %%DATADIR%%/stencils/Scenegraph/soselection.png %%DATADIR%%/stencils/Scenegraph/subgraph.desktop %%DATADIR%%/stencils/Scenegraph/subgraph.odg %%DATADIR%%/stencils/Scenegraph/subgraph.png %%DATADIR%%/stencils/Scenegraph/switch.desktop %%DATADIR%%/stencils/Scenegraph/switch.odg %%DATADIR%%/stencils/Scenegraph/switch.png %%DATADIR%%/stencils/Scenegraph/transform.desktop %%DATADIR%%/stencils/Scenegraph/transform.odg %%DATADIR%%/stencils/Scenegraph/transform.png %%DATADIR%%/stencils/Sybase/client.desktop %%DATADIR%%/stencils/Sybase/client.odg %%DATADIR%%/stencils/Sybase/client.png %%DATADIR%%/stencils/Sybase/collection.desktop %%DATADIR%%/stencils/Sybase/dataserver.desktop %%DATADIR%%/stencils/Sybase/dataserver.odg %%DATADIR%%/stencils/Sybase/dataserver.png %%DATADIR%%/stencils/Sybase/ltm.desktop %%DATADIR%%/stencils/Sybase/ltm.odg %%DATADIR%%/stencils/Sybase/ltm.png %%DATADIR%%/stencils/Sybase/repserver.desktop %%DATADIR%%/stencils/Sybase/repserver.odg %%DATADIR%%/stencils/Sybase/repserver.png %%DATADIR%%/stencils/Sybase/rsm.desktop %%DATADIR%%/stencils/Sybase/rsm.odg %%DATADIR%%/stencils/Sybase/rsm.png %%DATADIR%%/stencils/Sybase/stableq.desktop %%DATADIR%%/stencils/Sybase/stableq.odg %%DATADIR%%/stencils/Sybase/stableq.png %%DATADIR%%/stencils/Value_Stream_Mapping/collection.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.odg %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.png %%DATADIR%%/styles/markers.xml %%DATADIR%%/thesaurus/thesaurus.txt %%DATADIR%%_shape_music/fonts/Emmentaler-14.ttf %%DATADIR%%sheets/CellToolOptionWidgets.xml %%DATADIR%%sheets/dtd/kspread.dtd %%DATADIR%%sheets/functions/bitops.xml %%DATADIR%%sheets/functions/conversion.xml %%DATADIR%%sheets/functions/database.xml %%DATADIR%%sheets/functions/datetime.xml %%DATADIR%%sheets/functions/engineering.xml %%DATADIR%%sheets/functions/financial.xml %%DATADIR%%sheets/functions/information.xml %%DATADIR%%sheets/functions/logic.xml %%DATADIR%%sheets/functions/math.xml %%DATADIR%%sheets/functions/reference.xml %%DATADIR%%sheets/functions/statistical.xml %%DATADIR%%sheets/functions/text.xml %%DATADIR%%sheets/functions/trig.xml %%DATADIR%%sheets/icons/hicolor/16x16/actions/adjustcol.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/adjustrow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/black_sum.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/cell_edit.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/cell_layout.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/delete-comment.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/delete_table.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/deletecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/dissociatecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/edit-comment.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-bottom.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-center.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-align-vertical-top.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-currency.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-text-capitalize.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/format-text-direction-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/hide_table_column.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/hide_table_row.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insertcell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/insertcellcopy.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell-horizontal.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell-vertical.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/mergecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/multirow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/removecell.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/resizecol.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/resizerow.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/selection.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/series.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/show_table_column.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/show_table_row.png %%DATADIR%%sheets/icons/hicolor/16x16/actions/special_paste.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/black_sum.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-bottom.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-center.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-align-vertical-top.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-currency.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell-horizontal.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell-vertical.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/mergecell.png %%DATADIR%%sheets/icons/hicolor/22x22/actions/multirow.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-all.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-bottom.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-diagonal-bl-tr.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-diagonal-tl-br.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-external.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal-horizontal.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal-vertical.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-internal.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-left.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-none.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-right.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-border-set-top.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-number-percent.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-precision-less.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/format-precision-more.png %%DATADIR%%sheets/icons/hicolor/32x32/actions/insert-math-expression.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_balancesheet.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_bmi.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_creditcardtracker.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_expensereport.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_invoice.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_menuplan.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_packingslip.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_pricequotation.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_studentidcard.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_vacationchecklist.png %%DATADIR%%sheets/icons/hicolor/48x48/actions/template_worksheet.png %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_balancesheet.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_bmi.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_creditcardtracker.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_expensereport.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_invoice.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_menuplan.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_packingslip.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_pricequotation.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_studentidcard.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_vacationchecklist.svgz %%DATADIR%%sheets/icons/hicolor/scalable/actions/template_worksheet.svgz %%DATADIR%%sheets/sheetstyles/standard1.ksts %%DATADIR%%sheets/sheetstyles/standard1.png %%DATADIR%%sheets/sheetstyles/standard1.xml %%DATADIR%%sheets/sheetstyles/standard2.ksts %%DATADIR%%sheets/sheetstyles/standard2.png %%DATADIR%%sheets/sheetstyles/standard2.xml %%DATADIR%%sheets/templates/Business/.directory %%DATADIR%%sheets/templates/Business/.source/BalanceSheet.kst %%DATADIR%%sheets/templates/Business/.source/ExpenseReport.kst %%DATADIR%%sheets/templates/Business/.source/Invoice.kst %%DATADIR%%sheets/templates/Business/.source/PackingSlip.kst %%DATADIR%%sheets/templates/Business/.source/PriceQuotation.kst %%DATADIR%%sheets/templates/Business/BalanceSheet.desktop %%DATADIR%%sheets/templates/Business/ExpenseReport.desktop %%DATADIR%%sheets/templates/Business/Invoice.desktop %%DATADIR%%sheets/templates/Business/PackingSlip.desktop %%DATADIR%%sheets/templates/Business/PriceQuotation.desktop %%DATADIR%%sheets/templates/General/.directory %%DATADIR%%sheets/templates/General/.source/StudentIDCard.kst %%DATADIR%%sheets/templates/General/.source/Worksheet.kst %%DATADIR%%sheets/templates/General/StudentIDCard.desktop %%DATADIR%%sheets/templates/General/Worksheet.desktop %%DATADIR%%sheets/templates/HomeFamily/.directory %%DATADIR%%sheets/templates/HomeFamily/.source/BMI.kst %%DATADIR%%sheets/templates/HomeFamily/.source/CreditCardTracker.kst %%DATADIR%%sheets/templates/HomeFamily/.source/MenuPlan.kst %%DATADIR%%sheets/templates/HomeFamily/.source/VacationChecklist.kst %%DATADIR%%sheets/templates/HomeFamily/BMI.desktop %%DATADIR%%sheets/templates/HomeFamily/CreditCardTracker.desktop %%DATADIR%%sheets/templates/HomeFamily/MenuPlan.desktop %%DATADIR%%sheets/templates/HomeFamily/VacationChecklist.desktop %%DATADIR%%sheets/viewplugins/solver.rc %%DATADIR%%stage/animations/animations.xml %%DATADIR%%stage/cursors/pen.png %%DATADIR%%stage/icons/hicolor/16x16/actions/highlight-pointer-spot.png %%DATADIR%%stage/icons/hicolor/16x16/actions/pause-to-black-screen.png %%DATADIR%%stage/icons/hicolor/32x32/actions/after_previous.png %%DATADIR%%stage/icons/hicolor/32x32/actions/edit_animation.png %%DATADIR%%stage/icons/hicolor/32x32/actions/onclick.png %%DATADIR%%stage/icons/hicolor/32x32/actions/unrecognized_animation.png %%DATADIR%%stage/icons/hicolor/32x32/actions/with_previous.png %%DATADIR%%stage/icons/hicolor/48x48/actions/template_emptylandscape.png %%DATADIR%%stage/icons/hicolor/64x64/actions/appear_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/blue_orange_vector.png %%DATADIR%%stage/icons/hicolor/64x64/actions/bounce_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/burning_desire.png %%DATADIR%%stage/icons/hicolor/64x64/actions/business.png %%DATADIR%%stage/icons/hicolor/64x64/actions/collapse_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/crawl_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/curious_penguin.png %%DATADIR%%stage/icons/hicolor/64x64/actions/custom_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/disappear_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/emphasis_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/entrance_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/exit_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/falling_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/flash_once_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/flood_light.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_in_slow_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/fly_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/horizontal_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/in_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/kde_events.png %%DATADIR%%stage/icons/hicolor/64x64/actions/motion_path_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/movie_credits_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/out_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/rounded_square.png %%DATADIR%%stage/icons/hicolor/64x64/actions/simple_waves.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_monotone.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_monotone_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_morning.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_morning_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_night.png %%DATADIR%%stage/icons/hicolor/64x64/actions/skyline_night_wide.png %%DATADIR%%stage/icons/hicolor/64x64/actions/spiral_in_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/spiral_out_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/strange_far_hills.png %%DATADIR%%stage/icons/hicolor/64x64/actions/stretchy_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/swish_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/swivel_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/thread_animation.png %%DATADIR%%stage/icons/hicolor/64x64/actions/vertical_animations.png %%DATADIR%%stage/icons/hicolor/64x64/actions/zoom_animation.png %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-blue.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-gold.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-magenta.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/cohere-red.svgz %%DATADIR%%stage/icons/hicolor/scalable/actions/template_emptylandscape.svgz %%DATADIR%%stage/pics/layout-elements.svg %%DATADIR%%stage/styles/defaultstyles.xml %%DATADIR%%stage/templates/Screen/.directory %%DATADIR%%stage/templates/Screen/.source/emptyLandscape.otp %%DATADIR%%stage/templates/Screen/.source/emptyLandscapeWide.otp %%DATADIR%%stage/templates/Screen/emptyLandscape.desktop %%DATADIR%%stage/templates/Screen/emptyLandscapeWide.desktop %%DATADIR%%stage/templates/exportHTML/slides.html %%DATADIR%%stage/templates/exportHTML/templates/stage.zip %%DATADIR%%stage/templates/exportHTML/toc.html %%DATADIR%%stage/templates/odf/.directory %%DATADIR%%stage/templates/odf/.source/blue_orange_vector.otp %%DATADIR%%stage/templates/odf/.source/burning_desire.otp %%DATADIR%%stage/templates/odf/.source/business.otp %%DATADIR%%stage/templates/odf/.source/cohere-blue.otp %%DATADIR%%stage/templates/odf/.source/cohere-gold.otp %%DATADIR%%stage/templates/odf/.source/cohere-magenta.otp %%DATADIR%%stage/templates/odf/.source/cohere-red.otp %%DATADIR%%stage/templates/odf/.source/curious_penguin.otp %%DATADIR%%stage/templates/odf/.source/flood_light.otp %%DATADIR%%stage/templates/odf/.source/kde_events.otp %%DATADIR%%stage/templates/odf/.source/rounded_square.otp %%DATADIR%%stage/templates/odf/.source/simple_waves.otp %%DATADIR%%stage/templates/odf/.source/skyline_monotone.otp %%DATADIR%%stage/templates/odf/.source/skyline_monotone_wide.otp %%DATADIR%%stage/templates/odf/.source/skyline_morning.otp %%DATADIR%%stage/templates/odf/.source/skyline_morning_wide.otp %%DATADIR%%stage/templates/odf/.source/skyline_night.otp %%DATADIR%%stage/templates/odf/.source/skyline_night_wide.otp %%DATADIR%%stage/templates/odf/.source/strange_far_hills.otp %%DATADIR%%stage/templates/odf/.thumbnail/blue_orange_vector.png %%DATADIR%%stage/templates/odf/.thumbnail/burning_desire.png %%DATADIR%%stage/templates/odf/.thumbnail/business.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-blue.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-gold.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-magenta.png %%DATADIR%%stage/templates/odf/.thumbnail/cohere-red.png %%DATADIR%%stage/templates/odf/.thumbnail/curious_penguin.png %%DATADIR%%stage/templates/odf/.thumbnail/flood_light.png %%DATADIR%%stage/templates/odf/.thumbnail/kde_events.png %%DATADIR%%stage/templates/odf/.thumbnail/rounded_square.png %%DATADIR%%stage/templates/odf/.thumbnail/simple_waves.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_monotone.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_monotone_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_morning.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_morning_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_night.png %%DATADIR%%stage/templates/odf/.thumbnail/skyline_night_wide.png %%DATADIR%%stage/templates/odf/.thumbnail/strange_far_hills.png %%DATADIR%%stage/templates/odf/blue_orange_vector.desktop %%DATADIR%%stage/templates/odf/burning_desire.desktop %%DATADIR%%stage/templates/odf/business.desktop %%DATADIR%%stage/templates/odf/cohere-blue.desktop %%DATADIR%%stage/templates/odf/cohere-gold.desktop %%DATADIR%%stage/templates/odf/cohere-magenta.desktop %%DATADIR%%stage/templates/odf/cohere-red.desktop %%DATADIR%%stage/templates/odf/curious_penguin.desktop %%DATADIR%%stage/templates/odf/flood_light.desktop %%DATADIR%%stage/templates/odf/kde_events.desktop %%DATADIR%%stage/templates/odf/rounded_square.desktop %%DATADIR%%stage/templates/odf/simple_waves.desktop %%DATADIR%%stage/templates/odf/skyline_monotone.desktop %%DATADIR%%stage/templates/odf/skyline_monotone_wide.desktop %%DATADIR%%stage/templates/odf/skyline_morning.desktop %%DATADIR%%stage/templates/odf/skyline_morning_wide.desktop %%DATADIR%%stage/templates/odf/skyline_night.desktop %%DATADIR%%stage/templates/odf/skyline_night_wide.desktop %%DATADIR%%stage/templates/odf/strange_far_hills.desktop %%DATADIR%%words/icons/hicolor/128x128/actions/template_a4.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_colorful.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_fax.png %%DATADIR%%words/icons/hicolor/128x128/actions/template_letter.png %%DATADIR%%words/icons/hicolor/22x22/actions/tool_pagelayout.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_a4.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_colorful.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_fax.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_letter.png %%DATADIR%%words/icons/hicolor/48x48/actions/template_plaintext.png %%DATADIR%%words/icons/hicolor/scalable/actions/template_a4.svgz %%DATADIR%%words/icons/hicolor/scalable/actions/template_fax.svgz %%DATADIR%%words/icons/hicolor/scalable/actions/template_letter.svgz %%DATADIR%%words/styles/defaultstyles.xml %%DATADIR%%words/templates/Normal/.directory %%DATADIR%%words/templates/Normal/.source/A4.odt %%DATADIR%%words/templates/Normal/.source/ColorfulLetter.odt %%DATADIR%%words/templates/Normal/.source/FaxLetter.odt %%DATADIR%%words/templates/Normal/.source/ProfessionalLetter.odt %%DATADIR%%words/templates/Normal/.thumbnail/a4.png %%DATADIR%%words/templates/Normal/.thumbnail/colorful.png %%DATADIR%%words/templates/Normal/.thumbnail/fax.png %%DATADIR%%words/templates/Normal/.thumbnail/professional.png %%DATADIR%%words/templates/Normal/A4.desktop %%DATADIR%%words/templates/Normal/ColorfulLetter.desktop %%DATADIR%%words/templates/Normal/FaxLetter.desktop %%DATADIR%%words/templates/Normal/ProfessionalLetter.desktop share/config.kcfg/calligrasheets.kcfg share/doc/HTML/ca/calligra/index.cache.bz2 share/doc/HTML/ca/calligra/index.docbook share/doc/HTML/ca/sheets/advanced.docbook share/doc/HTML/ca/sheets/basics.docbook share/doc/HTML/ca/sheets/commands.docbook share/doc/HTML/ca/sheets/config.docbook share/doc/HTML/ca/sheets/configdialog.docbook share/doc/HTML/ca/sheets/format.docbook share/doc/HTML/ca/sheets/functions.docbook share/doc/HTML/ca/sheets/index.cache.bz2 share/doc/HTML/ca/sheets/index.docbook share/doc/HTML/ca/stage/great-presentations.docbook share/doc/HTML/ca/stage/guides.docbook share/doc/HTML/ca/stage/index.cache.bz2 share/doc/HTML/ca/stage/index.docbook share/doc/HTML/ca/stage/menus.docbook share/doc/HTML/ca/stage/options.docbook share/doc/HTML/ca/stage/tutorial.docbook share/doc/HTML/de/calligra/index.cache.bz2 share/doc/HTML/de/calligra/index.docbook share/doc/HTML/de/stage/great-presentations.docbook share/doc/HTML/de/stage/guides.docbook share/doc/HTML/de/stage/index.cache.bz2 share/doc/HTML/de/stage/index.docbook share/doc/HTML/de/stage/menus.docbook share/doc/HTML/de/stage/options.docbook share/doc/HTML/de/stage/tutorial.docbook share/doc/HTML/en/calligra/index.cache.bz2 share/doc/HTML/en/calligra/index.docbook share/doc/HTML/en/calligrasheets/advanced.docbook share/doc/HTML/en/calligrasheets/basics.docbook share/doc/HTML/en/calligrasheets/cellformat0.png share/doc/HTML/en/calligrasheets/cellformat1.png share/doc/HTML/en/calligrasheets/cellformat2.png share/doc/HTML/en/calligrasheets/cellformat3.png share/doc/HTML/en/calligrasheets/cellformat4.png share/doc/HTML/en/calligrasheets/cellformat5.png share/doc/HTML/en/calligrasheets/cellformat6.png share/doc/HTML/en/calligrasheets/cellprotection1.png share/doc/HTML/en/calligrasheets/cellprotection2.png share/doc/HTML/en/calligrasheets/chart1.png share/doc/HTML/en/calligrasheets/commands.docbook share/doc/HTML/en/calligrasheets/config.docbook share/doc/HTML/en/calligrasheets/configdialog.docbook share/doc/HTML/en/calligrasheets/configure2.png share/doc/HTML/en/calligrasheets/configure3.png share/doc/HTML/en/calligrasheets/configure4.png share/doc/HTML/en/calligrasheets/configure5.png share/doc/HTML/en/calligrasheets/configure6.png share/doc/HTML/en/calligrasheets/copy1.png share/doc/HTML/en/calligrasheets/decreasedecimal.png share/doc/HTML/en/calligrasheets/format.docbook share/doc/HTML/en/calligrasheets/functions.docbook share/doc/HTML/en/calligrasheets/hi22-action-money.png share/doc/HTML/en/calligrasheets/hideformula1.png share/doc/HTML/en/calligrasheets/hideformula2.png share/doc/HTML/en/calligrasheets/hideformula3.png share/doc/HTML/en/calligrasheets/hideformula4.png share/doc/HTML/en/calligrasheets/hideformula5.png share/doc/HTML/en/calligrasheets/increasedecimal.png share/doc/HTML/en/calligrasheets/index.cache.bz2 share/doc/HTML/en/calligrasheets/index.docbook share/doc/HTML/en/calligrasheets/newdocument.png share/doc/HTML/en/calligrasheets/percent.png share/doc/HTML/en/calligrasheets/pivot1.png share/doc/HTML/en/calligrasheets/pivot2.png share/doc/HTML/en/calligrasheets/pivot3.png share/doc/HTML/en/calligrasheets/pivot4.png share/doc/HTML/en/calligrasheets/sheetproperties.png share/doc/HTML/en/calligrasheets/shortcut1.png share/doc/HTML/en/calligrasheets/sort1.png share/doc/HTML/en/calligrasheets/starting1.png share/doc/HTML/en/calligrastage/22x22-actions-format-text-color.png share/doc/HTML/en/calligrastage/barstyle1.png share/doc/HTML/en/calligrastage/break.png share/doc/HTML/en/calligrastage/configure-author.png share/doc/HTML/en/calligrastage/configure-document.png share/doc/HTML/en/calligrastage/configure-grid.png share/doc/HTML/en/calligrastage/configure-misc.png share/doc/HTML/en/calligrastage/great-presentations.docbook share/doc/HTML/en/calligrastage/guides.docbook share/doc/HTML/en/calligrastage/htmlshow3.png share/doc/HTML/en/calligrastage/htmlshow9.png share/doc/HTML/en/calligrastage/index.cache.bz2 share/doc/HTML/en/calligrastage/index.docbook share/doc/HTML/en/calligrastage/link.png share/doc/HTML/en/calligrastage/menus.docbook share/doc/HTML/en/calligrastage/options.docbook share/doc/HTML/en/calligrastage/settings03.png share/doc/HTML/en/calligrastage/settings04.png share/doc/HTML/en/calligrastage/template03.png share/doc/HTML/en/calligrastage/template04.png share/doc/HTML/en/calligrastage/tut01.png share/doc/HTML/en/calligrastage/tut03.png share/doc/HTML/en/calligrastage/tut04.png share/doc/HTML/en/calligrastage/tut07.png share/doc/HTML/en/calligrastage/tut09.png share/doc/HTML/en/calligrastage/tut10.png share/doc/HTML/en/calligrastage/tut13.png share/doc/HTML/en/calligrastage/tut19.png share/doc/HTML/en/calligrastage/tut20.png share/doc/HTML/en/calligrastage/tut21.png share/doc/HTML/en/calligrastage/tut25.png share/doc/HTML/en/calligrastage/tut26.png share/doc/HTML/en/calligrastage/tutorial.docbook share/doc/HTML/es/calligra/index.cache.bz2 share/doc/HTML/es/calligra/index.docbook share/doc/HTML/es/sheets/advanced.docbook share/doc/HTML/es/sheets/basics.docbook share/doc/HTML/es/sheets/cellformat0.png share/doc/HTML/es/sheets/cellformat1.png share/doc/HTML/es/sheets/cellformat2.png share/doc/HTML/es/sheets/cellformat3.png share/doc/HTML/es/sheets/cellformat4.png share/doc/HTML/es/sheets/cellformat5.png share/doc/HTML/es/sheets/cellformat6.png share/doc/HTML/es/sheets/cellprotection1.png share/doc/HTML/es/sheets/cellprotection2.png share/doc/HTML/es/sheets/chart1.png share/doc/HTML/es/sheets/commands.docbook share/doc/HTML/es/sheets/config.docbook share/doc/HTML/es/sheets/configdialog.docbook share/doc/HTML/es/sheets/configure2.png share/doc/HTML/es/sheets/configure3.png share/doc/HTML/es/sheets/copy1.png share/doc/HTML/es/sheets/decreasedecimal.png share/doc/HTML/es/sheets/format.docbook share/doc/HTML/es/sheets/functions.docbook share/doc/HTML/es/sheets/hideformula1.png share/doc/HTML/es/sheets/hideformula2.png share/doc/HTML/es/sheets/hideformula3.png share/doc/HTML/es/sheets/hideformula4.png share/doc/HTML/es/sheets/hideformula5.png share/doc/HTML/es/sheets/increasedecimal.png share/doc/HTML/es/sheets/index.cache.bz2 share/doc/HTML/es/sheets/index.docbook share/doc/HTML/es/sheets/newdocument.png share/doc/HTML/es/sheets/percent.png share/doc/HTML/es/sheets/sheetproperties.png share/doc/HTML/es/sheets/shortcut1.png share/doc/HTML/es/sheets/sort1.png share/doc/HTML/es/sheets/starting1.png share/doc/HTML/es/stage/great-presentations.docbook share/doc/HTML/es/stage/guides.docbook share/doc/HTML/es/stage/index.cache.bz2 share/doc/HTML/es/stage/index.docbook share/doc/HTML/es/stage/menus.docbook share/doc/HTML/es/stage/options.docbook share/doc/HTML/es/stage/tutorial.docbook share/doc/HTML/et/calligra/index.cache.bz2 share/doc/HTML/et/calligra/index.docbook share/doc/HTML/fr/calligra/index.cache.bz2 share/doc/HTML/fr/calligra/index.docbook share/doc/HTML/fr/sheets/advanced.docbook share/doc/HTML/fr/sheets/basics.docbook share/doc/HTML/fr/sheets/cellformat0.png share/doc/HTML/fr/sheets/cellformat1.png share/doc/HTML/fr/sheets/cellformat2.png share/doc/HTML/fr/sheets/cellformat3.png share/doc/HTML/fr/sheets/cellformat4.png share/doc/HTML/fr/sheets/cellformat5.png share/doc/HTML/fr/sheets/chart1.png share/doc/HTML/fr/sheets/commands.docbook share/doc/HTML/fr/sheets/config.docbook share/doc/HTML/fr/sheets/configdialog.docbook share/doc/HTML/fr/sheets/copy1.png share/doc/HTML/fr/sheets/format.docbook share/doc/HTML/fr/sheets/functions.docbook share/doc/HTML/fr/sheets/index.cache.bz2 share/doc/HTML/fr/sheets/index.docbook share/doc/HTML/fr/sheets/shortcut1.png share/doc/HTML/fr/sheets/shortcut2.png share/doc/HTML/fr/sheets/shortcut3.png share/doc/HTML/fr/sheets/sort1.png share/doc/HTML/fr/sheets/starting1.png share/doc/HTML/id/calligra/index.cache.bz2 share/doc/HTML/id/calligra/index.docbook share/doc/HTML/it/calligra/index.cache.bz2 share/doc/HTML/it/calligra/index.docbook share/doc/HTML/it/sheets/advanced.docbook share/doc/HTML/it/sheets/basics.docbook share/doc/HTML/it/sheets/cellformat0.png share/doc/HTML/it/sheets/cellformat1.png share/doc/HTML/it/sheets/cellformat2.png share/doc/HTML/it/sheets/cellformat3.png share/doc/HTML/it/sheets/cellformat4.png share/doc/HTML/it/sheets/cellformat5.png share/doc/HTML/it/sheets/cellformat6.png share/doc/HTML/it/sheets/cellprotection1.png share/doc/HTML/it/sheets/cellprotection2.png share/doc/HTML/it/sheets/chart1.png share/doc/HTML/it/sheets/commands.docbook share/doc/HTML/it/sheets/config.docbook share/doc/HTML/it/sheets/configdialog.docbook share/doc/HTML/it/sheets/configure2.png share/doc/HTML/it/sheets/configure3.png share/doc/HTML/it/sheets/configure4.png share/doc/HTML/it/sheets/configure5.png share/doc/HTML/it/sheets/configure6.png share/doc/HTML/it/sheets/copy1.png share/doc/HTML/it/sheets/format.docbook share/doc/HTML/it/sheets/functions.docbook share/doc/HTML/it/sheets/hideformula1.png share/doc/HTML/it/sheets/hideformula2.png share/doc/HTML/it/sheets/hideformula3.png share/doc/HTML/it/sheets/hideformula4.png share/doc/HTML/it/sheets/hideformula5.png share/doc/HTML/it/sheets/index.cache.bz2 share/doc/HTML/it/sheets/index.docbook share/doc/HTML/it/sheets/newdocument.png share/doc/HTML/it/sheets/pivot1.png share/doc/HTML/it/sheets/pivot2.png share/doc/HTML/it/sheets/pivot3.png share/doc/HTML/it/sheets/pivot4.png share/doc/HTML/it/sheets/sheetproperties.png share/doc/HTML/it/sheets/shortcut1.png share/doc/HTML/it/sheets/sort1.png share/doc/HTML/it/sheets/starting1.png share/doc/HTML/it/stage/barstyle1.png share/doc/HTML/it/stage/configure-author.png share/doc/HTML/it/stage/configure-document.png share/doc/HTML/it/stage/configure-grid.png share/doc/HTML/it/stage/configure-misc.png share/doc/HTML/it/stage/great-presentations.docbook share/doc/HTML/it/stage/guides.docbook share/doc/HTML/it/stage/htmlshow3.png share/doc/HTML/it/stage/htmlshow9.png share/doc/HTML/it/stage/index.cache.bz2 share/doc/HTML/it/stage/index.docbook share/doc/HTML/it/stage/menus.docbook share/doc/HTML/it/stage/options.docbook share/doc/HTML/it/stage/settings03.png share/doc/HTML/it/stage/settings04.png share/doc/HTML/it/stage/template03.png share/doc/HTML/it/stage/template04.png share/doc/HTML/it/stage/tut01.png share/doc/HTML/it/stage/tut03.png share/doc/HTML/it/stage/tut04.png share/doc/HTML/it/stage/tut07.png share/doc/HTML/it/stage/tut09.png share/doc/HTML/it/stage/tut10.png share/doc/HTML/it/stage/tut13.png share/doc/HTML/it/stage/tut19.png share/doc/HTML/it/stage/tut20.png share/doc/HTML/it/stage/tut21.png share/doc/HTML/it/stage/tut25.png share/doc/HTML/it/stage/tut26.png share/doc/HTML/it/stage/tutorial.docbook share/doc/HTML/nl/calligra/index.cache.bz2 share/doc/HTML/nl/calligra/index.docbook share/doc/HTML/nl/sheets/advanced.docbook share/doc/HTML/nl/sheets/basics.docbook share/doc/HTML/nl/sheets/celformat0.png share/doc/HTML/nl/sheets/celformat1.png share/doc/HTML/nl/sheets/celformat2.png share/doc/HTML/nl/sheets/celformat3.png share/doc/HTML/nl/sheets/celformat4.png share/doc/HTML/nl/sheets/celformat5.png share/doc/HTML/nl/sheets/chart1.png share/doc/HTML/nl/sheets/commands.docbook share/doc/HTML/nl/sheets/config.docbook share/doc/HTML/nl/sheets/configdialog.docbook share/doc/HTML/nl/sheets/copy1.png share/doc/HTML/nl/sheets/format.docbook share/doc/HTML/nl/sheets/functions.docbook share/doc/HTML/nl/sheets/index.cache.bz2 share/doc/HTML/nl/sheets/index.docbook share/doc/HTML/nl/sheets/shortcut1.png share/doc/HTML/nl/sheets/shortcut2.png share/doc/HTML/nl/sheets/shortcut3.png share/doc/HTML/nl/sheets/sort1.png share/doc/HTML/nl/sheets/starting1.png share/doc/HTML/nl/stage/barstyle1.png share/doc/HTML/nl/stage/barstyle2.png share/doc/HTML/nl/stage/barstyle3.png share/doc/HTML/nl/stage/barstyle4.png share/doc/HTML/nl/stage/barstyle5.png share/doc/HTML/nl/stage/barstyle6.png share/doc/HTML/nl/stage/barstyle7.png share/doc/HTML/nl/stage/great-presentations.docbook share/doc/HTML/nl/stage/guides.docbook share/doc/HTML/nl/stage/htmlshow00.png share/doc/HTML/nl/stage/htmlshow01.png share/doc/HTML/nl/stage/htmlshow02.png share/doc/HTML/nl/stage/htmlshow02a.png share/doc/HTML/nl/stage/htmlshow03.png share/doc/HTML/nl/stage/htmlshow04.png share/doc/HTML/nl/stage/htmlshow05.png share/doc/HTML/nl/stage/htmlshow07.png share/doc/HTML/nl/stage/index.cache.bz2 share/doc/HTML/nl/stage/index.docbook share/doc/HTML/nl/stage/menus.docbook share/doc/HTML/nl/stage/msexport1.png share/doc/HTML/nl/stage/msexport2.png share/doc/HTML/nl/stage/msexport3.png share/doc/HTML/nl/stage/msexport4.png share/doc/HTML/nl/stage/options.docbook share/doc/HTML/nl/stage/settings01.png share/doc/HTML/nl/stage/settings03.png share/doc/HTML/nl/stage/settings04.png share/doc/HTML/nl/stage/settings05.png share/doc/HTML/nl/stage/settings06.png share/doc/HTML/nl/stage/template02.png share/doc/HTML/nl/stage/template03.png share/doc/HTML/nl/stage/template04.png share/doc/HTML/nl/stage/template05.png share/doc/HTML/nl/stage/template06.png share/doc/HTML/nl/stage/template07.png share/doc/HTML/nl/stage/textmenu01.png share/doc/HTML/nl/stage/textmenu02.png share/doc/HTML/nl/stage/textmenu03.png share/doc/HTML/nl/stage/textmenu03a.png share/doc/HTML/nl/stage/textmenu04.png share/doc/HTML/nl/stage/toolsmenu01.png share/doc/HTML/nl/stage/tut01.png share/doc/HTML/nl/stage/tut02.png share/doc/HTML/nl/stage/tut03.png share/doc/HTML/nl/stage/tut04.png share/doc/HTML/nl/stage/tut05.png share/doc/HTML/nl/stage/tut06.png share/doc/HTML/nl/stage/tut07.png share/doc/HTML/nl/stage/tut08.png share/doc/HTML/nl/stage/tut09.png share/doc/HTML/nl/stage/tut10.png share/doc/HTML/nl/stage/tut11.png share/doc/HTML/nl/stage/tut12.png share/doc/HTML/nl/stage/tut13.png share/doc/HTML/nl/stage/tut14.png share/doc/HTML/nl/stage/tut15.png share/doc/HTML/nl/stage/tut16.png share/doc/HTML/nl/stage/tut17.png share/doc/HTML/nl/stage/tut18.png share/doc/HTML/nl/stage/tut19.png share/doc/HTML/nl/stage/tut20.png share/doc/HTML/nl/stage/tut21.png share/doc/HTML/nl/stage/tut22.png share/doc/HTML/nl/stage/tut23.png share/doc/HTML/nl/stage/tutorial.docbook share/doc/HTML/pt/calligra/index.cache.bz2 share/doc/HTML/pt/calligra/index.docbook share/doc/HTML/pt/stage/great-presentations.docbook share/doc/HTML/pt/stage/guides.docbook share/doc/HTML/pt/stage/index.cache.bz2 share/doc/HTML/pt/stage/index.docbook share/doc/HTML/pt/stage/menus.docbook share/doc/HTML/pt/stage/options.docbook share/doc/HTML/pt/stage/tutorial.docbook share/doc/HTML/pt_BR/calligra/index.cache.bz2 share/doc/HTML/pt_BR/calligra/index.docbook share/doc/HTML/pt_BR/sheets/advanced.docbook share/doc/HTML/pt_BR/sheets/basics.docbook share/doc/HTML/pt_BR/sheets/commands.docbook share/doc/HTML/pt_BR/sheets/config.docbook share/doc/HTML/pt_BR/sheets/configdialog.docbook share/doc/HTML/pt_BR/sheets/format.docbook share/doc/HTML/pt_BR/sheets/functions.docbook share/doc/HTML/pt_BR/sheets/index.cache.bz2 share/doc/HTML/pt_BR/sheets/index.docbook share/doc/HTML/pt_BR/stage/great-presentations.docbook share/doc/HTML/pt_BR/stage/guides.docbook share/doc/HTML/pt_BR/stage/index.cache.bz2 share/doc/HTML/pt_BR/stage/index.docbook share/doc/HTML/pt_BR/stage/menus.docbook share/doc/HTML/pt_BR/stage/options.docbook share/doc/HTML/pt_BR/stage/tutorial.docbook share/doc/HTML/ru/calligra/index.cache.bz2 share/doc/HTML/ru/calligra/index.docbook share/doc/HTML/sl/calligra/index.cache.bz2 share/doc/HTML/sl/calligra/index.docbook share/doc/HTML/sl/stage/great-presentations.docbook share/doc/HTML/sl/stage/guides.docbook share/doc/HTML/sl/stage/index.cache.bz2 share/doc/HTML/sl/stage/index.docbook share/doc/HTML/sl/stage/menus.docbook share/doc/HTML/sl/stage/options.docbook share/doc/HTML/sl/stage/tutorial.docbook share/doc/HTML/sv/calligra/index.cache.bz2 share/doc/HTML/sv/calligra/index.docbook share/doc/HTML/sv/sheets/advanced.docbook share/doc/HTML/sv/sheets/basics.docbook share/doc/HTML/sv/sheets/cellformat0.png share/doc/HTML/sv/sheets/cellformat1.png share/doc/HTML/sv/sheets/cellformat2.png share/doc/HTML/sv/sheets/cellformat3.png share/doc/HTML/sv/sheets/cellformat4.png share/doc/HTML/sv/sheets/cellformat5.png share/doc/HTML/sv/sheets/cellformat6.png share/doc/HTML/sv/sheets/cellformat7.png share/doc/HTML/sv/sheets/cellprotection1.png share/doc/HTML/sv/sheets/cellprotection2.png share/doc/HTML/sv/sheets/chart1.png share/doc/HTML/sv/sheets/commands.docbook share/doc/HTML/sv/sheets/config.docbook share/doc/HTML/sv/sheets/configdialog.docbook share/doc/HTML/sv/sheets/configure1.png share/doc/HTML/sv/sheets/configure2.png share/doc/HTML/sv/sheets/configure3.png share/doc/HTML/sv/sheets/configure4.png share/doc/HTML/sv/sheets/configure5.png share/doc/HTML/sv/sheets/configure6.png share/doc/HTML/sv/sheets/copy1.png share/doc/HTML/sv/sheets/format.docbook share/doc/HTML/sv/sheets/functions.docbook share/doc/HTML/sv/sheets/hideformula1.png share/doc/HTML/sv/sheets/hideformula2.png share/doc/HTML/sv/sheets/hideformula3.png share/doc/HTML/sv/sheets/hideformula4.png share/doc/HTML/sv/sheets/hideformula5.png share/doc/HTML/sv/sheets/index.cache.bz2 share/doc/HTML/sv/sheets/index.docbook share/doc/HTML/sv/sheets/kbd-focus-ext.png share/doc/HTML/sv/sheets/mousenav.png share/doc/HTML/sv/sheets/newdocument.png share/doc/HTML/sv/sheets/sheetproperties.png share/doc/HTML/sv/sheets/shortcut1.png share/doc/HTML/sv/sheets/shortcut2.png share/doc/HTML/sv/sheets/shortcut3.png share/doc/HTML/sv/sheets/sort1.png share/doc/HTML/sv/sheets/starting1.png share/doc/HTML/sv/sheets/tts.png share/doc/HTML/sv/stage/autocorrection1.png share/doc/HTML/sv/stage/autocorrection2.png share/doc/HTML/sv/stage/autocorrection3.png share/doc/HTML/sv/stage/autocorrection4.png share/doc/HTML/sv/stage/barstyle1.png share/doc/HTML/sv/stage/barstyle3.png share/doc/HTML/sv/stage/barstyle4.png share/doc/HTML/sv/stage/barstyle5.png share/doc/HTML/sv/stage/barstyle6.png share/doc/HTML/sv/stage/barstyle7.png share/doc/HTML/sv/stage/changeformat.png share/doc/HTML/sv/stage/completion.png share/doc/HTML/sv/stage/configure1.png share/doc/HTML/sv/stage/configure2.png share/doc/HTML/sv/stage/configure3.png share/doc/HTML/sv/stage/configure4.png share/doc/HTML/sv/stage/configure5.png share/doc/HTML/sv/stage/configure6.png share/doc/HTML/sv/stage/configure6b.png share/doc/HTML/sv/stage/configure6c.png share/doc/HTML/sv/stage/configure6d.png share/doc/HTML/sv/stage/configure6e.png share/doc/HTML/sv/stage/configure7.png share/doc/HTML/sv/stage/great-presentations.docbook share/doc/HTML/sv/stage/guides.docbook share/doc/HTML/sv/stage/htmlshow1.png share/doc/HTML/sv/stage/htmlshow2.png share/doc/HTML/sv/stage/htmlshow3.png share/doc/HTML/sv/stage/htmlshow4.png share/doc/HTML/sv/stage/htmlshow5.png share/doc/HTML/sv/stage/htmlshow6.png share/doc/HTML/sv/stage/htmlshow7.png share/doc/HTML/sv/stage/htmlshow8.png share/doc/HTML/sv/stage/index.cache.bz2 share/doc/HTML/sv/stage/index.docbook share/doc/HTML/sv/stage/kbd-focus-ext.png share/doc/HTML/sv/stage/menus.docbook share/doc/HTML/sv/stage/mousenav.png share/doc/HTML/sv/stage/msexport1.png share/doc/HTML/sv/stage/msexport2.png share/doc/HTML/sv/stage/msexport2b.png share/doc/HTML/sv/stage/msexport3.png share/doc/HTML/sv/stage/options.docbook share/doc/HTML/sv/stage/properties.png share/doc/HTML/sv/stage/settings01.png share/doc/HTML/sv/stage/settings03.png share/doc/HTML/sv/stage/settings04.png share/doc/HTML/sv/stage/template02.png share/doc/HTML/sv/stage/template03.png share/doc/HTML/sv/stage/template04.png share/doc/HTML/sv/stage/template05.png share/doc/HTML/sv/stage/template06.png share/doc/HTML/sv/stage/template07.png share/doc/HTML/sv/stage/textmenu1.png share/doc/HTML/sv/stage/textmenu2.png share/doc/HTML/sv/stage/toolsmenu01.png share/doc/HTML/sv/stage/tts.png share/doc/HTML/sv/stage/tut24.png share/doc/HTML/sv/stage/tut01.png share/doc/HTML/sv/stage/tut02.png share/doc/HTML/sv/stage/tut03.png share/doc/HTML/sv/stage/tut04.png share/doc/HTML/sv/stage/tut05.png share/doc/HTML/sv/stage/tut06.png share/doc/HTML/sv/stage/tut07.png share/doc/HTML/sv/stage/tut08.png share/doc/HTML/sv/stage/tut09.png share/doc/HTML/sv/stage/tut10.png share/doc/HTML/sv/stage/tut11.png share/doc/HTML/sv/stage/tut12.png share/doc/HTML/sv/stage/tut13.png share/doc/HTML/sv/stage/tut14.png share/doc/HTML/sv/stage/tut15.png share/doc/HTML/sv/stage/tut16.png share/doc/HTML/sv/stage/tut17.png share/doc/HTML/sv/stage/tut18.png share/doc/HTML/sv/stage/tut19.png share/doc/HTML/sv/stage/tut20.png share/doc/HTML/sv/stage/tut21.png share/doc/HTML/sv/stage/tut22.png share/doc/HTML/sv/stage/tut23.png share/doc/HTML/sv/stage/tut26.png share/doc/HTML/sv/stage/tutorial.docbook share/doc/HTML/uk/sheets/advanced.docbook share/doc/HTML/uk/sheets/basics.docbook share/doc/HTML/uk/sheets/cellformat0.png share/doc/HTML/uk/sheets/cellformat1.png share/doc/HTML/uk/sheets/cellformat2.png share/doc/HTML/uk/sheets/cellformat3.png share/doc/HTML/uk/sheets/cellformat4.png share/doc/HTML/uk/sheets/cellformat5.png share/doc/HTML/uk/sheets/cellformat6.png share/doc/HTML/uk/sheets/cellprotection1.png share/doc/HTML/uk/sheets/cellprotection2.png share/doc/HTML/uk/sheets/chart1.png share/doc/HTML/uk/sheets/commands.docbook share/doc/HTML/uk/sheets/config.docbook share/doc/HTML/uk/sheets/configdialog.docbook share/doc/HTML/uk/sheets/configure2.png share/doc/HTML/uk/sheets/configure3.png share/doc/HTML/uk/sheets/configure4.png share/doc/HTML/uk/sheets/configure5.png share/doc/HTML/uk/sheets/configure6.png share/doc/HTML/uk/sheets/copy1.png share/doc/HTML/uk/sheets/format.docbook share/doc/HTML/uk/sheets/functions.docbook share/doc/HTML/uk/sheets/hideformula1.png share/doc/HTML/uk/sheets/index.cache.bz2 share/doc/HTML/uk/sheets/index.docbook share/doc/HTML/uk/sheets/newdocument.png share/doc/HTML/uk/sheets/pivot1.png share/doc/HTML/uk/sheets/pivot2.png share/doc/HTML/uk/sheets/pivot3.png share/doc/HTML/uk/sheets/pivot4.png share/doc/HTML/uk/sheets/sheetproperties.png share/doc/HTML/uk/sheets/shortcut1.png share/doc/HTML/uk/sheets/sort1.png share/doc/HTML/uk/sheets/starting1.png share/doc/HTML/uk/stage/barstyle1.png share/doc/HTML/uk/stage/configure-document.png share/doc/HTML/uk/stage/configure-grid.png share/doc/HTML/uk/stage/configure-misc.png share/doc/HTML/uk/stage/great-presentations.docbook share/doc/HTML/uk/stage/guides.docbook share/doc/HTML/uk/stage/htmlshow3.png share/doc/HTML/uk/stage/htmlshow9.png share/doc/HTML/uk/stage/index.cache.bz2 share/doc/HTML/uk/stage/index.docbook share/doc/HTML/uk/stage/menus.docbook share/doc/HTML/uk/stage/options.docbook share/doc/HTML/uk/stage/settings03.png share/doc/HTML/uk/stage/settings04.png share/doc/HTML/uk/stage/template03.png share/doc/HTML/uk/stage/template04.png share/doc/HTML/uk/stage/tut01.png share/doc/HTML/uk/stage/tut03.png share/doc/HTML/uk/stage/tut04.png share/doc/HTML/uk/stage/tut07.png share/doc/HTML/uk/stage/tut09.png share/doc/HTML/uk/stage/tut10.png share/doc/HTML/uk/stage/tut13.png share/doc/HTML/uk/stage/tut19.png share/doc/HTML/uk/stage/tut20.png share/doc/HTML/uk/stage/tut21.png share/doc/HTML/uk/stage/tut25.png share/doc/HTML/uk/stage/tut26.png share/doc/HTML/uk/stage/tutorial.docbook share/icons/hicolor/1024x1024/apps/calligrakarbon.png share/icons/hicolor/1024x1024/apps/calligrasheets.png share/icons/hicolor/1024x1024/apps/calligrastage.png share/icons/hicolor/1024x1024/apps/calligrawords.png share/icons/hicolor/128x128/apps/calligrakarbon.png share/icons/hicolor/128x128/apps/calligrasheets.png share/icons/hicolor/128x128/apps/calligrastage.png share/icons/hicolor/128x128/apps/calligrawords.png share/icons/hicolor/16x16/apps/calligrakarbon.png share/icons/hicolor/16x16/apps/calligrasheets.png share/icons/hicolor/16x16/apps/calligrastage.png share/icons/hicolor/16x16/apps/calligrawords.png share/icons/hicolor/22x22/apps/calligrakarbon.png share/icons/hicolor/22x22/apps/calligrasheets.png share/icons/hicolor/22x22/apps/calligrastage.png share/icons/hicolor/22x22/apps/calligrawords.png share/icons/hicolor/256x256/apps/calligrakarbon.png share/icons/hicolor/256x256/apps/calligrasheets.png share/icons/hicolor/256x256/apps/calligrastage.png share/icons/hicolor/256x256/apps/calligrawords.png share/icons/hicolor/32x32/apps/calligrakarbon.png share/icons/hicolor/32x32/apps/calligrasheets.png share/icons/hicolor/32x32/apps/calligrastage.png share/icons/hicolor/32x32/apps/calligrawords.png share/icons/hicolor/48x48/apps/calligrakarbon.png share/icons/hicolor/48x48/apps/calligrasheets.png share/icons/hicolor/48x48/apps/calligrastage.png share/icons/hicolor/48x48/apps/calligrawords.png share/icons/hicolor/512x512/apps/calligrakarbon.png share/icons/hicolor/512x512/apps/calligrasheets.png share/icons/hicolor/512x512/apps/calligrastage.png share/icons/hicolor/512x512/apps/calligrawords.png share/icons/hicolor/64x64/apps/calligrakarbon.png share/icons/hicolor/64x64/apps/calligrasheets.png share/icons/hicolor/64x64/apps/calligrastage.png share/icons/hicolor/64x64/apps/calligrawords.png share/icons/hicolor/scalable/actions/office-chart-stock-candlestick.svg share/icons/hicolor/scalable/actions/office-chart-stock-hlc.svg share/icons/hicolor/scalable/actions/office-chart-stock-ohlc.svg share/icons/hicolor/scalable/apps/calligrakarbon.svgz share/icons/hicolor/scalable/apps/calligrasheets.svgz share/icons/hicolor/scalable/apps/calligrastage.svgz share/icons/hicolor/scalable/apps/calligrawords.svgz share/icons/hicolor/scalable/apps/org.kde.calligra.karbon.svg share/icons/hicolor/scalable/apps/org.kde.calligra.sheets.svg share/icons/hicolor/scalable/apps/org.kde.calligra.stage.svg share/icons/hicolor/scalable/apps/org.kde.calligra.words.svg share/karbon/gradients/allcolors.kgr share/karbon/gradients/simple.kgr share/karbon/icons/hicolor/22x22/actions/effect_flatten.png share/karbon/icons/hicolor/22x22/actions/effect_refine.png share/karbon/icons/hicolor/22x22/actions/effect_roundcorners.png share/karbon/icons/hicolor/22x22/actions/effect_whirl.png share/karbon/icons/hicolor/48x48/actions/template_empty.png share/karbon/palettes/svg-colors.gpl share/karbon/plugins/FlattenPathPlugin.rc share/karbon/plugins/RefinePathPlugin.rc share/karbon/plugins/RoundCornersPlugin.rc share/karbon/plugins/WhirlPinchPlugin.rc share/karbon/templates/Basic/.directory share/karbon/templates/Basic/.source/empty.odg share/karbon/templates/Basic/empty.desktop share/kio/servicemenus/karbon_print.desktop share/kio/servicemenus/sheets_print.desktop share/kio/servicemenus/stage_print.desktop share/kio/servicemenus/words_print.desktop share/kxmlgui5/calligrasheets/calligrasheets.rc share/kxmlgui5/calligrasheets/calligrasheets_readonly.rc share/kxmlgui5/calligrastage/calligrastage.rc share/kxmlgui5/calligrastage/calligrastage_readonly.rc share/kxmlgui5/calligrawords/calligrawords.rc share/kxmlgui5/calligrawords/calligrawords_readonly.rc share/kxmlgui5/karbon/karbon.rc share/kxmlgui5/karbon/karbon_readonly.rc share/locale/af/LC_MESSAGES/KarbonFilterEffects.mo share/locale/af/LC_MESSAGES/KarbonTools.mo share/locale/af/LC_MESSAGES/calligra.mo share/locale/af/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/af/LC_MESSAGES/calligrafilters.mo share/locale/af/LC_MESSAGES/calligrasheets.mo share/locale/af/LC_MESSAGES/calligrastage.mo share/locale/af/LC_MESSAGES/calligrawords.mo share/locale/af/LC_MESSAGES/karbon.mo share/locale/af/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ar/LC_MESSAGES/KarbonTools.mo share/locale/ar/LC_MESSAGES/braindump.mo share/locale/ar/LC_MESSAGES/calligra-defaulttools.mo share/locale/ar/LC_MESSAGES/calligra-dockers.mo share/locale/ar/LC_MESSAGES/calligra.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ar/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ar/LC_MESSAGES/calligra_shape_chart.mo share/locale/ar/LC_MESSAGES/calligra_shape_comment.mo share/locale/ar/LC_MESSAGES/calligra_shape_formula.mo share/locale/ar/LC_MESSAGES/calligra_shape_music.mo share/locale/ar/LC_MESSAGES/calligra_shape_paths.mo share/locale/ar/LC_MESSAGES/calligra_shape_picture.mo share/locale/ar/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ar/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ar/LC_MESSAGES/calligra_shape_template.mo share/locale/ar/LC_MESSAGES/calligra_shape_text.mo share/locale/ar/LC_MESSAGES/calligra_shape_video.mo share/locale/ar/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ar/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ar/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ar/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ar/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ar/LC_MESSAGES/calligrafilters.mo share/locale/ar/LC_MESSAGES/calligralauncher.mo share/locale/ar/LC_MESSAGES/calligrasheets.mo share/locale/ar/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ar/LC_MESSAGES/calligrasheets_solver.mo share/locale/ar/LC_MESSAGES/calligrastage.mo share/locale/ar/LC_MESSAGES/calligrawords.mo share/locale/ar/LC_MESSAGES/karbon.mo share/locale/ar/LC_MESSAGES/kocolorspaces.mo share/locale/ar/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/okularGenerator_odp.mo share/locale/ar/LC_MESSAGES/okularGenerator_odt.mo share/locale/be/LC_MESSAGES/KarbonFilterEffects.mo share/locale/be/LC_MESSAGES/KarbonTools.mo share/locale/be/LC_MESSAGES/calligra-dockers.mo share/locale/be/LC_MESSAGES/calligra.mo share/locale/be/LC_MESSAGES/calligra_shape_music.mo share/locale/be/LC_MESSAGES/calligra_shape_paths.mo share/locale/be/LC_MESSAGES/calligra_shape_picture.mo share/locale/be/LC_MESSAGES/calligra_shape_text.mo share/locale/be/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/be/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/be/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/be/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/be/LC_MESSAGES/calligrafilters.mo share/locale/be/LC_MESSAGES/calligrasheets.mo share/locale/be/LC_MESSAGES/calligrasheets_calendar.mo share/locale/be/LC_MESSAGES/calligrasheets_solver.mo share/locale/be/LC_MESSAGES/calligrastage.mo share/locale/be/LC_MESSAGES/calligrawords.mo share/locale/be/LC_MESSAGES/karbon.mo share/locale/be/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bg/LC_MESSAGES/KarbonTools.mo share/locale/bg/LC_MESSAGES/braindump.mo share/locale/bg/LC_MESSAGES/calligra-defaulttools.mo share/locale/bg/LC_MESSAGES/calligra-dockers.mo share/locale/bg/LC_MESSAGES/calligra-opener.mo share/locale/bg/LC_MESSAGES/calligra.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bg/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bg/LC_MESSAGES/calligra_shape_chart.mo share/locale/bg/LC_MESSAGES/calligra_shape_comment.mo share/locale/bg/LC_MESSAGES/calligra_shape_formula.mo share/locale/bg/LC_MESSAGES/calligra_shape_music.mo share/locale/bg/LC_MESSAGES/calligra_shape_paths.mo share/locale/bg/LC_MESSAGES/calligra_shape_picture.mo share/locale/bg/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bg/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bg/LC_MESSAGES/calligra_shape_template.mo share/locale/bg/LC_MESSAGES/calligra_shape_text.mo share/locale/bg/LC_MESSAGES/calligra_shape_threed.mo share/locale/bg/LC_MESSAGES/calligra_shape_vector.mo share/locale/bg/LC_MESSAGES/calligra_shape_video.mo share/locale/bg/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bg/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bg/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bg/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bg/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bg/LC_MESSAGES/calligrafilters.mo share/locale/bg/LC_MESSAGES/calligrasheets.mo share/locale/bg/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bg/LC_MESSAGES/calligrasheets_solver.mo share/locale/bg/LC_MESSAGES/calligrastage.mo share/locale/bg/LC_MESSAGES/calligrawords.mo share/locale/bg/LC_MESSAGES/karbon.mo share/locale/bg/LC_MESSAGES/kocolorspaces.mo share/locale/bg/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/okularGenerator_odp.mo share/locale/bg/LC_MESSAGES/okularGenerator_odt.mo share/locale/br/LC_MESSAGES/KarbonFilterEffects.mo share/locale/br/LC_MESSAGES/KarbonTools.mo share/locale/br/LC_MESSAGES/calligra.mo share/locale/br/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/br/LC_MESSAGES/calligrafilters.mo share/locale/br/LC_MESSAGES/calligrasheets.mo share/locale/br/LC_MESSAGES/calligrasheets_calendar.mo share/locale/br/LC_MESSAGES/calligrastage.mo share/locale/br/LC_MESSAGES/calligrawords.mo share/locale/br/LC_MESSAGES/karbon.mo share/locale/br/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bs/LC_MESSAGES/KarbonTools.mo share/locale/bs/LC_MESSAGES/braindump.mo share/locale/bs/LC_MESSAGES/calligra-defaulttools.mo share/locale/bs/LC_MESSAGES/calligra-dockers.mo share/locale/bs/LC_MESSAGES/calligra-opener.mo share/locale/bs/LC_MESSAGES/calligra.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bs/LC_MESSAGES/calligra_shape_chart.mo share/locale/bs/LC_MESSAGES/calligra_shape_comment.mo share/locale/bs/LC_MESSAGES/calligra_shape_formula.mo share/locale/bs/LC_MESSAGES/calligra_shape_music.mo share/locale/bs/LC_MESSAGES/calligra_shape_paths.mo share/locale/bs/LC_MESSAGES/calligra_shape_picture.mo share/locale/bs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bs/LC_MESSAGES/calligra_shape_template.mo share/locale/bs/LC_MESSAGES/calligra_shape_text.mo share/locale/bs/LC_MESSAGES/calligra_shape_threed.mo share/locale/bs/LC_MESSAGES/calligra_shape_vector.mo share/locale/bs/LC_MESSAGES/calligra_shape_video.mo share/locale/bs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bs/LC_MESSAGES/calligrafilters.mo share/locale/bs/LC_MESSAGES/calligrasheets.mo share/locale/bs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bs/LC_MESSAGES/calligrasheets_solver.mo share/locale/bs/LC_MESSAGES/calligrastage.mo share/locale/bs/LC_MESSAGES/calligrawords.mo share/locale/bs/LC_MESSAGES/karbon.mo share/locale/bs/LC_MESSAGES/kocolorspaces.mo share/locale/bs/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/okularGenerator_odp.mo share/locale/bs/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca/LC_MESSAGES/KarbonTools.mo share/locale/ca/LC_MESSAGES/braindump.mo share/locale/ca/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca/LC_MESSAGES/calligra-dockers.mo share/locale/ca/LC_MESSAGES/calligra-opener.mo share/locale/ca/LC_MESSAGES/calligra.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca/LC_MESSAGES/calligra_shape_music.mo share/locale/ca/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca/LC_MESSAGES/calligra_shape_template.mo share/locale/ca/LC_MESSAGES/calligra_shape_text.mo share/locale/ca/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca/LC_MESSAGES/calligra_shape_video.mo share/locale/ca/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca/LC_MESSAGES/calligrafilters.mo share/locale/ca/LC_MESSAGES/calligralauncher.mo share/locale/ca/LC_MESSAGES/calligrasheets.mo share/locale/ca/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca/LC_MESSAGES/calligrastage.mo share/locale/ca/LC_MESSAGES/calligrawords.mo share/locale/ca/LC_MESSAGES/karbon.mo share/locale/ca/LC_MESSAGES/kocolorspaces.mo share/locale/ca/LC_MESSAGES/koconverter.mo share/locale/ca/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca@valencia/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca@valencia/LC_MESSAGES/KarbonTools.mo share/locale/ca@valencia/LC_MESSAGES/braindump.mo share/locale/ca@valencia/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca@valencia/LC_MESSAGES/calligra-dockers.mo share/locale/ca@valencia/LC_MESSAGES/calligra-opener.mo share/locale/ca@valencia/LC_MESSAGES/calligra.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_music.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_template.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_text.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_video.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca@valencia/LC_MESSAGES/calligrafilters.mo share/locale/ca@valencia/LC_MESSAGES/calligralauncher.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca@valencia/LC_MESSAGES/calligrastage.mo share/locale/ca@valencia/LC_MESSAGES/calligrawords.mo share/locale/ca@valencia/LC_MESSAGES/karbon.mo share/locale/ca@valencia/LC_MESSAGES/kocolorspaces.mo share/locale/ca@valencia/LC_MESSAGES/koconverter.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odt.mo share/locale/cs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cs/LC_MESSAGES/KarbonTools.mo share/locale/cs/LC_MESSAGES/braindump.mo share/locale/cs/LC_MESSAGES/calligra-defaulttools.mo share/locale/cs/LC_MESSAGES/calligra-dockers.mo share/locale/cs/LC_MESSAGES/calligra-opener.mo share/locale/cs/LC_MESSAGES/calligra.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/cs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/cs/LC_MESSAGES/calligra_shape_chart.mo share/locale/cs/LC_MESSAGES/calligra_shape_comment.mo share/locale/cs/LC_MESSAGES/calligra_shape_formula.mo share/locale/cs/LC_MESSAGES/calligra_shape_music.mo share/locale/cs/LC_MESSAGES/calligra_shape_paths.mo share/locale/cs/LC_MESSAGES/calligra_shape_picture.mo share/locale/cs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/cs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/cs/LC_MESSAGES/calligra_shape_template.mo share/locale/cs/LC_MESSAGES/calligra_shape_text.mo share/locale/cs/LC_MESSAGES/calligra_shape_threed.mo share/locale/cs/LC_MESSAGES/calligra_shape_vector.mo share/locale/cs/LC_MESSAGES/calligra_shape_video.mo share/locale/cs/LC_MESSAGES/calligra_shape_webshape.mo share/locale/cs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/cs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/cs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/cs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/cs/LC_MESSAGES/calligrafilters.mo share/locale/cs/LC_MESSAGES/calligralauncher.mo share/locale/cs/LC_MESSAGES/calligrasheets.mo share/locale/cs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cs/LC_MESSAGES/calligrasheets_solver.mo share/locale/cs/LC_MESSAGES/calligrastage.mo share/locale/cs/LC_MESSAGES/calligrawords.mo share/locale/cs/LC_MESSAGES/karbon.mo share/locale/cs/LC_MESSAGES/kocolorspaces.mo share/locale/cs/LC_MESSAGES/koconverter.mo share/locale/cs/LC_MESSAGES/okularGenerator_odp.mo share/locale/cs/LC_MESSAGES/okularGenerator_odt.mo share/locale/cy/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cy/LC_MESSAGES/KarbonTools.mo share/locale/cy/LC_MESSAGES/calligra.mo share/locale/cy/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cy/LC_MESSAGES/calligrafilters.mo share/locale/cy/LC_MESSAGES/calligrasheets.mo share/locale/cy/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cy/LC_MESSAGES/calligrastage.mo share/locale/cy/LC_MESSAGES/calligrawords.mo share/locale/cy/LC_MESSAGES/karbon.mo share/locale/cy/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/KarbonFilterEffects.mo share/locale/da/LC_MESSAGES/KarbonTools.mo share/locale/da/LC_MESSAGES/braindump.mo share/locale/da/LC_MESSAGES/calligra-defaulttools.mo share/locale/da/LC_MESSAGES/calligra-dockers.mo share/locale/da/LC_MESSAGES/calligra-opener.mo share/locale/da/LC_MESSAGES/calligra.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/da/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/da/LC_MESSAGES/calligra_shape_chart.mo share/locale/da/LC_MESSAGES/calligra_shape_comment.mo share/locale/da/LC_MESSAGES/calligra_shape_formula.mo share/locale/da/LC_MESSAGES/calligra_shape_music.mo share/locale/da/LC_MESSAGES/calligra_shape_paths.mo share/locale/da/LC_MESSAGES/calligra_shape_picture.mo share/locale/da/LC_MESSAGES/calligra_shape_plugin.mo share/locale/da/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/da/LC_MESSAGES/calligra_shape_template.mo share/locale/da/LC_MESSAGES/calligra_shape_text.mo share/locale/da/LC_MESSAGES/calligra_shape_threed.mo share/locale/da/LC_MESSAGES/calligra_shape_vector.mo share/locale/da/LC_MESSAGES/calligra_shape_video.mo share/locale/da/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/da/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/da/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/da/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/da/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/da/LC_MESSAGES/calligrafilters.mo share/locale/da/LC_MESSAGES/calligrasheets.mo share/locale/da/LC_MESSAGES/calligrasheets_calendar.mo share/locale/da/LC_MESSAGES/calligrasheets_solver.mo share/locale/da/LC_MESSAGES/calligrastage.mo share/locale/da/LC_MESSAGES/calligrawords.mo share/locale/da/LC_MESSAGES/karbon.mo share/locale/da/LC_MESSAGES/kocolorspaces.mo share/locale/da/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/okularGenerator_odp.mo share/locale/da/LC_MESSAGES/okularGenerator_odt.mo share/locale/de/LC_MESSAGES/KarbonFilterEffects.mo share/locale/de/LC_MESSAGES/KarbonTools.mo share/locale/de/LC_MESSAGES/braindump.mo share/locale/de/LC_MESSAGES/calligra-defaulttools.mo share/locale/de/LC_MESSAGES/calligra-dockers.mo share/locale/de/LC_MESSAGES/calligra-opener.mo share/locale/de/LC_MESSAGES/calligra.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/de/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/de/LC_MESSAGES/calligra_shape_chart.mo share/locale/de/LC_MESSAGES/calligra_shape_comment.mo share/locale/de/LC_MESSAGES/calligra_shape_formula.mo share/locale/de/LC_MESSAGES/calligra_shape_music.mo share/locale/de/LC_MESSAGES/calligra_shape_paths.mo share/locale/de/LC_MESSAGES/calligra_shape_picture.mo share/locale/de/LC_MESSAGES/calligra_shape_plugin.mo share/locale/de/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/de/LC_MESSAGES/calligra_shape_template.mo share/locale/de/LC_MESSAGES/calligra_shape_text.mo share/locale/de/LC_MESSAGES/calligra_shape_threed.mo share/locale/de/LC_MESSAGES/calligra_shape_vector.mo share/locale/de/LC_MESSAGES/calligra_shape_video.mo share/locale/de/LC_MESSAGES/calligra_shape_webshape.mo share/locale/de/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/de/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/de/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/de/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/de/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/de/LC_MESSAGES/calligrafilters.mo share/locale/de/LC_MESSAGES/calligralauncher.mo share/locale/de/LC_MESSAGES/calligrasheets.mo share/locale/de/LC_MESSAGES/calligrasheets_calendar.mo share/locale/de/LC_MESSAGES/calligrasheets_solver.mo share/locale/de/LC_MESSAGES/calligrastage.mo share/locale/de/LC_MESSAGES/calligrawords.mo share/locale/de/LC_MESSAGES/karbon.mo share/locale/de/LC_MESSAGES/kocolorspaces.mo share/locale/de/LC_MESSAGES/koconverter.mo share/locale/de/LC_MESSAGES/okularGenerator_odp.mo share/locale/de/LC_MESSAGES/okularGenerator_odt.mo share/locale/el/LC_MESSAGES/KarbonFilterEffects.mo share/locale/el/LC_MESSAGES/KarbonTools.mo share/locale/el/LC_MESSAGES/braindump.mo share/locale/el/LC_MESSAGES/calligra-defaulttools.mo share/locale/el/LC_MESSAGES/calligra-dockers.mo share/locale/el/LC_MESSAGES/calligra-opener.mo share/locale/el/LC_MESSAGES/calligra.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/el/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/el/LC_MESSAGES/calligra_shape_chart.mo share/locale/el/LC_MESSAGES/calligra_shape_comment.mo share/locale/el/LC_MESSAGES/calligra_shape_formula.mo share/locale/el/LC_MESSAGES/calligra_shape_music.mo share/locale/el/LC_MESSAGES/calligra_shape_paths.mo share/locale/el/LC_MESSAGES/calligra_shape_picture.mo share/locale/el/LC_MESSAGES/calligra_shape_plugin.mo share/locale/el/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/el/LC_MESSAGES/calligra_shape_template.mo share/locale/el/LC_MESSAGES/calligra_shape_text.mo share/locale/el/LC_MESSAGES/calligra_shape_threed.mo share/locale/el/LC_MESSAGES/calligra_shape_vector.mo share/locale/el/LC_MESSAGES/calligra_shape_video.mo share/locale/el/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/el/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/el/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/el/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/el/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/el/LC_MESSAGES/calligrafilters.mo share/locale/el/LC_MESSAGES/calligrasheets.mo share/locale/el/LC_MESSAGES/calligrasheets_calendar.mo share/locale/el/LC_MESSAGES/calligrasheets_solver.mo share/locale/el/LC_MESSAGES/calligrastage.mo share/locale/el/LC_MESSAGES/calligrawords.mo share/locale/el/LC_MESSAGES/karbon.mo share/locale/el/LC_MESSAGES/kocolorspaces.mo share/locale/el/LC_MESSAGES/koconverter.mo share/locale/el/LC_MESSAGES/okularGenerator_odp.mo share/locale/el/LC_MESSAGES/okularGenerator_odt.mo share/locale/en_GB/LC_MESSAGES/KarbonFilterEffects.mo share/locale/en_GB/LC_MESSAGES/KarbonTools.mo share/locale/en_GB/LC_MESSAGES/braindump.mo share/locale/en_GB/LC_MESSAGES/calligra-defaulttools.mo share/locale/en_GB/LC_MESSAGES/calligra-dockers.mo share/locale/en_GB/LC_MESSAGES/calligra-opener.mo share/locale/en_GB/LC_MESSAGES/calligra.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_chart.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_comment.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_formula.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_music.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_paths.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_picture.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_plugin.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_template.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_text.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_threed.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_vector.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_video.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_webshape.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/en_GB/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/en_GB/LC_MESSAGES/calligrafilters.mo share/locale/en_GB/LC_MESSAGES/calligralauncher.mo share/locale/en_GB/LC_MESSAGES/calligrasheets.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_calendar.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_solver.mo share/locale/en_GB/LC_MESSAGES/calligrastage.mo share/locale/en_GB/LC_MESSAGES/calligrawords.mo share/locale/en_GB/LC_MESSAGES/karbon.mo share/locale/en_GB/LC_MESSAGES/kocolorspaces.mo share/locale/en_GB/LC_MESSAGES/koconverter.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odp.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odt.mo share/locale/eo/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eo/LC_MESSAGES/KarbonTools.mo share/locale/eo/LC_MESSAGES/braindump.mo share/locale/eo/LC_MESSAGES/calligra-defaulttools.mo share/locale/eo/LC_MESSAGES/calligra-dockers.mo share/locale/eo/LC_MESSAGES/calligra-opener.mo share/locale/eo/LC_MESSAGES/calligra.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eo/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eo/LC_MESSAGES/calligra_shape_chart.mo share/locale/eo/LC_MESSAGES/calligra_shape_comment.mo share/locale/eo/LC_MESSAGES/calligra_shape_formula.mo share/locale/eo/LC_MESSAGES/calligra_shape_music.mo share/locale/eo/LC_MESSAGES/calligra_shape_paths.mo share/locale/eo/LC_MESSAGES/calligra_shape_picture.mo share/locale/eo/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eo/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eo/LC_MESSAGES/calligra_shape_template.mo share/locale/eo/LC_MESSAGES/calligra_shape_text.mo share/locale/eo/LC_MESSAGES/calligra_shape_threed.mo share/locale/eo/LC_MESSAGES/calligra_shape_vector.mo share/locale/eo/LC_MESSAGES/calligra_shape_video.mo share/locale/eo/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eo/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eo/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eo/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eo/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eo/LC_MESSAGES/calligrafilters.mo share/locale/eo/LC_MESSAGES/calligrasheets.mo share/locale/eo/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eo/LC_MESSAGES/calligrasheets_solver.mo share/locale/eo/LC_MESSAGES/calligrastage.mo share/locale/eo/LC_MESSAGES/calligrawords.mo share/locale/eo/LC_MESSAGES/karbon.mo share/locale/eo/LC_MESSAGES/kocolorspaces.mo share/locale/eo/LC_MESSAGES/koconverter.mo share/locale/eo/LC_MESSAGES/okularGenerator_odp.mo share/locale/eo/LC_MESSAGES/okularGenerator_odt.mo share/locale/es/LC_MESSAGES/KarbonFilterEffects.mo share/locale/es/LC_MESSAGES/KarbonTools.mo share/locale/es/LC_MESSAGES/braindump.mo share/locale/es/LC_MESSAGES/calligra-defaulttools.mo share/locale/es/LC_MESSAGES/calligra-dockers.mo share/locale/es/LC_MESSAGES/calligra-opener.mo share/locale/es/LC_MESSAGES/calligra.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/es/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/es/LC_MESSAGES/calligra_shape_chart.mo share/locale/es/LC_MESSAGES/calligra_shape_comment.mo share/locale/es/LC_MESSAGES/calligra_shape_formula.mo share/locale/es/LC_MESSAGES/calligra_shape_music.mo share/locale/es/LC_MESSAGES/calligra_shape_paths.mo share/locale/es/LC_MESSAGES/calligra_shape_picture.mo share/locale/es/LC_MESSAGES/calligra_shape_plugin.mo share/locale/es/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/es/LC_MESSAGES/calligra_shape_template.mo share/locale/es/LC_MESSAGES/calligra_shape_text.mo share/locale/es/LC_MESSAGES/calligra_shape_threed.mo share/locale/es/LC_MESSAGES/calligra_shape_vector.mo share/locale/es/LC_MESSAGES/calligra_shape_video.mo share/locale/es/LC_MESSAGES/calligra_shape_webshape.mo share/locale/es/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/es/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/es/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/es/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/es/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/es/LC_MESSAGES/calligrafilters.mo share/locale/es/LC_MESSAGES/calligralauncher.mo share/locale/es/LC_MESSAGES/calligrasheets.mo share/locale/es/LC_MESSAGES/calligrasheets_calendar.mo share/locale/es/LC_MESSAGES/calligrasheets_solver.mo share/locale/es/LC_MESSAGES/calligrastage.mo share/locale/es/LC_MESSAGES/calligrawords.mo share/locale/es/LC_MESSAGES/karbon.mo share/locale/es/LC_MESSAGES/kocolorspaces.mo share/locale/es/LC_MESSAGES/koconverter.mo share/locale/es/LC_MESSAGES/okularGenerator_odp.mo share/locale/es/LC_MESSAGES/okularGenerator_odt.mo share/locale/et/LC_MESSAGES/KarbonFilterEffects.mo share/locale/et/LC_MESSAGES/KarbonTools.mo share/locale/et/LC_MESSAGES/braindump.mo share/locale/et/LC_MESSAGES/calligra-defaulttools.mo share/locale/et/LC_MESSAGES/calligra-dockers.mo share/locale/et/LC_MESSAGES/calligra-opener.mo share/locale/et/LC_MESSAGES/calligra.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/et/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/et/LC_MESSAGES/calligra_shape_chart.mo share/locale/et/LC_MESSAGES/calligra_shape_comment.mo share/locale/et/LC_MESSAGES/calligra_shape_formula.mo share/locale/et/LC_MESSAGES/calligra_shape_music.mo share/locale/et/LC_MESSAGES/calligra_shape_paths.mo share/locale/et/LC_MESSAGES/calligra_shape_picture.mo share/locale/et/LC_MESSAGES/calligra_shape_plugin.mo share/locale/et/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/et/LC_MESSAGES/calligra_shape_template.mo share/locale/et/LC_MESSAGES/calligra_shape_text.mo share/locale/et/LC_MESSAGES/calligra_shape_threed.mo share/locale/et/LC_MESSAGES/calligra_shape_vector.mo share/locale/et/LC_MESSAGES/calligra_shape_video.mo share/locale/et/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/et/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/et/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/et/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/et/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/et/LC_MESSAGES/calligrafilters.mo share/locale/et/LC_MESSAGES/calligrasheets.mo share/locale/et/LC_MESSAGES/calligrasheets_calendar.mo share/locale/et/LC_MESSAGES/calligrasheets_solver.mo share/locale/et/LC_MESSAGES/calligrastage.mo share/locale/et/LC_MESSAGES/calligrawords.mo share/locale/et/LC_MESSAGES/karbon.mo share/locale/et/LC_MESSAGES/kocolorspaces.mo share/locale/et/LC_MESSAGES/koconverter.mo share/locale/et/LC_MESSAGES/okularGenerator_odp.mo share/locale/et/LC_MESSAGES/okularGenerator_odt.mo share/locale/eu/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eu/LC_MESSAGES/KarbonTools.mo share/locale/eu/LC_MESSAGES/braindump.mo share/locale/eu/LC_MESSAGES/calligra-defaulttools.mo share/locale/eu/LC_MESSAGES/calligra-dockers.mo share/locale/eu/LC_MESSAGES/calligra-opener.mo share/locale/eu/LC_MESSAGES/calligra.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eu/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eu/LC_MESSAGES/calligra_shape_chart.mo share/locale/eu/LC_MESSAGES/calligra_shape_comment.mo share/locale/eu/LC_MESSAGES/calligra_shape_formula.mo share/locale/eu/LC_MESSAGES/calligra_shape_music.mo share/locale/eu/LC_MESSAGES/calligra_shape_paths.mo share/locale/eu/LC_MESSAGES/calligra_shape_picture.mo share/locale/eu/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eu/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eu/LC_MESSAGES/calligra_shape_template.mo share/locale/eu/LC_MESSAGES/calligra_shape_text.mo share/locale/eu/LC_MESSAGES/calligra_shape_threed.mo share/locale/eu/LC_MESSAGES/calligra_shape_vector.mo share/locale/eu/LC_MESSAGES/calligra_shape_video.mo share/locale/eu/LC_MESSAGES/calligra_shape_webshape.mo share/locale/eu/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eu/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eu/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eu/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eu/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eu/LC_MESSAGES/calligrafilters.mo share/locale/eu/LC_MESSAGES/calligralauncher.mo share/locale/eu/LC_MESSAGES/calligrasheets.mo share/locale/eu/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eu/LC_MESSAGES/calligrasheets_solver.mo share/locale/eu/LC_MESSAGES/calligrastage.mo share/locale/eu/LC_MESSAGES/calligrawords.mo share/locale/eu/LC_MESSAGES/karbon.mo share/locale/eu/LC_MESSAGES/kocolorspaces.mo share/locale/eu/LC_MESSAGES/koconverter.mo share/locale/eu/LC_MESSAGES/okularGenerator_odp.mo share/locale/eu/LC_MESSAGES/okularGenerator_odt.mo share/locale/fa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fa/LC_MESSAGES/KarbonTools.mo share/locale/fa/LC_MESSAGES/calligra.mo share/locale/fa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fa/LC_MESSAGES/calligrafilters.mo share/locale/fa/LC_MESSAGES/calligrasheets.mo share/locale/fa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fa/LC_MESSAGES/calligrastage.mo share/locale/fa/LC_MESSAGES/calligrawords.mo share/locale/fa/LC_MESSAGES/karbon.mo share/locale/fa/LC_MESSAGES/koconverter.mo share/locale/fi/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fi/LC_MESSAGES/KarbonTools.mo share/locale/fi/LC_MESSAGES/braindump.mo share/locale/fi/LC_MESSAGES/calligra-defaulttools.mo share/locale/fi/LC_MESSAGES/calligra-dockers.mo share/locale/fi/LC_MESSAGES/calligra-opener.mo share/locale/fi/LC_MESSAGES/calligra.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/fi/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/fi/LC_MESSAGES/calligra_shape_chart.mo share/locale/fi/LC_MESSAGES/calligra_shape_comment.mo share/locale/fi/LC_MESSAGES/calligra_shape_formula.mo share/locale/fi/LC_MESSAGES/calligra_shape_music.mo share/locale/fi/LC_MESSAGES/calligra_shape_paths.mo share/locale/fi/LC_MESSAGES/calligra_shape_picture.mo share/locale/fi/LC_MESSAGES/calligra_shape_plugin.mo share/locale/fi/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/fi/LC_MESSAGES/calligra_shape_template.mo share/locale/fi/LC_MESSAGES/calligra_shape_text.mo share/locale/fi/LC_MESSAGES/calligra_shape_threed.mo share/locale/fi/LC_MESSAGES/calligra_shape_vector.mo share/locale/fi/LC_MESSAGES/calligra_shape_video.mo share/locale/fi/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fi/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fi/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fi/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fi/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fi/LC_MESSAGES/calligrafilters.mo share/locale/fi/LC_MESSAGES/calligralauncher.mo share/locale/fi/LC_MESSAGES/calligrasheets.mo share/locale/fi/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fi/LC_MESSAGES/calligrasheets_solver.mo share/locale/fi/LC_MESSAGES/calligrastage.mo share/locale/fi/LC_MESSAGES/calligrawords.mo share/locale/fi/LC_MESSAGES/karbon.mo share/locale/fi/LC_MESSAGES/kocolorspaces.mo share/locale/fi/LC_MESSAGES/koconverter.mo share/locale/fi/LC_MESSAGES/okularGenerator_odp.mo share/locale/fi/LC_MESSAGES/okularGenerator_odt.mo share/locale/fr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fr/LC_MESSAGES/KarbonTools.mo share/locale/fr/LC_MESSAGES/braindump.mo share/locale/fr/LC_MESSAGES/calligra-defaulttools.mo share/locale/fr/LC_MESSAGES/calligra-dockers.mo share/locale/fr/LC_MESSAGES/calligra-opener.mo share/locale/fr/LC_MESSAGES/calligra.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/fr/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/fr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/fr/LC_MESSAGES/calligra_shape_chart.mo share/locale/fr/LC_MESSAGES/calligra_shape_comment.mo share/locale/fr/LC_MESSAGES/calligra_shape_formula.mo share/locale/fr/LC_MESSAGES/calligra_shape_music.mo share/locale/fr/LC_MESSAGES/calligra_shape_paths.mo share/locale/fr/LC_MESSAGES/calligra_shape_picture.mo share/locale/fr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/fr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/fr/LC_MESSAGES/calligra_shape_template.mo share/locale/fr/LC_MESSAGES/calligra_shape_text.mo share/locale/fr/LC_MESSAGES/calligra_shape_threed.mo share/locale/fr/LC_MESSAGES/calligra_shape_vector.mo share/locale/fr/LC_MESSAGES/calligra_shape_video.mo share/locale/fr/LC_MESSAGES/calligra_shape_webshape.mo share/locale/fr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fr/LC_MESSAGES/calligrafilters.mo share/locale/fr/LC_MESSAGES/calligralauncher.mo share/locale/fr/LC_MESSAGES/calligrasheets.mo share/locale/fr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fr/LC_MESSAGES/calligrasheets_solver.mo share/locale/fr/LC_MESSAGES/calligrastage.mo share/locale/fr/LC_MESSAGES/calligrawords.mo share/locale/fr/LC_MESSAGES/karbon.mo share/locale/fr/LC_MESSAGES/kocolorspaces.mo share/locale/fr/LC_MESSAGES/koconverter.mo share/locale/fr/LC_MESSAGES/okularGenerator_odp.mo share/locale/fr/LC_MESSAGES/okularGenerator_odt.mo share/locale/fy/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fy/LC_MESSAGES/KarbonTools.mo share/locale/fy/LC_MESSAGES/calligra-dockers.mo share/locale/fy/LC_MESSAGES/calligra.mo share/locale/fy/LC_MESSAGES/calligra_shape_music.mo share/locale/fy/LC_MESSAGES/calligra_shape_paths.mo share/locale/fy/LC_MESSAGES/calligra_shape_picture.mo share/locale/fy/LC_MESSAGES/calligra_shape_text.mo share/locale/fy/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/fy/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/fy/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/fy/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fy/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/fy/LC_MESSAGES/calligrafilters.mo share/locale/fy/LC_MESSAGES/calligrasheets.mo share/locale/fy/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fy/LC_MESSAGES/calligrasheets_solver.mo share/locale/fy/LC_MESSAGES/calligrastage.mo share/locale/fy/LC_MESSAGES/calligrawords.mo share/locale/fy/LC_MESSAGES/karbon.mo share/locale/fy/LC_MESSAGES/koconverter.mo share/locale/ga/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ga/LC_MESSAGES/KarbonTools.mo share/locale/ga/LC_MESSAGES/braindump.mo share/locale/ga/LC_MESSAGES/calligra-defaulttools.mo share/locale/ga/LC_MESSAGES/calligra-dockers.mo share/locale/ga/LC_MESSAGES/calligra-opener.mo share/locale/ga/LC_MESSAGES/calligra.mo share/locale/ga/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ga/LC_MESSAGES/calligra_shape_chart.mo share/locale/ga/LC_MESSAGES/calligra_shape_comment.mo share/locale/ga/LC_MESSAGES/calligra_shape_formula.mo share/locale/ga/LC_MESSAGES/calligra_shape_music.mo share/locale/ga/LC_MESSAGES/calligra_shape_paths.mo share/locale/ga/LC_MESSAGES/calligra_shape_picture.mo share/locale/ga/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ga/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ga/LC_MESSAGES/calligra_shape_template.mo share/locale/ga/LC_MESSAGES/calligra_shape_text.mo share/locale/ga/LC_MESSAGES/calligra_shape_threed.mo share/locale/ga/LC_MESSAGES/calligra_shape_vector.mo share/locale/ga/LC_MESSAGES/calligra_shape_video.mo share/locale/ga/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ga/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ga/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ga/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ga/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ga/LC_MESSAGES/calligrafilters.mo share/locale/ga/LC_MESSAGES/calligrasheets.mo share/locale/ga/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ga/LC_MESSAGES/calligrasheets_solver.mo share/locale/ga/LC_MESSAGES/calligrastage.mo share/locale/ga/LC_MESSAGES/calligrawords.mo share/locale/ga/LC_MESSAGES/karbon.mo share/locale/ga/LC_MESSAGES/kocolorspaces.mo share/locale/ga/LC_MESSAGES/koconverter.mo share/locale/ga/LC_MESSAGES/okularGenerator_odp.mo share/locale/gl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/gl/LC_MESSAGES/KarbonTools.mo share/locale/gl/LC_MESSAGES/braindump.mo share/locale/gl/LC_MESSAGES/calligra-defaulttools.mo share/locale/gl/LC_MESSAGES/calligra-dockers.mo share/locale/gl/LC_MESSAGES/calligra-opener.mo share/locale/gl/LC_MESSAGES/calligra.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/gl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/gl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/gl/LC_MESSAGES/calligra_shape_chart.mo share/locale/gl/LC_MESSAGES/calligra_shape_comment.mo share/locale/gl/LC_MESSAGES/calligra_shape_formula.mo share/locale/gl/LC_MESSAGES/calligra_shape_music.mo share/locale/gl/LC_MESSAGES/calligra_shape_paths.mo share/locale/gl/LC_MESSAGES/calligra_shape_picture.mo share/locale/gl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/gl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/gl/LC_MESSAGES/calligra_shape_template.mo share/locale/gl/LC_MESSAGES/calligra_shape_text.mo share/locale/gl/LC_MESSAGES/calligra_shape_threed.mo share/locale/gl/LC_MESSAGES/calligra_shape_vector.mo share/locale/gl/LC_MESSAGES/calligra_shape_video.mo share/locale/gl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/gl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/gl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/gl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/gl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/gl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/gl/LC_MESSAGES/calligrafilters.mo share/locale/gl/LC_MESSAGES/calligralauncher.mo share/locale/gl/LC_MESSAGES/calligrasheets.mo share/locale/gl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/gl/LC_MESSAGES/calligrasheets_solver.mo share/locale/gl/LC_MESSAGES/calligrastage.mo share/locale/gl/LC_MESSAGES/calligrawords.mo share/locale/gl/LC_MESSAGES/karbon.mo share/locale/gl/LC_MESSAGES/kocolorspaces.mo share/locale/gl/LC_MESSAGES/koconverter.mo share/locale/gl/LC_MESSAGES/okularGenerator_odp.mo share/locale/gl/LC_MESSAGES/okularGenerator_odt.mo share/locale/he/LC_MESSAGES/KarbonFilterEffects.mo share/locale/he/LC_MESSAGES/KarbonTools.mo share/locale/he/LC_MESSAGES/braindump.mo share/locale/he/LC_MESSAGES/calligra-defaulttools.mo share/locale/he/LC_MESSAGES/calligra-dockers.mo share/locale/he/LC_MESSAGES/calligra-opener.mo share/locale/he/LC_MESSAGES/calligra.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/he/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/he/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/he/LC_MESSAGES/calligra_shape_chart.mo share/locale/he/LC_MESSAGES/calligra_shape_comment.mo share/locale/he/LC_MESSAGES/calligra_shape_formula.mo share/locale/he/LC_MESSAGES/calligra_shape_paths.mo share/locale/he/LC_MESSAGES/calligra_shape_picture.mo share/locale/he/LC_MESSAGES/calligra_shape_plugin.mo share/locale/he/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/he/LC_MESSAGES/calligra_shape_template.mo share/locale/he/LC_MESSAGES/calligra_shape_threed.mo share/locale/he/LC_MESSAGES/calligra_shape_vector.mo share/locale/he/LC_MESSAGES/calligra_shape_video.mo share/locale/he/LC_MESSAGES/calligra_shape_webshape.mo share/locale/he/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/he/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/he/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/he/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/he/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/he/LC_MESSAGES/calligrafilters.mo share/locale/he/LC_MESSAGES/calligralauncher.mo share/locale/he/LC_MESSAGES/calligrasheets.mo share/locale/he/LC_MESSAGES/calligrasheets_calendar.mo share/locale/he/LC_MESSAGES/calligrasheets_solver.mo share/locale/he/LC_MESSAGES/calligrastage.mo share/locale/he/LC_MESSAGES/calligrawords.mo share/locale/he/LC_MESSAGES/karbon.mo share/locale/he/LC_MESSAGES/kocolorspaces.mo share/locale/he/LC_MESSAGES/koconverter.mo share/locale/he/LC_MESSAGES/okularGenerator_odp.mo share/locale/he/LC_MESSAGES/okularGenerator_odt.mo share/locale/hi/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hi/LC_MESSAGES/KarbonTools.mo share/locale/hi/LC_MESSAGES/braindump.mo share/locale/hi/LC_MESSAGES/calligra-defaulttools.mo share/locale/hi/LC_MESSAGES/calligra-dockers.mo share/locale/hi/LC_MESSAGES/calligra-opener.mo share/locale/hi/LC_MESSAGES/calligra.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/hi/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/hi/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hi/LC_MESSAGES/calligra_shape_chart.mo share/locale/hi/LC_MESSAGES/calligra_shape_comment.mo share/locale/hi/LC_MESSAGES/calligra_shape_formula.mo share/locale/hi/LC_MESSAGES/calligra_shape_music.mo share/locale/hi/LC_MESSAGES/calligra_shape_paths.mo share/locale/hi/LC_MESSAGES/calligra_shape_picture.mo share/locale/hi/LC_MESSAGES/calligra_shape_plugin.mo share/locale/hi/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/hi/LC_MESSAGES/calligra_shape_template.mo share/locale/hi/LC_MESSAGES/calligra_shape_text.mo share/locale/hi/LC_MESSAGES/calligra_shape_threed.mo share/locale/hi/LC_MESSAGES/calligra_shape_vector.mo share/locale/hi/LC_MESSAGES/calligra_shape_video.mo share/locale/hi/LC_MESSAGES/calligra_shape_webshape.mo share/locale/hi/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hi/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hi/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hi/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hi/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hi/LC_MESSAGES/calligrafilters.mo share/locale/hi/LC_MESSAGES/calligralauncher.mo share/locale/hi/LC_MESSAGES/calligrasheets.mo share/locale/hi/LC_MESSAGES/calligrasheets_calendar.mo share/locale/hi/LC_MESSAGES/calligrasheets_solver.mo share/locale/hi/LC_MESSAGES/calligrastage.mo share/locale/hi/LC_MESSAGES/calligrawords.mo share/locale/hi/LC_MESSAGES/karbon.mo share/locale/hi/LC_MESSAGES/kocolorspaces.mo share/locale/hi/LC_MESSAGES/koconverter.mo share/locale/hi/LC_MESSAGES/okularGenerator_odp.mo share/locale/hi/LC_MESSAGES/okularGenerator_odt.mo share/locale/hne/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hne/LC_MESSAGES/KarbonTools.mo share/locale/hne/LC_MESSAGES/calligra-dockers.mo share/locale/hne/LC_MESSAGES/calligra.mo share/locale/hne/LC_MESSAGES/calligra_shape_music.mo share/locale/hne/LC_MESSAGES/calligra_shape_paths.mo share/locale/hne/LC_MESSAGES/calligra_shape_picture.mo share/locale/hne/LC_MESSAGES/calligra_shape_text.mo share/locale/hne/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hne/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hne/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hne/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hne/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hne/LC_MESSAGES/calligrafilters.mo share/locale/hne/LC_MESSAGES/calligrasheets.mo share/locale/hne/LC_MESSAGES/calligrasheets_solver.mo share/locale/hne/LC_MESSAGES/calligrastage.mo share/locale/hne/LC_MESSAGES/calligrawords.mo share/locale/hne/LC_MESSAGES/karbon.mo share/locale/hne/LC_MESSAGES/koconverter.mo share/locale/hr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hr/LC_MESSAGES/KarbonTools.mo share/locale/hr/LC_MESSAGES/calligra.mo share/locale/hr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hr/LC_MESSAGES/calligrafilters.mo share/locale/hr/LC_MESSAGES/calligrasheets.mo share/locale/hr/LC_MESSAGES/calligrastage.mo share/locale/hr/LC_MESSAGES/calligrawords.mo share/locale/hr/LC_MESSAGES/karbon.mo share/locale/hr/LC_MESSAGES/koconverter.mo share/locale/hsb/LC_MESSAGES/calligra.mo share/locale/hsb/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hsb/LC_MESSAGES/calligrafilters.mo share/locale/hsb/LC_MESSAGES/calligrastage.mo share/locale/hsb/LC_MESSAGES/calligrawords.mo share/locale/hu/LC_MESSAGES/KarbonFilterEffects.mo share/locale/hu/LC_MESSAGES/KarbonTools.mo share/locale/hu/LC_MESSAGES/braindump.mo share/locale/hu/LC_MESSAGES/calligra-defaulttools.mo share/locale/hu/LC_MESSAGES/calligra-dockers.mo share/locale/hu/LC_MESSAGES/calligra-opener.mo share/locale/hu/LC_MESSAGES/calligra.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/hu/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/hu/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/hu/LC_MESSAGES/calligra_shape_chart.mo share/locale/hu/LC_MESSAGES/calligra_shape_comment.mo share/locale/hu/LC_MESSAGES/calligra_shape_formula.mo share/locale/hu/LC_MESSAGES/calligra_shape_music.mo share/locale/hu/LC_MESSAGES/calligra_shape_paths.mo share/locale/hu/LC_MESSAGES/calligra_shape_picture.mo share/locale/hu/LC_MESSAGES/calligra_shape_plugin.mo share/locale/hu/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/hu/LC_MESSAGES/calligra_shape_template.mo share/locale/hu/LC_MESSAGES/calligra_shape_text.mo share/locale/hu/LC_MESSAGES/calligra_shape_threed.mo share/locale/hu/LC_MESSAGES/calligra_shape_vector.mo share/locale/hu/LC_MESSAGES/calligra_shape_video.mo share/locale/hu/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/hu/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/hu/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/hu/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/hu/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/hu/LC_MESSAGES/calligrafilters.mo share/locale/hu/LC_MESSAGES/calligrasheets.mo share/locale/hu/LC_MESSAGES/calligrasheets_calendar.mo share/locale/hu/LC_MESSAGES/calligrasheets_solver.mo share/locale/hu/LC_MESSAGES/calligrastage.mo share/locale/hu/LC_MESSAGES/calligrawords.mo share/locale/hu/LC_MESSAGES/karbon.mo share/locale/hu/LC_MESSAGES/kocolorspaces.mo share/locale/hu/LC_MESSAGES/koconverter.mo share/locale/hu/LC_MESSAGES/okularGenerator_odp.mo share/locale/hu/LC_MESSAGES/okularGenerator_odt.mo share/locale/ia/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ia/LC_MESSAGES/KarbonTools.mo share/locale/ia/LC_MESSAGES/braindump.mo share/locale/ia/LC_MESSAGES/calligra-defaulttools.mo share/locale/ia/LC_MESSAGES/calligra-dockers.mo share/locale/ia/LC_MESSAGES/calligra-opener.mo share/locale/ia/LC_MESSAGES/calligra.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ia/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ia/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ia/LC_MESSAGES/calligra_shape_chart.mo share/locale/ia/LC_MESSAGES/calligra_shape_comment.mo share/locale/ia/LC_MESSAGES/calligra_shape_formula.mo share/locale/ia/LC_MESSAGES/calligra_shape_music.mo share/locale/ia/LC_MESSAGES/calligra_shape_paths.mo share/locale/ia/LC_MESSAGES/calligra_shape_picture.mo share/locale/ia/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ia/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ia/LC_MESSAGES/calligra_shape_template.mo share/locale/ia/LC_MESSAGES/calligra_shape_text.mo share/locale/ia/LC_MESSAGES/calligra_shape_threed.mo share/locale/ia/LC_MESSAGES/calligra_shape_vector.mo share/locale/ia/LC_MESSAGES/calligra_shape_video.mo share/locale/ia/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ia/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ia/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ia/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ia/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ia/LC_MESSAGES/calligrafilters.mo share/locale/ia/LC_MESSAGES/calligrasheets.mo share/locale/ia/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ia/LC_MESSAGES/calligrasheets_solver.mo share/locale/ia/LC_MESSAGES/calligrastage.mo share/locale/ia/LC_MESSAGES/calligrawords.mo share/locale/ia/LC_MESSAGES/karbon.mo share/locale/ia/LC_MESSAGES/kocolorspaces.mo share/locale/ia/LC_MESSAGES/koconverter.mo share/locale/ia/LC_MESSAGES/okularGenerator_odp.mo share/locale/ia/LC_MESSAGES/okularGenerator_odt.mo share/locale/id/LC_MESSAGES/KarbonFilterEffects.mo share/locale/id/LC_MESSAGES/KarbonTools.mo share/locale/id/LC_MESSAGES/braindump.mo share/locale/id/LC_MESSAGES/calligra-defaulttools.mo share/locale/id/LC_MESSAGES/calligra-dockers.mo share/locale/id/LC_MESSAGES/calligra-opener.mo share/locale/id/LC_MESSAGES/calligra.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/id/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/id/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/id/LC_MESSAGES/calligra_shape_chart.mo share/locale/id/LC_MESSAGES/calligra_shape_comment.mo share/locale/id/LC_MESSAGES/calligra_shape_formula.mo share/locale/id/LC_MESSAGES/calligra_shape_music.mo share/locale/id/LC_MESSAGES/calligra_shape_paths.mo share/locale/id/LC_MESSAGES/calligra_shape_picture.mo share/locale/id/LC_MESSAGES/calligra_shape_plugin.mo share/locale/id/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/id/LC_MESSAGES/calligra_shape_template.mo share/locale/id/LC_MESSAGES/calligra_shape_text.mo share/locale/id/LC_MESSAGES/calligra_shape_threed.mo share/locale/id/LC_MESSAGES/calligra_shape_vector.mo share/locale/id/LC_MESSAGES/calligra_shape_video.mo share/locale/id/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/id/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/id/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/id/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/id/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/id/LC_MESSAGES/calligrafilters.mo share/locale/id/LC_MESSAGES/calligrasheets.mo share/locale/id/LC_MESSAGES/calligrasheets_calendar.mo share/locale/id/LC_MESSAGES/calligrasheets_solver.mo share/locale/id/LC_MESSAGES/calligrastage.mo share/locale/id/LC_MESSAGES/calligrawords.mo share/locale/id/LC_MESSAGES/karbon.mo share/locale/id/LC_MESSAGES/kocolorspaces.mo share/locale/id/LC_MESSAGES/koconverter.mo share/locale/id/LC_MESSAGES/okularGenerator_odp.mo share/locale/id/LC_MESSAGES/okularGenerator_odt.mo share/locale/is/LC_MESSAGES/calligra.mo share/locale/is/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/is/LC_MESSAGES/calligrafilters.mo share/locale/is/LC_MESSAGES/calligrasheets.mo share/locale/is/LC_MESSAGES/calligrastage.mo share/locale/is/LC_MESSAGES/calligrawords.mo share/locale/is/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/KarbonFilterEffects.mo share/locale/it/LC_MESSAGES/KarbonTools.mo share/locale/it/LC_MESSAGES/braindump.mo share/locale/it/LC_MESSAGES/calligra-defaulttools.mo share/locale/it/LC_MESSAGES/calligra-dockers.mo share/locale/it/LC_MESSAGES/calligra-opener.mo share/locale/it/LC_MESSAGES/calligra.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/it/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/it/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/it/LC_MESSAGES/calligra_shape_chart.mo share/locale/it/LC_MESSAGES/calligra_shape_comment.mo share/locale/it/LC_MESSAGES/calligra_shape_formula.mo share/locale/it/LC_MESSAGES/calligra_shape_music.mo share/locale/it/LC_MESSAGES/calligra_shape_paths.mo share/locale/it/LC_MESSAGES/calligra_shape_picture.mo share/locale/it/LC_MESSAGES/calligra_shape_plugin.mo share/locale/it/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/it/LC_MESSAGES/calligra_shape_template.mo share/locale/it/LC_MESSAGES/calligra_shape_text.mo share/locale/it/LC_MESSAGES/calligra_shape_threed.mo share/locale/it/LC_MESSAGES/calligra_shape_vector.mo share/locale/it/LC_MESSAGES/calligra_shape_video.mo share/locale/it/LC_MESSAGES/calligra_shape_webshape.mo share/locale/it/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/it/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/it/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/it/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/it/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/it/LC_MESSAGES/calligrafilters.mo share/locale/it/LC_MESSAGES/calligralauncher.mo share/locale/it/LC_MESSAGES/calligrasheets.mo share/locale/it/LC_MESSAGES/calligrasheets_calendar.mo share/locale/it/LC_MESSAGES/calligrasheets_solver.mo share/locale/it/LC_MESSAGES/calligrastage.mo share/locale/it/LC_MESSAGES/calligrawords.mo share/locale/it/LC_MESSAGES/karbon.mo share/locale/it/LC_MESSAGES/kocolorspaces.mo share/locale/it/LC_MESSAGES/koconverter.mo share/locale/it/LC_MESSAGES/okularGenerator_odp.mo share/locale/it/LC_MESSAGES/okularGenerator_odt.mo share/locale/ja/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ja/LC_MESSAGES/KarbonTools.mo share/locale/ja/LC_MESSAGES/braindump.mo share/locale/ja/LC_MESSAGES/calligra-defaulttools.mo share/locale/ja/LC_MESSAGES/calligra-dockers.mo share/locale/ja/LC_MESSAGES/calligra-opener.mo share/locale/ja/LC_MESSAGES/calligra.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ja/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ja/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ja/LC_MESSAGES/calligra_shape_chart.mo share/locale/ja/LC_MESSAGES/calligra_shape_comment.mo share/locale/ja/LC_MESSAGES/calligra_shape_formula.mo share/locale/ja/LC_MESSAGES/calligra_shape_music.mo share/locale/ja/LC_MESSAGES/calligra_shape_paths.mo share/locale/ja/LC_MESSAGES/calligra_shape_picture.mo share/locale/ja/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ja/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ja/LC_MESSAGES/calligra_shape_template.mo share/locale/ja/LC_MESSAGES/calligra_shape_text.mo share/locale/ja/LC_MESSAGES/calligra_shape_threed.mo share/locale/ja/LC_MESSAGES/calligra_shape_vector.mo share/locale/ja/LC_MESSAGES/calligra_shape_video.mo share/locale/ja/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ja/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ja/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ja/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ja/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ja/LC_MESSAGES/calligrafilters.mo share/locale/ja/LC_MESSAGES/calligrasheets.mo share/locale/ja/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ja/LC_MESSAGES/calligrasheets_solver.mo share/locale/ja/LC_MESSAGES/calligrastage.mo share/locale/ja/LC_MESSAGES/calligrawords.mo share/locale/ja/LC_MESSAGES/karbon.mo share/locale/ja/LC_MESSAGES/kocolorspaces.mo share/locale/ja/LC_MESSAGES/koconverter.mo share/locale/ja/LC_MESSAGES/okularGenerator_odp.mo share/locale/ja/LC_MESSAGES/okularGenerator_odt.mo share/locale/ka/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ka/LC_MESSAGES/KarbonTools.mo share/locale/ka/LC_MESSAGES/braindump.mo share/locale/ka/LC_MESSAGES/calligra-defaulttools.mo share/locale/ka/LC_MESSAGES/calligra-dockers.mo share/locale/ka/LC_MESSAGES/calligra-opener.mo share/locale/ka/LC_MESSAGES/calligra.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ka/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ka/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ka/LC_MESSAGES/calligra_shape_chart.mo share/locale/ka/LC_MESSAGES/calligra_shape_comment.mo share/locale/ka/LC_MESSAGES/calligra_shape_formula.mo share/locale/ka/LC_MESSAGES/calligra_shape_music.mo share/locale/ka/LC_MESSAGES/calligra_shape_paths.mo share/locale/ka/LC_MESSAGES/calligra_shape_picture.mo share/locale/ka/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ka/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ka/LC_MESSAGES/calligra_shape_template.mo share/locale/ka/LC_MESSAGES/calligra_shape_text.mo share/locale/ka/LC_MESSAGES/calligra_shape_threed.mo share/locale/ka/LC_MESSAGES/calligra_shape_vector.mo share/locale/ka/LC_MESSAGES/calligra_shape_video.mo share/locale/ka/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ka/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ka/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ka/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ka/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ka/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ka/LC_MESSAGES/calligrafilters.mo share/locale/ka/LC_MESSAGES/calligralauncher.mo share/locale/ka/LC_MESSAGES/calligrasheets.mo share/locale/ka/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ka/LC_MESSAGES/calligrasheets_solver.mo share/locale/ka/LC_MESSAGES/calligrastage.mo share/locale/ka/LC_MESSAGES/calligrawords.mo share/locale/ka/LC_MESSAGES/karbon.mo share/locale/ka/LC_MESSAGES/kocolorspaces.mo share/locale/ka/LC_MESSAGES/koconverter.mo share/locale/ka/LC_MESSAGES/okularGenerator_odp.mo share/locale/ka/LC_MESSAGES/okularGenerator_odt.mo share/locale/kk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/kk/LC_MESSAGES/KarbonTools.mo share/locale/kk/LC_MESSAGES/braindump.mo share/locale/kk/LC_MESSAGES/calligra-defaulttools.mo share/locale/kk/LC_MESSAGES/calligra-dockers.mo share/locale/kk/LC_MESSAGES/calligra-opener.mo share/locale/kk/LC_MESSAGES/calligra.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/kk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/kk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/kk/LC_MESSAGES/calligra_shape_chart.mo share/locale/kk/LC_MESSAGES/calligra_shape_comment.mo share/locale/kk/LC_MESSAGES/calligra_shape_formula.mo share/locale/kk/LC_MESSAGES/calligra_shape_music.mo share/locale/kk/LC_MESSAGES/calligra_shape_paths.mo share/locale/kk/LC_MESSAGES/calligra_shape_picture.mo share/locale/kk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/kk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/kk/LC_MESSAGES/calligra_shape_template.mo share/locale/kk/LC_MESSAGES/calligra_shape_text.mo share/locale/kk/LC_MESSAGES/calligra_shape_threed.mo share/locale/kk/LC_MESSAGES/calligra_shape_vector.mo share/locale/kk/LC_MESSAGES/calligra_shape_video.mo share/locale/kk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/kk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/kk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/kk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/kk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/kk/LC_MESSAGES/calligrafilters.mo share/locale/kk/LC_MESSAGES/calligrasheets.mo share/locale/kk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/kk/LC_MESSAGES/calligrasheets_solver.mo share/locale/kk/LC_MESSAGES/calligrastage.mo share/locale/kk/LC_MESSAGES/calligrawords.mo share/locale/kk/LC_MESSAGES/karbon.mo share/locale/kk/LC_MESSAGES/kocolorspaces.mo share/locale/kk/LC_MESSAGES/koconverter.mo share/locale/kk/LC_MESSAGES/okularGenerator_odp.mo share/locale/km/LC_MESSAGES/koconverter.mo share/locale/ko/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ko/LC_MESSAGES/KarbonTools.mo share/locale/ko/LC_MESSAGES/braindump.mo share/locale/ko/LC_MESSAGES/calligra-defaulttools.mo share/locale/ko/LC_MESSAGES/calligra-dockers.mo share/locale/ko/LC_MESSAGES/calligra-opener.mo share/locale/ko/LC_MESSAGES/calligra.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ko/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ko/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ko/LC_MESSAGES/calligra_shape_chart.mo share/locale/ko/LC_MESSAGES/calligra_shape_comment.mo share/locale/ko/LC_MESSAGES/calligra_shape_formula.mo share/locale/ko/LC_MESSAGES/calligra_shape_music.mo share/locale/ko/LC_MESSAGES/calligra_shape_paths.mo share/locale/ko/LC_MESSAGES/calligra_shape_picture.mo share/locale/ko/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ko/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ko/LC_MESSAGES/calligra_shape_template.mo share/locale/ko/LC_MESSAGES/calligra_shape_text.mo share/locale/ko/LC_MESSAGES/calligra_shape_threed.mo share/locale/ko/LC_MESSAGES/calligra_shape_vector.mo share/locale/ko/LC_MESSAGES/calligra_shape_video.mo share/locale/ko/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ko/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ko/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ko/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ko/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ko/LC_MESSAGES/calligrafilters.mo share/locale/ko/LC_MESSAGES/calligrasheets.mo share/locale/ko/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ko/LC_MESSAGES/calligrasheets_solver.mo share/locale/ko/LC_MESSAGES/calligrastage.mo share/locale/ko/LC_MESSAGES/calligrawords.mo share/locale/ko/LC_MESSAGES/karbon.mo share/locale/ko/LC_MESSAGES/kocolorspaces.mo share/locale/ko/LC_MESSAGES/koconverter.mo share/locale/ko/LC_MESSAGES/okularGenerator_odp.mo share/locale/ko/LC_MESSAGES/okularGenerator_odt.mo share/locale/ku/LC_MESSAGES/calligra.mo share/locale/ku/LC_MESSAGES/calligrawords.mo share/locale/lt/LC_MESSAGES/KarbonFilterEffects.mo share/locale/lt/LC_MESSAGES/KarbonTools.mo share/locale/lt/LC_MESSAGES/braindump.mo share/locale/lt/LC_MESSAGES/calligra-defaulttools.mo share/locale/lt/LC_MESSAGES/calligra-dockers.mo share/locale/lt/LC_MESSAGES/calligra-opener.mo share/locale/lt/LC_MESSAGES/calligra.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/lt/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/lt/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/lt/LC_MESSAGES/calligra_shape_chart.mo share/locale/lt/LC_MESSAGES/calligra_shape_comment.mo share/locale/lt/LC_MESSAGES/calligra_shape_formula.mo share/locale/lt/LC_MESSAGES/calligra_shape_music.mo share/locale/lt/LC_MESSAGES/calligra_shape_paths.mo share/locale/lt/LC_MESSAGES/calligra_shape_picture.mo share/locale/lt/LC_MESSAGES/calligra_shape_plugin.mo share/locale/lt/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/lt/LC_MESSAGES/calligra_shape_template.mo share/locale/lt/LC_MESSAGES/calligra_shape_text.mo share/locale/lt/LC_MESSAGES/calligra_shape_threed.mo share/locale/lt/LC_MESSAGES/calligra_shape_vector.mo share/locale/lt/LC_MESSAGES/calligra_shape_video.mo share/locale/lt/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/lt/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/lt/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/lt/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/lt/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/lt/LC_MESSAGES/calligrafilters.mo share/locale/lt/LC_MESSAGES/calligrasheets.mo share/locale/lt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lt/LC_MESSAGES/calligrasheets_solver.mo share/locale/lt/LC_MESSAGES/calligrastage.mo share/locale/lt/LC_MESSAGES/calligrawords.mo share/locale/lt/LC_MESSAGES/karbon.mo share/locale/lt/LC_MESSAGES/kocolorspaces.mo share/locale/lt/LC_MESSAGES/koconverter.mo share/locale/lt/LC_MESSAGES/okularGenerator_odp.mo share/locale/lt/LC_MESSAGES/okularGenerator_odt.mo share/locale/lv/LC_MESSAGES/KarbonFilterEffects.mo share/locale/lv/LC_MESSAGES/KarbonTools.mo share/locale/lv/LC_MESSAGES/braindump.mo share/locale/lv/LC_MESSAGES/calligra-defaulttools.mo share/locale/lv/LC_MESSAGES/calligra-dockers.mo share/locale/lv/LC_MESSAGES/calligra-opener.mo share/locale/lv/LC_MESSAGES/calligra.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/lv/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/lv/LC_MESSAGES/calligra_shape_chart.mo share/locale/lv/LC_MESSAGES/calligra_shape_comment.mo share/locale/lv/LC_MESSAGES/calligra_shape_formula.mo share/locale/lv/LC_MESSAGES/calligra_shape_music.mo share/locale/lv/LC_MESSAGES/calligra_shape_paths.mo share/locale/lv/LC_MESSAGES/calligra_shape_picture.mo share/locale/lv/LC_MESSAGES/calligra_shape_plugin.mo share/locale/lv/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/lv/LC_MESSAGES/calligra_shape_template.mo share/locale/lv/LC_MESSAGES/calligra_shape_text.mo share/locale/lv/LC_MESSAGES/calligra_shape_threed.mo share/locale/lv/LC_MESSAGES/calligra_shape_vector.mo share/locale/lv/LC_MESSAGES/calligra_shape_video.mo share/locale/lv/LC_MESSAGES/calligra_shape_webshape.mo share/locale/lv/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/lv/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/lv/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/lv/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/lv/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/lv/LC_MESSAGES/calligrafilters.mo share/locale/lv/LC_MESSAGES/calligralauncher.mo share/locale/lv/LC_MESSAGES/calligrasheets.mo share/locale/lv/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lv/LC_MESSAGES/calligrasheets_solver.mo share/locale/lv/LC_MESSAGES/calligrastage.mo share/locale/lv/LC_MESSAGES/calligrawords.mo share/locale/lv/LC_MESSAGES/karbon.mo share/locale/lv/LC_MESSAGES/kocolorspaces.mo share/locale/lv/LC_MESSAGES/koconverter.mo share/locale/lv/LC_MESSAGES/okularGenerator_odp.mo share/locale/lv/LC_MESSAGES/okularGenerator_odt.mo share/locale/mai/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mai/LC_MESSAGES/KarbonTools.mo share/locale/mai/LC_MESSAGES/calligra-defaulttools.mo share/locale/mai/LC_MESSAGES/calligra-dockers.mo share/locale/mai/LC_MESSAGES/calligra.mo share/locale/mai/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mai/LC_MESSAGES/calligra_shape_chart.mo share/locale/mai/LC_MESSAGES/calligra_shape_formula.mo share/locale/mai/LC_MESSAGES/calligra_shape_music.mo share/locale/mai/LC_MESSAGES/calligra_shape_paths.mo share/locale/mai/LC_MESSAGES/calligra_shape_picture.mo share/locale/mai/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mai/LC_MESSAGES/calligra_shape_text.mo share/locale/mai/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mai/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mai/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mai/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mai/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mai/LC_MESSAGES/calligrafilters.mo share/locale/mai/LC_MESSAGES/calligrasheets.mo share/locale/mai/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mai/LC_MESSAGES/calligrasheets_solver.mo share/locale/mai/LC_MESSAGES/calligrastage.mo share/locale/mai/LC_MESSAGES/calligrawords.mo share/locale/mai/LC_MESSAGES/karbon.mo share/locale/mai/LC_MESSAGES/kocolorspaces.mo share/locale/mai/LC_MESSAGES/koconverter.mo share/locale/mk/LC_MESSAGES/calligra.mo share/locale/mk/LC_MESSAGES/calligrasheets.mo share/locale/mk/LC_MESSAGES/calligrawords.mo share/locale/ml/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mr/LC_MESSAGES/KarbonTools.mo share/locale/mr/LC_MESSAGES/braindump.mo share/locale/mr/LC_MESSAGES/calligra-defaulttools.mo share/locale/mr/LC_MESSAGES/calligra-dockers.mo share/locale/mr/LC_MESSAGES/calligra-opener.mo share/locale/mr/LC_MESSAGES/calligra.mo share/locale/mr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mr/LC_MESSAGES/calligra_shape_chart.mo share/locale/mr/LC_MESSAGES/calligra_shape_comment.mo share/locale/mr/LC_MESSAGES/calligra_shape_formula.mo share/locale/mr/LC_MESSAGES/calligra_shape_music.mo share/locale/mr/LC_MESSAGES/calligra_shape_paths.mo share/locale/mr/LC_MESSAGES/calligra_shape_picture.mo share/locale/mr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/mr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mr/LC_MESSAGES/calligra_shape_template.mo share/locale/mr/LC_MESSAGES/calligra_shape_text.mo share/locale/mr/LC_MESSAGES/calligra_shape_threed.mo share/locale/mr/LC_MESSAGES/calligra_shape_vector.mo share/locale/mr/LC_MESSAGES/calligra_shape_video.mo share/locale/mr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mr/LC_MESSAGES/calligrafilters.mo share/locale/mr/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mr/LC_MESSAGES/calligrasheets_solver.mo share/locale/mr/LC_MESSAGES/calligrastage.mo share/locale/mr/LC_MESSAGES/calligrawords.mo share/locale/mr/LC_MESSAGES/karbon.mo share/locale/mr/LC_MESSAGES/kocolorspaces.mo share/locale/mr/LC_MESSAGES/koconverter.mo share/locale/mr/LC_MESSAGES/okularGenerator_odp.mo share/locale/ms/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ms/LC_MESSAGES/KarbonTools.mo share/locale/ms/LC_MESSAGES/braindump.mo share/locale/ms/LC_MESSAGES/calligra-defaulttools.mo share/locale/ms/LC_MESSAGES/calligra-dockers.mo share/locale/ms/LC_MESSAGES/calligra-opener.mo share/locale/ms/LC_MESSAGES/calligra.mo share/locale/ms/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ms/LC_MESSAGES/calligra_shape_chart.mo share/locale/ms/LC_MESSAGES/calligra_shape_comment.mo share/locale/ms/LC_MESSAGES/calligra_shape_formula.mo share/locale/ms/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ms/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ms/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ms/LC_MESSAGES/calligrafilters.mo share/locale/ms/LC_MESSAGES/calligrasheets.mo share/locale/ms/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ms/LC_MESSAGES/calligrastage.mo share/locale/ms/LC_MESSAGES/calligrawords.mo share/locale/ms/LC_MESSAGES/karbon.mo share/locale/ms/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nb/LC_MESSAGES/KarbonTools.mo share/locale/nb/LC_MESSAGES/braindump.mo share/locale/nb/LC_MESSAGES/calligra-defaulttools.mo share/locale/nb/LC_MESSAGES/calligra-dockers.mo share/locale/nb/LC_MESSAGES/calligra-opener.mo share/locale/nb/LC_MESSAGES/calligra.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nb/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nb/LC_MESSAGES/calligra_shape_chart.mo share/locale/nb/LC_MESSAGES/calligra_shape_comment.mo share/locale/nb/LC_MESSAGES/calligra_shape_formula.mo share/locale/nb/LC_MESSAGES/calligra_shape_music.mo share/locale/nb/LC_MESSAGES/calligra_shape_paths.mo share/locale/nb/LC_MESSAGES/calligra_shape_picture.mo share/locale/nb/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nb/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nb/LC_MESSAGES/calligra_shape_template.mo share/locale/nb/LC_MESSAGES/calligra_shape_text.mo share/locale/nb/LC_MESSAGES/calligra_shape_threed.mo share/locale/nb/LC_MESSAGES/calligra_shape_vector.mo share/locale/nb/LC_MESSAGES/calligra_shape_video.mo share/locale/nb/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nb/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nb/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nb/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nb/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nb/LC_MESSAGES/calligrafilters.mo share/locale/nb/LC_MESSAGES/calligrasheets.mo share/locale/nb/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nb/LC_MESSAGES/calligrasheets_solver.mo share/locale/nb/LC_MESSAGES/calligrastage.mo share/locale/nb/LC_MESSAGES/calligrawords.mo share/locale/nb/LC_MESSAGES/karbon.mo share/locale/nb/LC_MESSAGES/kocolorspaces.mo share/locale/nb/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/okularGenerator_odp.mo share/locale/nds/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nds/LC_MESSAGES/KarbonTools.mo share/locale/nds/LC_MESSAGES/braindump.mo share/locale/nds/LC_MESSAGES/calligra-defaulttools.mo share/locale/nds/LC_MESSAGES/calligra-dockers.mo share/locale/nds/LC_MESSAGES/calligra-opener.mo share/locale/nds/LC_MESSAGES/calligra.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nds/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nds/LC_MESSAGES/calligra_shape_chart.mo share/locale/nds/LC_MESSAGES/calligra_shape_comment.mo share/locale/nds/LC_MESSAGES/calligra_shape_formula.mo share/locale/nds/LC_MESSAGES/calligra_shape_music.mo share/locale/nds/LC_MESSAGES/calligra_shape_paths.mo share/locale/nds/LC_MESSAGES/calligra_shape_picture.mo share/locale/nds/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nds/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nds/LC_MESSAGES/calligra_shape_template.mo share/locale/nds/LC_MESSAGES/calligra_shape_text.mo share/locale/nds/LC_MESSAGES/calligra_shape_threed.mo share/locale/nds/LC_MESSAGES/calligra_shape_vector.mo share/locale/nds/LC_MESSAGES/calligra_shape_video.mo share/locale/nds/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nds/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nds/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nds/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nds/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nds/LC_MESSAGES/calligrafilters.mo share/locale/nds/LC_MESSAGES/calligrasheets.mo share/locale/nds/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nds/LC_MESSAGES/calligrasheets_solver.mo share/locale/nds/LC_MESSAGES/calligrastage.mo share/locale/nds/LC_MESSAGES/calligrawords.mo share/locale/nds/LC_MESSAGES/karbon.mo share/locale/nds/LC_MESSAGES/kocolorspaces.mo share/locale/nds/LC_MESSAGES/koconverter.mo share/locale/nds/LC_MESSAGES/okularGenerator_odp.mo share/locale/ne/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ne/LC_MESSAGES/KarbonTools.mo share/locale/ne/LC_MESSAGES/calligra.mo share/locale/ne/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ne/LC_MESSAGES/calligrafilters.mo share/locale/ne/LC_MESSAGES/calligrasheets.mo share/locale/ne/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ne/LC_MESSAGES/calligrastage.mo share/locale/ne/LC_MESSAGES/calligrawords.mo share/locale/ne/LC_MESSAGES/karbon.mo share/locale/ne/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nl/LC_MESSAGES/KarbonTools.mo share/locale/nl/LC_MESSAGES/braindump.mo share/locale/nl/LC_MESSAGES/calligra-defaulttools.mo share/locale/nl/LC_MESSAGES/calligra-dockers.mo share/locale/nl/LC_MESSAGES/calligra-opener.mo share/locale/nl/LC_MESSAGES/calligra.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nl/LC_MESSAGES/calligra_shape_chart.mo share/locale/nl/LC_MESSAGES/calligra_shape_comment.mo share/locale/nl/LC_MESSAGES/calligra_shape_formula.mo share/locale/nl/LC_MESSAGES/calligra_shape_music.mo share/locale/nl/LC_MESSAGES/calligra_shape_paths.mo share/locale/nl/LC_MESSAGES/calligra_shape_picture.mo share/locale/nl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nl/LC_MESSAGES/calligra_shape_template.mo share/locale/nl/LC_MESSAGES/calligra_shape_text.mo share/locale/nl/LC_MESSAGES/calligra_shape_threed.mo share/locale/nl/LC_MESSAGES/calligra_shape_vector.mo share/locale/nl/LC_MESSAGES/calligra_shape_video.mo share/locale/nl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/nl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nl/LC_MESSAGES/calligrafilters.mo share/locale/nl/LC_MESSAGES/calligralauncher.mo share/locale/nl/LC_MESSAGES/calligrasheets.mo share/locale/nl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nl/LC_MESSAGES/calligrasheets_solver.mo share/locale/nl/LC_MESSAGES/calligrastage.mo share/locale/nl/LC_MESSAGES/calligrawords.mo share/locale/nl/LC_MESSAGES/karbon.mo share/locale/nl/LC_MESSAGES/kocolorspaces.mo share/locale/nl/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/okularGenerator_odp.mo share/locale/nl/LC_MESSAGES/okularGenerator_odt.mo share/locale/nn/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nn/LC_MESSAGES/KarbonTools.mo share/locale/nn/LC_MESSAGES/calligra-defaulttools.mo share/locale/nn/LC_MESSAGES/calligra-dockers.mo share/locale/nn/LC_MESSAGES/calligra.mo share/locale/nn/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nn/LC_MESSAGES/calligra_shape_chart.mo share/locale/nn/LC_MESSAGES/calligra_shape_formula.mo share/locale/nn/LC_MESSAGES/calligra_shape_music.mo share/locale/nn/LC_MESSAGES/calligra_shape_paths.mo share/locale/nn/LC_MESSAGES/calligra_shape_picture.mo share/locale/nn/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nn/LC_MESSAGES/calligra_shape_text.mo share/locale/nn/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nn/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nn/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nn/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nn/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nn/LC_MESSAGES/calligrafilters.mo share/locale/nn/LC_MESSAGES/calligrasheets.mo share/locale/nn/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nn/LC_MESSAGES/calligrasheets_solver.mo share/locale/nn/LC_MESSAGES/calligrastage.mo share/locale/nn/LC_MESSAGES/calligrawords.mo share/locale/nn/LC_MESSAGES/karbon.mo share/locale/nn/LC_MESSAGES/kocolorspaces.mo share/locale/nn/LC_MESSAGES/koconverter.mo share/locale/nn/LC_MESSAGES/okularGenerator_odp.mo share/locale/nn/LC_MESSAGES/okularGenerator_odt.mo share/locale/oc/LC_MESSAGES/KarbonFilterEffects.mo share/locale/oc/LC_MESSAGES/KarbonTools.mo share/locale/oc/LC_MESSAGES/calligra-dockers.mo share/locale/oc/LC_MESSAGES/calligra.mo share/locale/oc/LC_MESSAGES/calligra_shape_music.mo share/locale/oc/LC_MESSAGES/calligra_shape_paths.mo share/locale/oc/LC_MESSAGES/calligra_shape_picture.mo share/locale/oc/LC_MESSAGES/calligra_shape_text.mo share/locale/oc/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/oc/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/oc/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/oc/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/oc/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/oc/LC_MESSAGES/calligrafilters.mo share/locale/oc/LC_MESSAGES/calligrasheets.mo share/locale/oc/LC_MESSAGES/calligrasheets_calendar.mo share/locale/oc/LC_MESSAGES/calligrasheets_solver.mo share/locale/oc/LC_MESSAGES/calligrastage.mo share/locale/oc/LC_MESSAGES/calligrawords.mo share/locale/oc/LC_MESSAGES/karbon.mo share/locale/oc/LC_MESSAGES/koconverter.mo share/locale/pa/LC_MESSAGES/calligra.mo share/locale/pa/LC_MESSAGES/calligrasheets.mo share/locale/pa/LC_MESSAGES/calligrastage.mo share/locale/pa/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pl/LC_MESSAGES/KarbonTools.mo share/locale/pl/LC_MESSAGES/braindump.mo share/locale/pl/LC_MESSAGES/calligra-defaulttools.mo share/locale/pl/LC_MESSAGES/calligra-dockers.mo share/locale/pl/LC_MESSAGES/calligra-opener.mo share/locale/pl/LC_MESSAGES/calligra.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pl/LC_MESSAGES/calligra_shape_chart.mo share/locale/pl/LC_MESSAGES/calligra_shape_comment.mo share/locale/pl/LC_MESSAGES/calligra_shape_formula.mo share/locale/pl/LC_MESSAGES/calligra_shape_music.mo share/locale/pl/LC_MESSAGES/calligra_shape_paths.mo share/locale/pl/LC_MESSAGES/calligra_shape_picture.mo share/locale/pl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pl/LC_MESSAGES/calligra_shape_template.mo share/locale/pl/LC_MESSAGES/calligra_shape_text.mo share/locale/pl/LC_MESSAGES/calligra_shape_threed.mo share/locale/pl/LC_MESSAGES/calligra_shape_vector.mo share/locale/pl/LC_MESSAGES/calligra_shape_video.mo share/locale/pl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/pl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pl/LC_MESSAGES/calligrafilters.mo share/locale/pl/LC_MESSAGES/calligralauncher.mo share/locale/pl/LC_MESSAGES/calligrasheets.mo share/locale/pl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pl/LC_MESSAGES/calligrasheets_solver.mo share/locale/pl/LC_MESSAGES/calligrastage.mo share/locale/pl/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/karbon.mo share/locale/pl/LC_MESSAGES/kocolorspaces.mo share/locale/pl/LC_MESSAGES/koconverter.mo share/locale/pl/LC_MESSAGES/okularGenerator_odp.mo share/locale/pl/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt/LC_MESSAGES/KarbonTools.mo share/locale/pt/LC_MESSAGES/braindump.mo share/locale/pt/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt/LC_MESSAGES/calligra-dockers.mo share/locale/pt/LC_MESSAGES/calligra-opener.mo share/locale/pt/LC_MESSAGES/calligra.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt/LC_MESSAGES/calligra_shape_music.mo share/locale/pt/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt/LC_MESSAGES/calligra_shape_template.mo share/locale/pt/LC_MESSAGES/calligra_shape_text.mo share/locale/pt/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt/LC_MESSAGES/calligra_shape_video.mo share/locale/pt/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pt/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pt/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pt/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pt/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pt/LC_MESSAGES/calligrafilters.mo share/locale/pt/LC_MESSAGES/calligrasheets.mo share/locale/pt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pt/LC_MESSAGES/calligrasheets_solver.mo share/locale/pt/LC_MESSAGES/calligrastage.mo share/locale/pt/LC_MESSAGES/calligrawords.mo share/locale/pt/LC_MESSAGES/karbon.mo share/locale/pt/LC_MESSAGES/kocolorspaces.mo share/locale/pt/LC_MESSAGES/koconverter.mo share/locale/pt/LC_MESSAGES/okularGenerator_odp.mo share/locale/pt/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt_BR/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt_BR/LC_MESSAGES/KarbonTools.mo share/locale/pt_BR/LC_MESSAGES/braindump.mo share/locale/pt_BR/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt_BR/LC_MESSAGES/calligra-dockers.mo share/locale/pt_BR/LC_MESSAGES/calligra-opener.mo share/locale/pt_BR/LC_MESSAGES/calligra.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_music.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_template.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_text.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_video.mo share/locale/pt_BR/LC_MESSAGES/calligra_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/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 a28ee509d540..13c826213c20 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557861 -SHA256 (KDE/release-service/25.04.1/ghostwriter-25.04.1.tar.xz) = 814d450cc84a9eb11540de408a4ec2d1918ca00d05ca5a172d5bd01340312010 -SIZE (KDE/release-service/25.04.1/ghostwriter-25.04.1.tar.xz) = 2722648 +TIMESTAMP = 1749036372 +SHA256 (KDE/release-service/25.04.2/ghostwriter-25.04.2.tar.xz) = 12c1dfd2f81ff44e4a074714b07d341a35e5cc058a69338ecface648d17c841a +SIZE (KDE/release-service/25.04.2/ghostwriter-25.04.2.tar.xz) = 2723008 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 87001d73421f..c42cb4c4ed29 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557861 -SHA256 (KDE/release-service/25.04.1/kate-25.04.1.tar.xz) = 820f0412a8485472844ea83881c47e1b90093ce3e2729e6910f9d3593fe530aa -SIZE (KDE/release-service/25.04.1/kate-25.04.1.tar.xz) = 8374812 +TIMESTAMP = 1749036375 +SHA256 (KDE/release-service/25.04.2/kate-25.04.2.tar.xz) = 6951391a19566d2cc36c369aef86b58261169391d5a64cff0fa7301bb17879a5 +SIZE (KDE/release-service/25.04.2/kate-25.04.2.tar.xz) = 8373500 diff --git a/games/blinken/distinfo b/games/blinken/distinfo index f5db7ebed43b..83b265237b6b 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557862 -SHA256 (KDE/release-service/25.04.1/blinken-25.04.1.tar.xz) = 7f0e1ff4988ce906131c04d0461eda363270fa5ce929bd60d1ea445f0e570cbf -SIZE (KDE/release-service/25.04.1/blinken-25.04.1.tar.xz) = 2715236 +TIMESTAMP = 1749036377 +SHA256 (KDE/release-service/25.04.2/blinken-25.04.2.tar.xz) = 0e31cabd6340b6fdfe5c7c2d725b2ceb88a01ad54b50d790c2c3d028d2c425f8 +SIZE (KDE/release-service/25.04.2/blinken-25.04.2.tar.xz) = 2715212 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index d69b99cdc876..7ecd13ad838c 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557863 -SHA256 (KDE/release-service/25.04.1/bomber-25.04.1.tar.xz) = db396f94a860e5c334cb468abebba774b2b9e47d7fc71fb99e3d75cfb18948b4 -SIZE (KDE/release-service/25.04.1/bomber-25.04.1.tar.xz) = 840948 +TIMESTAMP = 1749036637 +SHA256 (KDE/release-service/25.04.2/bomber-25.04.2.tar.xz) = ba9929548d6bd61f55b4c1ee52657164449e7843c279747947542b357a377b14 +SIZE (KDE/release-service/25.04.2/bomber-25.04.2.tar.xz) = 840924 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 2a9a87b0997a..7ed0498581e1 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557863 -SHA256 (KDE/release-service/25.04.1/bovo-25.04.1.tar.xz) = 95dad20518fd126c363222af3830871cbe891deff64805bbd8829847bbd99373 -SIZE (KDE/release-service/25.04.1/bovo-25.04.1.tar.xz) = 221636 +TIMESTAMP = 1749036639 +SHA256 (KDE/release-service/25.04.2/bovo-25.04.2.tar.xz) = e974fe78732e59ed2a2f702d8c9d12ec8c08a3f0f16c2def61f556464b9f9d1e +SIZE (KDE/release-service/25.04.2/bovo-25.04.2.tar.xz) = 221640 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 567bb19e96d0..c308c0db46d2 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557864 -SHA256 (KDE/release-service/25.04.1/granatier-25.04.1.tar.xz) = eced3ff61a779cc6823407f45b1d4086e167af40a6a833cfabb363c1436e238c -SIZE (KDE/release-service/25.04.1/granatier-25.04.1.tar.xz) = 2017120 +TIMESTAMP = 1749036642 +SHA256 (KDE/release-service/25.04.2/granatier-25.04.2.tar.xz) = 4abb61944bc3ebfd37dfa549126b41d9b39ffed73a3576be476a2cad2017dcbb +SIZE (KDE/release-service/25.04.2/granatier-25.04.2.tar.xz) = 2017264 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index e24357e173a9..a9d0cef62d8d 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557865 -SHA256 (KDE/release-service/25.04.1/kajongg-25.04.1.tar.xz) = aa48c423222366485e63447f87f5f7a5cc6eaef8c11eb8db077082fe0325118d -SIZE (KDE/release-service/25.04.1/kajongg-25.04.1.tar.xz) = 4637616 +TIMESTAMP = 1749036644 +SHA256 (KDE/release-service/25.04.2/kajongg-25.04.2.tar.xz) = 4c7422291fb8b5485782875854560f221f1faebfa75590a2ead009fcbd87f914 +SIZE (KDE/release-service/25.04.2/kajongg-25.04.2.tar.xz) = 4637760 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 5797cd40ea52..43d09c9306cb 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557865 -SHA256 (KDE/release-service/25.04.1/kanagram-25.04.1.tar.xz) = 50a8cef59f1463562619fb6db115ac7ef3e34425f8158782491da2f3a68a3f59 -SIZE (KDE/release-service/25.04.1/kanagram-25.04.1.tar.xz) = 7786048 +TIMESTAMP = 1749036647 +SHA256 (KDE/release-service/25.04.2/kanagram-25.04.2.tar.xz) = 622a45ee55d2df00cff78c7f4b90cf9332858da376f97c19da0315a6e26c62c7 +SIZE (KDE/release-service/25.04.2/kanagram-25.04.2.tar.xz) = 7786252 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 4e4a42ec9c07..0b6436f8b992 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557866 -SHA256 (KDE/release-service/25.04.1/kapman-25.04.1.tar.xz) = ef5c159b505cc9bad4347391960a4bdfa6af691d977d51138cb122d81ccbb0c1 -SIZE (KDE/release-service/25.04.1/kapman-25.04.1.tar.xz) = 2150336 +TIMESTAMP = 1749036649 +SHA256 (KDE/release-service/25.04.2/kapman-25.04.2.tar.xz) = ecc97368ca00d8d8579aa46d4f4b43462826e31d7add2d61cac13bc9140adc1f +SIZE (KDE/release-service/25.04.2/kapman-25.04.2.tar.xz) = 2150108 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 2813203eb642..88876c422473 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557867 -SHA256 (KDE/release-service/25.04.1/katomic-25.04.1.tar.xz) = dff2c380ba6338634f8e8a618b67e582cab7b33762cb7899d767ce1139377cca -SIZE (KDE/release-service/25.04.1/katomic-25.04.1.tar.xz) = 1450512 +TIMESTAMP = 1749036651 +SHA256 (KDE/release-service/25.04.2/katomic-25.04.2.tar.xz) = 81808553cfbab3e2997a7b8395a918af418144c41ec96e6318db0f106addc9ef +SIZE (KDE/release-service/25.04.2/katomic-25.04.2.tar.xz) = 1449376 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index f73a131210bd..38ab67437d67 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557868 -SHA256 (KDE/release-service/25.04.1/kblackbox-25.04.1.tar.xz) = 296b00038b55e2ce8979ef327d6e6cb6429cc6e993d8d01cbd4392d9572163e6 -SIZE (KDE/release-service/25.04.1/kblackbox-25.04.1.tar.xz) = 556016 +TIMESTAMP = 1749036654 +SHA256 (KDE/release-service/25.04.2/kblackbox-25.04.2.tar.xz) = 4f109ab0134708ec7f211ddce9dc81e18705d157a92a23ba8eebca063a0d6ab9 +SIZE (KDE/release-service/25.04.2/kblackbox-25.04.2.tar.xz) = 556032 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 5873a773e07e..ab97f3a15237 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557868 -SHA256 (KDE/release-service/25.04.1/kblocks-25.04.1.tar.xz) = c61a4de9fb0c36eb5d83e24599624f48e181018fce7d3fd1c5b29210a7f80ec9 -SIZE (KDE/release-service/25.04.1/kblocks-25.04.1.tar.xz) = 2104348 +TIMESTAMP = 1749036656 +SHA256 (KDE/release-service/25.04.2/kblocks-25.04.2.tar.xz) = a8d524d6aae000cdf1ebc38e474b4c4ca6fec204d80498ef07115163ed13ce5b +SIZE (KDE/release-service/25.04.2/kblocks-25.04.2.tar.xz) = 2104328 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 57773ed3ad75..6b4c4efbe345 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557869 -SHA256 (KDE/release-service/25.04.1/kbounce-25.04.1.tar.xz) = 80061d7cc8f657b31d888f9300293fd463063215ed5d9fe3a20ba85fadb8a260 -SIZE (KDE/release-service/25.04.1/kbounce-25.04.1.tar.xz) = 3325556 +TIMESTAMP = 1749036659 +SHA256 (KDE/release-service/25.04.2/kbounce-25.04.2.tar.xz) = 1fad3476f263678ea17794eb99e7278ef21f79922cf82ffd32fa9644c499fb69 +SIZE (KDE/release-service/25.04.2/kbounce-25.04.2.tar.xz) = 3324252 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index aa73b32664a9..7538dcf36414 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557870 -SHA256 (KDE/release-service/25.04.1/kbreakout-25.04.1.tar.xz) = e1342b616b229bd511128df96440c6cc8ceac79ae1bcb96267079bb73c8b05dd -SIZE (KDE/release-service/25.04.1/kbreakout-25.04.1.tar.xz) = 2559136 +TIMESTAMP = 1749036661 +SHA256 (KDE/release-service/25.04.2/kbreakout-25.04.2.tar.xz) = b1d5329abc6167bf7bb57fcd5e0275812c371018e447d6eedca11582b7bddeef +SIZE (KDE/release-service/25.04.2/kbreakout-25.04.2.tar.xz) = 2558984 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 4f4d6e9d7ad0..426951f8e1fa 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557870 -SHA256 (KDE/release-service/25.04.1/kdiamond-25.04.1.tar.xz) = 83add64a19c191c50db99923b463a779a3fc295af491144a86d576fc9eeb490b -SIZE (KDE/release-service/25.04.1/kdiamond-25.04.1.tar.xz) = 4674548 +TIMESTAMP = 1749036664 +SHA256 (KDE/release-service/25.04.2/kdiamond-25.04.2.tar.xz) = 877916a517bb123f7b55227ae181aa1aad83c69e6b99bbe021d0c7fdcc8d7d8f +SIZE (KDE/release-service/25.04.2/kdiamond-25.04.2.tar.xz) = 4674880 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 9718adef8cff..2fceac3484e9 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557871 -SHA256 (KDE/release-service/25.04.1/kfourinline-25.04.1.tar.xz) = ae07f41d3dc32812ecb153623b7a26ebebbeb09601c2298605e8790a156c3edc -SIZE (KDE/release-service/25.04.1/kfourinline-25.04.1.tar.xz) = 748984 +TIMESTAMP = 1749036666 +SHA256 (KDE/release-service/25.04.2/kfourinline-25.04.2.tar.xz) = da42eab4467f066d9783dfb54d64bae75c47046717bdfbabd1223291f4957784 +SIZE (KDE/release-service/25.04.2/kfourinline-25.04.2.tar.xz) = 748908 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 5d5e5efb2a7d..e5ccdc56b619 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557872 -SHA256 (KDE/release-service/25.04.1/kgoldrunner-25.04.1.tar.xz) = 5d93d858cd8526f41e9c507d3b1e254c45f8a31a1bf318a466df18c308021e82 -SIZE (KDE/release-service/25.04.1/kgoldrunner-25.04.1.tar.xz) = 4419644 +TIMESTAMP = 1749036669 +SHA256 (KDE/release-service/25.04.2/kgoldrunner-25.04.2.tar.xz) = 1a48941920c2504bf35225110593a4c3ce6a5b7adb8b36599745bd664a685dc2 +SIZE (KDE/release-service/25.04.2/kgoldrunner-25.04.2.tar.xz) = 4420148 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 9e434f74cc18..8f9522be7b31 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557872 -SHA256 (KDE/release-service/25.04.1/khangman-25.04.1.tar.xz) = c5bc556d0ebbec83635ac94d88a9a5df954899f060e42cf2c284ccc361c33ff7 -SIZE (KDE/release-service/25.04.1/khangman-25.04.1.tar.xz) = 7030324 +TIMESTAMP = 1749036671 +SHA256 (KDE/release-service/25.04.2/khangman-25.04.2.tar.xz) = 8f1e97c4c66b8a8a40150e66f300f9ade2fc17ea222a49530c8e190a5d4f4e1d +SIZE (KDE/release-service/25.04.2/khangman-25.04.2.tar.xz) = 7023600 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 95935b51d11f..496138aef165 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557873 -SHA256 (KDE/release-service/25.04.1/kigo-25.04.1.tar.xz) = 39069e2b7ad7cabffcf421eb7581a44153f5eae2f261ff8e2bf324b9c0315b2a -SIZE (KDE/release-service/25.04.1/kigo-25.04.1.tar.xz) = 4838136 +TIMESTAMP = 1749036674 +SHA256 (KDE/release-service/25.04.2/kigo-25.04.2.tar.xz) = fc8b76ecf6b244ac406012f85da7adc079f3d6f742ce81093eef368bf845006b +SIZE (KDE/release-service/25.04.2/kigo-25.04.2.tar.xz) = 4838092 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 6524574957d5..100e7b4f8390 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557874 -SHA256 (KDE/release-service/25.04.1/killbots-25.04.1.tar.xz) = c1182ddd6fb82e153304ed799cd58790b71ebdab86ae4f6733bca97041a92b3f -SIZE (KDE/release-service/25.04.1/killbots-25.04.1.tar.xz) = 1177608 +TIMESTAMP = 1749036676 +SHA256 (KDE/release-service/25.04.2/killbots-25.04.2.tar.xz) = 790c3163006acc48481d6cd50d2a5473d7a6f1b3a7095ca64829696770dc22fc +SIZE (KDE/release-service/25.04.2/killbots-25.04.2.tar.xz) = 1177668 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index b1fc10a22947..d23cd76fd6b9 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557874 -SHA256 (KDE/release-service/25.04.1/kiriki-25.04.1.tar.xz) = 229d6eacbc9640333a5a86b7f0116bc33188e7a6715f563333bb17ea9dac627e -SIZE (KDE/release-service/25.04.1/kiriki-25.04.1.tar.xz) = 376084 +TIMESTAMP = 1749036678 +SHA256 (KDE/release-service/25.04.2/kiriki-25.04.2.tar.xz) = 6127a695c590fea4976eeb3340e4c2c12876de46696700d1ce76c0971a86dd1f +SIZE (KDE/release-service/25.04.2/kiriki-25.04.2.tar.xz) = 376100 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 72a908ef19a1..a189fa6e215a 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557875 -SHA256 (KDE/release-service/25.04.1/kjumpingcube-25.04.1.tar.xz) = 679355da64e05c8935082adf97a21502133cbfe666b1f9469ec204073964281e -SIZE (KDE/release-service/25.04.1/kjumpingcube-25.04.1.tar.xz) = 349992 +TIMESTAMP = 1749036681 +SHA256 (KDE/release-service/25.04.2/kjumpingcube-25.04.2.tar.xz) = 77584a369b32b6914748acfe80b39171884fe251f491c39cd267ad9a07ecfb94 +SIZE (KDE/release-service/25.04.2/kjumpingcube-25.04.2.tar.xz) = 349900 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 0d70f87a92de..644f762f46f7 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557876 -SHA256 (KDE/release-service/25.04.1/klickety-25.04.1.tar.xz) = 4c2bffe2d265b66026e3676babada8f20590760ad1549187f0b9f5a3fce6eb16 -SIZE (KDE/release-service/25.04.1/klickety-25.04.1.tar.xz) = 1389776 +TIMESTAMP = 1749036683 +SHA256 (KDE/release-service/25.04.2/klickety-25.04.2.tar.xz) = 4db1f6ce0f7823a10a06d51ae49931fa626833fc9f033b4c5f34cc38870a0a66 +SIZE (KDE/release-service/25.04.2/klickety-25.04.2.tar.xz) = 1389844 diff --git a/games/klines/distinfo b/games/klines/distinfo index 1d66983fa6a5..d63be22a14d8 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557876 -SHA256 (KDE/release-service/25.04.1/klines-25.04.1.tar.xz) = a3c5c568f8c92d85d6dd732b58786dbcc0c0bf852698b5ae478625f4c75c0d62 -SIZE (KDE/release-service/25.04.1/klines-25.04.1.tar.xz) = 1674844 +TIMESTAMP = 1749036686 +SHA256 (KDE/release-service/25.04.2/klines-25.04.2.tar.xz) = 3df37a2903045ad0fac011cd8d10b0f4496d8d994e6ee7cab8e52ace2fd6f483 +SIZE (KDE/release-service/25.04.2/klines-25.04.2.tar.xz) = 1675380 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 6684160651dc..a1deb6658ba5 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557877 -SHA256 (KDE/release-service/25.04.1/kmahjongg-25.04.1.tar.xz) = 55eadd209c90df3ad40a9e1982c6b5f141dea2002da93b9cc7646b4972a21dc9 -SIZE (KDE/release-service/25.04.1/kmahjongg-25.04.1.tar.xz) = 3726316 +TIMESTAMP = 1749036688 +SHA256 (KDE/release-service/25.04.2/kmahjongg-25.04.2.tar.xz) = 637e9244d3964afc357a84f945fddc3561a5945f9c2e08949d5176d0761dcb47 +SIZE (KDE/release-service/25.04.2/kmahjongg-25.04.2.tar.xz) = 3726356 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 887ba2f9b55d..df53989c0d4a 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557878 -SHA256 (KDE/release-service/25.04.1/kmines-25.04.1.tar.xz) = bcb5390a2783631c9a2046ee8d46e208ed36437b4186c5fbd6612a3505ff1546 -SIZE (KDE/release-service/25.04.1/kmines-25.04.1.tar.xz) = 950516 +TIMESTAMP = 1749036691 +SHA256 (KDE/release-service/25.04.2/kmines-25.04.2.tar.xz) = 01b944a9f8f8c03878f6aac1d6b6a6bca6950ed55a1909426128aaa72b43677f +SIZE (KDE/release-service/25.04.2/kmines-25.04.2.tar.xz) = 950676 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 7bac1727e871..23394d0e08ff 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557878 -SHA256 (KDE/release-service/25.04.1/knavalbattle-25.04.1.tar.xz) = 3b1f7ccd6e28ef4f6463a8a6964a0c65105990f636f64e379867755082c1cb87 -SIZE (KDE/release-service/25.04.1/knavalbattle-25.04.1.tar.xz) = 1050548 +TIMESTAMP = 1749036693 +SHA256 (KDE/release-service/25.04.2/knavalbattle-25.04.2.tar.xz) = 73fef081bdb0cd6cf797d280760559d329fda2fd77b670d9dc0df4bd23f7f73d +SIZE (KDE/release-service/25.04.2/knavalbattle-25.04.2.tar.xz) = 1050900 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 6ffee43905f9..d4fcca0d7db7 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557879 -SHA256 (KDE/release-service/25.04.1/knetwalk-25.04.1.tar.xz) = 08f5f471431a0abfc03814fc75763114b318ae43da78d93c55b4a6c3e49cd60a -SIZE (KDE/release-service/25.04.1/knetwalk-25.04.1.tar.xz) = 1012040 +TIMESTAMP = 1749036696 +SHA256 (KDE/release-service/25.04.2/knetwalk-25.04.2.tar.xz) = 1080351b18545c73b71061a849632a0d412ccfb888ee76613cd43eec59750d1d +SIZE (KDE/release-service/25.04.2/knetwalk-25.04.2.tar.xz) = 1011924 diff --git a/games/knights/distinfo b/games/knights/distinfo index 51cc975d3ebd..619aae2d448f 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557880 -SHA256 (KDE/release-service/25.04.1/knights-25.04.1.tar.xz) = e343e0226bf6df2dbedcc09ad12138927a3101c8f898f7b00a5714a4436566be -SIZE (KDE/release-service/25.04.1/knights-25.04.1.tar.xz) = 2498224 +TIMESTAMP = 1749036698 +SHA256 (KDE/release-service/25.04.2/knights-25.04.2.tar.xz) = b463f14299e4eebb5f17805d3335c4a40b84298c25dd83c1e44ab75831ecb2ef +SIZE (KDE/release-service/25.04.2/knights-25.04.2.tar.xz) = 2501560 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 70c46e27909b..a7623d86c48f 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557880 -SHA256 (KDE/release-service/25.04.1/kolf-25.04.1.tar.xz) = 9b18ff09bb67248c46c72bec5997b7f1d4a5ce0780bd7abf13b137e6b3b3c840 -SIZE (KDE/release-service/25.04.1/kolf-25.04.1.tar.xz) = 1083672 +TIMESTAMP = 1749036701 +SHA256 (KDE/release-service/25.04.2/kolf-25.04.2.tar.xz) = 109cabf4a68815bda96aec9f1fc21d892b16541d78205b3af7f71f227ff4b2e0 +SIZE (KDE/release-service/25.04.2/kolf-25.04.2.tar.xz) = 1083324 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index b1727f44b4a4..0277323b9b0a 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557881 -SHA256 (KDE/release-service/25.04.1/kollision-25.04.1.tar.xz) = f70346e1273cbde53a9103db603de2d64023577a033ddc1dc8299a6bbf23b02f -SIZE (KDE/release-service/25.04.1/kollision-25.04.1.tar.xz) = 313696 +TIMESTAMP = 1749036703 +SHA256 (KDE/release-service/25.04.2/kollision-25.04.2.tar.xz) = 82feaeb053f282a3bc0b3949a4fd096a0faed8a64535c28ebe5fa22a5ae83a06 +SIZE (KDE/release-service/25.04.2/kollision-25.04.2.tar.xz) = 313716 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 502d9829c20f..3aa8876a2d46 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557882 -SHA256 (KDE/release-service/25.04.1/konquest-25.04.1.tar.xz) = 374050da915d535678e55d4255e2d790f4761526402df2c9274573ee51d1cf61 -SIZE (KDE/release-service/25.04.1/konquest-25.04.1.tar.xz) = 863516 +TIMESTAMP = 1749036705 +SHA256 (KDE/release-service/25.04.2/konquest-25.04.2.tar.xz) = 7c477090c6efff031bb7c2dc923a83256bbea77c6fd317d917b55f7b9163a44a +SIZE (KDE/release-service/25.04.2/konquest-25.04.2.tar.xz) = 863584 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index a83ad412d21d..f76c4c070dbd 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557882 -SHA256 (KDE/release-service/25.04.1/kpat-25.04.1.tar.xz) = dc6a40eb7d6912db96887548a04e7139d89d1d6252829021690a85b24a84e0ab -SIZE (KDE/release-service/25.04.1/kpat-25.04.1.tar.xz) = 3740220 +TIMESTAMP = 1749036708 +SHA256 (KDE/release-service/25.04.2/kpat-25.04.2.tar.xz) = 31f47395232cd41ba19f2d6fd90bde9be03f5ed61e158cf1d18248a2be23a37a +SIZE (KDE/release-service/25.04.2/kpat-25.04.2.tar.xz) = 3740376 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 602b7ff69e62..b73d41682dc0 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557883 -SHA256 (KDE/release-service/25.04.1/kreversi-25.04.1.tar.xz) = a190ffd8514c5e0de98e4f223c4fcbb84fdef592dd986f4102b1b174bd4ad935 -SIZE (KDE/release-service/25.04.1/kreversi-25.04.1.tar.xz) = 1037404 +TIMESTAMP = 1749036710 +SHA256 (KDE/release-service/25.04.2/kreversi-25.04.2.tar.xz) = 197449f20c26fd411039a00b043b802b6b9a97e5f3c4920ca9bf8125500202b1 +SIZE (KDE/release-service/25.04.2/kreversi-25.04.2.tar.xz) = 1037416 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 8bc72665154b..28d77bd33e22 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557884 -SHA256 (KDE/release-service/25.04.1/kshisen-25.04.1.tar.xz) = 59a8d864773c98bbd40daf7b9acb1a1d5bc963b1a902a79cf027f4a14fbab8c5 -SIZE (KDE/release-service/25.04.1/kshisen-25.04.1.tar.xz) = 975888 +TIMESTAMP = 1749036713 +SHA256 (KDE/release-service/25.04.2/kshisen-25.04.2.tar.xz) = e9d3c98d60533cad77ef83be81a75900d72c703c7c6dee48b8c2fbdc34ec0abd +SIZE (KDE/release-service/25.04.2/kshisen-25.04.2.tar.xz) = 975832 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index b31ef5d2c48c..21f44ed9ed5f 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557884 -SHA256 (KDE/release-service/25.04.1/ksirk-25.04.1.tar.xz) = 5e8138d6e5c0dc15dcb66b02415cc851b823957d205cbea8b8579a2bf2dcde19 -SIZE (KDE/release-service/25.04.1/ksirk-25.04.1.tar.xz) = 6713292 +TIMESTAMP = 1749036715 +SHA256 (KDE/release-service/25.04.2/ksirk-25.04.2.tar.xz) = 6efba59f5788f879d91a93f6cd0584420a19d82545fb18d2682950deafdd8ccf +SIZE (KDE/release-service/25.04.2/ksirk-25.04.2.tar.xz) = 6712964 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 5ac5c54d6ad5..9b5136183b2c 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557885 -SHA256 (KDE/release-service/25.04.1/ksnakeduel-25.04.1.tar.xz) = 219a087b3617136213ee3ae2163e937054d381825e6e4a667d8243ae8e9b1ae3 -SIZE (KDE/release-service/25.04.1/ksnakeduel-25.04.1.tar.xz) = 580444 +TIMESTAMP = 1749036718 +SHA256 (KDE/release-service/25.04.2/ksnakeduel-25.04.2.tar.xz) = 57d4ff34480d57e31e368b57b17059e6cbc12266ba60df6b22a2dee02d24d61c +SIZE (KDE/release-service/25.04.2/ksnakeduel-25.04.2.tar.xz) = 580516 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 79b823341a13..e77f099c6f10 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557886 -SHA256 (KDE/release-service/25.04.1/kspaceduel-25.04.1.tar.xz) = 053577d6a0dbadab8aa9db1edb0bb07f29b783152b3e0f963dc40b22e5b6bbf3 -SIZE (KDE/release-service/25.04.1/kspaceduel-25.04.1.tar.xz) = 636816 +TIMESTAMP = 1749036720 +SHA256 (KDE/release-service/25.04.2/kspaceduel-25.04.2.tar.xz) = 41d9acd48cd5fa554e76176a4176103d8839bd5f25aa5481ccd94393af1a8285 +SIZE (KDE/release-service/25.04.2/kspaceduel-25.04.2.tar.xz) = 636796 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 640470ce7285..ed13e9e3b1b7 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557886 -SHA256 (KDE/release-service/25.04.1/ksquares-25.04.1.tar.xz) = 649ba3ee5054501fdb2567bd63a975249a4ba94cbbd3d3a7adb166c082cbabac -SIZE (KDE/release-service/25.04.1/ksquares-25.04.1.tar.xz) = 324460 +TIMESTAMP = 1749036723 +SHA256 (KDE/release-service/25.04.2/ksquares-25.04.2.tar.xz) = 41ed2c4ad52ee085bd5d96c936961a856ebf330144892b1d04e33e2d0af9e07d +SIZE (KDE/release-service/25.04.2/ksquares-25.04.2.tar.xz) = 324452 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index c23bb36d27f1..71f05581aa6e 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557887 -SHA256 (KDE/release-service/25.04.1/ksudoku-25.04.1.tar.xz) = 1c812749f14ce3f81be399df6bc2fc14423ee1894a227b1a28d6c2c5bdfc0513 -SIZE (KDE/release-service/25.04.1/ksudoku-25.04.1.tar.xz) = 1736364 +TIMESTAMP = 1749036725 +SHA256 (KDE/release-service/25.04.2/ksudoku-25.04.2.tar.xz) = e93f8a0e58bda4ea2c15b398efd27f5325b641b558bbdc7c3a3f6a826c01acc9 +SIZE (KDE/release-service/25.04.2/ksudoku-25.04.2.tar.xz) = 1736324 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 99a1960d9efd..f1cd16b1cbd9 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557888 -SHA256 (KDE/release-service/25.04.1/ktuberling-25.04.1.tar.xz) = 3a5d1b9c9455c48aacb54a5baef564e8e99cb4d586eea01e5bd1dfc1bedf8cbc -SIZE (KDE/release-service/25.04.1/ktuberling-25.04.1.tar.xz) = 71550676 +TIMESTAMP = 1749036728 +SHA256 (KDE/release-service/25.04.2/ktuberling-25.04.2.tar.xz) = f9c4189070538693701f8e224e145394ac270ccb070c67bdb6409dab19f131e0 +SIZE (KDE/release-service/25.04.2/ktuberling-25.04.2.tar.xz) = 71562956 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 36df1eb2534e..2eee876d3991 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557889 -SHA256 (KDE/release-service/25.04.1/kubrick-25.04.1.tar.xz) = 79dcc35cae95b2f2cb115d39fd93f6c0a33762ce3dd31f51ed959cf8421ad8e3 -SIZE (KDE/release-service/25.04.1/kubrick-25.04.1.tar.xz) = 381240 +TIMESTAMP = 1749036730 +SHA256 (KDE/release-service/25.04.2/kubrick-25.04.2.tar.xz) = 0a7057055538acbe325a910c8f1678461a8be8324ade5ea494769b8c8a6c71bd +SIZE (KDE/release-service/25.04.2/kubrick-25.04.2.tar.xz) = 381260 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 0c2715da2f5d..79500e43b5a8 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557889 -SHA256 (KDE/release-service/25.04.1/libkdegames-25.04.1.tar.xz) = 421ac8e2e648a48ae4a6808735fcd27916c9aace5f0e99fc822606045d070cbe -SIZE (KDE/release-service/25.04.1/libkdegames-25.04.1.tar.xz) = 5980228 +TIMESTAMP = 1749036733 +SHA256 (KDE/release-service/25.04.2/libkdegames-25.04.2.tar.xz) = 8775c78f76d64be05bab10df4d0c3fa3d5f5442a094c86501d6ec7ada9b30d2b +SIZE (KDE/release-service/25.04.2/libkdegames-25.04.2.tar.xz) = 6008820 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index ad1054b238b7..e56ffd87c296 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557890 -SHA256 (KDE/release-service/25.04.1/libkmahjongg-25.04.1.tar.xz) = fbd4871d429f2e09b50017c6777f3cc6bcc831911a4145ddec7438c2a22dc2cd -SIZE (KDE/release-service/25.04.1/libkmahjongg-25.04.1.tar.xz) = 1695564 +TIMESTAMP = 1749036735 +SHA256 (KDE/release-service/25.04.2/libkmahjongg-25.04.2.tar.xz) = d786738da6c9d9b9483730a9e0396f1c4681f27d34a647c26938e22394accb90 +SIZE (KDE/release-service/25.04.2/libkmahjongg-25.04.2.tar.xz) = 1694872 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 2ac28684af03..fda8d80c7be7 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557891 -SHA256 (KDE/release-service/25.04.1/lskat-25.04.1.tar.xz) = 6003bcef628da7018fca00c8bb820fa78c88f157039027fe8af309f5ac569703 -SIZE (KDE/release-service/25.04.1/lskat-25.04.1.tar.xz) = 1229320 +TIMESTAMP = 1749036738 +SHA256 (KDE/release-service/25.04.2/lskat-25.04.2.tar.xz) = efeb1a88db2b66af3f0faf2cab3720fc8d694954824f5ff49c0ac4d2be3ed09f +SIZE (KDE/release-service/25.04.2/lskat-25.04.2.tar.xz) = 1229260 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 6c54e1dc3413..a556ddfe8fd1 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557891 -SHA256 (KDE/release-service/25.04.1/palapeli-25.04.1.tar.xz) = 657368d258c8b479ac10405813f5417e1397fd2d72a88993e4856bd3d303d023 -SIZE (KDE/release-service/25.04.1/palapeli-25.04.1.tar.xz) = 2129720 +TIMESTAMP = 1749036740 +SHA256 (KDE/release-service/25.04.2/palapeli-25.04.2.tar.xz) = 1d60f050a6a0a502508a5be4494ab8f37bf5326b30301f43271325d898cc3714 +SIZE (KDE/release-service/25.04.2/palapeli-25.04.2.tar.xz) = 2129716 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 3f312b981c0f..9f9743fe0d32 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557892 -SHA256 (KDE/release-service/25.04.1/picmi-25.04.1.tar.xz) = 4ca3fae5b67e3301a70ccf276ce7a56b372737c2c9b2c19d77b7c23ffeea71df -SIZE (KDE/release-service/25.04.1/picmi-25.04.1.tar.xz) = 1521872 +TIMESTAMP = 1749036742 +SHA256 (KDE/release-service/25.04.2/picmi-25.04.2.tar.xz) = 6e78b82444b3b49ee5908c2b30842c53d9a1bb89d1f1825a5d9f47a3fc6e34fa +SIZE (KDE/release-service/25.04.2/picmi-25.04.2.tar.xz) = 1521844 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index 81388670303a..1bbb9eafd4dd 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557893 -SHA256 (KDE/release-service/25.04.1/skladnik-25.04.1.tar.xz) = 2865639c25d9db51c3bef0018e4573b8c256819f06504314c2647fc3628546ad -SIZE (KDE/release-service/25.04.1/skladnik-25.04.1.tar.xz) = 416544 +TIMESTAMP = 1749036745 +SHA256 (KDE/release-service/25.04.2/skladnik-25.04.2.tar.xz) = 3955c520dde6ced3542d821e14e3577017760c7d2874474b49b05ce787fc2b3e +SIZE (KDE/release-service/25.04.2/skladnik-25.04.2.tar.xz) = 416564 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index bf4abcd4e7d2..c5da8098dea3 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557893 -SHA256 (KDE/release-service/25.04.1/gwenview-25.04.1.tar.xz) = ea0f55d80eecfbcf7590283314dd9db96a4c0e9acb34acb961b3636a1ee7925f -SIZE (KDE/release-service/25.04.1/gwenview-25.04.1.tar.xz) = 6533340 +TIMESTAMP = 1749036747 +SHA256 (KDE/release-service/25.04.2/gwenview-25.04.2.tar.xz) = f2ec1bbb71fefd041a656686e4eb8a3ed684f913cfa86e062a40d9222ca3143f +SIZE (KDE/release-service/25.04.2/gwenview-25.04.2.tar.xz) = 6533516 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index fe5da13b4315..4aa26de4c2d6 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557894 -SHA256 (KDE/release-service/25.04.1/kamera-25.04.1.tar.xz) = bfc35dce5ae146846cf940efb3c59cb4366060d66a6de262a0b4d0ebbf4ebe10 -SIZE (KDE/release-service/25.04.1/kamera-25.04.1.tar.xz) = 133064 +TIMESTAMP = 1749036750 +SHA256 (KDE/release-service/25.04.2/kamera-25.04.2.tar.xz) = a45fd021f95aa334d2f9994ddeaafa290f71580277192b6c5d2829637a8dc7e8 +SIZE (KDE/release-service/25.04.2/kamera-25.04.2.tar.xz) = 133004 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index aed2d38eec73..1755462bdd91 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557895 -SHA256 (KDE/release-service/25.04.1/kcolorchooser-25.04.1.tar.xz) = bed3b2c163f8775d40bca558afd0b8c1847e29ba9ba529b412f9217f0b3780cf -SIZE (KDE/release-service/25.04.1/kcolorchooser-25.04.1.tar.xz) = 36352 +TIMESTAMP = 1749036752 +SHA256 (KDE/release-service/25.04.2/kcolorchooser-25.04.2.tar.xz) = 749f3a80498fb5632d5c835f4ac17eedd16d891dd74b8af06ca12445c7bc6a0f +SIZE (KDE/release-service/25.04.2/kcolorchooser-25.04.2.tar.xz) = 36364 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index f41f43009e3e..ab17df618787 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557895 -SHA256 (KDE/release-service/25.04.1/kdegraphics-mobipocket-25.04.1.tar.xz) = e742b6a69099aea27807c0c856e161b2bd9859e8745cbb09ac51cb4dfd8d7bf9 -SIZE (KDE/release-service/25.04.1/kdegraphics-mobipocket-25.04.1.tar.xz) = 13140 +TIMESTAMP = 1749036755 +SHA256 (KDE/release-service/25.04.2/kdegraphics-mobipocket-25.04.2.tar.xz) = ddd546e8fff5552e5b7e7294f3c63b6130d9a98f6155ea280fa861f793cf2337 +SIZE (KDE/release-service/25.04.2/kdegraphics-mobipocket-25.04.2.tar.xz) = 13136 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 3e5caf1d2868..6e3d16bd30b0 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557896 -SHA256 (KDE/release-service/25.04.1/svgpart-25.04.1.tar.xz) = a30903c758fc1818334de4cd6f7d72a4fe9a2842326e187d442ee0e79ae1caf8 -SIZE (KDE/release-service/25.04.1/svgpart-25.04.1.tar.xz) = 30232 +TIMESTAMP = 1749036757 +SHA256 (KDE/release-service/25.04.2/svgpart-25.04.2.tar.xz) = afba527031489d32151134e31c2be13207be1f224ed7963f1d8170a2a28d2a9c +SIZE (KDE/release-service/25.04.2/svgpart-25.04.2.tar.xz) = 30232 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 2ce3fbe5aecc..fd49614c3fae 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557897 -SHA256 (KDE/release-service/25.04.1/kdegraphics-thumbnailers-25.04.1.tar.xz) = 6bbc75d5d109cef516862204fc8578ba8281a0101884920f832c17e44640326c -SIZE (KDE/release-service/25.04.1/kdegraphics-thumbnailers-25.04.1.tar.xz) = 49144 +TIMESTAMP = 1749036760 +SHA256 (KDE/release-service/25.04.2/kdegraphics-thumbnailers-25.04.2.tar.xz) = 65a3caffe98aadb5e94023c674d163d1a3efb3da1f3b222f3d883143e2f7fe7c +SIZE (KDE/release-service/25.04.2/kdegraphics-thumbnailers-25.04.2.tar.xz) = 49136 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 8eb9edb6f8cd..7ab2e81fa96d 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557897 -SHA256 (KDE/release-service/25.04.1/kgraphviewer-25.04.1.tar.xz) = 8f3a9996b67fffaea6e73582648839b366ad992f6ecf212a9dd8bc7354529485 -SIZE (KDE/release-service/25.04.1/kgraphviewer-25.04.1.tar.xz) = 1595632 +TIMESTAMP = 1749036762 +SHA256 (KDE/release-service/25.04.2/kgraphviewer-25.04.2.tar.xz) = 484bf8132a1ecbec0a9fcf05274bb08081e6d288882a9835e86cb3177a7742bf +SIZE (KDE/release-service/25.04.2/kgraphviewer-25.04.2.tar.xz) = 1595592 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 20dffdaca184..9fc2b21de8a7 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557898 -SHA256 (KDE/release-service/25.04.1/kimagemapeditor-25.04.1.tar.xz) = fe78a5373501b8ababe0502a3d423435a2885027127cf80fa6fb7cf23c714929 -SIZE (KDE/release-service/25.04.1/kimagemapeditor-25.04.1.tar.xz) = 1077256 +TIMESTAMP = 1749036765 +SHA256 (KDE/release-service/25.04.2/kimagemapeditor-25.04.2.tar.xz) = 53e9efb9f1807dd9feeb78590301e2607f831656c807d53852c14e67964d8d8d +SIZE (KDE/release-service/25.04.2/kimagemapeditor-25.04.2.tar.xz) = 1077232 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 425716093c39..6f6f1dda0a8c 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557899 -SHA256 (KDE/release-service/25.04.1/kolourpaint-25.04.1.tar.xz) = ac5691421dcc816b285fa7aa4fac6378c2f5619c3ad125f53689d45e394455b5 -SIZE (KDE/release-service/25.04.1/kolourpaint-25.04.1.tar.xz) = 5315024 +TIMESTAMP = 1749036767 +SHA256 (KDE/release-service/25.04.2/kolourpaint-25.04.2.tar.xz) = 74e495d8c102fe206bc4e173fe53134a4397a0d7b52ce06289af21805baa5210 +SIZE (KDE/release-service/25.04.2/kolourpaint-25.04.2.tar.xz) = 5315008 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 673d220b1fb6..6c8591449c27 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557899 -SHA256 (KDE/release-service/25.04.1/kontrast-25.04.1.tar.xz) = bd35a4ceaed4a8ff673eb7cc05d90c72a1b5220f41ad0f88cbd91971b672f56f -SIZE (KDE/release-service/25.04.1/kontrast-25.04.1.tar.xz) = 218316 +TIMESTAMP = 1749036769 +SHA256 (KDE/release-service/25.04.2/kontrast-25.04.2.tar.xz) = 410ffa280235a4e3277a8efe953c4e134714dd7241913165bc24aaaa1350c1c2 +SIZE (KDE/release-service/25.04.2/kontrast-25.04.2.tar.xz) = 219564 diff --git a/graphics/kontrast/pkg-plist b/graphics/kontrast/pkg-plist index 2d59b0b0975b..b90c6cd4135c 100644 --- a/graphics/kontrast/pkg-plist +++ b/graphics/kontrast/pkg-plist @@ -1,43 +1,44 @@ bin/kontrast share/applications/org.kde.kontrast.desktop share/icons/hicolor/scalable/apps/org.kde.kontrast.svg +share/locale/ar/LC_MESSAGES/kontrast.mo share/locale/ast/LC_MESSAGES/kontrast.mo share/locale/ca/LC_MESSAGES/kontrast.mo share/locale/ca@valencia/LC_MESSAGES/kontrast.mo share/locale/cs/LC_MESSAGES/kontrast.mo share/locale/da/LC_MESSAGES/kontrast.mo share/locale/de/LC_MESSAGES/kontrast.mo share/locale/el/LC_MESSAGES/kontrast.mo share/locale/en_GB/LC_MESSAGES/kontrast.mo share/locale/eo/LC_MESSAGES/kontrast.mo share/locale/es/LC_MESSAGES/kontrast.mo share/locale/eu/LC_MESSAGES/kontrast.mo share/locale/fi/LC_MESSAGES/kontrast.mo share/locale/fr/LC_MESSAGES/kontrast.mo share/locale/gl/LC_MESSAGES/kontrast.mo share/locale/he/LC_MESSAGES/kontrast.mo share/locale/hi/LC_MESSAGES/kontrast.mo share/locale/ia/LC_MESSAGES/kontrast.mo share/locale/it/LC_MESSAGES/kontrast.mo share/locale/ja/LC_MESSAGES/kontrast.mo share/locale/ka/LC_MESSAGES/kontrast.mo share/locale/ko/LC_MESSAGES/kontrast.mo share/locale/lt/LC_MESSAGES/kontrast.mo share/locale/lv/LC_MESSAGES/kontrast.mo share/locale/nl/LC_MESSAGES/kontrast.mo share/locale/nn/LC_MESSAGES/kontrast.mo share/locale/pa/LC_MESSAGES/kontrast.mo share/locale/pl/LC_MESSAGES/kontrast.mo share/locale/pt/LC_MESSAGES/kontrast.mo share/locale/pt_BR/LC_MESSAGES/kontrast.mo share/locale/ro/LC_MESSAGES/kontrast.mo share/locale/ru/LC_MESSAGES/kontrast.mo share/locale/sa/LC_MESSAGES/kontrast.mo share/locale/sk/LC_MESSAGES/kontrast.mo share/locale/sl/LC_MESSAGES/kontrast.mo share/locale/sv/LC_MESSAGES/kontrast.mo share/locale/tr/LC_MESSAGES/kontrast.mo share/locale/uk/LC_MESSAGES/kontrast.mo share/locale/zh_CN/LC_MESSAGES/kontrast.mo share/locale/zh_TW/LC_MESSAGES/kontrast.mo share/metainfo/org.kde.kontrast.appdata.xml diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 38d27699c0be..6e43d3c5368f 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557900 -SHA256 (KDE/release-service/25.04.1/kqtquickcharts-25.04.1.tar.xz) = 4598ab817ff5f64ce5908c347a1121f8d2e39f4ca01cc5f9d1c186eb81beb8ed -SIZE (KDE/release-service/25.04.1/kqtquickcharts-25.04.1.tar.xz) = 30852 +TIMESTAMP = 1749036772 +SHA256 (KDE/release-service/25.04.2/kqtquickcharts-25.04.2.tar.xz) = f1691c48efeea44285a36754697441027d87e078b6c0c421249571441f3179aa +SIZE (KDE/release-service/25.04.2/kqtquickcharts-25.04.2.tar.xz) = 30868 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 28ee5c5aab77..8a90c0ad7b66 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557901 -SHA256 (KDE/release-service/25.04.1/ksanecore-25.04.1.tar.xz) = 110338209019dc30714687d5c243355746284cfac412dcf703ac1b6e07f48be5 -SIZE (KDE/release-service/25.04.1/ksanecore-25.04.1.tar.xz) = 53976 +TIMESTAMP = 1749036774 +SHA256 (KDE/release-service/25.04.2/ksanecore-25.04.2.tar.xz) = 7039e9c4c1f2c295359a68d9581f07c0674572848391ac7ccbb1af22c07915d8 +SIZE (KDE/release-service/25.04.2/ksanecore-25.04.2.tar.xz) = 53996 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 7c6d37e5fac6..ba02cda01df2 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557901 -SHA256 (KDE/release-service/25.04.1/libkdcraw-25.04.1.tar.xz) = 6cc5f741778a7e27b6b9ab2b0c17d8145f3d197a22452f608eed7616cd6b26d6 -SIZE (KDE/release-service/25.04.1/libkdcraw-25.04.1.tar.xz) = 37356 +TIMESTAMP = 1749036777 +SHA256 (KDE/release-service/25.04.2/libkdcraw-25.04.2.tar.xz) = de7bc44d0437a0dca94a1005360b96b00da4ffc501f513eff466c3eb2755fd8a +SIZE (KDE/release-service/25.04.2/libkdcraw-25.04.2.tar.xz) = 37348 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 98af472db658..c528b26aaca6 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557902 -SHA256 (KDE/release-service/25.04.1/libkexiv2-25.04.1.tar.xz) = f0669527d1fe7ef22c3ef7c8270ef29deafb0923ec782a22f1ced1b775367190 -SIZE (KDE/release-service/25.04.1/libkexiv2-25.04.1.tar.xz) = 60676 +TIMESTAMP = 1749036779 +SHA256 (KDE/release-service/25.04.2/libkexiv2-25.04.2.tar.xz) = 9eebb0d9ec9773fc4a3db7fa19f6df6923860920ea2192ca9f9d9df96bc997d1 +SIZE (KDE/release-service/25.04.2/libkexiv2-25.04.2.tar.xz) = 60644 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index c88e908909f4..2a94bf23b219 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557903 -SHA256 (KDE/release-service/25.04.1/libksane-25.04.1.tar.xz) = 5c3b83c73ac7fd7680be99332da06e467de6c6d49ceec1b7ae372b1666379023 -SIZE (KDE/release-service/25.04.1/libksane-25.04.1.tar.xz) = 156068 +TIMESTAMP = 1749036782 +SHA256 (KDE/release-service/25.04.2/libksane-25.04.2.tar.xz) = c458fcc2f0ff52be768e77cb4cb3ca2150db8986ed8403cb19ff08bf5dadcec3 +SIZE (KDE/release-service/25.04.2/libksane-25.04.2.tar.xz) = 155908 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 08204ac96ef0..ed9d8884b8d2 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557903 -SHA256 (KDE/release-service/25.04.1/okular-25.04.1.tar.xz) = faf3c04f014f20798a71377766135090d199b6a8877f259f8ccee1ef8ffccc78 -SIZE (KDE/release-service/25.04.1/okular-25.04.1.tar.xz) = 8191540 +TIMESTAMP = 1749036784 +SHA256 (KDE/release-service/25.04.2/okular-25.04.2.tar.xz) = bf2102fe7769b504e1934d46bf299398a6529fa2a96ca302bf7898c131b25cea +SIZE (KDE/release-service/25.04.2/okular-25.04.2.tar.xz) = 8191024 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 18b0da1938f3..f5daddc63a8d 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557904 -SHA256 (KDE/release-service/25.04.1/skanlite-25.04.1.tar.xz) = ae416ec90442a07a348fcb9960302e08289263b9db8732c3c8c01b0d0f8c36aa -SIZE (KDE/release-service/25.04.1/skanlite-25.04.1.tar.xz) = 2392396 +TIMESTAMP = 1749036787 +SHA256 (KDE/release-service/25.04.2/skanlite-25.04.2.tar.xz) = d16d4657ab08b5885a7ab87bd376aed003e1acbf7a9f51c2e9f0eb1fc5ddd964 +SIZE (KDE/release-service/25.04.2/skanlite-25.04.2.tar.xz) = 2392392 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index 0efa79a4cb56..25c5f0099a55 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557905 -SHA256 (KDE/release-service/25.04.1/skanpage-25.04.1.tar.xz) = 06c11a9834cbee457a3164e6277a0dba3d316db7810662c435aa9da500088933 -SIZE (KDE/release-service/25.04.1/skanpage-25.04.1.tar.xz) = 1360456 +TIMESTAMP = 1749036789 +SHA256 (KDE/release-service/25.04.2/skanpage-25.04.2.tar.xz) = 5bb263cc7adb3e522117face5afa4f98653c9e83397f9d2aa1ed91cf9a344731 +SIZE (KDE/release-service/25.04.2/skanpage-25.04.2.tar.xz) = 1360456 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 994f98a01cc1..2b8421984703 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557906 -SHA256 (KDE/release-service/25.04.1/konversation-25.04.1.tar.xz) = ea5e11f96640fd6ae40f045daa4449aeb1621efa3ac4f0cd8d8ddac2f91461c2 -SIZE (KDE/release-service/25.04.1/konversation-25.04.1.tar.xz) = 4449880 +TIMESTAMP = 1749036792 +SHA256 (KDE/release-service/25.04.2/konversation-25.04.2.tar.xz) = b9ae441bdccfd34cad9ffd9405bfa2a68961d1ecbc745ee0050277db7c9aa760 +SIZE (KDE/release-service/25.04.2/konversation-25.04.2.tar.xz) = 4449860 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index d859b671b929..4602969a4c77 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557906 -SHA256 (KDE/release-service/25.04.1/kiten-25.04.1.tar.xz) = cfc2d49c88d1ae5e6bd54c95a1c9212ff7a481692cd9646febda2a4700669265 -SIZE (KDE/release-service/25.04.1/kiten-25.04.1.tar.xz) = 11318800 +TIMESTAMP = 1749036794 +SHA256 (KDE/release-service/25.04.2/kiten-25.04.2.tar.xz) = ccc88708a6f0743e7952875d6244f33c0d3a35708b114902097ee66bb59468f4 +SIZE (KDE/release-service/25.04.2/kiten-25.04.2.tar.xz) = 11317172 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index d0d2e6f8cf61..9a7cd1361aa5 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557908 -SHA256 (KDE/release-service/25.04.1/kturtle-25.04.1.tar.xz) = 712a2f727dad0762058ba587b0c09c2266b934aa149614232c841b9c267ead7c -SIZE (KDE/release-service/25.04.1/kturtle-25.04.1.tar.xz) = 2102704 +TIMESTAMP = 1749036800 +SHA256 (KDE/release-service/25.04.2/kturtle-25.04.2.tar.xz) = b736ca9088421763b5a95a57a1699745e1f6e2e5454477fbbce5e82f25ae4315 +SIZE (KDE/release-service/25.04.2/kturtle-25.04.2.tar.xz) = 2102780 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 343c54067d32..92acafb36da0 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557908 -SHA256 (KDE/release-service/25.04.1/analitza-25.04.1.tar.xz) = 3e0c8df800b69655c3d528970b3fbfe6faf8248b61d069ac1a8d77555381ef70 -SIZE (KDE/release-service/25.04.1/analitza-25.04.1.tar.xz) = 367976 +TIMESTAMP = 1749036802 +SHA256 (KDE/release-service/25.04.2/analitza-25.04.2.tar.xz) = 47177e0a8400e108491b769b825ef4990f3dd97b3348eec182da3e65e5704db7 +SIZE (KDE/release-service/25.04.2/analitza-25.04.2.tar.xz) = 368036 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 03c03a42b5d8..a3a5f513ec77 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557909 -SHA256 (KDE/release-service/25.04.1/cantor-25.04.1.tar.xz) = 8e96b9044b00aa11fbd60c2f848238a14de947501c65725ac3092c4ffad7a8b6 -SIZE (KDE/release-service/25.04.1/cantor-25.04.1.tar.xz) = 10905732 +TIMESTAMP = 1749036805 +SHA256 (KDE/release-service/25.04.2/cantor-25.04.2.tar.xz) = 8cb744b18da22de4315b300f88b3e580eb2af559918187a73b78b3948615be74 +SIZE (KDE/release-service/25.04.2/cantor-25.04.2.tar.xz) = 10906092 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 619c25872bf6..63b32a7515b4 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557910 -SHA256 (KDE/release-service/25.04.1/kalgebra-25.04.1.tar.xz) = 4a611e899e3ebcc12923f118715072f8ee2e52f57e982ff22342bb7b865079af -SIZE (KDE/release-service/25.04.1/kalgebra-25.04.1.tar.xz) = 953252 +TIMESTAMP = 1749036807 +SHA256 (KDE/release-service/25.04.2/kalgebra-25.04.2.tar.xz) = b54c535fd2f8c3ed6859040f6f8ca7fbd5c0ccb81a0a219cac9007fa2b45fccb +SIZE (KDE/release-service/25.04.2/kalgebra-25.04.2.tar.xz) = 953080 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index f4b3e6dad8af..b0c2de914c8f 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557910 -SHA256 (KDE/release-service/25.04.1/kalk-25.04.1.tar.xz) = 52f18aaad1eb8df71330579ed6602da478b767af7e9780bc436c67d8bb528c39 -SIZE (KDE/release-service/25.04.1/kalk-25.04.1.tar.xz) = 78428 +TIMESTAMP = 1749036807 +SHA256 (KDE/release-service/25.04.2/kalk-25.04.2.tar.xz) = 51e2cd6b2c7d0c971a34a846018c459868e77c55d69f4ec4909a3956c95365f6 +SIZE (KDE/release-service/25.04.2/kalk-25.04.2.tar.xz) = 78424 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index da5241335b5a..7b9596972a8b 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557911 -SHA256 (KDE/release-service/25.04.1/kbruch-25.04.1.tar.xz) = 15debab3d6472ed0a8e48df8362bb219902b9e21dd2a04e4683b9cae96288a71 -SIZE (KDE/release-service/25.04.1/kbruch-25.04.1.tar.xz) = 5163400 +TIMESTAMP = 1749036810 +SHA256 (KDE/release-service/25.04.2/kbruch-25.04.2.tar.xz) = 532591dd5d1e4d07d2498010f5bdbd2d4c13c0ee9fb2f1eadbaf22485b7093eb +SIZE (KDE/release-service/25.04.2/kbruch-25.04.2.tar.xz) = 5163300 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index c32695ed6fb6..db997f89dfd5 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557911 -SHA256 (KDE/release-service/25.04.1/kcalc-25.04.1.tar.xz) = b88e31af67cd86a2aad836ce08a5231c4765e0a9f200e1244b2c34c84f24965c -SIZE (KDE/release-service/25.04.1/kcalc-25.04.1.tar.xz) = 483440 +TIMESTAMP = 1749036812 +SHA256 (KDE/release-service/25.04.2/kcalc-25.04.2.tar.xz) = 98f010a6615fe08cdada3b15d348519e9e892575fc3636a661029b317b3afd0d +SIZE (KDE/release-service/25.04.2/kcalc-25.04.2.tar.xz) = 483604 diff --git a/math/kig/distinfo b/math/kig/distinfo index 6898e689e278..16a52209c2a2 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557912 -SHA256 (KDE/release-service/25.04.1/kig-25.04.1.tar.xz) = 80937da52ac69b7a62b0c2a9da0bf18e2eb1daa1212c39aa04224a3120d34010 -SIZE (KDE/release-service/25.04.1/kig-25.04.1.tar.xz) = 3253800 +TIMESTAMP = 1749036815 +SHA256 (KDE/release-service/25.04.2/kig-25.04.2.tar.xz) = 1e2de78c76d38863c9da0def20258f41ed5a795dc0f3073e060082604e8076fb +SIZE (KDE/release-service/25.04.2/kig-25.04.2.tar.xz) = 3253460 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 79d48368f229..6a3b47543e73 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557913 -SHA256 (KDE/release-service/25.04.1/kmplot-25.04.1.tar.xz) = 32e3210b9cf7cfa9aa3340102af7d71797b85a1da0e5c60b1f7d6fef5efb7cc9 -SIZE (KDE/release-service/25.04.1/kmplot-25.04.1.tar.xz) = 3029236 +TIMESTAMP = 1749036817 +SHA256 (KDE/release-service/25.04.2/kmplot-25.04.2.tar.xz) = ba69cc94f3024ac6773ddcf86973469e3f7266389dd99f6bf80cea3db3bae77c +SIZE (KDE/release-service/25.04.2/kmplot-25.04.2.tar.xz) = 3029520 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index aa5c4975ca2e..2c0e0a5521ee 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557914 -SHA256 (KDE/release-service/25.04.1/rocs-25.04.1.tar.xz) = d71bfdbfdb7fb491343d303144fd13dee45dab056ce25799611e76aad34871c3 -SIZE (KDE/release-service/25.04.1/rocs-25.04.1.tar.xz) = 1567020 +TIMESTAMP = 1749036820 +SHA256 (KDE/release-service/25.04.2/rocs-25.04.2.tar.xz) = e8d5af6cd63cd15a41195f10f1da09284c3e86a1fdd61d4e0bebccd01b3435ff +SIZE (KDE/release-service/25.04.2/rocs-25.04.2.tar.xz) = 1567148 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 2cdf2f972df7..6bb71395593b 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557914 -SHA256 (KDE/release-service/25.04.1/artikulate-25.04.1.tar.xz) = 0a8f889fe75e47a74df410fcdb2bc86066abc71f1ca3b94a5726b5130ce563cd -SIZE (KDE/release-service/25.04.1/artikulate-25.04.1.tar.xz) = 1055676 +TIMESTAMP = 1749036822 +SHA256 (KDE/release-service/25.04.2/artikulate-25.04.2.tar.xz) = 8516387644d8a599f98bfcf0d0ee54af3e6e0ed217aca05d57029cc59d97577a +SIZE (KDE/release-service/25.04.2/artikulate-25.04.2.tar.xz) = 1055556 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index d305f3bdeddf..bfdddbb97081 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557915 -SHA256 (KDE/release-service/25.04.1/kdeedu-data-25.04.1.tar.xz) = 9a559973ddc4aa88cae23a3664d2ad7b9181b43d38693c28eb21ce792acbbc79 -SIZE (KDE/release-service/25.04.1/kdeedu-data-25.04.1.tar.xz) = 338780 +TIMESTAMP = 1749036822 +SHA256 (KDE/release-service/25.04.2/kdeedu-data-25.04.2.tar.xz) = c6d0d4776baa3afcba1f6def7747bfc62376d50151988d6bf7ffb118fc36bff3 +SIZE (KDE/release-service/25.04.2/kdeedu-data-25.04.2.tar.xz) = 338856 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index bebf204c2362..41d92a5b1785 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557915 -SHA256 (KDE/release-service/25.04.1/kgeography-25.04.1.tar.xz) = b723dd4c07fa08f865b98411b8cc4dfbd919856cc6f6ef5c2361fb86c39d8f20 -SIZE (KDE/release-service/25.04.1/kgeography-25.04.1.tar.xz) = 12489288 +TIMESTAMP = 1749036825 +SHA256 (KDE/release-service/25.04.2/kgeography-25.04.2.tar.xz) = a835beac56a14e2058529418d068f95317e626f8d810b9b8d17b24b6c676fef7 +SIZE (KDE/release-service/25.04.2/kgeography-25.04.2.tar.xz) = 12489452 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 4cd6af8fe3b2..30bc854523db 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557916 -SHA256 (KDE/release-service/25.04.1/klettres-25.04.1.tar.xz) = e5e2b140087b19a6eda8ad6888b714230cc6b7c6d4434f9e4334992774461c36 -SIZE (KDE/release-service/25.04.1/klettres-25.04.1.tar.xz) = 47189012 +TIMESTAMP = 1749036827 +SHA256 (KDE/release-service/25.04.2/klettres-25.04.2.tar.xz) = f997e8eb38970f73fbdb8aa56ed7ac432046e49a8701f4399084248b8c3bdadc +SIZE (KDE/release-service/25.04.2/klettres-25.04.2.tar.xz) = 47193804 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index b08127aa6a37..c0f82e424c0c 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557917 -SHA256 (KDE/release-service/25.04.1/ktouch-25.04.1.tar.xz) = ceaa3bbffe8390ae5312e950a4f4ff6b7a1ea491284d99c641e63f321ec0d60f -SIZE (KDE/release-service/25.04.1/ktouch-25.04.1.tar.xz) = 4787100 +TIMESTAMP = 1749036830 +SHA256 (KDE/release-service/25.04.2/ktouch-25.04.2.tar.xz) = 810d9ff4a2623ecaa10638ef59dd6445e3988a49d0ed26519447f6a3e5c0f300 +SIZE (KDE/release-service/25.04.2/ktouch-25.04.2.tar.xz) = 4789496 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 6225d3421dfc..8f1a8e22efbe 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557917 -SHA256 (KDE/release-service/25.04.1/kwordquiz-25.04.1.tar.xz) = 2c9cce16baa27dcf82d26d5ccfd832fbf79fa3769063a7ba3d711a802b230c6b -SIZE (KDE/release-service/25.04.1/kwordquiz-25.04.1.tar.xz) = 3623160 +TIMESTAMP = 1749036832 +SHA256 (KDE/release-service/25.04.2/kwordquiz-25.04.2.tar.xz) = 702a3d7c281aaa205621b2088ba7a24ea202ae0390c5cf4057f16687012836b7 +SIZE (KDE/release-service/25.04.2/kwordquiz-25.04.2.tar.xz) = 3618688 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index f6388ae19c8d..7f08c8b667c4 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557918 -SHA256 (KDE/release-service/25.04.1/libkeduvocdocument-25.04.1.tar.xz) = 0613585c3fd675c9632ed013a1415436d21e1c3c7763eb5f61dae54df0abe7d7 -SIZE (KDE/release-service/25.04.1/libkeduvocdocument-25.04.1.tar.xz) = 229376 +TIMESTAMP = 1749036835 +SHA256 (KDE/release-service/25.04.2/libkeduvocdocument-25.04.2.tar.xz) = 989799931db6710b23370f7cb54fff062c12bb02d985644351c716f0b46c6e36 +SIZE (KDE/release-service/25.04.2/libkeduvocdocument-25.04.2.tar.xz) = 229352 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index 09e848724b49..1b25792d37c2 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557919 -SHA256 (KDE/release-service/25.04.1/minuet-25.04.1.tar.xz) = 677d234b18e8246f8fbd9d65f02a0c0fc5776a64e7d6c9cc0088b03e6339deb7 -SIZE (KDE/release-service/25.04.1/minuet-25.04.1.tar.xz) = 27693996 +TIMESTAMP = 1749036837 +SHA256 (KDE/release-service/25.04.2/minuet-25.04.2.tar.xz) = 6d01871df0f666fbfc9c84bad6c7146955690e6a37b46738e98058f8a5bfb514 +SIZE (KDE/release-service/25.04.2/minuet-25.04.2.tar.xz) = 27696532 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index eaadb6c910db..087c646ac459 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557919 -SHA256 (KDE/release-service/25.04.1/parley-25.04.1.tar.xz) = 87171e26a04a362c01283b969eef408d4d1168bb82e75828897ec19ed145e4e0 -SIZE (KDE/release-service/25.04.1/parley-25.04.1.tar.xz) = 8449720 +TIMESTAMP = 1749036838 +SHA256 (KDE/release-service/25.04.2/parley-25.04.2.tar.xz) = 8be416a9d48491112590b75836cbde8940fc3303e80b3189485fb7a9508319ff +SIZE (KDE/release-service/25.04.2/parley-25.04.2.tar.xz) = 8448296 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index a72f1c776b7e..ab26aaa54508 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557920 -SHA256 (KDE/release-service/25.04.1/dragon-25.04.1.tar.xz) = 08c3c6968584e90c1b3999e7363a307a2318b84c51c88692068476be937d0976 -SIZE (KDE/release-service/25.04.1/dragon-25.04.1.tar.xz) = 1773224 +TIMESTAMP = 1749036840 +SHA256 (KDE/release-service/25.04.2/dragon-25.04.2.tar.xz) = 15a14eeb295989bf1fff35e55897a817f7fda7064f0bc31c331e88b6d41ffd82 +SIZE (KDE/release-service/25.04.2/dragon-25.04.2.tar.xz) = 1773256 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index e34a9b199fb1..ebcdd01deeef 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557920 -SHA256 (KDE/release-service/25.04.1/kamoso-25.04.1.tar.xz) = 04ea8256002aecc79a2b1dde46c5ce08e6595c91441a3e753f08630ee7744904 -SIZE (KDE/release-service/25.04.1/kamoso-25.04.1.tar.xz) = 235676 +TIMESTAMP = 1749036843 +SHA256 (KDE/release-service/25.04.2/kamoso-25.04.2.tar.xz) = 425969c22d2d64e84135dd0df1c46e15a6c2a87d04759ca6c853e361515242c1 +SIZE (KDE/release-service/25.04.2/kamoso-25.04.2.tar.xz) = 235708 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index 2601d3aab9e9..445c6ad2aa4f 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557921 -SHA256 (KDE/release-service/25.04.1/kasts-25.04.1.tar.xz) = a390ff4c69ee619deea0088599bf2f1788845868ed3df37da7c7cd556d4ba182 -SIZE (KDE/release-service/25.04.1/kasts-25.04.1.tar.xz) = 646148 +TIMESTAMP = 1749036843 +SHA256 (KDE/release-service/25.04.2/kasts-25.04.2.tar.xz) = d81b9524f38fc71874fb80a945a862ccfb3e880b66cde6107bc6a5130431be63 +SIZE (KDE/release-service/25.04.2/kasts-25.04.2.tar.xz) = 646132 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 76bfcf022180..65481fc775f1 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557921 -SHA256 (KDE/release-service/25.04.1/ffmpegthumbs-25.04.1.tar.xz) = d5fe6eff00ea2f620402d518f3a7cbd33d04712cc3c320bcb83bfac1af2731f8 -SIZE (KDE/release-service/25.04.1/ffmpegthumbs-25.04.1.tar.xz) = 33216 +TIMESTAMP = 1749036845 +SHA256 (KDE/release-service/25.04.2/ffmpegthumbs-25.04.2.tar.xz) = c47e40955fd502af94f26fbeb0f271fde90dbe3de3aa442caccb46d3ca804b22 +SIZE (KDE/release-service/25.04.2/ffmpegthumbs-25.04.2.tar.xz) = 33232 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 702f8b84c0d0..c8909475a267 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557922 -SHA256 (KDE/release-service/25.04.1/kdenlive-25.04.1.tar.xz) = ca01121fde6f52e415b5b84ff2f4d9ff689e03759b568bec005127125ab1e947 -SIZE (KDE/release-service/25.04.1/kdenlive-25.04.1.tar.xz) = 14137180 +TIMESTAMP = 1749036848 +SHA256 (KDE/release-service/25.04.2/kdenlive-25.04.2.tar.xz) = 338552fbe675df671e05a5ebce8744e8b1d07db9e36f44e83655eff9ce2d4281 +SIZE (KDE/release-service/25.04.2/kdenlive-25.04.2.tar.xz) = 14196732 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index 734bdf4b12fb..427de0aed549 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,591 +1,598 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/kf6/thumbcreator/mltpreview.so share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/Apache-2.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-2-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSL-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC-BY-SA-4.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC0-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/MIT.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz %%DATADIR%%/clipjobsettings.rc %%DATADIR%%/effect-templates/secondary_color_correction.xml %%DATADIR%%/effect-templates/secondary_color_correction_v2.xml %%DATADIR%%/effect-templates/shut_off.xml %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_bilateral.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_cas.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromanr.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorcontrast.xml %%DATADIR%%/effects/avfilter_colorcorrect.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorize.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_colortemperature.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dblur.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_epx.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_exposure.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_gradfun.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_kirsch.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_median.xml %%DATADIR%%/effects/avfilter_monochrome.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_oscilloscope.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_photosensitivity.xml %%DATADIR%%/effects/avfilter_pixelize.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml +%%DATADIR%%/effects/avfilter_scharr.xml %%DATADIR%%/effects/avfilter_scroll.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shear.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/box_blur.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dropshadow.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_aech0r.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alpha0ps.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphagrad.xml %%DATADIR%%/effects/frei0r_alpha0ps_alphaspot.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml +%%DATADIR%%/effects/frei0r_bigsh0t_eq_cap.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_stereo.xml +%%DATADIR%%/effects/frei0r_bigsh0t_eq_wrap.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml +%%DATADIR%%/effects/frei0r_filmgrain.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_kaleid0sc0pe.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml +%%DATADIR%%/effects/frei0r_normaliz0r.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pixs0r.xml %%DATADIR%%/effects/frei0r_posterize.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpsgraphic.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml +%%DATADIR%%/effects/hsl_primaries.xml +%%DATADIR%%/effects/hsl_range.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml %%DATADIR%%/effects/rotate-3-way.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/shear.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/spot_remover.xml %%DATADIR%%/effects/strobe.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/timer.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/luts/BLUE_TINT.cube %%DATADIR%%/luts/CINEMATIC.cube %%DATADIR%%/luts/GREEN_TINT.cube %%DATADIR%%/luts/TEAL_ORANGE.cube %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/resourceproviders/pixabay_videos.json %%DATADIR%%/sammodelsinfo.rc %%DATADIR%%/scripts/automask/kdenlive_build_sam.py %%DATADIR%%/scripts/automask/kdenlive_sam2_video_predictor.py %%DATADIR%%/scripts/automask/requirements-cuda118.txt %%DATADIR%%/scripts/automask/requirements-cuda124.txt %%DATADIR%%/scripts/automask/requirements-cuda126.txt %%DATADIR%%/scripts/automask/requirements-sam.txt %%DATADIR%%/scripts/automask/sam-objectmask.py %%DATADIR%%/scripts/checkgpu.py %%DATADIR%%/scripts/checkpackages.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/vosk/speech.py %%DATADIR%%/scripts/vosk/speechtotext.py %%DATADIR%%/scripts/whisper/requirements-cuda118.txt %%DATADIR%%/scripts/whisper/requirements-cuda124.txt %%DATADIR%%/scripts/whisper/requirements-cuda126.txt %%DATADIR%%/scripts/whisper/requirements-seamless.txt %%DATADIR%%/scripts/whisper/requirements-whisper-windows.txt %%DATADIR%%/scripts/whisper/requirements-whisper.txt %%DATADIR%%/scripts/whisper/seamlessquery.py %%DATADIR%%/scripts/whisper/whisperquery.py %%DATADIR%%/scripts/whisper/whispertosrt.py %%DATADIR%%/scripts/whisper/whispertotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/slideanimations.rc %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_addition.xml %%DATADIR%%/transitions/frei0r_addition_alpha.xml %%DATADIR%%/transitions/frei0r_alphaatop.xml %%DATADIR%%/transitions/frei0r_alphain.xml %%DATADIR%%/transitions/frei0r_alphaout.xml %%DATADIR%%/transitions/frei0r_alphaover.xml %%DATADIR%%/transitions/frei0r_alphaxor.xml %%DATADIR%%/transitions/frei0r_burn.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/frei0r_color_only.xml %%DATADIR%%/transitions/frei0r_darken.xml %%DATADIR%%/transitions/frei0r_difference.xml %%DATADIR%%/transitions/frei0r_divide.xml %%DATADIR%%/transitions/frei0r_dodge.xml %%DATADIR%%/transitions/frei0r_grain_extract.xml %%DATADIR%%/transitions/frei0r_grain_merge.xml %%DATADIR%%/transitions/frei0r_hardlight.xml %%DATADIR%%/transitions/frei0r_hue.xml %%DATADIR%%/transitions/frei0r_lighten.xml %%DATADIR%%/transitions/frei0r_multiply.xml %%DATADIR%%/transitions/frei0r_overlay.xml %%DATADIR%%/transitions/frei0r_push-down.xml %%DATADIR%%/transitions/frei0r_push-left.xml %%DATADIR%%/transitions/frei0r_push-right.xml %%DATADIR%%/transitions/frei0r_push-up.xml %%DATADIR%%/transitions/frei0r_saturation.xml %%DATADIR%%/transitions/frei0r_screen.xml %%DATADIR%%/transitions/frei0r_slide-down.xml %%DATADIR%%/transitions/frei0r_slide-left.xml %%DATADIR%%/transitions/frei0r_slide-right.xml %%DATADIR%%/transitions/frei0r_slide-up.xml %%DATADIR%%/transitions/frei0r_softlight.xml %%DATADIR%%/transitions/frei0r_subtract.xml %%DATADIR%%/transitions/frei0r_uvmap.xml %%DATADIR%%/transitions/frei0r_value.xml %%DATADIR%%/transitions/frei0r_wipe-barn-door-h.xml %%DATADIR%%/transitions/frei0r_wipe-barn-door-v.xml %%DATADIR%%/transitions/frei0r_wipe-circle.xml %%DATADIR%%/transitions/frei0r_wipe-down.xml %%DATADIR%%/transitions/frei0r_wipe-left.xml %%DATADIR%%/transitions/frei0r_wipe-rect.xml %%DATADIR%%/transitions/frei0r_wipe-right.xml %%DATADIR%%/transitions/frei0r_wipe-up.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/matte.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/vqm.xml %%DATADIR%%/transitions/wipe.xml share/knotifications6/kdenlive.notifyrc share/knsrcfiles/kdenlive_effects.knsrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_luts.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/eo/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hi/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ka/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/lv/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sa/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tok/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/man/man1/kdenlive.1.gz share/man/man1/kdenlive_render.1.gz share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories6/kdenlive.categories diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 7cdd1afb8ed8..1248049c75b7 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557922 -SHA256 (KDE/release-service/25.04.1/plasmatube-25.04.1.tar.xz) = 2c34b96d841591410483fed6a632db628b45c044313e9ffdf7105b0986387a62 -SIZE (KDE/release-service/25.04.1/plasmatube-25.04.1.tar.xz) = 224156 +TIMESTAMP = 1749036848 +SHA256 (KDE/release-service/25.04.2/plasmatube-25.04.2.tar.xz) = 544f80dbb003c81fc20f83c765f198c7ee31c6b7c7ef8d19724e6f7a249993a7 +SIZE (KDE/release-service/25.04.2/plasmatube-25.04.2.tar.xz) = 224128 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 1572ae855b28..617d49c72d0c 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557923 -SHA256 (KDE/release-service/25.04.1/kaccounts-integration-25.04.1.tar.xz) = 314ff346a224d2ba3fbbdc130241f06a5c5c37d97199c512a1c62fead7fbfe93 -SIZE (KDE/release-service/25.04.1/kaccounts-integration-25.04.1.tar.xz) = 95008 +TIMESTAMP = 1749036850 +SHA256 (KDE/release-service/25.04.2/kaccounts-integration-25.04.2.tar.xz) = 0fecd64d0b0bc698bd4c9a13a80daf96d3a77072ddb8616b8bc670b67249d15c +SIZE (KDE/release-service/25.04.2/kaccounts-integration-25.04.2.tar.xz) = 94488 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 17bc04a11f10..80efed1d5ff5 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557924 -SHA256 (KDE/release-service/25.04.1/kaccounts-providers-25.04.1.tar.xz) = bf400b1aef13f235ffa25741b45a6a2452f063aac4de1fd94a8ffec55fba1e4d -SIZE (KDE/release-service/25.04.1/kaccounts-providers-25.04.1.tar.xz) = 68800 +TIMESTAMP = 1749036853 +SHA256 (KDE/release-service/25.04.2/kaccounts-providers-25.04.2.tar.xz) = 586406b7f3d93170a36fc49fe1e8d6e8a6c23f1e00bea460ae2f8bc6a5f5762b +SIZE (KDE/release-service/25.04.2/kaccounts-providers-25.04.2.tar.xz) = 68612 diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index 176080e69c59..4e85e66fe639 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557924 -SHA256 (KDE/release-service/25.04.1/neochat-25.04.1.tar.xz) = e66d8290ee1a51f817a10cf083a1823289e9eceb9bcd0a0747f0b057424957ea -SIZE (KDE/release-service/25.04.1/neochat-25.04.1.tar.xz) = 1151184 +TIMESTAMP = 1749036855 +SHA256 (KDE/release-service/25.04.2/neochat-25.04.2.tar.xz) = e322bdb43e7b202eda2c435fc62247faaff2e568e25823ec55fad8cc4539b4c6 +SIZE (KDE/release-service/25.04.2/neochat-25.04.2.tar.xz) = 1151532 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index f450ed9d48ff..57ac6ef9fa32 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557925 -SHA256 (KDE/release-service/25.04.1/tokodon-25.04.1.tar.xz) = 37a84b55de80859e9902ae26fefb7486dd1cd6600f5bcc3cb3ec9ce6c869f7e3 -SIZE (KDE/release-service/25.04.1/tokodon-25.04.1.tar.xz) = 789332 +TIMESTAMP = 1749036856 +SHA256 (KDE/release-service/25.04.2/tokodon-25.04.2.tar.xz) = 399ed21708a67a4fc3f5fdffb1630af1be6a82d526b9b64d53e956eec7954bac +SIZE (KDE/release-service/25.04.2/tokodon-25.04.2.tar.xz) = 790676 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 8ef7f96f2c1c..3e256b15d0ff 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557925 -SHA256 (KDE/release-service/25.04.1/ktorrent-25.04.1.tar.xz) = 17cdb15b8a917da286c2a21e9d6ef4217ab42073ed1a8dee25aba02cc9aa7484 -SIZE (KDE/release-service/25.04.1/ktorrent-25.04.1.tar.xz) = 2229172 +TIMESTAMP = 1749036858 +SHA256 (KDE/release-service/25.04.2/ktorrent-25.04.2.tar.xz) = da1834795e1a03bf1a02182cf3a95be9654a5dec32a55bd63e5795cc5d35de27 +SIZE (KDE/release-service/25.04.2/ktorrent-25.04.2.tar.xz) = 2229080 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index a644ca476bdf..9db88141a6d4 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557926 -SHA256 (KDE/release-service/25.04.1/libktorrent-25.04.1.tar.xz) = de34b9a9ede4cb2bcb55f0d8bb35c571f0e7796e12cb4486b50fd5516d863c14 -SIZE (KDE/release-service/25.04.1/libktorrent-25.04.1.tar.xz) = 606328 +TIMESTAMP = 1749036861 +SHA256 (KDE/release-service/25.04.2/libktorrent-25.04.2.tar.xz) = e6ccf6d0503a0b71d594b75e67aa0ad505d57316d20d5380ccc590c4f0604e98 +SIZE (KDE/release-service/25.04.2/libktorrent-25.04.2.tar.xz) = 606284 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 4f0e27ff69ac..8bdf02f52b8c 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557927 -SHA256 (KDE/release-service/25.04.1/akonadi-calendar-25.04.1.tar.xz) = 832311cc7d07b14996dd5779b39c7993f2ee304aa88f1231775c4228f70ae5ed -SIZE (KDE/release-service/25.04.1/akonadi-calendar-25.04.1.tar.xz) = 540088 +TIMESTAMP = 1749036863 +SHA256 (KDE/release-service/25.04.2/akonadi-calendar-25.04.2.tar.xz) = 28f1b9df1aa1a5660bb932637006cee5a6211f514b2ac5236ce860a65c902884 +SIZE (KDE/release-service/25.04.2/akonadi-calendar-25.04.2.tar.xz) = 540224 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index a63e5f45b51e..1a3533b039d0 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557927 -SHA256 (KDE/release-service/25.04.1/akonadi-contacts-25.04.1.tar.xz) = 38386e1b077f8ad896b79083c2ba0c70558920d86ca6ddc45a96a8889c7717db -SIZE (KDE/release-service/25.04.1/akonadi-contacts-25.04.1.tar.xz) = 440076 +TIMESTAMP = 1749036865 +SHA256 (KDE/release-service/25.04.2/akonadi-contacts-25.04.2.tar.xz) = be8f1b45bbcfd7ef79fb4b2df34a9e0b8e8742faf195a8b39c05c7ee0e63704d +SIZE (KDE/release-service/25.04.2/akonadi-contacts-25.04.2.tar.xz) = 440032 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 80c131de662e..89fc9d436551 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557928 -SHA256 (KDE/release-service/25.04.1/akonadi-mime-25.04.1.tar.xz) = 934e1166f070d9262f7bf2ee55b102b3324c349be986435122973e4bca488fd2 -SIZE (KDE/release-service/25.04.1/akonadi-mime-25.04.1.tar.xz) = 179752 +TIMESTAMP = 1749036868 +SHA256 (KDE/release-service/25.04.2/akonadi-mime-25.04.2.tar.xz) = db1e4f9105cee6aafaef1d5caf5abc9926e8ad1a8b60389d1321a648bcd16168 +SIZE (KDE/release-service/25.04.2/akonadi-mime-25.04.2.tar.xz) = 179772 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 3d4a684db73e..524c2296448b 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557929 -SHA256 (KDE/release-service/25.04.1/akonadi-search-25.04.1.tar.xz) = 6bc9807204f24e70914a49e9e6108769d9b60a54ddc119593634b8738b596e49 -SIZE (KDE/release-service/25.04.1/akonadi-search-25.04.1.tar.xz) = 113812 +TIMESTAMP = 1749036870 +SHA256 (KDE/release-service/25.04.2/akonadi-search-25.04.2.tar.xz) = 95f63743d050ccb3a9628dfdc9b5a271658d45e3d5944cb1c131f7d254c29486 +SIZE (KDE/release-service/25.04.2/akonadi-search-25.04.2.tar.xz) = 113816 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 141a4cda8ff0..0dd6d742b4bc 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557929 -SHA256 (KDE/release-service/25.04.1/alligator-25.04.1.tar.xz) = 87a6a81bae6e3a68e51e75e690cdae60b97bdd37ee3bf5e82b1e438a0d8f03cb -SIZE (KDE/release-service/25.04.1/alligator-25.04.1.tar.xz) = 241152 +TIMESTAMP = 1749036871 +SHA256 (KDE/release-service/25.04.2/alligator-25.04.2.tar.xz) = b08b74eee490ff808bfb92c03f094051224e3147dca553bf28409ac4bf682f0a +SIZE (KDE/release-service/25.04.2/alligator-25.04.2.tar.xz) = 241196 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 66d1c018f55b..a17ccc47aeb1 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557930 -SHA256 (KDE/release-service/25.04.1/calendarsupport-25.04.1.tar.xz) = 5a7e0b7b9c8d7277fc1899ee153f4c5f3acb64ff7c726eb7428bc7800ec94cad -SIZE (KDE/release-service/25.04.1/calendarsupport-25.04.1.tar.xz) = 1005144 +TIMESTAMP = 1749036873 +SHA256 (KDE/release-service/25.04.2/calendarsupport-25.04.2.tar.xz) = fd4ba25407d043b576424f078a98f2a2425cba6e43c26ccea1b66e4e6e8601a8 +SIZE (KDE/release-service/25.04.2/calendarsupport-25.04.2.tar.xz) = 1005224 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 00bffb31a800..ce9c3fdda707 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557930 -SHA256 (KDE/release-service/25.04.1/eventviews-25.04.1.tar.xz) = 138db44ebeff29598f8fa5266ccd3200ed1ae68cfc40e8a4351054c400232175 -SIZE (KDE/release-service/25.04.1/eventviews-25.04.1.tar.xz) = 510360 +TIMESTAMP = 1749036876 +SHA256 (KDE/release-service/25.04.2/eventviews-25.04.2.tar.xz) = b0aacdfce18218331f8914a0ef1fc696a2e71d7a9811cac08d0ce4f38c647232 +SIZE (KDE/release-service/25.04.2/eventviews-25.04.2.tar.xz) = 510616 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 93d216c91cbf..922142fa64b8 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557931 -SHA256 (KDE/release-service/25.04.1/incidenceeditor-25.04.1.tar.xz) = 7515098248be3207921c6cc50ca7427d4b78e75e2de31441f59d4b8a2b2876dc -SIZE (KDE/release-service/25.04.1/incidenceeditor-25.04.1.tar.xz) = 603100 +TIMESTAMP = 1749036878 +SHA256 (KDE/release-service/25.04.2/incidenceeditor-25.04.2.tar.xz) = 9a53b7cf69c60c19ae26b7744b679b12b60eca610a2471c497eb791b6a2daccf +SIZE (KDE/release-service/25.04.2/incidenceeditor-25.04.2.tar.xz) = 603352 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 0c6004798f54..337312107f9a 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557932 -SHA256 (KDE/release-service/25.04.1/kcalutils-25.04.1.tar.xz) = 09f0ddd4e1d33b132e0886ad89cc00582d79fd73a54b94a31c370a5c7b0634aa -SIZE (KDE/release-service/25.04.1/kcalutils-25.04.1.tar.xz) = 365252 +TIMESTAMP = 1749036880 +SHA256 (KDE/release-service/25.04.2/kcalutils-25.04.2.tar.xz) = e2f3e203373a679f59ccf3324e77068c67d0231bff525d451ffd2cd87459c8c0 +SIZE (KDE/release-service/25.04.2/kcalutils-25.04.2.tar.xz) = 365248 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 9285c4c7e64c..66187055a344 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557932 -SHA256 (KDE/release-service/25.04.1/kdenetwork-filesharing-25.04.1.tar.xz) = 6350b0d5d71821c53d4b3fb007ec7e386c933661a42fc6402d1d975a5132124e -SIZE (KDE/release-service/25.04.1/kdenetwork-filesharing-25.04.1.tar.xz) = 510284 +TIMESTAMP = 1749036883 +SHA256 (KDE/release-service/25.04.2/kdenetwork-filesharing-25.04.2.tar.xz) = f3b1b728cf2b2d26c47c38f2aad054c6fe8112a302a0c840a70cbd4f11da493b +SIZE (KDE/release-service/25.04.2/kdenetwork-filesharing-25.04.2.tar.xz) = 510016 diff --git a/net/kget/distinfo b/net/kget/distinfo index 9654d492a878..9bf521d866d2 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557933 -SHA256 (KDE/release-service/25.04.1/kget-25.04.1.tar.xz) = 9443bd78d043dffac2055ed75cd9382a7b0803abe505430eb6705d150b913471 -SIZE (KDE/release-service/25.04.1/kget-25.04.1.tar.xz) = 4854356 +TIMESTAMP = 1749036885 +SHA256 (KDE/release-service/25.04.2/kget-25.04.2.tar.xz) = c6c9d107bdffbc2d19855f298c5634a341a82d6ca3e1b430ce608c7c10d580c1 +SIZE (KDE/release-service/25.04.2/kget-25.04.2.tar.xz) = 4853484 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index ae7c3e39ebad..19f564f9ae8c 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557934 -SHA256 (KDE/release-service/25.04.1/kidentitymanagement-25.04.1.tar.xz) = 9bc3d57da9254a21fdfff1cf326ce1678a1d89e37dc7e4cad7fea7327a5dc53e -SIZE (KDE/release-service/25.04.1/kidentitymanagement-25.04.1.tar.xz) = 198096 +TIMESTAMP = 1749036888 +SHA256 (KDE/release-service/25.04.2/kidentitymanagement-25.04.2.tar.xz) = 89f700fab7bccfa804a7f8b3f3418f048ef3c3aa97b36e102beba9e1226e045d +SIZE (KDE/release-service/25.04.2/kidentitymanagement-25.04.2.tar.xz) = 198076 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index c69e5f43fc93..411f708718b4 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557934 -SHA256 (KDE/release-service/25.04.1/kimap-25.04.1.tar.xz) = 82194f76d7829f8c85addf0b81b365a9d11f69b8852dfb93ed2cc5e3df452241 -SIZE (KDE/release-service/25.04.1/kimap-25.04.1.tar.xz) = 133912 +TIMESTAMP = 1749036890 +SHA256 (KDE/release-service/25.04.2/kimap-25.04.2.tar.xz) = 7d2aa360a9c31ba61ba40c9460214a2ef6bfea35e5651729f855a202892667be +SIZE (KDE/release-service/25.04.2/kimap-25.04.2.tar.xz) = 133940 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index 4507cc02bb75..e46648401d36 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557935 -SHA256 (KDE/release-service/25.04.1/kio-gdrive-25.04.1.tar.xz) = d00893ebc18993377717ded5495819228ad0ae0f90f0e1fca4b69af757667c58 -SIZE (KDE/release-service/25.04.1/kio-gdrive-25.04.1.tar.xz) = 82424 +TIMESTAMP = 1749036891 +SHA256 (KDE/release-service/25.04.2/kio-gdrive-25.04.2.tar.xz) = 6a73522ba1fe8224efeb8adc6a5b2902d55928706e5520ad4b4a3bbb4f114cf0 +SIZE (KDE/release-service/25.04.2/kio-gdrive-25.04.2.tar.xz) = 82432 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index c3d149123106..63bb451e14a0 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557935 -SHA256 (KDE/release-service/25.04.1/kio-zeroconf-25.04.1.tar.xz) = 506ce7c2773cfc23972335b2214c1c9adc391786469a050daf0e3685916c8428 -SIZE (KDE/release-service/25.04.1/kio-zeroconf-25.04.1.tar.xz) = 44944 +TIMESTAMP = 1749036893 +SHA256 (KDE/release-service/25.04.2/kio-zeroconf-25.04.2.tar.xz) = d075bdaadc458e8bb983cd77b27e8271889ea7db8e1cdf0b3fabac8a9200ba5c +SIZE (KDE/release-service/25.04.2/kio-zeroconf-25.04.2.tar.xz) = 44920 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index 20075f98e622..c590eb7fe4bf 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -1,30 +1,29 @@ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information WWW= https://www.kde.org/ LICENSE= LGPL21 LIB_DEPENDS= libphonenumber.so:devel/libphonenumber \ libpoppler.so:graphics/poppler \ libZXing.so:textproc/zxing-cpp USES= cmake compiler:c++11-lang gettext gnome kde:6 pkgconfig qt:6 \ shared-mime-info ssl tar:xz USE_GNOME= libxml2 USE_KDE= archive codecs coreaddons i18n \ ecm:build # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= base USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 36c3124eafc3..f7f032172d0c 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557936 -SHA256 (KDE/release-service/25.04.1/kitinerary-25.04.1.tar.xz) = e94d47799861035cc06b3a3422f93767182d82b6ca8551889bee9841472c99a0 -SIZE (KDE/release-service/25.04.1/kitinerary-25.04.1.tar.xz) = 2066180 +TIMESTAMP = 1749036895 +SHA256 (KDE/release-service/25.04.2/kitinerary-25.04.2.tar.xz) = 76e3a3406836f631b304e94e8fed10b19c52cc0cc14658d139eccf4128c3536f +SIZE (KDE/release-service/25.04.2/kitinerary-25.04.2.tar.xz) = 2070192 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 1033545a9ff2..9965526f010e 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557937 -SHA256 (KDE/release-service/25.04.1/kldap-25.04.1.tar.xz) = e23c0af0368458fd5d4696f3a8f3f92382ec4f6f4e364a3de14d2bbe017eafb0 -SIZE (KDE/release-service/25.04.1/kldap-25.04.1.tar.xz) = 191656 +TIMESTAMP = 1749036898 +SHA256 (KDE/release-service/25.04.2/kldap-25.04.2.tar.xz) = b048332e0c05c49074701eab93f2b59b5eb56e3a2c195fb718979674746aae62 +SIZE (KDE/release-service/25.04.2/kldap-25.04.2.tar.xz) = 191656 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 1cf02482f829..82e530533092 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557937 -SHA256 (KDE/release-service/25.04.1/kmailtransport-25.04.1.tar.xz) = f347aee4aadfcfe30f3bf164ee409c98ca780485387e917f47a0d3c87c46e1cc -SIZE (KDE/release-service/25.04.1/kmailtransport-25.04.1.tar.xz) = 191632 +TIMESTAMP = 1749036900 +SHA256 (KDE/release-service/25.04.2/kmailtransport-25.04.2.tar.xz) = 31eeee8892cd5265df16ddb6fddd239a32be5c8e416b919792b611d159d4311e +SIZE (KDE/release-service/25.04.2/kmailtransport-25.04.2.tar.xz) = 191668 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index ac5725217a06..5f4529f1a343 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557938 -SHA256 (KDE/release-service/25.04.1/kmbox-25.04.1.tar.xz) = 737400068067cf91f38311dbfc754a325c1a22c02ab7ce97faeb28f06f03d5ca -SIZE (KDE/release-service/25.04.1/kmbox-25.04.1.tar.xz) = 29236 +TIMESTAMP = 1749036903 +SHA256 (KDE/release-service/25.04.2/kmbox-25.04.2.tar.xz) = e348396fb8f1de1729d0415116b05f6220f0ebb4428c4607b98b56edd321f1aa +SIZE (KDE/release-service/25.04.2/kmbox-25.04.2.tar.xz) = 29232 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 6a8b1df7901a..dd2b5e69c1b1 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557939 -SHA256 (KDE/release-service/25.04.1/kmime-25.04.1.tar.xz) = 8a039adc6ca02a709498a81a81cbf1d28d27525ae37ce7147d4349b0d37a501d -SIZE (KDE/release-service/25.04.1/kmime-25.04.1.tar.xz) = 164780 +TIMESTAMP = 1749036905 +SHA256 (KDE/release-service/25.04.2/kmime-25.04.2.tar.xz) = 6102c1191a34475af463f786e7407ee9f328bb75f93a1235e51ab3ef62500d3a +SIZE (KDE/release-service/25.04.2/kmime-25.04.2.tar.xz) = 164732 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 2cc8edb9eb7e..f223db8e7fc5 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557939 -SHA256 (KDE/release-service/25.04.1/kontactinterface-25.04.1.tar.xz) = 6f0bd7a040caf1a0a345aa6ccc3f4b819e989b79749e6e5d4b24e79daa87e2b9 -SIZE (KDE/release-service/25.04.1/kontactinterface-25.04.1.tar.xz) = 41048 +TIMESTAMP = 1749036908 +SHA256 (KDE/release-service/25.04.2/kontactinterface-25.04.2.tar.xz) = 87b37bda978995e8380df5162738abb248864dc971abf46b18abc3a37cf6ecf7 +SIZE (KDE/release-service/25.04.2/kontactinterface-25.04.2.tar.xz) = 41032 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index b4ab8b8f7d23..9426b32e522d 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557940 -SHA256 (KDE/release-service/25.04.1/kpimtextedit-25.04.1.tar.xz) = dbe8060425220e1b6202ec39e31f8ec96e606fdf66dcbb2c39978947deea77be -SIZE (KDE/release-service/25.04.1/kpimtextedit-25.04.1.tar.xz) = 181176 +TIMESTAMP = 1749036910 +SHA256 (KDE/release-service/25.04.2/kpimtextedit-25.04.2.tar.xz) = dd6dec073e37963a9415d5ec0cd1eda4f34e64bec880cf2716e13d254a34cfb6 +SIZE (KDE/release-service/25.04.2/kpimtextedit-25.04.2.tar.xz) = 181220 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 7d92290abf8d..30b9c7e8be72 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557941 -SHA256 (KDE/release-service/25.04.1/krdc-25.04.1.tar.xz) = bd5e0c80caecaec92abed5b9219dc23912e22a31afa0f018d9f169308834cfbc -SIZE (KDE/release-service/25.04.1/krdc-25.04.1.tar.xz) = 1590040 +TIMESTAMP = 1749036913 +SHA256 (KDE/release-service/25.04.2/krdc-25.04.2.tar.xz) = 2d62ba816cd9efba68ee06a4a55e6f28ba405eb61c9766f7e44164ce75a9e39f +SIZE (KDE/release-service/25.04.2/krdc-25.04.2.tar.xz) = 1590012 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index e181f287f59c..75d0234bd36a 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557941 -SHA256 (KDE/release-service/25.04.1/krfb-25.04.1.tar.xz) = b07309a847a50cdcf14afa254a1d357513f1f5441283ec186125d8debcd5176c -SIZE (KDE/release-service/25.04.1/krfb-25.04.1.tar.xz) = 1222088 +TIMESTAMP = 1749036915 +SHA256 (KDE/release-service/25.04.2/krfb-25.04.2.tar.xz) = 7dff53b8238f015e483f038ed19cbb73815412be9284b86ed4b5536faf5d5006 +SIZE (KDE/release-service/25.04.2/krfb-25.04.2.tar.xz) = 1220920 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 1a6541716765..4e790cc0beeb 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557942 -SHA256 (KDE/release-service/25.04.1/ksmtp-25.04.1.tar.xz) = 42ba6db84b35ff6b50ee58ba4da14eccda44b60242b4095d53f46129d6dbc47d -SIZE (KDE/release-service/25.04.1/ksmtp-25.04.1.tar.xz) = 53216 +TIMESTAMP = 1749036918 +SHA256 (KDE/release-service/25.04.2/ksmtp-25.04.2.tar.xz) = e92aff6382949d82aadc7cc7ba80f5fc4aa0feacdb24fa4d1a60e675a4533056 +SIZE (KDE/release-service/25.04.2/ksmtp-25.04.2.tar.xz) = 53212 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 1046fba40328..6e8e79b01899 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557943 -SHA256 (KDE/release-service/25.04.1/ktnef-25.04.1.tar.xz) = 98196fddb378dcd738ae6859d4613acae851d9ed39e044a941ee939de1a8a3d1 -SIZE (KDE/release-service/25.04.1/ktnef-25.04.1.tar.xz) = 315096 +TIMESTAMP = 1749036920 +SHA256 (KDE/release-service/25.04.2/ktnef-25.04.2.tar.xz) = 4edd18335f85416fec4c793d359802f935de838a7b60fd6f4d9cfe7ee6acca3e +SIZE (KDE/release-service/25.04.2/ktnef-25.04.2.tar.xz) = 314920 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index cdf440460719..6312c53da305 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557943 -SHA256 (KDE/release-service/25.04.1/libgravatar-25.04.1.tar.xz) = 864ccf694cf0f51be672d5e07a5273eb402efc92c5ed43fa4077db329f649a9a -SIZE (KDE/release-service/25.04.1/libgravatar-25.04.1.tar.xz) = 38696 +TIMESTAMP = 1749036923 +SHA256 (KDE/release-service/25.04.2/libgravatar-25.04.2.tar.xz) = 40ccbcd2af7ff3963bd55d5ebbc2608b1a2920ffc2e4a8aa7e97e504ae1a00f0 +SIZE (KDE/release-service/25.04.2/libgravatar-25.04.2.tar.xz) = 38684 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index d1cea6efec01..038d07c9b55b 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557944 -SHA256 (KDE/release-service/25.04.1/libkgapi-25.04.1.tar.xz) = b2e1b4ab564f67cd0e2c5fa0fbd394928120bc8d17a019a36f072c517f41ecbc -SIZE (KDE/release-service/25.04.1/libkgapi-25.04.1.tar.xz) = 341436 +TIMESTAMP = 1749036925 +SHA256 (KDE/release-service/25.04.2/libkgapi-25.04.2.tar.xz) = 31698fb19ccd66af4dd6dca1236cef766d701d4f8098c5c2ca9e206cb3f034c0 +SIZE (KDE/release-service/25.04.2/libkgapi-25.04.2.tar.xz) = 341484 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 0dafc4b5ca40..c958115af55b 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557945 -SHA256 (KDE/release-service/25.04.1/libksieve-25.04.1.tar.xz) = 2269c364aa82df3b9d56685b9da89ca45004efa562d2b3fc446eef0d309e507a -SIZE (KDE/release-service/25.04.1/libksieve-25.04.1.tar.xz) = 614864 +TIMESTAMP = 1749036927 +SHA256 (KDE/release-service/25.04.2/libksieve-25.04.2.tar.xz) = 5484749b19342a60e924dee1f80f6f5ef1348cd19906d136eadb36651350cbc0 +SIZE (KDE/release-service/25.04.2/libksieve-25.04.2.tar.xz) = 614928 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 10bfd339fcd6..e4bb7e85354e 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557945 -SHA256 (KDE/release-service/25.04.1/mailcommon-25.04.1.tar.xz) = 674e3445fdec783c7fd0e9e7e6d31c456a7a1928b6105762db2323cbad656dd7 -SIZE (KDE/release-service/25.04.1/mailcommon-25.04.1.tar.xz) = 813124 +TIMESTAMP = 1749036930 +SHA256 (KDE/release-service/25.04.2/mailcommon-25.04.2.tar.xz) = 2c620c53701a56d67044f5d974e171093827d5c3f97ef095e6e2d60f932c95be +SIZE (KDE/release-service/25.04.2/mailcommon-25.04.2.tar.xz) = 813276 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 8856b26b9ec2..6a0282088dc7 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557946 -SHA256 (KDE/release-service/25.04.1/mailimporter-25.04.1.tar.xz) = d25412c10dc9dcff85e0a56259836c8113a8b14aad66801e6b479110edcf295d -SIZE (KDE/release-service/25.04.1/mailimporter-25.04.1.tar.xz) = 601204 +TIMESTAMP = 1749036932 +SHA256 (KDE/release-service/25.04.2/mailimporter-25.04.2.tar.xz) = bf9b9d4875f3cd5b338366a6e5e71ae508a21d53f3b2874744e707f254d88231 +SIZE (KDE/release-service/25.04.2/mailimporter-25.04.2.tar.xz) = 601212 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 5d0639440250..be3fed1aea59 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557947 -SHA256 (KDE/release-service/25.04.1/messagelib-25.04.1.tar.xz) = 92f0e1fe2ac1b8cb53168e18709c203d43cccdae382d0895b3e2846757df0770 -SIZE (KDE/release-service/25.04.1/messagelib-25.04.1.tar.xz) = 7450684 +TIMESTAMP = 1749036935 +SHA256 (KDE/release-service/25.04.2/messagelib-25.04.2.tar.xz) = 7354aea72b25c2ed92db1dcb89d9f5f5b82ba2b382979d0d1303c47716561a05 +SIZE (KDE/release-service/25.04.2/messagelib-25.04.2.tar.xz) = 7554168 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index f82352eb6fb3..6adf5f34ec63 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557947 -SHA256 (KDE/release-service/25.04.1/mimetreeparser-25.04.1.tar.xz) = 8ab8cca0d49fcac50cefe4a7f27a03bee8d31f247a24e0517ee23b69059f277e -SIZE (KDE/release-service/25.04.1/mimetreeparser-25.04.1.tar.xz) = 652456 +TIMESTAMP = 1749036937 +SHA256 (KDE/release-service/25.04.2/mimetreeparser-25.04.2.tar.xz) = 9cdb04278f03c73c07ac0b840d44491460e3ab431133323d26a4c1ef084b6e37 +SIZE (KDE/release-service/25.04.2/mimetreeparser-25.04.2.tar.xz) = 652432 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index b14f383cd1f3..4ee376426ce9 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557948 -SHA256 (KDE/release-service/25.04.1/pimcommon-25.04.1.tar.xz) = 536a5c06c152855fc5c49791fc5352a5afd3c45ba95c15d28c235898cfbcca97 -SIZE (KDE/release-service/25.04.1/pimcommon-25.04.1.tar.xz) = 381448 +TIMESTAMP = 1749036940 +SHA256 (KDE/release-service/25.04.2/pimcommon-25.04.2.tar.xz) = 7d7524de0b888b0176b8f40d3b575ffee8a255c63672537c7dd393543682a0cd +SIZE (KDE/release-service/25.04.2/pimcommon-25.04.2.tar.xz) = 381472 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 95a697f2ede1..3ca9e73e2f8f 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557949 -SHA256 (KDE/release-service/25.04.1/kalzium-25.04.1.tar.xz) = 31a31a45dc2d7c5581066d5e6654c2038e2c73b15126328170e39fdf361a1b64 -SIZE (KDE/release-service/25.04.1/kalzium-25.04.1.tar.xz) = 22660736 +TIMESTAMP = 1749036942 +SHA256 (KDE/release-service/25.04.2/kalzium-25.04.2.tar.xz) = 267ae25fd41fc03a386e432d56a7ce34f9ecba4ce5c56869ad0f5d60ad44db76 +SIZE (KDE/release-service/25.04.2/kalzium-25.04.2.tar.xz) = 22661016 diff --git a/science/step/distinfo b/science/step/distinfo index 977665fbfa43..1b4693330a8d 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557950 -SHA256 (KDE/release-service/25.04.1/step-25.04.1.tar.xz) = bfc136ac296b613812d0c2e6979583b2c2856abc05ec605cf82ad2b4fb4f191d -SIZE (KDE/release-service/25.04.1/step-25.04.1.tar.xz) = 988568 +TIMESTAMP = 1749036945 +SHA256 (KDE/release-service/25.04.2/step-25.04.2.tar.xz) = 38a6e5eaf9dd87e5a21a16235ac31026b057b09eae503150769f5170dbc9407e +SIZE (KDE/release-service/25.04.2/step-25.04.2.tar.xz) = 988436 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index dfdcf8ccd35b..4bd948e4c76e 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557950 -SHA256 (KDE/release-service/25.04.1/keysmith-25.04.1.tar.xz) = b753ade5df1795cd87ef454618997104c644b5363329f117bb124cb9d6062885 -SIZE (KDE/release-service/25.04.1/keysmith-25.04.1.tar.xz) = 237368 +TIMESTAMP = 1749036945 +SHA256 (KDE/release-service/25.04.2/keysmith-25.04.2.tar.xz) = abda95423d1b66d334a5723a71f25c274088526dc25bd42abfcbdc7ffe8300f2 +SIZE (KDE/release-service/25.04.2/keysmith-25.04.2.tar.xz) = 237388 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index b08ace1d275f..71ebbc8d276d 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557951 -SHA256 (KDE/release-service/25.04.1/kgpg-25.04.1.tar.xz) = c4ab651d9da41266d996418ff73278822e5da74d3560a5d766266dfaa61f7320 -SIZE (KDE/release-service/25.04.1/kgpg-25.04.1.tar.xz) = 3049968 +TIMESTAMP = 1749036948 +SHA256 (KDE/release-service/25.04.2/kgpg-25.04.2.tar.xz) = aad9c322e3f07de55bc9fd5a55c655ba0afdb24cb2500879b7cafc1f1ee03bed +SIZE (KDE/release-service/25.04.2/kgpg-25.04.2.tar.xz) = 3048980 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 53f461fba707..dcac84233c5f 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557951 -SHA256 (KDE/release-service/25.04.1/kleopatra-25.04.1.tar.xz) = 61f2c473551eb01cbae2b300e274b562ec19014ee3f74c4ee84f35645446b89b -SIZE (KDE/release-service/25.04.1/kleopatra-25.04.1.tar.xz) = 2851352 +TIMESTAMP = 1749036950 +SHA256 (KDE/release-service/25.04.2/kleopatra-25.04.2.tar.xz) = d155c416103fad173c361ea10f3ea1f6142297cc5be3598e9b062461336a3476 +SIZE (KDE/release-service/25.04.2/kleopatra-25.04.2.tar.xz) = 2851360 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index df231d80f11f..aedda9c2c49a 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557952 -SHA256 (KDE/release-service/25.04.1/kpkpass-25.04.1.tar.xz) = a19900025670876e5586d99af6b7cc9fc19d31a75d63e41eb62def48c1a31e84 -SIZE (KDE/release-service/25.04.1/kpkpass-25.04.1.tar.xz) = 29604 +TIMESTAMP = 1749036952 +SHA256 (KDE/release-service/25.04.2/kpkpass-25.04.2.tar.xz) = f317db3bd8c7c34d70727353315c831673a16b0a70da75f075cbb5a9dad2f931 +SIZE (KDE/release-service/25.04.2/kpkpass-25.04.2.tar.xz) = 29692 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 5e28a9184dab..8b9380d7b9fd 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557953 -SHA256 (KDE/release-service/25.04.1/kwalletmanager-25.04.1.tar.xz) = acf49fb559be0aa2ecea4ab494b66cb2a3da7059c5a0ea107b6e6933f520d48e -SIZE (KDE/release-service/25.04.1/kwalletmanager-25.04.1.tar.xz) = 1053204 +TIMESTAMP = 1749036955 +SHA256 (KDE/release-service/25.04.2/kwalletmanager-25.04.2.tar.xz) = 626a240826f551841395bc61742ef45390995df57cd9aecd44a9fdb17b96cf28 +SIZE (KDE/release-service/25.04.2/kwalletmanager-25.04.2.tar.xz) = 1052996 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 5d431278a0d8..09e3eb9eb240 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557953 -SHA256 (KDE/release-service/25.04.1/libkleo-25.04.1.tar.xz) = 04fe72f4035c50e01f3741c3b45f2170035358a04974c5497c91cd6beb30d800 -SIZE (KDE/release-service/25.04.1/libkleo-25.04.1.tar.xz) = 654960 +TIMESTAMP = 1749036957 +SHA256 (KDE/release-service/25.04.2/libkleo-25.04.2.tar.xz) = 34feb9871d8a0e6ded0a7baa95f78fdac28c13d7b00ee9296bd1669e0c605f6a +SIZE (KDE/release-service/25.04.2/libkleo-25.04.2.tar.xz) = 655088 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 1091d538975c..2f31ec992bdf 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557954 -SHA256 (KDE/release-service/25.04.1/baloo-widgets-25.04.1.tar.xz) = d7bd1dd2fac57083b801036b70b78e7aef312a976ccc4bc227e98a973ff08993 -SIZE (KDE/release-service/25.04.1/baloo-widgets-25.04.1.tar.xz) = 276752 +TIMESTAMP = 1749036960 +SHA256 (KDE/release-service/25.04.2/baloo-widgets-25.04.2.tar.xz) = 997b2a1b8f04f2b6b0e28ee27fcdc1198497e3fadc05a3af62677d1ea6446af0 +SIZE (KDE/release-service/25.04.2/baloo-widgets-25.04.2.tar.xz) = 276784 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index bb249e9855ae..d404ab09f3f4 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557955 -SHA256 (KDE/release-service/25.04.1/filelight-25.04.1.tar.xz) = 169db1fe356d1d65850d903c537899ad1342e2a73d1800d2b7fbfba31f0e344b -SIZE (KDE/release-service/25.04.1/filelight-25.04.1.tar.xz) = 689256 +TIMESTAMP = 1749036962 +SHA256 (KDE/release-service/25.04.2/filelight-25.04.2.tar.xz) = cac5f70d02d2518fd5568f86c378677dca45da86180885a38e2cbf0cf10d03aa +SIZE (KDE/release-service/25.04.2/filelight-25.04.2.tar.xz) = 688732 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 2b984911c667..5de94b6e248e 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557955 -SHA256 (KDE/release-service/25.04.1/k3b-25.04.1.tar.xz) = 615b689bc96e3d880a58668aaea75766ff81c60b9583f35bb36addfbee91d222 -SIZE (KDE/release-service/25.04.1/k3b-25.04.1.tar.xz) = 10756084 +TIMESTAMP = 1749036965 +SHA256 (KDE/release-service/25.04.2/k3b-25.04.2.tar.xz) = afa7d50e85cad7998dfc74bf48c88f17be2449d07f8004cd7db49fa0b546ffc2 +SIZE (KDE/release-service/25.04.2/k3b-25.04.2.tar.xz) = 10756808 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 14347fb30346..5b6e21946b9e 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557956 -SHA256 (KDE/release-service/25.04.1/kbackup-25.04.1.tar.xz) = ac032a3d42dee25b5a47d3ea0048a82399b4b9d0dc16f6f482d5ee4de072c330 -SIZE (KDE/release-service/25.04.1/kbackup-25.04.1.tar.xz) = 394888 +TIMESTAMP = 1749036967 +SHA256 (KDE/release-service/25.04.2/kbackup-25.04.2.tar.xz) = db3e82a6f97142b874a6ebe8f1b81eee4a0a8400e7fd523e5150557958ec8bb0 +SIZE (KDE/release-service/25.04.2/kbackup-25.04.2.tar.xz) = 394816 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 9a10ff479f07..a2fab244b954 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557957 -SHA256 (KDE/release-service/25.04.1/kcron-25.04.1.tar.xz) = 2bea888193ad8986b9b71dbee872681a52d50dc79a07e133fe6c4c5290661939 -SIZE (KDE/release-service/25.04.1/kcron-25.04.1.tar.xz) = 900312 +TIMESTAMP = 1749036970 +SHA256 (KDE/release-service/25.04.2/kcron-25.04.2.tar.xz) = e75b35e145d75b391b81eb882d1c8f02d8d0f20561146392490910342ae05f2b +SIZE (KDE/release-service/25.04.2/kcron-25.04.2.tar.xz) = 899968 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index a5d9003167d1..553539960f6f 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557957 -SHA256 (KDE/release-service/25.04.1/kdebugsettings-25.04.1.tar.xz) = c63f443d617fb6f8f42a7b8edfd4f3c65a6f63e3cb94d4b701837c7cd1d714ce -SIZE (KDE/release-service/25.04.1/kdebugsettings-25.04.1.tar.xz) = 121440 +TIMESTAMP = 1749036972 +SHA256 (KDE/release-service/25.04.2/kdebugsettings-25.04.2.tar.xz) = 71a4ab5c383f01c14fb6ff12a15702299bbfd59ae26e08b17f9f93b090fcaafe +SIZE (KDE/release-service/25.04.2/kdebugsettings-25.04.2.tar.xz) = 121292 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index e0b25a05c5ba..11a22f49369d 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557958 -SHA256 (KDE/release-service/25.04.1/kdf-25.04.1.tar.xz) = 85389ea1800f478103f0810982a7a331816da7af0554e89410e7bbd2ad0226af -SIZE (KDE/release-service/25.04.1/kdf-25.04.1.tar.xz) = 481732 +TIMESTAMP = 1749036975 +SHA256 (KDE/release-service/25.04.2/kdf-25.04.2.tar.xz) = 3d868661589daec4bfbd5e608407c6931c0bd5206f815ba88e8059814ad9b88b +SIZE (KDE/release-service/25.04.2/kdf-25.04.2.tar.xz) = 481660 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 0cedbded6671..0510ee39445d 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557959 -SHA256 (KDE/release-service/25.04.1/kdialog-25.04.1.tar.xz) = a41984abf4de55568025f6c45c4d0a948a6374275736957b62bea098e449f62b -SIZE (KDE/release-service/25.04.1/kdialog-25.04.1.tar.xz) = 149388 +TIMESTAMP = 1749036977 +SHA256 (KDE/release-service/25.04.2/kdialog-25.04.2.tar.xz) = 5fa7c856b737f904f2132a176515e281d5da4670736ba288e1aeb9ea651029cd +SIZE (KDE/release-service/25.04.2/kdialog-25.04.2.tar.xz) = 149372 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 8962c07f27f0..810deac7aca9 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557959 -SHA256 (KDE/release-service/25.04.1/khelpcenter-25.04.1.tar.xz) = c409f6029137472700c67fa99e8169a13f4663fdc15daa1b3d02d8d3583342cd -SIZE (KDE/release-service/25.04.1/khelpcenter-25.04.1.tar.xz) = 4248228 +TIMESTAMP = 1749036979 +SHA256 (KDE/release-service/25.04.2/khelpcenter-25.04.2.tar.xz) = 5ac9acabd62787ee31f8898917658533eca175f36198325f09d374802acbeeea +SIZE (KDE/release-service/25.04.2/khelpcenter-25.04.2.tar.xz) = 4248840 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index e7398d1b6536..305db61d4c10 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557960 -SHA256 (KDE/release-service/25.04.1/kpmcore-25.04.1.tar.xz) = c023351c4fd4bffa68fd8d5780e7138b95d147dc630cfa01f10899004ec51606 -SIZE (KDE/release-service/25.04.1/kpmcore-25.04.1.tar.xz) = 670356 +TIMESTAMP = 1749036982 +SHA256 (KDE/release-service/25.04.2/kpmcore-25.04.2.tar.xz) = 31a95cbdca824ddc5df77dd21fdaa42f320f71d786de4674455fb4acca5bb2fd +SIZE (KDE/release-service/25.04.2/kpmcore-25.04.2.tar.xz) = 665488 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 1febec1de47c..0a80a3e187ac 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557961 -SHA256 (KDE/release-service/25.04.1/ksystemlog-25.04.1.tar.xz) = b50a0970c7060f5311616d33c900e969bc9a5a79caa6df332905b72abd77dde4 -SIZE (KDE/release-service/25.04.1/ksystemlog-25.04.1.tar.xz) = 1872204 +TIMESTAMP = 1749036984 +SHA256 (KDE/release-service/25.04.2/ksystemlog-25.04.2.tar.xz) = f79d08ccdb2340d09fc53d97ec9c5c17f94ba52600a3817c01ef9741f173d5e3 +SIZE (KDE/release-service/25.04.2/ksystemlog-25.04.2.tar.xz) = 1872148 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 06a43e03b433..68e7874ae623 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557961 -SHA256 (KDE/release-service/25.04.1/signon-kwallet-extension-25.04.1.tar.xz) = f78fc897c212ce0f099d32fcbe4a5d77cd4360707aee25f6861861aefd756fba -SIZE (KDE/release-service/25.04.1/signon-kwallet-extension-25.04.1.tar.xz) = 11308 +TIMESTAMP = 1749036987 +SHA256 (KDE/release-service/25.04.2/signon-kwallet-extension-25.04.2.tar.xz) = e8032e1862d93c0b3e0ca82e97e719be7e261647cae0b66f46730ed359ac8112 +SIZE (KDE/release-service/25.04.2/signon-kwallet-extension-25.04.2.tar.xz) = 11304 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 1427d4918a9c..cc0c6ec1f471 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557962 -SHA256 (KDE/release-service/25.04.1/sweeper-25.04.1.tar.xz) = 8c63e413c39eab3bf6678470f860d0dbc6df7eed765a426160b3ee4439c6d664 -SIZE (KDE/release-service/25.04.1/sweeper-25.04.1.tar.xz) = 387364 +TIMESTAMP = 1749036989 +SHA256 (KDE/release-service/25.04.2/sweeper-25.04.2.tar.xz) = 752905ee132f4a9bb4f77ad4726d8dc7faf031fe5508724c9c2889c00d39bd51 +SIZE (KDE/release-service/25.04.2/sweeper-25.04.2.tar.xz) = 387376 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index e63a820bffad..5e47030b8235 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557962 -SHA256 (KDE/release-service/25.04.1/arianna-25.04.1.tar.xz) = 49396d0420ebba53b4dcb1b4e78e938bec09211f530663be18ab0c864a529514 -SIZE (KDE/release-service/25.04.1/arianna-25.04.1.tar.xz) = 1167888 +TIMESTAMP = 1749036990 +SHA256 (KDE/release-service/25.04.2/arianna-25.04.2.tar.xz) = 208d23566c2a2cbe02c16041321024c3864e74b177cd13b60812d1b23a4c570d +SIZE (KDE/release-service/25.04.2/arianna-25.04.2.tar.xz) = 1167932 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 20cfd249a02f..49fe9384e141 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557963 -SHA256 (KDE/release-service/25.04.1/kompare-25.04.1.tar.xz) = c1a65e7b47478a7e913d0cf751037b814067c74fd234789b610a73c32f03870a -SIZE (KDE/release-service/25.04.1/kompare-25.04.1.tar.xz) = 964640 +TIMESTAMP = 1749036992 +SHA256 (KDE/release-service/25.04.2/kompare-25.04.2.tar.xz) = ba3c459a01fb7fe92f17a6746278eb610957c49c10cb311601b88c1714356c33 +SIZE (KDE/release-service/25.04.2/kompare-25.04.2.tar.xz) = 964196 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index c89ee7a80495..ccfe481e3d2b 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557964 -SHA256 (KDE/release-service/25.04.1/libkomparediff2-25.04.1.tar.xz) = 8f7d0ccf7553b62fc933df1487477b822cedb4ed0777a3746d12257202494274 -SIZE (KDE/release-service/25.04.1/libkomparediff2-25.04.1.tar.xz) = 189228 +TIMESTAMP = 1749036994 +SHA256 (KDE/release-service/25.04.2/libkomparediff2-25.04.2.tar.xz) = 0f483451b25f462b7d7201d8920959655ac6d7bb4799a003d463a62e213ae079 +SIZE (KDE/release-service/25.04.2/libkomparediff2-25.04.2.tar.xz) = 186380 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 0ab49c51da7a..97ac25f40d55 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557964 -SHA256 (KDE/release-service/25.04.1/markdownpart-25.04.1.tar.xz) = 5f428319841ca83b871f00dfff0100dd23d69f8ccbc9766955a711234a5d8782 -SIZE (KDE/release-service/25.04.1/markdownpart-25.04.1.tar.xz) = 34316 +TIMESTAMP = 1749036997 +SHA256 (KDE/release-service/25.04.2/markdownpart-25.04.2.tar.xz) = 87a451d88c0bd35a7e3cc7c61c75dfc7dad974e7d5d4178801ab319980119fd4 +SIZE (KDE/release-service/25.04.2/markdownpart-25.04.2.tar.xz) = 34344 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 0c93ac0f2293..7db315d1cd1c 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557965 -SHA256 (KDE/release-service/25.04.1/falkon-25.04.1.tar.xz) = af2ffb2cf4c62d17ddfb737e71dfda7a85816d2facf5c82baf23436fcd3bdef0 -SIZE (KDE/release-service/25.04.1/falkon-25.04.1.tar.xz) = 2706012 +TIMESTAMP = 1749036997 +SHA256 (KDE/release-service/25.04.2/falkon-25.04.2.tar.xz) = 8bfda5e95abc463a88241148c81584a30bd443b767818d1225739e681942c988 +SIZE (KDE/release-service/25.04.2/falkon-25.04.2.tar.xz) = 2705656 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index aa2645545756..f641fe156967 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557966 -SHA256 (KDE/release-service/25.04.1/kteatime-25.04.1.tar.xz) = 810d971a868517e735257d97d7e3c32ccc8042ad5efded70aab007dfc2349398 -SIZE (KDE/release-service/25.04.1/kteatime-25.04.1.tar.xz) = 311664 +TIMESTAMP = 1749037000 +SHA256 (KDE/release-service/25.04.2/kteatime-25.04.2.tar.xz) = 310bc80d19f4a2d5572e00d5117886209bcbab188620b130a5b246ce157af5ac +SIZE (KDE/release-service/25.04.2/kteatime-25.04.2.tar.xz) = 311668 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 347cfc5c0904..8fe273ad8714 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557966 -SHA256 (KDE/release-service/25.04.1/ktimer-25.04.1.tar.xz) = 55306a864b63278737bb9d0873a9bb03b1883e6ee50f24cda2175e5f09d46fb9 -SIZE (KDE/release-service/25.04.1/ktimer-25.04.1.tar.xz) = 454580 +TIMESTAMP = 1749037002 +SHA256 (KDE/release-service/25.04.2/ktimer-25.04.2.tar.xz) = d7451332ad66391471f1e7bb92cf8bc1352c7e91deb47a4c34cf82ed40d28c6c +SIZE (KDE/release-service/25.04.2/ktimer-25.04.2.tar.xz) = 454564 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 8fcaf0de483e..006cc56c8119 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557967 -SHA256 (KDE/release-service/25.04.1/dolphin-25.04.1.tar.xz) = 1da30767f62d78edc9b556305c98aac89e063249e432735d2dd478d322e45add -SIZE (KDE/release-service/25.04.1/dolphin-25.04.1.tar.xz) = 5740512 +TIMESTAMP = 1749037005 +SHA256 (KDE/release-service/25.04.2/dolphin-25.04.2.tar.xz) = 8c83c4937b7b47935b778ecd01a7d41da0626e7813da63345157d57d087297f0 +SIZE (KDE/release-service/25.04.2/dolphin-25.04.2.tar.xz) = 5741176 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 7c6553fe79e5..b378fd98dd42 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557968 -SHA256 (KDE/release-service/25.04.1/konqueror-25.04.1.tar.xz) = d5ac0ef80aa40ed732203f6007e826e18c4c5dc58da3e03c2155191837cbaa37 -SIZE (KDE/release-service/25.04.1/konqueror-25.04.1.tar.xz) = 9824292 +TIMESTAMP = 1749037007 +SHA256 (KDE/release-service/25.04.2/konqueror-25.04.2.tar.xz) = 73d9a0bc70b028e4f274b04f7e8bf095fa5a90b342a4c6424b3769f92d532e5d +SIZE (KDE/release-service/25.04.2/konqueror-25.04.2.tar.xz) = 9814272 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 8e2ba4e2e68b..29893b4e02ee 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557968 -SHA256 (KDE/release-service/25.04.1/konsole-25.04.1.tar.xz) = 961edfa0a3450fe06172a30a7b72cf810956a88b562847202feb8706068e745e -SIZE (KDE/release-service/25.04.1/konsole-25.04.1.tar.xz) = 1848088 +TIMESTAMP = 1749037009 +SHA256 (KDE/release-service/25.04.2/konsole-25.04.2.tar.xz) = 69cd6c7e84cbcb3df41227cd3115498a5aaddca6641802898d79e5b4e467bbfb +SIZE (KDE/release-service/25.04.2/konsole-25.04.2.tar.xz) = 1848068 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index e8b78a282477..ddfded4c94cc 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746557969 -SHA256 (KDE/release-service/25.04.1/yakuake-25.04.1.tar.xz) = f246ad33f467b087393b1fbe431f7da34749d67abb4c002ff23b333855c089dd -SIZE (KDE/release-service/25.04.1/yakuake-25.04.1.tar.xz) = 404028 +TIMESTAMP = 1749037012 +SHA256 (KDE/release-service/25.04.2/yakuake-25.04.2.tar.xz) = 65fcec29c442c8b54527f7d06e125060bf39997413f561e146be4b5cbd0bb963 +SIZE (KDE/release-service/25.04.2/yakuake-25.04.2.tar.xz) = 404112