diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 25ab4bd11dfd..419b13cf40ae 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1064 +1,1064 @@ # 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.6.2 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.23.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.12.2 -KDE_APPLICATIONS6_SHLIB_VER?= 6.6.2 +KDE_APPLICATIONS6_VERSION?= 25.12.3 +KDE_APPLICATIONS6_SHLIB_VER?= 6.6.3 # G as in KDE Gear, and as in "don't make the variable name longer than required". KDE_APPLICATIONS6_SHLIB_G_VER?= ${KDE_APPLICATIONS6_VERSION} KDE_APPLICATIONS6_BRANCH?= stable # Some projects despite being a part of Gear distribution continue to use # their own versioning with mangled KDE_APPLICATIONS_VERSION as a patchlevel. # Provide more variables to ease their maintenance. KDE_APPS_MAJOR= ${KDE_APPLICATIONS_VERSION:R:R} KDE_APPS_MINOR= ${KDE_APPLICATIONS_VERSION:R:E} . if ${KDE_APPLICATIONS_BRANCH:Mstable} KDE_APPS_MICRO= 0${KDE_APPLICATIONS_VERSION:E} . else KDE_APPS_MICRO= ${KDE_APPLICATIONS_VERSION:E} . endif KDE_APPS_BASED_PATCHLEVEL?= ${KDE_APPS_MAJOR}${KDE_APPS_MINOR}${KDE_APPS_MICRO} # ============================================================================== # === INSTALLATION PREFIXES AND HEADER LOCATION ================================ # Define unversioned prefix variable. KDE_PREFIX= ${LOCALBASE} # ============================================================================== # === CATEGORIES HANDLING -- SETTING DEFAULT VALUES ============================ # Doing MASTER_SITES magic based on the category of the port _KDE_CATEGORIES_SUPPORTED= kde-applications kde-frameworks kde-plasma kde-devel . for cat in ${_KDE_CATEGORIES_SUPPORTED:Nkde-devel} . if ${CATEGORIES:M${cat}} . if !defined(_KDE_CATEGORY) _KDE_CATEGORY= ${cat} . else IGNORE?= cannot be installed: multiple kde-<...> categories specified via CATEGORIES=${CATEGORIES} #' . endif . endif . endfor # Doing source-selection if the sources are on KDE invent . if defined(KDE_INVENT) _invent_hash= ${KDE_INVENT:[1]} _invent_category= ${KDE_INVENT:[2]} _invent_name= ${KDE_INVENT:[3]} # Fill in default values if bits are missing . if empty(_invent_category) _invent_category= ${CATEGORIES:Nkde:[1]} . endif . if empty(_invent_name) _invent_name= ${PORTNAME} . endif # If valid, use it for GitLab . if empty(_invent_hash) || empty(_invent_category) || empty(_invent_name) IGNORE?= invalid KDE_INVENT value '${KDE_INVENT}' . else USE_GITLAB= yes GL_SITE= https://invent.kde.org GL_ACCOUNT= ${_invent_category} GL_PROJECT= ${_invent_name} GL_TAGNAME= ${_invent_hash} . endif . endif . if defined(_KDE_CATEGORY) # KDE is normally licensed under the LGPL 2.0. LICENSE?= LGPL20 # Set CPE Vendor Information # As _KDE_CATEGORY is set we can assume it is port release by KDE and the # vendor is therefore kde. CPE_VENDOR?= kde . if ${_KDE_CATEGORY:Mkde-applications} PORTVERSION?= ${KDE_APPLICATIONS_VERSION} MASTER_SITES?= KDE/${KDE_APPLICATIONS_BRANCH}/release-service/${KDE_APPLICATIONS_VERSION}/src # Let bsd.port.mk create the plist-entries for the documentation. # KDE Applications ports install their documentation to # ${PREFIX}/share/doc. This is only done if the port # defines OPTION DOCS -- the _KDE_OPTIONS here is to # avoid make errors when there are no options defined at all. _KDE_OPTIONS= bogus ${OPTIONS_DEFINE} . if ${_KDE_OPTIONS:MDOCS} DOCSDIR= ${PREFIX}/share/doc PORTDOCS?= HTML/* USE_KDE+= doctools:build . endif # Further pass along a SHLIB_VER PLIST_SUB PLIST_SUB+= KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_SHLIB_VER} \ KDE_APPLICATIONS_VERSION_SHORT="${KDE_APPLICATIONS_VERSION:R:R}" . if defined(_${PORTNAME}_PROJECT_VERSION) PLIST_SUB+= SHLIB_VER_LONG=${_${PORTNAME}_PROJECT_VERSION}.${KDE_APPS_BASED_PATCHLEVEL} . endif DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma${_KDE_VERSION}- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} WWW?= https://kde.org/plasma-desktop/ . if ${_KDE_VERSION:M6} DESCR= ${.CURDIR:H:H}/x11/plasma6-plasma/pkg-descr . endif . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf${_KDE_VERSION}- WWW?= https://api.kde.org/${PORTNAME}-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 . if ${_KDE_VERSION:M5} PORTSCOUT= limit:^5\. . endif . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP LOCALE ENVIRONMENT ================================================= USE_LOCALE?= en_US.UTF-8 # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true KDE_MAN_PREFIX?= ${KDE_PREFIX}/share/man # Enforce the chosen Qt Version CMAKE_ARGS+= -DQT_MAJOR_VERSION=${_QT_VER} # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== # List of all USE_KDE components. # TODO for KDE 7: do not mangle upstream naming: use the same name # for port directory, PORTNAME, and USE_KDE component. # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. _USE_PORTINGAIDS_ALL= js jsembed kdelibs4support khtml mediaplayer kross # List of components of the KDE Frameworks distribution. # Not ported to FreeBSD: bluez-qt modemmanagerqt _USE_FRAMEWORKS5_ALL= activities activities-stats apidox archive attica \ auth baloo bookmarks breeze-icons calendarcore \ codecs completion config configwidgets contacts \ coreaddons crash dbusaddons designerplugin dnssd \ doctools ecm emoticons filemetadata frameworkintegration \ globalaccel guiaddons holidays i18n iconthemes \ idletime init itemmodels itemviews jobwidgets \ kcmutils kdav kdeclarative kded kdesu kimageformats \ kio kirigami2 kquickcharts newstuff notifications \ notifyconfig package parts people plasma-framework \ plotting prison pty purpose qqc2-desktop-style \ runner service solid sonnet syndication \ syntaxhighlighting texteditor textwidgets \ threadweaver unitconversion wallet wayland \ widgetsaddons windowsystem xmlgui xmlrpcclient \ ${_USE_PORTINGAIDS_ALL} _USE_FRAMEWORKS6_ALL= apidox archive attica auth baloo bookmarks \ breeze-icons calendarcore codecs colorscheme \ completion config configwidgets contacts coreaddons \ crash dbusaddons dnssd doctools ecm filemetadata \ frameworkintegration globalaccel guiaddons holidays \ i18n iconthemes idletime itemmodels itemviews \ jobwidgets kcmutils kdav kdeclarative kded kdesu \ kimageformats kio kirigami2 kquickcharts newstuff \ networkmanagerqt notifications notifyconfig package parts \ people plotting prison pty purpose \ qqc2-desktop-style runner service solid sonnet \ statusnotifieritem svg syndication \ syntaxhighlighting texteditor texttemplate \ textwidgets threadweaver unitconversion userfeedback \ wallet widgetsaddons windowsystem xmlgui _USE_FRAMEWORKS_ALL= ${_USE_FRAMEWORKS${_KDE_VERSION}_ALL} # List of components of the KDE Plasma distribution. _USE_PLASMA5_ALL= libksysguard oxygen-sounds _USE_PLASMA6_ALL= activities activities-stats activitymanagerd \ aurorae breeze breeze-gtk decoration discover \ globalacceld infocenter kde-cli-tools \ kde-gtk-config kdeplasma-addons kgamma kmenuedit \ knighttime \ kpipewire kscreen kscreenlocker ksshaskpass \ ksystemstats kwallet-pam kwin kwin-x11 kwrited \ layer-shell-qt libkscreen libksysguard libplasma \ milou ocean-sound-theme oxygen oxygen-sounds \ plasma-browser-integration plasma-desktop \ plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace \ plasma-workspace-wallpapers plasma5support \ polkit-kde-agent-1 powerdevil print-manager \ qqc2-breeze-style sddm-kcm spectacle systemmonitor \ systemsettings wayland xdg-desktop-portal-kde _USE_PLASMA_ALL= ${_USE_PLASMA${_KDE_VERSION}_ALL} # List of frequently used components of the KDE Gears distribution. _USE_GEAR5_ALL= libkdcraw _USE_GEAR6_ALL= baloo-widgets kosm kpublictransport \ libkcddb libkcompactdisc libkdcraw \ libkdegames libkeduvocdocument libkexiv2 \ libksane marble okular _USE_GEAR_ALL= ${_USE_GEAR${_KDE_VERSION}_ALL} # List of components of the KDE PIM distribution (part of KDE Gears). _USE_KDEPIM_ALL= akonadi akonadicalendar akonadiconsole \ akonadicontacts akonadiimportwizard akonadimime \ akonadisearch akregator calendarsupport \ calendarutils eventviews gapi grantlee-editor \ grantleetheme gravatar identitymanagement imap \ incidenceeditor kaddressbook kalarm kdepim-addons \ kdepim-runtime kitinerary kmail kmail-account-wizard \ kontact kontactinterface korganizer kpkpass ksmtp \ ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox mbox-importer \ messagelib mime mimetreeparser pim-data-exporter \ pimcommon pimtextedit tnef # List of frequently used KDE releated software for any KDE/Qt version. _USE_KDE_EXTRA5_ALL= kirigami-addons phonon phonon-vlc \ plasma-wayland-protocols _USE_KDE_EXTRA6_ALL= kirigami-addons phonon phonon-mpv phonon-vlc \ plasma-wayland-protocols ktextaddons _USE_KDE_EXTRA_ALL= ${_USE_KDE_EXTRA${_KDE_VERSION}_ALL} _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} _USE_KDE6_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM_ALL} \ ${_USE_GEAR_ALL} \ ${_USE_KDE_EXTRA_ALL} # ====================== frameworks components ================================= kde-activities_PORT5= x11/kf${_KDE_VERSION}-kactivities kde-activities_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities kde-activities_PORT= ${kde-activities_PORT${_KDE_VERSION}} kde-activities_LIB5= libKF${_KDE_VERSION}Activities.so kde-activities_LIB6= libPlasmaActivities.so kde-activities_LIB= ${kde-activities_LIB${_KDE_VERSION}} kde-activities-stats_PORT5= x11/kf${_KDE_VERSION}-kactivities-stats kde-activities-stats_PORT6= x11/plasma${_KDE_VERSION}-plasma-activities-stats kde-activities-stats_PORT= ${kde-activities-stats_PORT${_KDE_VERSION}} kde-activities-stats_LIB5= libKF${_KDE_VERSION}ActivitiesStats.so kde-activities-stats_LIB6= libPlasmaActivitiesStats.so kde-activities-stats_LIB= ${kde-activities-stats_LIB${_KDE_VERSION}} # Use KApiDox tools from KDE Frameworks 6 kde-apidox_PORT= devel/kf6-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf${_KDE_VERSION}-karchive kde-archive_LIB= libKF${_KDE_VERSION}Archive.so kde-attica_PORT= x11-toolkits/kf${_KDE_VERSION}-attica kde-attica_LIB= libKF${_KDE_VERSION}Attica.so kde-auth_PORT= devel/kf${_KDE_VERSION}-kauth kde-auth_LIB= libKF${_KDE_VERSION}AuthCore.so kde-baloo_PORT= sysutils/kf${_KDE_VERSION}-baloo kde-baloo_LIB= libKF${_KDE_VERSION}Baloo.so kde-bookmarks_PORT= devel/kf${_KDE_VERSION}-kbookmarks kde-bookmarks_LIB= libKF${_KDE_VERSION}Bookmarks.so # Use the latest icons from KDE Frameworks 6 kde-breeze-icons_PORT= x11-themes/kf6-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-codecs_PORT= textproc/kf${_KDE_VERSION}-kcodecs kde-codecs_LIB= libKF${_KDE_VERSION}Codecs.so kde-completion_PORT= x11-toolkits/kf${_KDE_VERSION}-kcompletion kde-completion_LIB= libKF${_KDE_VERSION}Completion.so kde-config_PORT= devel/kf${_KDE_VERSION}-kconfig kde-config_LIB= libKF${_KDE_VERSION}ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kconfigwidgets kde-configwidgets_LIB= libKF${_KDE_VERSION}ConfigWidgets.so kde-coreaddons_PORT= devel/kf${_KDE_VERSION}-kcoreaddons kde-coreaddons_LIB= libKF${_KDE_VERSION}CoreAddons.so kde-crash_PORT= devel/kf${_KDE_VERSION}-kcrash kde-crash_LIB= libKF${_KDE_VERSION}Crash.so kde-dbusaddons_PORT= devel/kf${_KDE_VERSION}-kdbusaddons kde-dbusaddons_LIB= libKF${_KDE_VERSION}DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf${_KDE_VERSION}-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf${_KDE_VERSION}-kdnssd kde-dnssd_LIB= libKF${_KDE_VERSION}DNSSD.so kde-doctools_PORT= devel/kf${_KDE_VERSION}-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc${_KDE_VERSION} # Use ECM from KDE Frameworks 6 for everything kde-ecm_PORT= devel/kf6-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf${_KDE_VERSION}-kemoticons kde-emoticons_LIB= libKF${_KDE_VERSION}Emoticons.so kde-filemetadata_PORT= devel/kf${_KDE_VERSION}-kfilemetadata kde-filemetadata_LIB= libKF${_KDE_VERSION}FileMetaData.so kde-frameworkintegration_PORT= x11/kf${_KDE_VERSION}-frameworkintegration kde-frameworkintegration_LIB= libKF${_KDE_VERSION}Style.so kde-globalaccel_PORT= x11/kf${_KDE_VERSION}-kglobalaccel kde-globalaccel_LIB= libKF${_KDE_VERSION}GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kguiaddons kde-guiaddons_LIB= libKF${_KDE_VERSION}GuiAddons.so kde-holidays_PORT= net/kf${_KDE_VERSION}-kholidays kde-holidays_LIB= libKF${_KDE_VERSION}Holidays.so kde-i18n_PORT= devel/kf${_KDE_VERSION}-ki18n kde-i18n_LIB= libKF${_KDE_VERSION}I18n.so kde-iconthemes_PORT= x11-themes/kf${_KDE_VERSION}-kiconthemes kde-iconthemes_LIB= libKF${_KDE_VERSION}IconThemes.so kde-idletime_PORT= devel/kf${_KDE_VERSION}-kidletime kde-idletime_LIB= libKF${_KDE_VERSION}IdleTime.so kde-init_PORT= x11/kf${_KDE_VERSION}-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf${_KDE_VERSION}-kitemmodels kde-itemmodels_LIB= libKF${_KDE_VERSION}ItemModels.so kde-itemviews_PORT= x11-toolkits/kf${_KDE_VERSION}-kitemviews kde-itemviews_LIB= libKF${_KDE_VERSION}ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-kjobwidgets kde-jobwidgets_LIB= libKF${_KDE_VERSION}JobWidgets.so kde-js_PORT= www/kf${_KDE_VERSION}-kjs kde-js_LIB= libKF${_KDE_VERSION}JS.so kde-jsembed_PORT= www/kf${_KDE_VERSION}-kjsembed kde-jsembed_LIB= libKF${_KDE_VERSION}JsEmbed.so kde-kcmutils_PORT= devel/kf${_KDE_VERSION}-kcmutils kde-kcmutils_LIB= libKF${_KDE_VERSION}KCMUtils.so kde-kdeclarative_PORT= devel/kf${_KDE_VERSION}-kdeclarative kde-kdeclarative_LIB5= libKF${_KDE_VERSION}Declarative.so kde-kdeclarative_LIB6= libKF${_KDE_VERSION}CalendarEvents.so kde-kdeclarative_LIB= ${kde-kdeclarative_LIB${_KDE_VERSION}} kde-kded_PORT= x11/kf${_KDE_VERSION}-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded${_KDE_VERSION} kde-kdelibs4support_PORT= x11/kf${_KDE_VERSION}-kdelibs4support kde-kdelibs4support_LIB= libKF${_KDE_VERSION}KDELibs4Support.so kde-kdesu_PORT= security/kf${_KDE_VERSION}-kdesu kde-kdesu_LIB= libKF${_KDE_VERSION}Su.so kde-khtml_PORT= www/kf${_KDE_VERSION}-khtml kde-khtml_LIB= libKF${_KDE_VERSION}KHtml.so kde-kimageformats_PORT= graphics/kf${_KDE_VERSION}-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf${_KDE_VERSION}-kio kde-kio_LIB= libKF${_KDE_VERSION}KIOCore.so kde-kirigami2_PORT5= x11-toolkits/kf${_KDE_VERSION}-kirigami2 kde-kirigami2_PORT6= x11-toolkits/kf${_KDE_VERSION}-kirigami kde-kirigami2_PATH5= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kirigami2_PATH6= ${QT_QMLDIR}/org/kde/kirigami/libKirigamiplugin.so kde-kirigami2_PORT= ${kde-kirigami2_PORT${_KDE_VERSION}} kde-kirigami2_PATH= ${kde-kirigami2_PATH${_KDE_VERSION}} kde-kquickcharts_PORT= graphics/kf${_KDE_VERSION}-kquickcharts kde-kquickcharts_PATH5= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kquickcharts_PATH6= ${QT_QMLDIR}/org/kde/quickcharts/libQuickChartsplugin.so kde-kquickcharts_PATH= ${kde-kquickcharts_PATH${_KDE_VERSION}} kde-kross_PORT= lang/kf${_KDE_VERSION}-kross kde-kross_LIB= libKF${_KDE_VERSION}KrossCore.so kde-layer-shell-qt_PORT= x11/plasma${_KDE_VERSION}-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf${_KDE_VERSION}-kmediaplayer kde-mediaplayer_LIB= libKF${_KDE_VERSION}MediaPlayer.so.5 kde-networkmanagerqt_PORT= net-mgmt/kf${_KDE_VERSION}-networkmanager-qt kde-networkmanagerqt_LIB= libKF${_KDE_VERSION}NetworkManagerQt.so kde-newstuff_PORT= devel/kf${_KDE_VERSION}-knewstuff kde-newstuff_LIB= libKF${_KDE_VERSION}NewStuffCore.so kde-notifications_PORT= devel/kf${_KDE_VERSION}-knotifications kde-notifications_LIB= libKF${_KDE_VERSION}Notifications.so kde-notifyconfig_PORT= devel/kf${_KDE_VERSION}-knotifyconfig kde-notifyconfig_LIB= libKF${_KDE_VERSION}NotifyConfig.so # Use the latest sounds from Plasma 6 kde-oxygen-sounds_PORT= audio/plasma6-oxygen-sounds kde-oxygen-sounds_PATH= ${KDE_PREFIX}/share/sounds/Oxygen-Sys-Log-In.ogg kde-oxygen-sounds_TYPE= run kde-package_PORT= devel/kf${_KDE_VERSION}-kpackage kde-package_LIB= libKF${_KDE_VERSION}Package.so kde-parts_PORT= devel/kf${_KDE_VERSION}-kparts kde-parts_LIB= libKF${_KDE_VERSION}Parts.so kde-people_PORT= devel/kf${_KDE_VERSION}-kpeople kde-people_LIB= libKF${_KDE_VERSION}People.so kde-plasma-framework_PORT= x11/kf${_KDE_VERSION}-plasma-framework kde-plasma-framework_LIB= libKF${_KDE_VERSION}Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/share/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf${_KDE_VERSION}-kplotting kde-plotting_LIB= libKF${_KDE_VERSION}Plotting.so kde-prison_PORT= graphics/kf${_KDE_VERSION}-prison kde-prison_LIB= libKF${_KDE_VERSION}Prison.so kde-pty_PORT= devel/kf${_KDE_VERSION}-kpty kde-pty_LIB= libKF${_KDE_VERSION}Pty.so kde-purpose_PORT= misc/kf${_KDE_VERSION}-purpose kde-purpose_LIB= libKF${_KDE_VERSION}Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf${_KDE_VERSION}-qqc2-desktop-style kde-qqc2-desktop-style_PATH5= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/org.kde.desktop.so kde-qqc2-desktop-style_PATH6= ${QT_QMLDIR}/org/kde/desktop/liborg_kde_desktop.so kde-qqc2-desktop-style_PATH= ${kde-qqc2-desktop-style_PATH${_KDE_VERSION}} kde-runner_PORT= x11/kf${_KDE_VERSION}-krunner kde-runner_LIB= libKF${_KDE_VERSION}Runner.so kde-service_PORT= devel/kf${_KDE_VERSION}-kservice kde-service_LIB= libKF${_KDE_VERSION}Service.so kde-solid_PORT= devel/kf${_KDE_VERSION}-solid kde-solid_LIB= libKF${_KDE_VERSION}Solid.so kde-sonnet_PORT= textproc/kf${_KDE_VERSION}-sonnet kde-sonnet_LIB= libKF${_KDE_VERSION}SonnetCore.so kde-syndication_PORT= net/kf${_KDE_VERSION}-syndication kde-syndication_LIB= libKF${_KDE_VERSION}Syndication.so kde-syntaxhighlighting_PORT= textproc/kf${_KDE_VERSION}-syntax-highlighting kde-syntaxhighlighting_LIB= libKF${_KDE_VERSION}SyntaxHighlighting.so kde-texteditor_PORT= devel/kf${_KDE_VERSION}-ktexteditor kde-texteditor_LIB= libKF${_KDE_VERSION}TextEditor.so kde-texttemplate_PORT= devel/kf${_KDE_VERSION}-ktexttemplate kde-texttemplate_LIB= libKF${_KDE_VERSION}TextTemplate.so kde-textwidgets_PORT= x11-toolkits/kf${_KDE_VERSION}-ktextwidgets kde-textwidgets_LIB= libKF${_KDE_VERSION}TextWidgets.so kde-threadweaver_PORT= devel/kf${_KDE_VERSION}-threadweaver kde-threadweaver_LIB= libKF${_KDE_VERSION}ThreadWeaver.so kde-unitconversion_PORT= devel/kf${_KDE_VERSION}-kunitconversion kde-unitconversion_LIB= libKF${_KDE_VERSION}UnitConversion.so kde-wallet_PORT= sysutils/kf${_KDE_VERSION}-kwallet kde-wallet_LIB= libKF${_KDE_VERSION}Wallet.so kde-wayland_PORT5= x11/kf${_KDE_VERSION}-kwayland kde-wayland_PORT6= x11/plasma${_KDE_VERSION}-kwayland kde-wayland_PORT= ${kde-wayland_PORT${_KDE_VERSION}} kde-wayland_LIB5= libKF${_KDE_VERSION}WaylandClient.so kde-wayland_LIB6= libKWaylandClient.so kde-wayland_LIB= ${kde-wayland_LIB${_KDE_VERSION}} kde-widgetsaddons_PORT= x11-toolkits/kf${_KDE_VERSION}-kwidgetsaddons kde-widgetsaddons_LIB= libKF${_KDE_VERSION}WidgetsAddons.so kde-windowsystem_PORT= x11/kf${_KDE_VERSION}-kwindowsystem kde-windowsystem_LIB= libKF${_KDE_VERSION}WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf${_KDE_VERSION}-kxmlgui kde-xmlgui_LIB= libKF${_KDE_VERSION}XmlGui.so kde-xmlrpcclient_PORT= net/kf${_KDE_VERSION}-kxmlrpcclient kde-xmlrpcclient_LIB= libKF${_KDE_VERSION}XmlRpcClient.so kde-calendarcore_PORT= net/kf${_KDE_VERSION}-kcalendarcore kde-calendarcore_LIB= libKF${_KDE_VERSION}CalendarCore.so kde-contacts_PORT= net/kf${_KDE_VERSION}-kcontacts kde-contacts_LIB= libKF${_KDE_VERSION}Contacts.so kde-kdav_PORT= net/kf${_KDE_VERSION}-kdav kde-kdav_LIB= libKF${_KDE_VERSION}DAV.so kde-colorscheme_PORT= x11-themes/kf${_KDE_VERSION}-kcolorscheme kde-colorscheme_LIB= libKF${_KDE_VERSION}ColorScheme.so kde-svg_PORT= graphics/kf${_KDE_VERSION}-ksvg kde-svg_LIB= libKF${_KDE_VERSION}Svg.so kde-statusnotifieritem_PORT= deskutils/kf6-kstatusnotifieritem kde-statusnotifieritem_LIB= libKF${_KDE_VERSION}StatusNotifierItem.so kde-userfeedback_PORT= sysutils/kf6-kuserfeedback kde-userfeedback_LIB= libKF${_KDE_VERSION}UserFeedbackCore.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-kpipewire_PORT= audio/plasma${_KDE_VERSION}-kpipewire kde-kpipewire_LIB= libKPipeWire.so kde-activitymanagerd_PORT= x11/plasma${_KDE_VERSION}-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-aurorae_PORT= x11-themes/plasma${_KDE_VERSION}-aurorae kde-aurorae_PATH= ${KDE_PREFIX}/lib/libexec/plasma-apply-aurorae kde-breeze_PORT= x11-themes/plasma${_KDE_VERSION}-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma${_KDE_VERSION}-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma${_KDE_VERSION}-kdecoration kde-decoration_LIB= libkdecorations3.so kde-discover_PORT= sysutils/plasma${_KDE_VERSION}-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-infocenter_PORT= sysutils/plasma${_KDE_VERSION}-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma${_KDE_VERSION}-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kde-open kde-kde-gtk-config_PORT= x11-themes/plasma${_KDE_VERSION}-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma${_KDE_VERSION}-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma_PORT= x11/plasma${_KDE_VERSION}-kgamma kde-kgamma_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings_qwidgets/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma${_KDE_VERSION}-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-knighttime_PORT= sysutils/plasma${_KDE_VERSION}-knighttime kde-knighttime_LIB= libKNightTime.so kde-kscreen_PORT= x11/plasma${_KDE_VERSION}-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma${_KDE_VERSION}-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma${_KDE_VERSION}-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksystemstats_PORT= sysutils/plasma${_KDE_VERSION}-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma${_KDE_VERSION}-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwin_PORT= x11-wm/plasma${_KDE_VERSION}-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_wayland kde-kwin-x11_PORT= x11-wm/plasma${_KDE_VERSION}-kwin-x11 kde-kwin-x11_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma${_KDE_VERSION}-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kded/kwrited.so kde-libkscreen_PORT= x11/plasma${_KDE_VERSION}-libkscreen kde-libkscreen_LIB= libKF${_KDE_VERSION}Screen.so kde-libksysguard_PORT= sysutils/plasma${_KDE_VERSION}-libksysguard kde-libksysguard_LIB5= libksgrd.so kde-libksysguard_LIB6= libKSysGuardSystemStats.so kde-libksysguard_LIB= ${kde-libksysguard_LIB${_KDE_VERSION}} kde-milou_PORT= deskutils/plasma${_KDE_VERSION}-milou kde-milou_PATH= ${QT_QMLDIR}/org/kde/milou/libmilou.so kde-ocean-sound-theme_PORT= audio/plasma${_KDE_VERSION}-ocean-sound-theme kde-ocean-sound-theme_PATH= ${KDE_PREFIX}/share/sounds/ocean/index.theme kde-ocean-sound-theme_TYPE= run kde-oxygen_PORT= x11-themes/plasma${_KDE_VERSION}-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/kstyle_config/kstyle_oxygen_config.so kde-plasma-browser-integration_PORT= www/plasma${_KDE_VERSION}-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma${_KDE_VERSION}-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma${_KDE_VERSION}-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kf6/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma${_KDE_VERSION}-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme6.so kde-plasma-pa_PORT= audio/plasma${_KDE_VERSION}-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma${_KDE_VERSION}-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma${_KDE_VERSION}-plasma-workspace kde-plasma-workspace_LIB= libkworkspace${_KDE_VERSION}.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma${_KDE_VERSION}-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma${_KDE_VERSION}-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma${_KDE_VERSION}-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-print-manager_PORT= print/plasma${_KDE_VERSION}-print-manager kde-print-manager_PATH= ${KDE_PREFIX}/bin/kde-print-queue kde-print-manager_TYPE= run kde-spectacle_PORT= graphics/plasma${_KDE_VERSION}-spectacle kde-spectacle_PATH= ${KDE_PREFIX}/bin/spectacle kde-spectacle_TYPE= run kde-systemmonitor_PORT= sysutils/plasma${_KDE_VERSION}-plasma-systemmonitor kde-systemmonitor_PATH= ${KDE_PREFIX}/bin/plasma-systemmonitor kde-systemmonitor_TYPE= run kde-systemsettings_PORT= sysutils/plasma${_KDE_VERSION}-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings kde-xdg-desktop-portal-kde_PORT= deskutils/plasma${_KDE_VERSION}-xdg-desktop-portal-kde kde-xdg-desktop-portal-kde_PATH= ${KDE_PREFIX}/lib/libexec/xdg-desktop-portal-kde kde-plasma5support_PORT= devel/plasma${_KDE_VERSION}-plasma5support kde-plasma5support_LIB= libPlasma5Support.so kde-qqc2-breeze-style_PORT= x11-themes/plasma${_KDE_VERSION}-qqc2-breeze-style kde-qqc2-breeze-style_PATH= ${QT_PLUGINDIR}/kf${_KDE_VERSION}/kirigami/platform/org.kde.breeze.so kde-sddm-kcm_PORT= deskutils/plasma${_KDE_VERSION}-sddm-kcm kde-sddm-kcm_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_sddm.so kde-sddm-kcm_TYPE= run kde-kirigami-addons_PORT= x11-toolkits/kirigami-addons-qt${_KDE_VERSION} kde-kirigami-addons_PATH= ${QT_QMLDIR}/org/kde/kirigamiaddons/components/libcomponentsplugin.so kde-globalacceld_PORT= x11/plasma${_KDE_VERSION}-kglobalacceld kde-globalacceld_PATH= ${QT_PLUGINDIR}/org.kde.kglobalacceld.platforms/KGlobalAccelDXcb.so kde-libplasma_PORT= x11/plasma${_KDE_VERSION}-libplasma kde-libplasma_LIB= libPlasma.so # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKPim${_KDE_VERSION}AkonadiContactCore.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPim${_KDE_VERSION}ImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKPim${_KDE_VERSION}AkonadiMime.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKPim${_KDE_VERSION}AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKPim${_KDE_VERSION}AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKPim${_KDE_VERSION}CalendarSupport.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKPim${_KDE_VERSION}CalendarUtils.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKPim${_KDE_VERSION}EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPim${_KDE_VERSION}GAPIBlogger.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKPim${_KDE_VERSION}GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKPim${_KDE_VERSION}Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKPim${_KDE_VERSION}IdentityManagementCore.so kde-imap_PORT= net/kimap kde-imap_LIB= libKPim${_KDE_VERSION}IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKPim${_KDE_VERSION}IncidenceEditor.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim${_KDE_VERSION}/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime_PORT= deskutils/kdepim-runtime kde-kdepim-runtime_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPim${_KDE_VERSION}Itinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKPim${_KDE_VERSION}KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPim${_KDE_VERSION}PkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPim${_KDE_VERSION}SMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKPim${_KDE_VERSION}LdapCore.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKPim${_KDE_VERSION}Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKPim${_KDE_VERSION}Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKPim${_KDE_VERSION}KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKPim${_KDE_VERSION}MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKPim${_KDE_VERSION}MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKPim${_KDE_VERSION}MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKPim${_KDE_VERSION}Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKPim${_KDE_VERSION}MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKPim${_KDE_VERSION}Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKPim${_KDE_VERSION}PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKPim${_KDE_VERSION}TextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKPim${_KDE_VERSION}Tnef.so kde-ktextaddons_PORT= devel/ktextaddons kde-ktextaddons_LIB= libKF${_KDE_VERSION}TextAutoCorrectionCore.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-mimetreeparser_PORT= net/mimetreeparser kde-mimetreeparser_LIB= libKPim${_KDE_VERSION}MimeTreeParserCore.so kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi_PORT= databases/akonadi kde-akonadi_LIB= libKPim${_KDE_VERSION}AkonadiPrivate.so kde-baloo-widgets_PORT= sysutils/baloo-widgets kde-baloo-widgets_LIB= libKF${_KDE_VERSION}BalooWidgets.so kde-libkcddb_PORT= audio/libkcddb kde-libkcddb_LIB= libKCddb${_KDE_VERSION}.so kde-libkcompactdisc_PORT= audio/libkcompactdisc kde-libkcompactdisc_LIB= libKF${_KDE_VERSION}CompactDisc.so kde-libkdcraw_PORT= graphics/libkdcraw@qt${_KDE_VERSION} kde-libkdcraw_LIB5= libKF${_KDE_VERSION}KDcraw.so kde-libkdcraw_LIB6= libKDcrawQt${_KDE_VERSION}.so kde-libkdcraw_LIB= ${kde-libkdcraw_LIB${_KDE_VERSION}} kde-libkdegames_PORT= games/libkdegames kde-libkdegames_LIB= libKDEGames${_KDE_VERSION}.so kde-libkeduvocdocument_PORT= misc/libkeduvocdocument kde-libkeduvocdocument_LIB= libKEduVocDocument.so kde-libkexiv2_PORT= graphics/libkexiv2 kde-libkexiv2_LIB= libKExiv2Qt6.so kde-libksane_PORT= graphics/libksane kde-libksane_LIB= libKSaneWidgets${_KDE_VERSION}.so kde-marble_PORT= astro/marble kde-marble_LIB= libmarblewidget-qt6.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular_PORT= graphics/okular kde-okular_LIB= libOkular${_KDE_VERSION}Core.so kde-phonon_PORT= multimedia/phonon@${_QT_RELNAME} kde-phonon_LIB= libphonon4${_QT_RELNAME}.so kde-phonon-mpv_PORT= multimedia/phonon-mpv kde-phonon-mpv_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_mpv_${_QT_RELNAME}.so kde-phonon-mpv_TYPE= run kde-phonon-vlc_PORT= multimedia/phonon-vlc@${_QT_RELNAME} kde-phonon-vlc_PATH= ${QT_PLUGINDIR}/phonon4${_QT_RELNAME}_backend/phonon_vlc_${_QT_RELNAME}.so kde-phonon-vlc_TYPE= run # ====================== end of multiversion components ======================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/:.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}\:*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}\:build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}\:run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index 2acbd41d3dd5..df0255c31ed5 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570520 -SHA256 (KDE/release-service/25.12.2/kmag-25.12.2.tar.xz) = 063ba240409da6f3ff726dc859cc46a1fa0008b8703a750f98d01763efb88cf0 -SIZE (KDE/release-service/25.12.2/kmag-25.12.2.tar.xz) = 680420 +TIMESTAMP = 1772541758 +SHA256 (KDE/release-service/25.12.3/kmag-25.12.3.tar.xz) = fad2b53162bf0cd1bb751fcf6d6c88b1cd2f8ff43c7257657eeb0802646227ac +SIZE (KDE/release-service/25.12.3/kmag-25.12.3.tar.xz) = 680404 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 7328252ebcc3..a430f64e5007 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570522 -SHA256 (KDE/release-service/25.12.2/kmousetool-25.12.2.tar.xz) = 539dc3195ce6574d1d85633c08078ee5d6c0d706994893d06665e9a6ad5f713a -SIZE (KDE/release-service/25.12.2/kmousetool-25.12.2.tar.xz) = 135548 +TIMESTAMP = 1772541759 +SHA256 (KDE/release-service/25.12.3/kmousetool-25.12.3.tar.xz) = 3eafbd2c38a2b767963824f081b8d22f55381b1b51fed3a17a44e4dc1c05a6de +SIZE (KDE/release-service/25.12.3/kmousetool-25.12.3.tar.xz) = 135484 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 601093bfe8e5..aac6263a503d 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570524 -SHA256 (KDE/release-service/25.12.2/kmouth-25.12.2.tar.xz) = 5b332a25ca6ffbbda3ae61f5f064c20691b5305c036d8f711d62c3780a469fc2 -SIZE (KDE/release-service/25.12.2/kmouth-25.12.2.tar.xz) = 1946112 +TIMESTAMP = 1772541761 +SHA256 (KDE/release-service/25.12.3/kmouth-25.12.3.tar.xz) = 0f16e371aaa83be9e6f128fb9eba885ae5af455f65d2761738cf8089617c0538 +SIZE (KDE/release-service/25.12.3/kmouth-25.12.3.tar.xz) = 1945496 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 3e7ef130025e..2fa52e36094d 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570526 -SHA256 (KDE/release-service/25.12.2/ark-25.12.2.tar.xz) = abd7350914c65a763cac513cd679f635555b618c1df183b331134f7b3229a478 -SIZE (KDE/release-service/25.12.2/ark-25.12.2.tar.xz) = 3023084 +TIMESTAMP = 1772541763 +SHA256 (KDE/release-service/25.12.3/ark-25.12.3.tar.xz) = 81f27ef08e216f3cedce10a2b2e2c74ba27735219d8f149c9d1399f7565e028b +SIZE (KDE/release-service/25.12.3/ark-25.12.3.tar.xz) = 3019472 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index f3b47b31e6f8..648e7ac97a14 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570528 -SHA256 (KDE/release-service/25.12.2/kosmindoormap-25.12.2.tar.xz) = 1885c3fdedf90d0dd55411b0289096e47ad6f2a95c387ee87b0146d6bcedbb77 -SIZE (KDE/release-service/25.12.2/kosmindoormap-25.12.2.tar.xz) = 777652 +TIMESTAMP = 1772541764 +SHA256 (KDE/release-service/25.12.3/kosmindoormap-25.12.3.tar.xz) = 1da64c99c29fbd3f722732a14d44ab67417e66cec8de179fa5b2ec676aa6331b +SIZE (KDE/release-service/25.12.3/kosmindoormap-25.12.3.tar.xz) = 777784 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 1e5c5ac7fd2c..e1f67ff3e957 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570531 -SHA256 (KDE/release-service/25.12.2/marble-25.12.2.tar.xz) = 39e2908a21e0bffa25b606e63329022c5beb7fd09eecfbd61da9adf905190a1d -SIZE (KDE/release-service/25.12.2/marble-25.12.2.tar.xz) = 53796996 +TIMESTAMP = 1772541766 +SHA256 (KDE/release-service/25.12.3/marble-25.12.3.tar.xz) = 6f444e70f61ae3e4b7a2c9cc07bea788a795263693278ac637d8afc86a0c3dd4 +SIZE (KDE/release-service/25.12.3/marble-25.12.3.tar.xz) = 53792992 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index caa253f4af1f..beeccdd728dc 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570533 -SHA256 (KDE/release-service/25.12.2/audiocd-kio-25.12.2.tar.xz) = 19b05dad94de5be4ea5f9dff736d74c58eccbde92d4f7c6249c09d92339e5490 -SIZE (KDE/release-service/25.12.2/audiocd-kio-25.12.2.tar.xz) = 587132 +TIMESTAMP = 1772541768 +SHA256 (KDE/release-service/25.12.3/audiocd-kio-25.12.3.tar.xz) = 7c5a9ff8ec7017d3c761107f910b6c75511d4bee9fe168732b77006f5b44fff1 +SIZE (KDE/release-service/25.12.3/audiocd-kio-25.12.3.tar.xz) = 586540 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index f71b72e36c64..1ff08818a2b6 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570535 -SHA256 (KDE/release-service/25.12.2/elisa-25.12.2.tar.xz) = e64b92d62202b5a5d2bbb7d048a06ac633fbfe21cc8af9ee46f1991e97e674b7 -SIZE (KDE/release-service/25.12.2/elisa-25.12.2.tar.xz) = 1497564 +TIMESTAMP = 1772541769 +SHA256 (KDE/release-service/25.12.3/elisa-25.12.3.tar.xz) = ee530970f11bfda48a5569505cfc87eb6ccad2135d6226423dd42c0c3ba7fd4a +SIZE (KDE/release-service/25.12.3/elisa-25.12.3.tar.xz) = 1499132 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index 54728f84f5ad..2f2ca68e3ea0 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,65 +1,66 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 share/applications/org.kde.elisa.desktop share/dbus-1/services/org.kde.elisa.service share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo share/locale/ast/LC_MESSAGES/elisa.mo share/locale/az/LC_MESSAGES/elisa.mo share/locale/be/LC_MESSAGES/elisa.mo share/locale/bg/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/eo/LC_MESSAGES/elisa.mo share/locale/es/LC_MESSAGES/elisa.mo share/locale/et/LC_MESSAGES/elisa.mo share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo share/locale/fr/LC_MESSAGES/elisa.mo share/locale/ga/LC_MESSAGES/elisa.mo share/locale/gl/LC_MESSAGES/elisa.mo share/locale/he/LC_MESSAGES/elisa.mo share/locale/hi/LC_MESSAGES/elisa.mo share/locale/hu/LC_MESSAGES/elisa.mo share/locale/ia/LC_MESSAGES/elisa.mo share/locale/id/LC_MESSAGES/elisa.mo share/locale/is/LC_MESSAGES/elisa.mo share/locale/it/LC_MESSAGES/elisa.mo share/locale/ja/LC_MESSAGES/elisa.mo share/locale/ka/LC_MESSAGES/elisa.mo share/locale/ko/LC_MESSAGES/elisa.mo share/locale/lt/LC_MESSAGES/elisa.mo share/locale/lv/LC_MESSAGES/elisa.mo +share/locale/nb/LC_MESSAGES/elisa.mo share/locale/nl/LC_MESSAGES/elisa.mo share/locale/nn/LC_MESSAGES/elisa.mo share/locale/pa/LC_MESSAGES/elisa.mo share/locale/pl/LC_MESSAGES/elisa.mo share/locale/pt/LC_MESSAGES/elisa.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo share/locale/ro/LC_MESSAGES/elisa.mo share/locale/ru/LC_MESSAGES/elisa.mo share/locale/sa/LC_MESSAGES/elisa.mo share/locale/sk/LC_MESSAGES/elisa.mo share/locale/sl/LC_MESSAGES/elisa.mo share/locale/sv/LC_MESSAGES/elisa.mo share/locale/ta/LC_MESSAGES/elisa.mo share/locale/th/LC_MESSAGES/elisa.mo share/locale/tr/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories6/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 7991e45bbf63..3d2f69a99713 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570537 -SHA256 (KDE/release-service/25.12.2/juk-25.12.2.tar.xz) = 0db052e1796ae16db3ab51cba2973b91a88a82e0a7783be0c7fed03cfd3ec5a7 -SIZE (KDE/release-service/25.12.2/juk-25.12.2.tar.xz) = 1945236 +TIMESTAMP = 1772541771 +SHA256 (KDE/release-service/25.12.3/juk-25.12.3.tar.xz) = 75a10c8707f83fd76e08c9608723b5181d9f828d7d50e21763d1fd25623fdd04 +SIZE (KDE/release-service/25.12.3/juk-25.12.3.tar.xz) = 1943004 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 756a07a65c0f..0e6624473ea6 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570539 -SHA256 (KDE/release-service/25.12.2/kmix-25.12.2.tar.xz) = c7012eb31eb19bc4c8a9e344413a4a4c2ec3721fdcb16c8a4030b9771ab0d92f -SIZE (KDE/release-service/25.12.2/kmix-25.12.2.tar.xz) = 1179352 +TIMESTAMP = 1772541773 +SHA256 (KDE/release-service/25.12.3/kmix-25.12.3.tar.xz) = e310b9abda691a23767579b35cf468b63dccb7a03ed47cdd63e2ccbb5818fc10 +SIZE (KDE/release-service/25.12.3/kmix-25.12.3.tar.xz) = 1177864 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 47f6602f9185..a74e42751a2f 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570541 -SHA256 (KDE/release-service/25.12.2/kwave-25.12.2.tar.xz) = fe6705daaf214c109f191b45050d8631f311e442fa9926f7b9bf5ace0bdbf4b0 -SIZE (KDE/release-service/25.12.2/kwave-25.12.2.tar.xz) = 6551780 +TIMESTAMP = 1772541774 +SHA256 (KDE/release-service/25.12.3/kwave-25.12.3.tar.xz) = d58fe7dceaceaa18206816558f6b640667073966f237fba14abd177bbdcd9dcd +SIZE (KDE/release-service/25.12.3/kwave-25.12.3.tar.xz) = 6552328 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 4eeae859b009..3511ad473314 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570542 -SHA256 (KDE/release-service/25.12.2/libkcddb-25.12.2.tar.xz) = 62c2815d4efd3695a9593d5353e5dbaeeefc6c5267b165aecb58220470ba2110 -SIZE (KDE/release-service/25.12.2/libkcddb-25.12.2.tar.xz) = 448436 +TIMESTAMP = 1772541776 +SHA256 (KDE/release-service/25.12.3/libkcddb-25.12.3.tar.xz) = e448606348517300496ad86344bd7dde5d6a67f12a247e8c3cbaa7e61a67ce73 +SIZE (KDE/release-service/25.12.3/libkcddb-25.12.3.tar.xz) = 447748 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index aab079c059f4..5e91717e36fd 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570544 -SHA256 (KDE/release-service/25.12.2/libkcompactdisc-25.12.2.tar.xz) = 02e5bb5330a2dd9fbae0dba1e1c8536a78dc1f88ba2756e8b96f928156d3c180 -SIZE (KDE/release-service/25.12.2/libkcompactdisc-25.12.2.tar.xz) = 100640 +TIMESTAMP = 1772541777 +SHA256 (KDE/release-service/25.12.3/libkcompactdisc-25.12.3.tar.xz) = 0f4c6b9f41a3cf0d1451204c58abf5c303ec6671f1d15989cd0d8d92bb9ee567 +SIZE (KDE/release-service/25.12.3/libkcompactdisc-25.12.3.tar.xz) = 100696 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index fd0150d597dd..b81500deca03 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570546 -SHA256 (KDE/release-service/25.12.2/akonadi-25.12.2.tar.xz) = 41ad06241b6278245bc3854a189e091dd113045d5a1449025d03a544de4c3bd3 -SIZE (KDE/release-service/25.12.2/akonadi-25.12.2.tar.xz) = 1771848 +TIMESTAMP = 1772541779 +SHA256 (KDE/release-service/25.12.3/akonadi-25.12.3.tar.xz) = 6884ca6219547f00f4d6a6dc6b787d095c0a925fa31cc8e7bad154991a70062a +SIZE (KDE/release-service/25.12.3/akonadi-25.12.3.tar.xz) = 1772860 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 516caae630df..234869d6a442 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570548 -SHA256 (KDE/release-service/25.12.2/akonadi-calendar-tools-25.12.2.tar.xz) = f6a92a1a81e393020cc44a7b6a0e76346ddff6dedeb2bff402b83a69216dc09e -SIZE (KDE/release-service/25.12.2/akonadi-calendar-tools-25.12.2.tar.xz) = 274540 +TIMESTAMP = 1772541781 +SHA256 (KDE/release-service/25.12.3/akonadi-calendar-tools-25.12.3.tar.xz) = 3415a89bfc387e2de4a30f6e80f106d8c4a6a91013e5759b5167e0d11142af50 +SIZE (KDE/release-service/25.12.3/akonadi-calendar-tools-25.12.3.tar.xz) = 274508 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 989176b02aee..247a7342cac7 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570550 -SHA256 (KDE/release-service/25.12.2/akonadi-import-wizard-25.12.2.tar.xz) = dd598897d9b8f9250643203a072334e7f39cc2542165d73c5fa94e7a09903abb -SIZE (KDE/release-service/25.12.2/akonadi-import-wizard-25.12.2.tar.xz) = 499680 +TIMESTAMP = 1772541782 +SHA256 (KDE/release-service/25.12.3/akonadi-import-wizard-25.12.3.tar.xz) = 21d12c6b38b04ea19320afe97907986a9a432a9cf6cff33afe015dc1aa6404b6 +SIZE (KDE/release-service/25.12.3/akonadi-import-wizard-25.12.3.tar.xz) = 499924 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 5d36bf300827..946b6b6dd691 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570552 -SHA256 (KDE/release-service/25.12.2/akonadiconsole-25.12.2.tar.xz) = b5bef806f525ecdcf4dc616855c179c8021ab4e36c924395e3ccbdcfb68f07d5 -SIZE (KDE/release-service/25.12.2/akonadiconsole-25.12.2.tar.xz) = 333088 +TIMESTAMP = 1772541784 +SHA256 (KDE/release-service/25.12.3/akonadiconsole-25.12.3.tar.xz) = 1effdb62375b66435de8b75cfe1429eeda5facc546d9b192e8a8affeea216bba +SIZE (KDE/release-service/25.12.3/akonadiconsole-25.12.3.tar.xz) = 333644 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index f315877a970d..96a2df134f68 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570554 -SHA256 (KDE/release-service/25.12.2/akregator-25.12.2.tar.xz) = aebdb1e994d61ea447e23880eb837a4aa0dfca1cc05ef7bc223c4060cbd76fd8 -SIZE (KDE/release-service/25.12.2/akregator-25.12.2.tar.xz) = 2146232 +TIMESTAMP = 1772541786 +SHA256 (KDE/release-service/25.12.3/akregator-25.12.3.tar.xz) = b15411e8a67c8934ceb30c1b00399424d4a4273698f8560aef4e761921c139e3 +SIZE (KDE/release-service/25.12.3/akregator-25.12.3.tar.xz) = 2145384 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 9a6239c6c52d..741e27edf368 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570556 -SHA256 (KDE/release-service/25.12.2/grantlee-editor-25.12.2.tar.xz) = e882087645db98bad54abd2c8f8be075bee878b25051884f1186f2c8b20f626a -SIZE (KDE/release-service/25.12.2/grantlee-editor-25.12.2.tar.xz) = 131980 +TIMESTAMP = 1772541787 +SHA256 (KDE/release-service/25.12.3/grantlee-editor-25.12.3.tar.xz) = 30558f34937773baf9d8ffe47e8c02d9b000087358fe7a6ddf892b8518c35404 +SIZE (KDE/release-service/25.12.3/grantlee-editor-25.12.3.tar.xz) = 132012 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 2767608911a6..1c41544d961c 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570558 -SHA256 (KDE/release-service/25.12.2/grantleetheme-25.12.2.tar.xz) = a9469621dd62c7bbceedb390e19f474c0f266a7545d53a1cb7637f63c08c6427 -SIZE (KDE/release-service/25.12.2/grantleetheme-25.12.2.tar.xz) = 66112 +TIMESTAMP = 1772541789 +SHA256 (KDE/release-service/25.12.3/grantleetheme-25.12.3.tar.xz) = ff0bf29f9727710bf90cb28871406e9c7a59006c7881c04f8a8f2c63d9f64330 +SIZE (KDE/release-service/25.12.3/grantleetheme-25.12.3.tar.xz) = 66120 diff --git a/deskutils/itinerary/Makefile b/deskutils/itinerary/Makefile index 8cfea1388b9f..05a0281460ee 100644 --- a/deskutils/itinerary/Makefile +++ b/deskutils/itinerary/Makefile @@ -1,30 +1,29 @@ PORTNAME= itinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Digital travel assistant for KDE WWW= https://apps.kde.org/en/itinerary BUILD_DEPENDS= libquotient>=0.9.0:net-im/libquotient LIB_DEPENDS= libKOSM.so:astro/kosmindoormap \ libQCoro6Core.so:devel/qcoro \ libqt6keychain.so:security/qtkeychain@qt6 USES= cmake compiler:c++20-lang desktop-file-utils gettext kde:6 \ qt:6 tar:xz xorg USE_KDE= calendarcore completion config contacts coreaddons crash \ dbusaddons filemetadata holidays i18n jobwidgets kio \ kirigami-addons kitinerary kpublictransport mime notifications \ qqc2-desktop-style service solid unitconversion widgetsaddons \ windowsystem \ ecm:build \ itemmodels:run prison:run USE_QT= base positioning \ location:run multimedia:run USE_XORG= x11 OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index a6ba92d17245..c1994222748f 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570560 -SHA256 (KDE/release-service/25.12.2/itinerary-25.12.2.tar.xz) = b803c7a0bdbe3575961572a5c9310f8ab06f393fa794480a236b9542cc3c32bc -SIZE (KDE/release-service/25.12.2/itinerary-25.12.2.tar.xz) = 877508 +TIMESTAMP = 1772541790 +SHA256 (KDE/release-service/25.12.3/itinerary-25.12.3.tar.xz) = 4ceb62714637f02c80dfdcc7995f205f68930bc38ed5e503ef2e29a20016f5aa +SIZE (KDE/release-service/25.12.3/itinerary-25.12.3.tar.xz) = 933404 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 17e75bc8dc4a..55e724f2052f 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570562 -SHA256 (KDE/release-service/25.12.2/kaddressbook-25.12.2.tar.xz) = 5b3e79076adb157370cbd3bba0169c838239b15c691f6aec44899b81fde8f0a2 -SIZE (KDE/release-service/25.12.2/kaddressbook-25.12.2.tar.xz) = 3467104 +TIMESTAMP = 1772541792 +SHA256 (KDE/release-service/25.12.3/kaddressbook-25.12.3.tar.xz) = 5c3e77aa683eff9a96a5117768e8b1828f171dade1a035443bda37a1c5abcbd4 +SIZE (KDE/release-service/25.12.3/kaddressbook-25.12.3.tar.xz) = 3462800 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index d5f3ea546188..fd3136d41309 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570564 -SHA256 (KDE/release-service/25.12.2/kalarm-25.12.2.tar.xz) = 455f2e998790851bfb9bf52f0349c7fe6ce67c38028978fab522af7fedcb0e3d -SIZE (KDE/release-service/25.12.2/kalarm-25.12.2.tar.xz) = 2701056 +TIMESTAMP = 1772541794 +SHA256 (KDE/release-service/25.12.3/kalarm-25.12.3.tar.xz) = 2ba214f9216f57b97899162aeb9ea7b7223edb2f7dba7ba49e8c9b0b10f72762 +SIZE (KDE/release-service/25.12.3/kalarm-25.12.3.tar.xz) = 2711496 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index b92a7d89112f..cfb34e29d509 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570566 -SHA256 (KDE/release-service/25.12.2/kcharselect-25.12.2.tar.xz) = af3c7c94c9c79f57da8fa4483e85a03f0f40058be8e35867a0cc28072ccbcec8 -SIZE (KDE/release-service/25.12.2/kcharselect-25.12.2.tar.xz) = 477976 +TIMESTAMP = 1772541795 +SHA256 (KDE/release-service/25.12.3/kcharselect-25.12.3.tar.xz) = 90df5543516dc72d83edff79f9bdca9763061d0dc3b0bd3eb7295ca912fcecde +SIZE (KDE/release-service/25.12.3/kcharselect-25.12.3.tar.xz) = 478460 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index de9738411e27..0435928f9ac1 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570568 -SHA256 (KDE/release-service/25.12.2/kdeconnect-kde-25.12.2.tar.xz) = d0504bbc3572f7e131983786eddb9c580986e5e46bb44b94a6df77a8777e4ef2 -SIZE (KDE/release-service/25.12.2/kdeconnect-kde-25.12.2.tar.xz) = 641200 +TIMESTAMP = 1772541797 +SHA256 (KDE/release-service/25.12.3/kdeconnect-kde-25.12.3.tar.xz) = a242c968b7f83af21e02113ce5728b9fca98258b6e8f6e7a33d5d6c3cc9e69bb +SIZE (KDE/release-service/25.12.3/kdeconnect-kde-25.12.3.tar.xz) = 647392 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index a4ca3b4de22f..c57789636719 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,809 +1,811 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-sms bin/kdeconnectd etc/ufw/applications.d/kdeconnect 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 %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.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_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/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_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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-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-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-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-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ga/LC_MESSAGES/kdeconnect-app.mo share/locale/ga/LC_MESSAGES/kdeconnect-cli.mo share/locale/ga/LC_MESSAGES/kdeconnect-core.mo share/locale/ga/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ga/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ga/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ga/LC_MESSAGES/kdeconnect-kded.mo share/locale/ga/LC_MESSAGES/kdeconnect-kio.mo share/locale/ga/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ga/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ga/LC_MESSAGES/kdeconnect-sms.mo share/locale/ga/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ga/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-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-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-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-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-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-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-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-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-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-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-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-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-kio.mo share/locale/ie/LC_MESSAGES/kdeconnect-nautilus-extension.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/nb/LC_MESSAGES/kdeconnect-app.mo +share/locale/nb/LC_MESSAGES/kdeconnect-core.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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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.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 37c61c2dab9b..dcfd97cf64b1 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570570 -SHA256 (KDE/release-service/25.12.2/kdepim-addons-25.12.2.tar.xz) = 2fd1750c89cf54d94ab4ee74e70480c2d8c245a01492637a480740e84cc28d06 -SIZE (KDE/release-service/25.12.2/kdepim-addons-25.12.2.tar.xz) = 2678844 +TIMESTAMP = 1772541799 +SHA256 (KDE/release-service/25.12.3/kdepim-addons-25.12.3.tar.xz) = 0eebf8a6aee397b53ce1365ed6a27af5f7a348865c575ba7ac0f88787f7fa979 +SIZE (KDE/release-service/25.12.3/kdepim-addons-25.12.3.tar.xz) = 2676632 diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index f439ecc2621a..f442e3f9e190 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570572 -SHA256 (KDE/release-service/25.12.2/kdepim-runtime-25.12.2.tar.xz) = 8dcc95d0b8083f5566d5deca00804644be5cf1d46c4772838ca4f12f5a4562e5 -SIZE (KDE/release-service/25.12.2/kdepim-runtime-25.12.2.tar.xz) = 2451416 +TIMESTAMP = 1772541800 +SHA256 (KDE/release-service/25.12.3/kdepim-runtime-25.12.3.tar.xz) = 9c034771cc66ed5103acf5276fd2a5f9f43b503393e3779208c4f97c4d274689 +SIZE (KDE/release-service/25.12.3/kdepim-runtime-25.12.3.tar.xz) = 2455392 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index dca73bc668bd..04c508bbc3c2 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570574 -SHA256 (KDE/release-service/25.12.2/keditbookmarks-25.12.2.tar.xz) = 86e3384768c37f328289a31bbf4cb8fa194a5adfefabfb4750b5170a902da812 -SIZE (KDE/release-service/25.12.2/keditbookmarks-25.12.2.tar.xz) = 262472 +TIMESTAMP = 1772541802 +SHA256 (KDE/release-service/25.12.3/keditbookmarks-25.12.3.tar.xz) = 1b96aefbcb1a9fd75304938af28215688afc43d806eec7d453de078721dd1c2e +SIZE (KDE/release-service/25.12.3/keditbookmarks-25.12.3.tar.xz) = 262396 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 626fb3cb6dcb..1719ca9e3dfc 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570576 -SHA256 (KDE/release-service/25.12.2/kfind-25.12.2.tar.xz) = 6ab4607fc2c9e3b3c04fa4a2be66074d65155c2fbf1c47717068883995fb3ba9 -SIZE (KDE/release-service/25.12.2/kfind-25.12.2.tar.xz) = 335340 +TIMESTAMP = 1772541804 +SHA256 (KDE/release-service/25.12.3/kfind-25.12.3.tar.xz) = b053eb551706de18d46a3b96867f2cbcca42346fe5448b3dc6c8d4bc07c72ac1 +SIZE (KDE/release-service/25.12.3/kfind-25.12.3.tar.xz) = 335232 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 5c1f1712a3be..0e817b4cd470 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570580 -SHA256 (KDE/release-service/25.12.2/kmail-account-wizard-25.12.2.tar.xz) = d3a25bd5a3618f92ebf8bcf3666399cfb9f715d6724265000f463818dd0a99ad -SIZE (KDE/release-service/25.12.2/kmail-account-wizard-25.12.2.tar.xz) = 173556 +TIMESTAMP = 1772541807 +SHA256 (KDE/release-service/25.12.3/kmail-account-wizard-25.12.3.tar.xz) = 0a41268e6b153700c4c815da1baa40637efa61943f4e387f66cf5599d8e8d502 +SIZE (KDE/release-service/25.12.3/kmail-account-wizard-25.12.3.tar.xz) = 173856 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 2cd413032839..7ec228454f21 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570578 -SHA256 (KDE/release-service/25.12.2/kmail-25.12.2.tar.xz) = e12ae3d3f3fea717a8e1b6f1585de54a7ddde6df5c2dd835a6128921e94d5b74 -SIZE (KDE/release-service/25.12.2/kmail-25.12.2.tar.xz) = 7853536 +TIMESTAMP = 1772541805 +SHA256 (KDE/release-service/25.12.3/kmail-25.12.3.tar.xz) = e1ed980945ea3428100e01b5fccbb4e98b109c1d8503340c23b97238d36821c1 +SIZE (KDE/release-service/25.12.3/kmail-25.12.3.tar.xz) = 7846568 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 529ceb2a36e6..8c2b6ebd7a26 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570582 -SHA256 (KDE/release-service/25.12.2/kongress-25.12.2.tar.xz) = 644d9f45987a9a141286a7d0ebf4640d195811f07e4ac8fb3b2b39385810c036 -SIZE (KDE/release-service/25.12.2/kongress-25.12.2.tar.xz) = 163920 +TIMESTAMP = 1772541808 +SHA256 (KDE/release-service/25.12.3/kongress-25.12.3.tar.xz) = 488f06dc3270204ee16de2fd4c670d000f19d27cbbbae1c1ee5406c4dcbc7587 +SIZE (KDE/release-service/25.12.3/kongress-25.12.3.tar.xz) = 170132 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index ed9a36d884f3..54d226ff2130 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570584 -SHA256 (KDE/release-service/25.12.2/kontact-25.12.2.tar.xz) = 18040be6e1ac53e741e5e8fee4b08c57380e088e1661fd683833b7fb1a4d3351 -SIZE (KDE/release-service/25.12.2/kontact-25.12.2.tar.xz) = 898192 +TIMESTAMP = 1772541810 +SHA256 (KDE/release-service/25.12.3/kontact-25.12.3.tar.xz) = 4124c873d26a9047332aeeac8002a5619a1455f19280538f191efbf6edeef604 +SIZE (KDE/release-service/25.12.3/kontact-25.12.3.tar.xz) = 896272 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 4b5902bef471..3f9c6f2b2749 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570586 -SHA256 (KDE/release-service/25.12.2/korganizer-25.12.2.tar.xz) = b04b80c82803281b535db901a6b04f49f3d33519e384d9ac568608d7154038e5 -SIZE (KDE/release-service/25.12.2/korganizer-25.12.2.tar.xz) = 3064096 +TIMESTAMP = 1772541812 +SHA256 (KDE/release-service/25.12.3/korganizer-25.12.3.tar.xz) = 9bb837f1a1f9aedbf35f3254a526cc6f5c7591b4c27e649817db6b563ad698c3 +SIZE (KDE/release-service/25.12.3/korganizer-25.12.3.tar.xz) = 3060144 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 4bd0c3cdbef5..ccbc90a9b74d 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570588 -SHA256 (KDE/release-service/25.12.2/kruler-25.12.2.tar.xz) = 0c072e7d68745e7b7ac63df469dbdf5eb623a186a5dbe566eb99907f1e69b63c -SIZE (KDE/release-service/25.12.2/kruler-25.12.2.tar.xz) = 287056 +TIMESTAMP = 1772541813 +SHA256 (KDE/release-service/25.12.3/kruler-25.12.3.tar.xz) = c211bec09a71bda55b1ab86223729603ec7c3206296466bc8ae98dcb76cb7084 +SIZE (KDE/release-service/25.12.3/kruler-25.12.3.tar.xz) = 286904 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index af142ac2195e..8c2b84ca944e 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570588 -SHA256 (KDE/release-service/25.12.2/kweather-25.12.2.tar.xz) = dafedc71696ad426b40770c51eddfa96e4507eb84e45f492029f55f8e5672e7f -SIZE (KDE/release-service/25.12.2/kweather-25.12.2.tar.xz) = 373768 +TIMESTAMP = 1772541814 +SHA256 (KDE/release-service/25.12.3/kweather-25.12.3.tar.xz) = 70040d430bc0973aeaad38f1391e7c06753ad3489ed1b62ddb26d41745495894 +SIZE (KDE/release-service/25.12.3/kweather-25.12.3.tar.xz) = 381640 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index 4d4d3ca6282c..e17e5c059a2f 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570589 -SHA256 (KDE/release-service/25.12.2/kweathercore-25.12.2.tar.xz) = 56ab998dbb041d071f8a9df4237cc7e5d1e6e57bc9a73441447b690f9efc9113 -SIZE (KDE/release-service/25.12.2/kweathercore-25.12.2.tar.xz) = 86912 +TIMESTAMP = 1772541814 +SHA256 (KDE/release-service/25.12.3/kweathercore-25.12.3.tar.xz) = 83cda4953ac7ac3f3473ce053e3d13b36c57dc0e198bc176663fdd30ba4b0945 +SIZE (KDE/release-service/25.12.3/kweathercore-25.12.3.tar.xz) = 86932 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 14b3e27ec350..d50a1f8f6203 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570591 -SHA256 (KDE/release-service/25.12.2/libkdepim-25.12.2.tar.xz) = 7ae5f42570914f217e2e073a865b8395dd88818fce8e0e6cd01b75b71454db8f -SIZE (KDE/release-service/25.12.2/libkdepim-25.12.2.tar.xz) = 285456 +TIMESTAMP = 1772541816 +SHA256 (KDE/release-service/25.12.3/libkdepim-25.12.3.tar.xz) = 5b2ffc63f30ffdf513061b634db3df6019ab4aad56b1c11f50dadec081b8cf43 +SIZE (KDE/release-service/25.12.3/libkdepim-25.12.3.tar.xz) = 281956 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 7832034f283f..7ec910998164 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570593 -SHA256 (KDE/release-service/25.12.2/mbox-importer-25.12.2.tar.xz) = 95cd556b8ae812dadf80d75204df25dd8603e3d4ef3fd7022a5322f6fc6b8292 -SIZE (KDE/release-service/25.12.2/mbox-importer-25.12.2.tar.xz) = 34388 +TIMESTAMP = 1772541818 +SHA256 (KDE/release-service/25.12.3/mbox-importer-25.12.3.tar.xz) = 628238e028aeaa2a6395a78449abfe4344d69fcff7c7f4b70994a98fc194be95 +SIZE (KDE/release-service/25.12.3/mbox-importer-25.12.3.tar.xz) = 34380 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 6b1390d2adb1..8ce16fc6953d 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570595 -SHA256 (KDE/release-service/25.12.2/merkuro-25.12.2.tar.xz) = c84745a7d83510803eafa69d27a0212989771c99f571fc83bcf717d751bc539e -SIZE (KDE/release-service/25.12.2/merkuro-25.12.2.tar.xz) = 829716 +TIMESTAMP = 1772541819 +SHA256 (KDE/release-service/25.12.3/merkuro-25.12.3.tar.xz) = f56169db85cb600ba2a49b32bf53d17eadd137e116d19f4b69ef2a5eab2c8bae +SIZE (KDE/release-service/25.12.3/merkuro-25.12.3.tar.xz) = 829892 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 995bf57d4627..5c8aaf7549a0 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570597 -SHA256 (KDE/release-service/25.12.2/pim-data-exporter-25.12.2.tar.xz) = 189218591963873056f7335c29f4f3fb5c0ebe82bf4430a7ce092392baa28caa -SIZE (KDE/release-service/25.12.2/pim-data-exporter-25.12.2.tar.xz) = 430720 +TIMESTAMP = 1772541821 +SHA256 (KDE/release-service/25.12.3/pim-data-exporter-25.12.3.tar.xz) = d1e7c7ffeb8c1339d2214e7b368a5abb3db6f836115fec4cedb8fc3c18193af4 +SIZE (KDE/release-service/25.12.3/pim-data-exporter-25.12.3.tar.xz) = 430816 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index e26e5e9e909b..df8ec908fdc2 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570599 -SHA256 (KDE/release-service/25.12.2/pim-sieve-editor-25.12.2.tar.xz) = c8bfec482421d30aa7b043de787a69e1abfb029b0c8e40105fd898e44ebc0d01 -SIZE (KDE/release-service/25.12.2/pim-sieve-editor-25.12.2.tar.xz) = 484512 +TIMESTAMP = 1772541823 +SHA256 (KDE/release-service/25.12.3/pim-sieve-editor-25.12.3.tar.xz) = eae7f687f76950b8e490420747076087bf3fb04da15df6b04b663586b2550f81 +SIZE (KDE/release-service/25.12.3/pim-sieve-editor-25.12.3.tar.xz) = 484520 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index b149858abd84..44a9624bca5e 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570601 -SHA256 (KDE/release-service/25.12.2/zanshin-25.12.2.tar.xz) = 0eed6b4526b4fde5a42612740826c3ea4e53b1c1e8b13b1ee8cdb435dc5f8aa3 -SIZE (KDE/release-service/25.12.2/zanshin-25.12.2.tar.xz) = 390196 +TIMESTAMP = 1772541824 +SHA256 (KDE/release-service/25.12.3/zanshin-25.12.3.tar.xz) = 4df387da010b1875f73052849634df03bed453b62d0a01e8131d37ba5865cbd2 +SIZE (KDE/release-service/25.12.3/zanshin-25.12.3.tar.xz) = 391452 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 3735eb09e94f..9a71c5fc855c 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570603 -SHA256 (KDE/release-service/25.12.2/dolphin-plugins-25.12.2.tar.xz) = 3ac44ee9ad6495b2e56612ccd2a1940b05584685ed33cba490c484f5e5f9a6a6 -SIZE (KDE/release-service/25.12.2/dolphin-plugins-25.12.2.tar.xz) = 337120 +TIMESTAMP = 1772541826 +SHA256 (KDE/release-service/25.12.3/dolphin-plugins-25.12.3.tar.xz) = a738d4f9f1148283ff0552ffc5a440cabc5f216aa2473c22e699593b3b01a7c0 +SIZE (KDE/release-service/25.12.3/dolphin-plugins-25.12.3.tar.xz) = 337964 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index a72632fd81f2..7ec148c3a42c 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,311 +1,312 @@ %%QT_PLUGINDIR%%/dolphin/vcs/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewgitplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewhgplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/makefileactions.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/locale/ar/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ar/LC_MESSAGES/fileviewgitplugin.mo share/locale/ar/LC_MESSAGES/fileviewhgplugin.mo share/locale/ar/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ar/LC_MESSAGES/makefileactions.mo share/locale/ar/LC_MESSAGES/mountisoaction.mo share/locale/ast/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ast/LC_MESSAGES/fileviewgitplugin.mo share/locale/ast/LC_MESSAGES/fileviewhgplugin.mo share/locale/ast/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ast/LC_MESSAGES/makefileactions.mo share/locale/ast/LC_MESSAGES/mountisoaction.mo share/locale/az/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/az/LC_MESSAGES/fileviewgitplugin.mo share/locale/az/LC_MESSAGES/fileviewhgplugin.mo share/locale/az/LC_MESSAGES/fileviewsvnplugin.mo share/locale/az/LC_MESSAGES/makefileactions.mo share/locale/az/LC_MESSAGES/mountisoaction.mo share/locale/bg/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bg/LC_MESSAGES/fileviewgitplugin.mo share/locale/bg/LC_MESSAGES/fileviewhgplugin.mo share/locale/bg/LC_MESSAGES/fileviewsvnplugin.mo share/locale/bg/LC_MESSAGES/mountisoaction.mo share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/makefileactions.mo share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/makefileactions.mo share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/makefileactions.mo share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/makefileactions.mo share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/el/LC_MESSAGES/makefileactions.mo share/locale/el/LC_MESSAGES/mountisoaction.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/makefileactions.mo share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eo/LC_MESSAGES/fileviewgitplugin.mo share/locale/eo/LC_MESSAGES/fileviewhgplugin.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eo/LC_MESSAGES/makefileactions.mo share/locale/eo/LC_MESSAGES/mountisoaction.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/makefileactions.mo share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/mountisoaction.mo share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewhgplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/makefileactions.mo share/locale/eu/LC_MESSAGES/mountisoaction.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo share/locale/fi/LC_MESSAGES/fileviewhgplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fi/LC_MESSAGES/makefileactions.mo share/locale/fi/LC_MESSAGES/mountisoaction.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fr/LC_MESSAGES/makefileactions.mo share/locale/fr/LC_MESSAGES/mountisoaction.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ga/LC_MESSAGES/makefileactions.mo share/locale/ga/LC_MESSAGES/mountisoaction.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/makefileactions.mo share/locale/gl/LC_MESSAGES/mountisoaction.mo share/locale/he/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/he/LC_MESSAGES/fileviewgitplugin.mo share/locale/he/LC_MESSAGES/fileviewhgplugin.mo share/locale/he/LC_MESSAGES/fileviewsvnplugin.mo share/locale/he/LC_MESSAGES/makefileactions.mo share/locale/he/LC_MESSAGES/mountisoaction.mo share/locale/hi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hi/LC_MESSAGES/fileviewgitplugin.mo share/locale/hi/LC_MESSAGES/fileviewhgplugin.mo share/locale/hi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hi/LC_MESSAGES/makefileactions.mo share/locale/hi/LC_MESSAGES/mountisoaction.mo share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hu/LC_MESSAGES/makefileactions.mo share/locale/hu/LC_MESSAGES/mountisoaction.mo share/locale/ia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/makefileactions.mo share/locale/ia/LC_MESSAGES/mountisoaction.mo share/locale/id/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/id/LC_MESSAGES/fileviewgitplugin.mo share/locale/id/LC_MESSAGES/fileviewhgplugin.mo share/locale/id/LC_MESSAGES/fileviewsvnplugin.mo share/locale/id/LC_MESSAGES/mountisoaction.mo share/locale/ie/LC_MESSAGES/fileviewgitplugin.mo share/locale/ie/LC_MESSAGES/mountisoaction.mo share/locale/is/LC_MESSAGES/mountisoaction.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo share/locale/it/LC_MESSAGES/makefileactions.mo share/locale/it/LC_MESSAGES/mountisoaction.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ja/LC_MESSAGES/makefileactions.mo share/locale/ja/LC_MESSAGES/mountisoaction.mo share/locale/ka/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ka/LC_MESSAGES/fileviewgitplugin.mo share/locale/ka/LC_MESSAGES/fileviewhgplugin.mo share/locale/ka/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ka/LC_MESSAGES/makefileactions.mo share/locale/ka/LC_MESSAGES/mountisoaction.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/makefileactions.mo share/locale/ko/LC_MESSAGES/mountisoaction.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/lt/LC_MESSAGES/makefileactions.mo share/locale/lt/LC_MESSAGES/mountisoaction.mo share/locale/lv/LC_MESSAGES/makefileactions.mo share/locale/lv/LC_MESSAGES/mountisoaction.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/my/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/my/LC_MESSAGES/fileviewgitplugin.mo share/locale/my/LC_MESSAGES/fileviewhgplugin.mo share/locale/my/LC_MESSAGES/fileviewsvnplugin.mo share/locale/my/LC_MESSAGES/mountisoaction.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/nb/LC_MESSAGES/makefileactions.mo share/locale/nb/LC_MESSAGES/mountisoaction.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/makefileactions.mo share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/mountisoaction.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/makefileactions.mo share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/makefileactions.mo share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/makefileactions.mo share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sa/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sa/LC_MESSAGES/fileviewgitplugin.mo share/locale/sa/LC_MESSAGES/fileviewhgplugin.mo share/locale/sa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sa/LC_MESSAGES/makefileactions.mo share/locale/sa/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/makefileactions.mo share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/makefileactions.mo share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/makefileactions.mo share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/ta/LC_MESSAGES/fileviewgitplugin.mo share/locale/ta/LC_MESSAGES/fileviewhgplugin.mo share/locale/ta/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ta/LC_MESSAGES/makefileactions.mo share/locale/ta/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/tr/LC_MESSAGES/makefileactions.mo share/locale/tr/LC_MESSAGES/mountisoaction.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/makefileactions.mo share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/vi/LC_MESSAGES/fileviewgitplugin.mo share/locale/vi/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/makefileactions.mo share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_TW/LC_MESSAGES/makefileactions.mo share/locale/zh_TW/LC_MESSAGES/mountisoaction.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml share/qlogging-categories6/dolphingit.categories diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 119218b3b580..cbac02462fe6 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570605 -SHA256 (KDE/release-service/25.12.2/kapptemplate-25.12.2.tar.xz) = 7f5a7922e1bae6d84593409f37ed9278c5372ea618abd822b6a58d44f31ed6ee -SIZE (KDE/release-service/25.12.2/kapptemplate-25.12.2.tar.xz) = 481928 +TIMESTAMP = 1772541828 +SHA256 (KDE/release-service/25.12.3/kapptemplate-25.12.3.tar.xz) = acf8a978600445c17119de70e509aa54391fa0abe494856a1269b31fda86fc14 +SIZE (KDE/release-service/25.12.3/kapptemplate-25.12.3.tar.xz) = 481656 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 53a7355347a0..5ccd277c4208 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570607 -SHA256 (KDE/release-service/25.12.2/kcachegrind-25.12.2.tar.xz) = 46e837b3ad12f9dbea68eed040219ce7e66ac58b47fc29430a1a4f93d7591b07 -SIZE (KDE/release-service/25.12.2/kcachegrind-25.12.2.tar.xz) = 1006220 +TIMESTAMP = 1772541830 +SHA256 (KDE/release-service/25.12.3/kcachegrind-25.12.3.tar.xz) = e96acc0d688b12940ecc8896ab89ffd158bdf595fc69ad6d4a380e28e2e8efd2 +SIZE (KDE/release-service/25.12.3/kcachegrind-25.12.3.tar.xz) = 1005720 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index c4602287d8a0..dec38655b913 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570607 -SHA256 (KDE/release-service/25.12.2/kde-dev-scripts-25.12.2.tar.xz) = 0a1170af1d20d04df300e360390b4ace81565b6f9e63df5737e2fd5683a6eeb9 -SIZE (KDE/release-service/25.12.2/kde-dev-scripts-25.12.2.tar.xz) = 377080 +TIMESTAMP = 1772541831 +SHA256 (KDE/release-service/25.12.3/kde-dev-scripts-25.12.3.tar.xz) = 47b0d27442dd26aa69926bfbe24316b7c61f94e711a8d316c91f51328ba20264 +SIZE (KDE/release-service/25.12.3/kde-dev-scripts-25.12.3.tar.xz) = 377088 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index a56d8cd7c30e..d794eeda3121 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570609 -SHA256 (KDE/release-service/25.12.2/kde-dev-utils-25.12.2.tar.xz) = 4d0a3b6a7747bbab936d48c75155eaa5d6259478bd84e25acbcab69452ecbf63 -SIZE (KDE/release-service/25.12.2/kde-dev-utils-25.12.2.tar.xz) = 77516 +TIMESTAMP = 1772541841 +SHA256 (KDE/release-service/25.12.3/kde-dev-utils-25.12.3.tar.xz) = 598fdfd5b981f47a6bc64d71bce1c81367e0f712154048accf10d00b439b5b9c +SIZE (KDE/release-service/25.12.3/kde-dev-utils-25.12.3.tar.xz) = 77756 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index f461ca93b636..ada5bac94c4b 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570611 -SHA256 (KDE/release-service/25.12.2/kdesdk-kio-25.12.2.tar.xz) = aa69ed810c91e8975d8256a75852de1a5f97538d80992c84c9152f214233437d -SIZE (KDE/release-service/25.12.2/kdesdk-kio-25.12.2.tar.xz) = 42944 +TIMESTAMP = 1772541849 +SHA256 (KDE/release-service/25.12.3/kdesdk-kio-25.12.3.tar.xz) = 9605fa16d215195abca1a449eb73c854d6346529f58230baa31e231acd49b4d6 +SIZE (KDE/release-service/25.12.3/kdesdk-kio-25.12.3.tar.xz) = 43316 diff --git a/devel/kdesdk-kio/pkg-plist b/devel/kdesdk-kio/pkg-plist index 3b78291c8df9..48250603ef38 100644 --- a/devel/kdesdk-kio/pkg-plist +++ b/devel/kdesdk-kio/pkg-plist @@ -1,50 +1,51 @@ %%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/ro/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 01529af2b9a6..f8e9d49a832c 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570613 -SHA256 (KDE/release-service/25.12.2/kdesdk-thumbnailers-25.12.2.tar.xz) = 7ff7e580ca1aebcecc2c5ef9bf2e15135af8df1615672c71335d0c0ec4cc799d -SIZE (KDE/release-service/25.12.2/kdesdk-thumbnailers-25.12.2.tar.xz) = 20860 +TIMESTAMP = 1772541851 +SHA256 (KDE/release-service/25.12.3/kdesdk-thumbnailers-25.12.3.tar.xz) = 7f819f1adf56531a03766961a549fbbe3d9b9a5fdf7c3f334a2ce76789506676 +SIZE (KDE/release-service/25.12.3/kdesdk-thumbnailers-25.12.3.tar.xz) = 20856 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 79485fbbe75f..4238ef9a6c9b 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570615 -SHA256 (KDE/release-service/25.12.2/kdev-php-25.12.2.tar.xz) = a58c5eb75e2d04c7dba75571e99e6c2a633789d0228d215b6051887958716f1e -SIZE (KDE/release-service/25.12.2/kdev-php-25.12.2.tar.xz) = 1101044 +TIMESTAMP = 1772541852 +SHA256 (KDE/release-service/25.12.3/kdev-php-25.12.3.tar.xz) = b011e0e5a92d4853c57b97dd6b8cb9407bcdd1bc54a9e34e219d14ce2725b56d +SIZE (KDE/release-service/25.12.3/kdev-php-25.12.3.tar.xz) = 1101084 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index f50ab68c14ab..13fa4658463d 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570617 -SHA256 (KDE/release-service/25.12.2/kdev-python-25.12.2.tar.xz) = cbaa04337b548b941146be53894d91c4ef90a54bcd5b496641b9f66a8c89859b -SIZE (KDE/release-service/25.12.2/kdev-python-25.12.2.tar.xz) = 1139776 +TIMESTAMP = 1772541854 +SHA256 (KDE/release-service/25.12.3/kdev-python-25.12.3.tar.xz) = 12b71fff7d3b0d780c7f444e236e8736f67ed2b00668a7b33d472aad759e984f +SIZE (KDE/release-service/25.12.3/kdev-python-25.12.3.tar.xz) = 1139728 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 7b9b7101e6c7..790e9748b724 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570619 -SHA256 (KDE/release-service/25.12.2/kdevelop-25.12.2.tar.xz) = 6464ff2f271f393ace4ba7da4f23fbef48b359998b12d9486f5d19e56437a669 -SIZE (KDE/release-service/25.12.2/kdevelop-25.12.2.tar.xz) = 9019268 +TIMESTAMP = 1772541858 +SHA256 (KDE/release-service/25.12.3/kdevelop-25.12.3.tar.xz) = b6e8f6a02b3ab843b2212eda13aadee3f5d7039dc0b90c2070fec56e337dfcd5 +SIZE (KDE/release-service/25.12.3/kdevelop-25.12.3.tar.xz) = 8995148 diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 24f1d938c036..ee299adc7f15 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570621 -SHA256 (KDE/release-service/25.12.2/kio-extras-25.12.2.tar.xz) = 726fc1eb4d891734ebeed582010dd0a06423fcea5275f1e06e3182a030056b2a -SIZE (KDE/release-service/25.12.2/kio-extras-25.12.2.tar.xz) = 5618664 +TIMESTAMP = 1772541860 +SHA256 (KDE/release-service/25.12.3/kio-extras-25.12.3.tar.xz) = b161e363320f96cffba0195e4045a88049fc3c5b93272532dce5ab6ce886916a +SIZE (KDE/release-service/25.12.3/kio-extras-25.12.3.tar.xz) = 5595468 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index 0da76310ca0f..137bdbdde2ac 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,1111 +1,1112 @@ include/KioArchive6/kio_archivebase.h include/KioArchive6/kioarchive_version.h include/KioArchive6/libkioarchive_export.h lib/cmake/KioArchive6/KioArchive6Config.cmake lib/cmake/KioArchive6/KioArchive6ConfigVersion.cmake lib/cmake/KioArchive6/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive6/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf6/smbnotifier lib/libkioarchive6.so.6 lib/libkioarchive6.so.6.0.0 %%QT_PLUGINDIR%%/kcm_trash.so %%QT_PLUGINDIR%%/kf6/kded/filenamesearchmodule.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/forgetfileitemaction.so %%QT_PLUGINDIR%%/kf6/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf6/kio/activities.so %%AFC%%%%QT_PLUGINDIR%%/kf6/kio/afc.so %%QT_PLUGINDIR%%/kf6/kio/archive.so %%QT_PLUGINDIR%%/kf6/kio/filter.so %%QT_PLUGINDIR%%/kf6/kio/fish.so %%QT_PLUGINDIR%%/kf6/kio/info.so %%QT_PLUGINDIR%%/kf6/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf6/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kio/mtp.so %%QT_PLUGINDIR%%/kf6/kio/recentlyused.so %%SSH%%%%QT_PLUGINDIR%%/kf6/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf6/kio/smb.so %%QT_PLUGINDIR%%/kf6/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf6/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf6/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/directorythumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/ebookthumbnail.so %%OPENEXR%%%%QT_PLUGINDIR%%/kf6/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/kraorathumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_netpref.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_proxy.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_webshortcuts.so share/applications/kcm_netpref.desktop share/applications/kcm_proxy.desktop share/applications/kcm_trash.desktop share/applications/kcm_webshortcuts.desktop share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_filenamesearch/kio-filenamesearch-grep share/kio_info/kde-info2html share/kio_info/kde-info2html.conf %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/locale/af/LC_MESSAGES/kio-extras_kcms.mo share/locale/af/LC_MESSAGES/kio6_archive.mo share/locale/af/LC_MESSAGES/kio6_fish.mo share/locale/af/LC_MESSAGES/kio6_man.mo share/locale/af/LC_MESSAGES/kio6_nfs.mo share/locale/af/LC_MESSAGES/kio6_sftp.mo share/locale/af/LC_MESSAGES/kio6_smb.mo share/locale/af/LC_MESSAGES/kio6_thumbnail.mo share/locale/ar/LC_MESSAGES/kio-extras_kcms.mo share/locale/ar/LC_MESSAGES/kio6_activities.mo share/locale/ar/LC_MESSAGES/kio6_afc.mo share/locale/ar/LC_MESSAGES/kio6_archive.mo share/locale/ar/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ar/LC_MESSAGES/kio6_fish.mo share/locale/ar/LC_MESSAGES/kio6_info.mo share/locale/ar/LC_MESSAGES/kio6_man.mo share/locale/ar/LC_MESSAGES/kio6_mtp.mo share/locale/ar/LC_MESSAGES/kio6_nfs.mo share/locale/ar/LC_MESSAGES/kio6_recentlyused.mo share/locale/ar/LC_MESSAGES/kio6_sftp.mo share/locale/ar/LC_MESSAGES/kio6_smb.mo share/locale/ar/LC_MESSAGES/kio6_thumbnail.mo share/locale/ast/LC_MESSAGES/kio-extras_kcms.mo share/locale/ast/LC_MESSAGES/kio6_activities.mo share/locale/ast/LC_MESSAGES/kio6_afc.mo share/locale/ast/LC_MESSAGES/kio6_archive.mo share/locale/ast/LC_MESSAGES/kio6_fish.mo share/locale/ast/LC_MESSAGES/kio6_info.mo share/locale/ast/LC_MESSAGES/kio6_man.mo share/locale/ast/LC_MESSAGES/kio6_mtp.mo share/locale/ast/LC_MESSAGES/kio6_nfs.mo share/locale/ast/LC_MESSAGES/kio6_sftp.mo share/locale/ast/LC_MESSAGES/kio6_smb.mo share/locale/ast/LC_MESSAGES/kio6_thumbnail.mo share/locale/az/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kio-extras_kcms.mo share/locale/be/LC_MESSAGES/kio6_activities.mo share/locale/be/LC_MESSAGES/kio6_afc.mo share/locale/be/LC_MESSAGES/kio6_archive.mo share/locale/be/LC_MESSAGES/kio6_filenamesearch.mo share/locale/be/LC_MESSAGES/kio6_fish.mo share/locale/be/LC_MESSAGES/kio6_info.mo share/locale/be/LC_MESSAGES/kio6_man.mo share/locale/be/LC_MESSAGES/kio6_mtp.mo share/locale/be/LC_MESSAGES/kio6_nfs.mo share/locale/be/LC_MESSAGES/kio6_recentlyused.mo share/locale/be/LC_MESSAGES/kio6_sftp.mo share/locale/be/LC_MESSAGES/kio6_smb.mo share/locale/be/LC_MESSAGES/kio6_thumbnail.mo share/locale/be@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/be@latin/LC_MESSAGES/kio6_archive.mo share/locale/be@latin/LC_MESSAGES/kio6_fish.mo share/locale/be@latin/LC_MESSAGES/kio6_man.mo share/locale/be@latin/LC_MESSAGES/kio6_nfs.mo share/locale/be@latin/LC_MESSAGES/kio6_smb.mo share/locale/be@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/bg/LC_MESSAGES/kio-extras_kcms.mo share/locale/bg/LC_MESSAGES/kio6_activities.mo share/locale/bg/LC_MESSAGES/kio6_afc.mo share/locale/bg/LC_MESSAGES/kio6_archive.mo share/locale/bg/LC_MESSAGES/kio6_filenamesearch.mo share/locale/bg/LC_MESSAGES/kio6_fish.mo share/locale/bg/LC_MESSAGES/kio6_info.mo share/locale/bg/LC_MESSAGES/kio6_man.mo share/locale/bg/LC_MESSAGES/kio6_mtp.mo share/locale/bg/LC_MESSAGES/kio6_nfs.mo share/locale/bg/LC_MESSAGES/kio6_recentlyused.mo share/locale/bg/LC_MESSAGES/kio6_sftp.mo share/locale/bg/LC_MESSAGES/kio6_smb.mo share/locale/bg/LC_MESSAGES/kio6_thumbnail.mo share/locale/bn/LC_MESSAGES/kio-extras_kcms.mo share/locale/bn/LC_MESSAGES/kio6_fish.mo share/locale/bn/LC_MESSAGES/kio6_man.mo share/locale/bn/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_archive.mo share/locale/bn_IN/LC_MESSAGES/kio6_fish.mo share/locale/bn_IN/LC_MESSAGES/kio6_man.mo share/locale/bn_IN/LC_MESSAGES/kio6_nfs.mo share/locale/bn_IN/LC_MESSAGES/kio6_sftp.mo share/locale/bn_IN/LC_MESSAGES/kio6_smb.mo share/locale/bn_IN/LC_MESSAGES/kio6_thumbnail.mo share/locale/br/LC_MESSAGES/kio-extras_kcms.mo share/locale/br/LC_MESSAGES/kio6_fish.mo share/locale/br/LC_MESSAGES/kio6_man.mo share/locale/br/LC_MESSAGES/kio6_nfs.mo share/locale/br/LC_MESSAGES/kio6_sftp.mo share/locale/br/LC_MESSAGES/kio6_smb.mo share/locale/br/LC_MESSAGES/kio6_thumbnail.mo share/locale/bs/LC_MESSAGES/kio-extras_kcms.mo share/locale/bs/LC_MESSAGES/kio6_activities.mo share/locale/bs/LC_MESSAGES/kio6_archive.mo share/locale/bs/LC_MESSAGES/kio6_fish.mo share/locale/bs/LC_MESSAGES/kio6_info.mo share/locale/bs/LC_MESSAGES/kio6_man.mo share/locale/bs/LC_MESSAGES/kio6_mtp.mo share/locale/bs/LC_MESSAGES/kio6_nfs.mo share/locale/bs/LC_MESSAGES/kio6_sftp.mo share/locale/bs/LC_MESSAGES/kio6_smb.mo share/locale/bs/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca/LC_MESSAGES/kio6_activities.mo share/locale/ca/LC_MESSAGES/kio6_afc.mo share/locale/ca/LC_MESSAGES/kio6_archive.mo share/locale/ca/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca/LC_MESSAGES/kio6_fish.mo share/locale/ca/LC_MESSAGES/kio6_info.mo share/locale/ca/LC_MESSAGES/kio6_man.mo share/locale/ca/LC_MESSAGES/kio6_mtp.mo share/locale/ca/LC_MESSAGES/kio6_nfs.mo share/locale/ca/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca/LC_MESSAGES/kio6_sftp.mo share/locale/ca/LC_MESSAGES/kio6_smb.mo share/locale/ca/LC_MESSAGES/kio6_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ca@valencia/LC_MESSAGES/kio6_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio6_afc.mo share/locale/ca@valencia/LC_MESSAGES/kio6_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ca@valencia/LC_MESSAGES/kio6_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio6_info.mo share/locale/ca@valencia/LC_MESSAGES/kio6_man.mo share/locale/ca@valencia/LC_MESSAGES/kio6_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ca@valencia/LC_MESSAGES/kio6_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio6_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio6_thumbnail.mo share/locale/cs/LC_MESSAGES/kio-extras_kcms.mo share/locale/cs/LC_MESSAGES/kio6_activities.mo share/locale/cs/LC_MESSAGES/kio6_afc.mo share/locale/cs/LC_MESSAGES/kio6_archive.mo share/locale/cs/LC_MESSAGES/kio6_filenamesearch.mo share/locale/cs/LC_MESSAGES/kio6_fish.mo share/locale/cs/LC_MESSAGES/kio6_info.mo share/locale/cs/LC_MESSAGES/kio6_man.mo share/locale/cs/LC_MESSAGES/kio6_mtp.mo share/locale/cs/LC_MESSAGES/kio6_nfs.mo share/locale/cs/LC_MESSAGES/kio6_recentlyused.mo share/locale/cs/LC_MESSAGES/kio6_sftp.mo share/locale/cs/LC_MESSAGES/kio6_smb.mo share/locale/cs/LC_MESSAGES/kio6_thumbnail.mo share/locale/csb/LC_MESSAGES/kio-extras_kcms.mo share/locale/csb/LC_MESSAGES/kio6_archive.mo share/locale/csb/LC_MESSAGES/kio6_fish.mo share/locale/csb/LC_MESSAGES/kio6_man.mo share/locale/csb/LC_MESSAGES/kio6_nfs.mo share/locale/csb/LC_MESSAGES/kio6_sftp.mo share/locale/csb/LC_MESSAGES/kio6_smb.mo share/locale/csb/LC_MESSAGES/kio6_thumbnail.mo share/locale/cy/LC_MESSAGES/kio-extras_kcms.mo share/locale/cy/LC_MESSAGES/kio6_fish.mo share/locale/cy/LC_MESSAGES/kio6_man.mo share/locale/cy/LC_MESSAGES/kio6_nfs.mo share/locale/cy/LC_MESSAGES/kio6_sftp.mo share/locale/cy/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio-extras_kcms.mo share/locale/da/LC_MESSAGES/kio6_activities.mo share/locale/da/LC_MESSAGES/kio6_archive.mo share/locale/da/LC_MESSAGES/kio6_fish.mo share/locale/da/LC_MESSAGES/kio6_info.mo share/locale/da/LC_MESSAGES/kio6_man.mo share/locale/da/LC_MESSAGES/kio6_mtp.mo share/locale/da/LC_MESSAGES/kio6_nfs.mo share/locale/da/LC_MESSAGES/kio6_sftp.mo share/locale/da/LC_MESSAGES/kio6_smb.mo share/locale/da/LC_MESSAGES/kio6_thumbnail.mo share/locale/de/LC_MESSAGES/kio-extras_kcms.mo share/locale/de/LC_MESSAGES/kio6_activities.mo share/locale/de/LC_MESSAGES/kio6_afc.mo share/locale/de/LC_MESSAGES/kio6_archive.mo share/locale/de/LC_MESSAGES/kio6_filenamesearch.mo share/locale/de/LC_MESSAGES/kio6_fish.mo share/locale/de/LC_MESSAGES/kio6_info.mo share/locale/de/LC_MESSAGES/kio6_man.mo share/locale/de/LC_MESSAGES/kio6_mtp.mo share/locale/de/LC_MESSAGES/kio6_nfs.mo share/locale/de/LC_MESSAGES/kio6_recentlyused.mo share/locale/de/LC_MESSAGES/kio6_sftp.mo share/locale/de/LC_MESSAGES/kio6_smb.mo share/locale/de/LC_MESSAGES/kio6_thumbnail.mo share/locale/el/LC_MESSAGES/kio-extras_kcms.mo share/locale/el/LC_MESSAGES/kio6_activities.mo share/locale/el/LC_MESSAGES/kio6_archive.mo share/locale/el/LC_MESSAGES/kio6_fish.mo share/locale/el/LC_MESSAGES/kio6_info.mo share/locale/el/LC_MESSAGES/kio6_man.mo share/locale/el/LC_MESSAGES/kio6_mtp.mo share/locale/el/LC_MESSAGES/kio6_nfs.mo share/locale/el/LC_MESSAGES/kio6_sftp.mo share/locale/el/LC_MESSAGES/kio6_smb.mo share/locale/el/LC_MESSAGES/kio6_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kio-extras_kcms.mo share/locale/en_GB/LC_MESSAGES/kio6_activities.mo share/locale/en_GB/LC_MESSAGES/kio6_afc.mo share/locale/en_GB/LC_MESSAGES/kio6_archive.mo share/locale/en_GB/LC_MESSAGES/kio6_filenamesearch.mo share/locale/en_GB/LC_MESSAGES/kio6_fish.mo share/locale/en_GB/LC_MESSAGES/kio6_info.mo share/locale/en_GB/LC_MESSAGES/kio6_man.mo share/locale/en_GB/LC_MESSAGES/kio6_mtp.mo share/locale/en_GB/LC_MESSAGES/kio6_nfs.mo share/locale/en_GB/LC_MESSAGES/kio6_recentlyused.mo share/locale/en_GB/LC_MESSAGES/kio6_sftp.mo share/locale/en_GB/LC_MESSAGES/kio6_smb.mo share/locale/en_GB/LC_MESSAGES/kio6_thumbnail.mo share/locale/eo/LC_MESSAGES/kio-extras_kcms.mo share/locale/eo/LC_MESSAGES/kio6_activities.mo share/locale/eo/LC_MESSAGES/kio6_afc.mo share/locale/eo/LC_MESSAGES/kio6_archive.mo share/locale/eo/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eo/LC_MESSAGES/kio6_fish.mo share/locale/eo/LC_MESSAGES/kio6_info.mo share/locale/eo/LC_MESSAGES/kio6_man.mo share/locale/eo/LC_MESSAGES/kio6_mtp.mo share/locale/eo/LC_MESSAGES/kio6_nfs.mo share/locale/eo/LC_MESSAGES/kio6_recentlyused.mo share/locale/eo/LC_MESSAGES/kio6_sftp.mo share/locale/eo/LC_MESSAGES/kio6_smb.mo share/locale/eo/LC_MESSAGES/kio6_thumbnail.mo share/locale/es/LC_MESSAGES/kio-extras_kcms.mo share/locale/es/LC_MESSAGES/kio6_activities.mo share/locale/es/LC_MESSAGES/kio6_afc.mo share/locale/es/LC_MESSAGES/kio6_archive.mo share/locale/es/LC_MESSAGES/kio6_filenamesearch.mo share/locale/es/LC_MESSAGES/kio6_fish.mo share/locale/es/LC_MESSAGES/kio6_info.mo share/locale/es/LC_MESSAGES/kio6_man.mo share/locale/es/LC_MESSAGES/kio6_mtp.mo share/locale/es/LC_MESSAGES/kio6_nfs.mo share/locale/es/LC_MESSAGES/kio6_recentlyused.mo share/locale/es/LC_MESSAGES/kio6_sftp.mo share/locale/es/LC_MESSAGES/kio6_smb.mo share/locale/es/LC_MESSAGES/kio6_thumbnail.mo share/locale/et/LC_MESSAGES/kio-extras_kcms.mo share/locale/et/LC_MESSAGES/kio6_activities.mo share/locale/et/LC_MESSAGES/kio6_archive.mo share/locale/et/LC_MESSAGES/kio6_fish.mo share/locale/et/LC_MESSAGES/kio6_info.mo share/locale/et/LC_MESSAGES/kio6_man.mo share/locale/et/LC_MESSAGES/kio6_mtp.mo share/locale/et/LC_MESSAGES/kio6_nfs.mo share/locale/et/LC_MESSAGES/kio6_sftp.mo share/locale/et/LC_MESSAGES/kio6_smb.mo share/locale/et/LC_MESSAGES/kio6_thumbnail.mo share/locale/eu/LC_MESSAGES/kio-extras_kcms.mo share/locale/eu/LC_MESSAGES/kio6_activities.mo share/locale/eu/LC_MESSAGES/kio6_afc.mo share/locale/eu/LC_MESSAGES/kio6_archive.mo share/locale/eu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/eu/LC_MESSAGES/kio6_fish.mo share/locale/eu/LC_MESSAGES/kio6_info.mo share/locale/eu/LC_MESSAGES/kio6_man.mo share/locale/eu/LC_MESSAGES/kio6_mtp.mo share/locale/eu/LC_MESSAGES/kio6_nfs.mo share/locale/eu/LC_MESSAGES/kio6_recentlyused.mo share/locale/eu/LC_MESSAGES/kio6_sftp.mo share/locale/eu/LC_MESSAGES/kio6_smb.mo share/locale/eu/LC_MESSAGES/kio6_thumbnail.mo share/locale/fa/LC_MESSAGES/kio-extras_kcms.mo share/locale/fa/LC_MESSAGES/kio6_archive.mo share/locale/fa/LC_MESSAGES/kio6_fish.mo share/locale/fa/LC_MESSAGES/kio6_info.mo share/locale/fa/LC_MESSAGES/kio6_man.mo share/locale/fa/LC_MESSAGES/kio6_nfs.mo share/locale/fa/LC_MESSAGES/kio6_sftp.mo share/locale/fa/LC_MESSAGES/kio6_smb.mo share/locale/fa/LC_MESSAGES/kio6_thumbnail.mo share/locale/fi/LC_MESSAGES/kio-extras_kcms.mo share/locale/fi/LC_MESSAGES/kio6_activities.mo share/locale/fi/LC_MESSAGES/kio6_afc.mo share/locale/fi/LC_MESSAGES/kio6_archive.mo share/locale/fi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fi/LC_MESSAGES/kio6_fish.mo share/locale/fi/LC_MESSAGES/kio6_info.mo share/locale/fi/LC_MESSAGES/kio6_man.mo share/locale/fi/LC_MESSAGES/kio6_mtp.mo share/locale/fi/LC_MESSAGES/kio6_nfs.mo share/locale/fi/LC_MESSAGES/kio6_recentlyused.mo share/locale/fi/LC_MESSAGES/kio6_sftp.mo share/locale/fi/LC_MESSAGES/kio6_smb.mo share/locale/fi/LC_MESSAGES/kio6_thumbnail.mo share/locale/fr/LC_MESSAGES/kio-extras_kcms.mo share/locale/fr/LC_MESSAGES/kio6_activities.mo share/locale/fr/LC_MESSAGES/kio6_afc.mo share/locale/fr/LC_MESSAGES/kio6_archive.mo share/locale/fr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/fr/LC_MESSAGES/kio6_fish.mo share/locale/fr/LC_MESSAGES/kio6_info.mo share/locale/fr/LC_MESSAGES/kio6_man.mo share/locale/fr/LC_MESSAGES/kio6_mtp.mo share/locale/fr/LC_MESSAGES/kio6_nfs.mo share/locale/fr/LC_MESSAGES/kio6_recentlyused.mo share/locale/fr/LC_MESSAGES/kio6_sftp.mo share/locale/fr/LC_MESSAGES/kio6_smb.mo share/locale/fr/LC_MESSAGES/kio6_thumbnail.mo share/locale/fy/LC_MESSAGES/kio-extras_kcms.mo share/locale/fy/LC_MESSAGES/kio6_archive.mo share/locale/fy/LC_MESSAGES/kio6_fish.mo share/locale/fy/LC_MESSAGES/kio6_info.mo share/locale/fy/LC_MESSAGES/kio6_man.mo share/locale/fy/LC_MESSAGES/kio6_nfs.mo share/locale/fy/LC_MESSAGES/kio6_sftp.mo share/locale/fy/LC_MESSAGES/kio6_smb.mo share/locale/fy/LC_MESSAGES/kio6_thumbnail.mo share/locale/ga/LC_MESSAGES/kio-extras_kcms.mo share/locale/ga/LC_MESSAGES/kio6_activities.mo share/locale/ga/LC_MESSAGES/kio6_afc.mo share/locale/ga/LC_MESSAGES/kio6_archive.mo share/locale/ga/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ga/LC_MESSAGES/kio6_fish.mo share/locale/ga/LC_MESSAGES/kio6_info.mo share/locale/ga/LC_MESSAGES/kio6_man.mo share/locale/ga/LC_MESSAGES/kio6_mtp.mo share/locale/ga/LC_MESSAGES/kio6_nfs.mo share/locale/ga/LC_MESSAGES/kio6_recentlyused.mo share/locale/ga/LC_MESSAGES/kio6_sftp.mo share/locale/ga/LC_MESSAGES/kio6_smb.mo share/locale/ga/LC_MESSAGES/kio6_thumbnail.mo share/locale/gd/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kio-extras_kcms.mo share/locale/gl/LC_MESSAGES/kio6_activities.mo share/locale/gl/LC_MESSAGES/kio6_afc.mo share/locale/gl/LC_MESSAGES/kio6_archive.mo share/locale/gl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/gl/LC_MESSAGES/kio6_fish.mo share/locale/gl/LC_MESSAGES/kio6_info.mo share/locale/gl/LC_MESSAGES/kio6_man.mo share/locale/gl/LC_MESSAGES/kio6_mtp.mo share/locale/gl/LC_MESSAGES/kio6_nfs.mo share/locale/gl/LC_MESSAGES/kio6_recentlyused.mo share/locale/gl/LC_MESSAGES/kio6_sftp.mo share/locale/gl/LC_MESSAGES/kio6_smb.mo share/locale/gl/LC_MESSAGES/kio6_thumbnail.mo share/locale/gu/LC_MESSAGES/kio-extras_kcms.mo share/locale/gu/LC_MESSAGES/kio6_activities.mo share/locale/gu/LC_MESSAGES/kio6_archive.mo share/locale/gu/LC_MESSAGES/kio6_fish.mo share/locale/gu/LC_MESSAGES/kio6_info.mo share/locale/gu/LC_MESSAGES/kio6_man.mo share/locale/gu/LC_MESSAGES/kio6_nfs.mo share/locale/gu/LC_MESSAGES/kio6_sftp.mo share/locale/gu/LC_MESSAGES/kio6_smb.mo share/locale/gu/LC_MESSAGES/kio6_thumbnail.mo share/locale/he/LC_MESSAGES/kio-extras_kcms.mo share/locale/he/LC_MESSAGES/kio6_activities.mo share/locale/he/LC_MESSAGES/kio6_afc.mo share/locale/he/LC_MESSAGES/kio6_archive.mo share/locale/he/LC_MESSAGES/kio6_filenamesearch.mo share/locale/he/LC_MESSAGES/kio6_fish.mo share/locale/he/LC_MESSAGES/kio6_info.mo share/locale/he/LC_MESSAGES/kio6_man.mo share/locale/he/LC_MESSAGES/kio6_mtp.mo share/locale/he/LC_MESSAGES/kio6_nfs.mo share/locale/he/LC_MESSAGES/kio6_recentlyused.mo share/locale/he/LC_MESSAGES/kio6_sftp.mo share/locale/he/LC_MESSAGES/kio6_smb.mo share/locale/he/LC_MESSAGES/kio6_thumbnail.mo share/locale/hi/LC_MESSAGES/kio-extras_kcms.mo share/locale/hi/LC_MESSAGES/kio6_activities.mo share/locale/hi/LC_MESSAGES/kio6_afc.mo share/locale/hi/LC_MESSAGES/kio6_archive.mo share/locale/hi/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hi/LC_MESSAGES/kio6_fish.mo share/locale/hi/LC_MESSAGES/kio6_info.mo share/locale/hi/LC_MESSAGES/kio6_man.mo share/locale/hi/LC_MESSAGES/kio6_mtp.mo share/locale/hi/LC_MESSAGES/kio6_nfs.mo share/locale/hi/LC_MESSAGES/kio6_recentlyused.mo share/locale/hi/LC_MESSAGES/kio6_sftp.mo share/locale/hi/LC_MESSAGES/kio6_smb.mo share/locale/hi/LC_MESSAGES/kio6_thumbnail.mo share/locale/hne/LC_MESSAGES/kio6_archive.mo share/locale/hne/LC_MESSAGES/kio6_fish.mo share/locale/hne/LC_MESSAGES/kio6_man.mo share/locale/hne/LC_MESSAGES/kio6_nfs.mo share/locale/hne/LC_MESSAGES/kio6_sftp.mo share/locale/hne/LC_MESSAGES/kio6_smb.mo share/locale/hne/LC_MESSAGES/kio6_thumbnail.mo share/locale/hr/LC_MESSAGES/kio-extras_kcms.mo share/locale/hr/LC_MESSAGES/kio6_activities.mo share/locale/hr/LC_MESSAGES/kio6_archive.mo share/locale/hr/LC_MESSAGES/kio6_fish.mo share/locale/hr/LC_MESSAGES/kio6_info.mo share/locale/hr/LC_MESSAGES/kio6_man.mo share/locale/hr/LC_MESSAGES/kio6_nfs.mo share/locale/hr/LC_MESSAGES/kio6_sftp.mo share/locale/hr/LC_MESSAGES/kio6_smb.mo share/locale/hr/LC_MESSAGES/kio6_thumbnail.mo share/locale/hsb/LC_MESSAGES/kio-extras_kcms.mo share/locale/hsb/LC_MESSAGES/kio6_archive.mo share/locale/hsb/LC_MESSAGES/kio6_fish.mo share/locale/hsb/LC_MESSAGES/kio6_man.mo share/locale/hsb/LC_MESSAGES/kio6_nfs.mo share/locale/hsb/LC_MESSAGES/kio6_sftp.mo share/locale/hsb/LC_MESSAGES/kio6_smb.mo share/locale/hsb/LC_MESSAGES/kio6_thumbnail.mo share/locale/hu/LC_MESSAGES/kio-extras_kcms.mo share/locale/hu/LC_MESSAGES/kio6_activities.mo share/locale/hu/LC_MESSAGES/kio6_afc.mo share/locale/hu/LC_MESSAGES/kio6_archive.mo share/locale/hu/LC_MESSAGES/kio6_filenamesearch.mo share/locale/hu/LC_MESSAGES/kio6_fish.mo share/locale/hu/LC_MESSAGES/kio6_info.mo share/locale/hu/LC_MESSAGES/kio6_man.mo share/locale/hu/LC_MESSAGES/kio6_mtp.mo share/locale/hu/LC_MESSAGES/kio6_nfs.mo share/locale/hu/LC_MESSAGES/kio6_recentlyused.mo share/locale/hu/LC_MESSAGES/kio6_sftp.mo share/locale/hu/LC_MESSAGES/kio6_smb.mo share/locale/hu/LC_MESSAGES/kio6_thumbnail.mo share/locale/hy/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kio-extras_kcms.mo share/locale/ia/LC_MESSAGES/kio6_activities.mo share/locale/ia/LC_MESSAGES/kio6_afc.mo share/locale/ia/LC_MESSAGES/kio6_archive.mo share/locale/ia/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ia/LC_MESSAGES/kio6_fish.mo share/locale/ia/LC_MESSAGES/kio6_info.mo share/locale/ia/LC_MESSAGES/kio6_man.mo share/locale/ia/LC_MESSAGES/kio6_mtp.mo share/locale/ia/LC_MESSAGES/kio6_nfs.mo share/locale/ia/LC_MESSAGES/kio6_recentlyused.mo share/locale/ia/LC_MESSAGES/kio6_sftp.mo share/locale/ia/LC_MESSAGES/kio6_smb.mo share/locale/ia/LC_MESSAGES/kio6_thumbnail.mo share/locale/id/LC_MESSAGES/kio-extras_kcms.mo share/locale/id/LC_MESSAGES/kio6_activities.mo share/locale/id/LC_MESSAGES/kio6_archive.mo share/locale/id/LC_MESSAGES/kio6_fish.mo share/locale/id/LC_MESSAGES/kio6_info.mo share/locale/id/LC_MESSAGES/kio6_man.mo share/locale/id/LC_MESSAGES/kio6_mtp.mo share/locale/id/LC_MESSAGES/kio6_nfs.mo share/locale/id/LC_MESSAGES/kio6_sftp.mo share/locale/id/LC_MESSAGES/kio6_smb.mo share/locale/id/LC_MESSAGES/kio6_thumbnail.mo share/locale/ie/LC_MESSAGES/kio-extras_kcms.mo share/locale/ie/LC_MESSAGES/kio6_archive.mo share/locale/ie/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kio-extras_kcms.mo share/locale/is/LC_MESSAGES/kio6_activities.mo share/locale/is/LC_MESSAGES/kio6_afc.mo share/locale/is/LC_MESSAGES/kio6_archive.mo share/locale/is/LC_MESSAGES/kio6_filenamesearch.mo share/locale/is/LC_MESSAGES/kio6_fish.mo share/locale/is/LC_MESSAGES/kio6_info.mo share/locale/is/LC_MESSAGES/kio6_man.mo share/locale/is/LC_MESSAGES/kio6_mtp.mo share/locale/is/LC_MESSAGES/kio6_nfs.mo share/locale/is/LC_MESSAGES/kio6_recentlyused.mo share/locale/is/LC_MESSAGES/kio6_sftp.mo share/locale/is/LC_MESSAGES/kio6_smb.mo share/locale/is/LC_MESSAGES/kio6_thumbnail.mo share/locale/it/LC_MESSAGES/kio-extras_kcms.mo share/locale/it/LC_MESSAGES/kio6_activities.mo share/locale/it/LC_MESSAGES/kio6_afc.mo share/locale/it/LC_MESSAGES/kio6_archive.mo share/locale/it/LC_MESSAGES/kio6_filenamesearch.mo share/locale/it/LC_MESSAGES/kio6_fish.mo share/locale/it/LC_MESSAGES/kio6_info.mo share/locale/it/LC_MESSAGES/kio6_man.mo share/locale/it/LC_MESSAGES/kio6_mtp.mo share/locale/it/LC_MESSAGES/kio6_nfs.mo share/locale/it/LC_MESSAGES/kio6_recentlyused.mo share/locale/it/LC_MESSAGES/kio6_sftp.mo share/locale/it/LC_MESSAGES/kio6_smb.mo share/locale/it/LC_MESSAGES/kio6_thumbnail.mo share/locale/ja/LC_MESSAGES/kio-extras_kcms.mo share/locale/ja/LC_MESSAGES/kio6_activities.mo share/locale/ja/LC_MESSAGES/kio6_afc.mo share/locale/ja/LC_MESSAGES/kio6_archive.mo share/locale/ja/LC_MESSAGES/kio6_fish.mo share/locale/ja/LC_MESSAGES/kio6_info.mo share/locale/ja/LC_MESSAGES/kio6_man.mo share/locale/ja/LC_MESSAGES/kio6_mtp.mo share/locale/ja/LC_MESSAGES/kio6_nfs.mo share/locale/ja/LC_MESSAGES/kio6_sftp.mo share/locale/ja/LC_MESSAGES/kio6_smb.mo share/locale/ja/LC_MESSAGES/kio6_thumbnail.mo share/locale/ka/LC_MESSAGES/kio-extras_kcms.mo share/locale/ka/LC_MESSAGES/kio6_activities.mo share/locale/ka/LC_MESSAGES/kio6_afc.mo share/locale/ka/LC_MESSAGES/kio6_archive.mo share/locale/ka/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ka/LC_MESSAGES/kio6_fish.mo share/locale/ka/LC_MESSAGES/kio6_info.mo share/locale/ka/LC_MESSAGES/kio6_man.mo share/locale/ka/LC_MESSAGES/kio6_mtp.mo share/locale/ka/LC_MESSAGES/kio6_nfs.mo share/locale/ka/LC_MESSAGES/kio6_recentlyused.mo share/locale/ka/LC_MESSAGES/kio6_sftp.mo share/locale/ka/LC_MESSAGES/kio6_smb.mo share/locale/ka/LC_MESSAGES/kio6_thumbnail.mo share/locale/kk/LC_MESSAGES/kio-extras_kcms.mo share/locale/kk/LC_MESSAGES/kio6_activities.mo share/locale/kk/LC_MESSAGES/kio6_archive.mo share/locale/kk/LC_MESSAGES/kio6_fish.mo share/locale/kk/LC_MESSAGES/kio6_info.mo share/locale/kk/LC_MESSAGES/kio6_man.mo share/locale/kk/LC_MESSAGES/kio6_nfs.mo share/locale/kk/LC_MESSAGES/kio6_sftp.mo share/locale/kk/LC_MESSAGES/kio6_smb.mo share/locale/kk/LC_MESSAGES/kio6_thumbnail.mo share/locale/km/LC_MESSAGES/kio-extras_kcms.mo share/locale/km/LC_MESSAGES/kio6_activities.mo share/locale/km/LC_MESSAGES/kio6_archive.mo share/locale/km/LC_MESSAGES/kio6_fish.mo share/locale/km/LC_MESSAGES/kio6_info.mo share/locale/km/LC_MESSAGES/kio6_man.mo share/locale/km/LC_MESSAGES/kio6_nfs.mo share/locale/km/LC_MESSAGES/kio6_sftp.mo share/locale/km/LC_MESSAGES/kio6_smb.mo share/locale/km/LC_MESSAGES/kio6_thumbnail.mo share/locale/kn/LC_MESSAGES/kio6_activities.mo share/locale/kn/LC_MESSAGES/kio6_archive.mo share/locale/kn/LC_MESSAGES/kio6_fish.mo share/locale/kn/LC_MESSAGES/kio6_info.mo share/locale/kn/LC_MESSAGES/kio6_man.mo share/locale/kn/LC_MESSAGES/kio6_nfs.mo share/locale/kn/LC_MESSAGES/kio6_sftp.mo share/locale/kn/LC_MESSAGES/kio6_smb.mo share/locale/kn/LC_MESSAGES/kio6_thumbnail.mo share/locale/ko/LC_MESSAGES/kio-extras_kcms.mo share/locale/ko/LC_MESSAGES/kio6_activities.mo share/locale/ko/LC_MESSAGES/kio6_afc.mo share/locale/ko/LC_MESSAGES/kio6_archive.mo share/locale/ko/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ko/LC_MESSAGES/kio6_fish.mo share/locale/ko/LC_MESSAGES/kio6_info.mo share/locale/ko/LC_MESSAGES/kio6_man.mo share/locale/ko/LC_MESSAGES/kio6_mtp.mo share/locale/ko/LC_MESSAGES/kio6_nfs.mo share/locale/ko/LC_MESSAGES/kio6_recentlyused.mo share/locale/ko/LC_MESSAGES/kio6_sftp.mo share/locale/ko/LC_MESSAGES/kio6_smb.mo share/locale/ko/LC_MESSAGES/kio6_thumbnail.mo share/locale/ku/LC_MESSAGES/kio-extras_kcms.mo share/locale/ku/LC_MESSAGES/kio6_archive.mo share/locale/ku/LC_MESSAGES/kio6_fish.mo share/locale/ku/LC_MESSAGES/kio6_man.mo share/locale/ku/LC_MESSAGES/kio6_nfs.mo share/locale/ku/LC_MESSAGES/kio6_sftp.mo share/locale/ku/LC_MESSAGES/kio6_smb.mo share/locale/ku/LC_MESSAGES/kio6_thumbnail.mo share/locale/lb/LC_MESSAGES/kio6_archive.mo share/locale/lb/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kio-extras_kcms.mo share/locale/lt/LC_MESSAGES/kio6_activities.mo share/locale/lt/LC_MESSAGES/kio6_afc.mo share/locale/lt/LC_MESSAGES/kio6_archive.mo share/locale/lt/LC_MESSAGES/kio6_filenamesearch.mo share/locale/lt/LC_MESSAGES/kio6_fish.mo share/locale/lt/LC_MESSAGES/kio6_info.mo share/locale/lt/LC_MESSAGES/kio6_man.mo share/locale/lt/LC_MESSAGES/kio6_mtp.mo share/locale/lt/LC_MESSAGES/kio6_nfs.mo share/locale/lt/LC_MESSAGES/kio6_recentlyused.mo share/locale/lt/LC_MESSAGES/kio6_sftp.mo share/locale/lt/LC_MESSAGES/kio6_smb.mo share/locale/lt/LC_MESSAGES/kio6_thumbnail.mo share/locale/lv/LC_MESSAGES/kio-extras_kcms.mo share/locale/lv/LC_MESSAGES/kio6_activities.mo share/locale/lv/LC_MESSAGES/kio6_afc.mo share/locale/lv/LC_MESSAGES/kio6_archive.mo share/locale/lv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/lv/LC_MESSAGES/kio6_fish.mo share/locale/lv/LC_MESSAGES/kio6_info.mo share/locale/lv/LC_MESSAGES/kio6_man.mo share/locale/lv/LC_MESSAGES/kio6_mtp.mo share/locale/lv/LC_MESSAGES/kio6_nfs.mo share/locale/lv/LC_MESSAGES/kio6_recentlyused.mo share/locale/lv/LC_MESSAGES/kio6_sftp.mo share/locale/lv/LC_MESSAGES/kio6_smb.mo share/locale/lv/LC_MESSAGES/kio6_thumbnail.mo share/locale/mai/LC_MESSAGES/kio-extras_kcms.mo share/locale/mai/LC_MESSAGES/kio6_archive.mo share/locale/mai/LC_MESSAGES/kio6_fish.mo share/locale/mai/LC_MESSAGES/kio6_info.mo share/locale/mai/LC_MESSAGES/kio6_man.mo share/locale/mai/LC_MESSAGES/kio6_nfs.mo share/locale/mai/LC_MESSAGES/kio6_sftp.mo share/locale/mai/LC_MESSAGES/kio6_smb.mo share/locale/mai/LC_MESSAGES/kio6_thumbnail.mo share/locale/mk/LC_MESSAGES/kio-extras_kcms.mo share/locale/mk/LC_MESSAGES/kio6_archive.mo share/locale/mk/LC_MESSAGES/kio6_fish.mo share/locale/mk/LC_MESSAGES/kio6_man.mo share/locale/mk/LC_MESSAGES/kio6_nfs.mo share/locale/mk/LC_MESSAGES/kio6_sftp.mo share/locale/mk/LC_MESSAGES/kio6_smb.mo share/locale/mk/LC_MESSAGES/kio6_thumbnail.mo share/locale/ml/LC_MESSAGES/kio-extras_kcms.mo share/locale/ml/LC_MESSAGES/kio6_archive.mo share/locale/ml/LC_MESSAGES/kio6_fish.mo share/locale/ml/LC_MESSAGES/kio6_info.mo share/locale/ml/LC_MESSAGES/kio6_man.mo share/locale/ml/LC_MESSAGES/kio6_nfs.mo share/locale/ml/LC_MESSAGES/kio6_sftp.mo share/locale/ml/LC_MESSAGES/kio6_smb.mo share/locale/ml/LC_MESSAGES/kio6_thumbnail.mo share/locale/mr/LC_MESSAGES/kio-extras_kcms.mo share/locale/mr/LC_MESSAGES/kio6_activities.mo share/locale/mr/LC_MESSAGES/kio6_archive.mo share/locale/mr/LC_MESSAGES/kio6_fish.mo share/locale/mr/LC_MESSAGES/kio6_info.mo share/locale/mr/LC_MESSAGES/kio6_man.mo share/locale/mr/LC_MESSAGES/kio6_nfs.mo share/locale/mr/LC_MESSAGES/kio6_sftp.mo share/locale/mr/LC_MESSAGES/kio6_smb.mo share/locale/mr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ms/LC_MESSAGES/kio-extras_kcms.mo share/locale/ms/LC_MESSAGES/kio6_activities.mo share/locale/ms/LC_MESSAGES/kio6_archive.mo share/locale/ms/LC_MESSAGES/kio6_fish.mo share/locale/ms/LC_MESSAGES/kio6_info.mo share/locale/ms/LC_MESSAGES/kio6_man.mo share/locale/ms/LC_MESSAGES/kio6_nfs.mo share/locale/ms/LC_MESSAGES/kio6_sftp.mo share/locale/ms/LC_MESSAGES/kio6_smb.mo share/locale/ms/LC_MESSAGES/kio6_thumbnail.mo share/locale/my/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kio-extras_kcms.mo share/locale/nb/LC_MESSAGES/kio6_activities.mo share/locale/nb/LC_MESSAGES/kio6_archive.mo share/locale/nb/LC_MESSAGES/kio6_fish.mo share/locale/nb/LC_MESSAGES/kio6_info.mo share/locale/nb/LC_MESSAGES/kio6_man.mo share/locale/nb/LC_MESSAGES/kio6_nfs.mo share/locale/nb/LC_MESSAGES/kio6_sftp.mo share/locale/nb/LC_MESSAGES/kio6_smb.mo share/locale/nb/LC_MESSAGES/kio6_thumbnail.mo share/locale/nds/LC_MESSAGES/kio-extras_kcms.mo share/locale/nds/LC_MESSAGES/kio6_activities.mo share/locale/nds/LC_MESSAGES/kio6_archive.mo share/locale/nds/LC_MESSAGES/kio6_fish.mo share/locale/nds/LC_MESSAGES/kio6_info.mo share/locale/nds/LC_MESSAGES/kio6_man.mo share/locale/nds/LC_MESSAGES/kio6_nfs.mo share/locale/nds/LC_MESSAGES/kio6_sftp.mo share/locale/nds/LC_MESSAGES/kio6_smb.mo share/locale/nds/LC_MESSAGES/kio6_thumbnail.mo share/locale/ne/LC_MESSAGES/kio-extras_kcms.mo share/locale/ne/LC_MESSAGES/kio6_archive.mo share/locale/ne/LC_MESSAGES/kio6_fish.mo share/locale/ne/LC_MESSAGES/kio6_man.mo share/locale/ne/LC_MESSAGES/kio6_nfs.mo share/locale/ne/LC_MESSAGES/kio6_sftp.mo share/locale/ne/LC_MESSAGES/kio6_smb.mo share/locale/ne/LC_MESSAGES/kio6_thumbnail.mo share/locale/nl/LC_MESSAGES/kio-extras_kcms.mo share/locale/nl/LC_MESSAGES/kio6_activities.mo share/locale/nl/LC_MESSAGES/kio6_afc.mo share/locale/nl/LC_MESSAGES/kio6_archive.mo share/locale/nl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nl/LC_MESSAGES/kio6_fish.mo share/locale/nl/LC_MESSAGES/kio6_info.mo share/locale/nl/LC_MESSAGES/kio6_man.mo share/locale/nl/LC_MESSAGES/kio6_mtp.mo share/locale/nl/LC_MESSAGES/kio6_nfs.mo share/locale/nl/LC_MESSAGES/kio6_recentlyused.mo share/locale/nl/LC_MESSAGES/kio6_sftp.mo share/locale/nl/LC_MESSAGES/kio6_smb.mo share/locale/nl/LC_MESSAGES/kio6_thumbnail.mo share/locale/nn/LC_MESSAGES/kio-extras_kcms.mo share/locale/nn/LC_MESSAGES/kio6_activities.mo share/locale/nn/LC_MESSAGES/kio6_afc.mo share/locale/nn/LC_MESSAGES/kio6_archive.mo share/locale/nn/LC_MESSAGES/kio6_filenamesearch.mo share/locale/nn/LC_MESSAGES/kio6_fish.mo share/locale/nn/LC_MESSAGES/kio6_info.mo share/locale/nn/LC_MESSAGES/kio6_man.mo share/locale/nn/LC_MESSAGES/kio6_mtp.mo share/locale/nn/LC_MESSAGES/kio6_nfs.mo share/locale/nn/LC_MESSAGES/kio6_recentlyused.mo share/locale/nn/LC_MESSAGES/kio6_sftp.mo share/locale/nn/LC_MESSAGES/kio6_smb.mo share/locale/nn/LC_MESSAGES/kio6_thumbnail.mo share/locale/oc/LC_MESSAGES/kio-extras_kcms.mo share/locale/oc/LC_MESSAGES/kio6_archive.mo share/locale/oc/LC_MESSAGES/kio6_fish.mo share/locale/oc/LC_MESSAGES/kio6_man.mo share/locale/oc/LC_MESSAGES/kio6_nfs.mo share/locale/oc/LC_MESSAGES/kio6_sftp.mo share/locale/oc/LC_MESSAGES/kio6_smb.mo share/locale/oc/LC_MESSAGES/kio6_thumbnail.mo share/locale/or/LC_MESSAGES/kio6_archive.mo share/locale/or/LC_MESSAGES/kio6_fish.mo share/locale/or/LC_MESSAGES/kio6_man.mo share/locale/or/LC_MESSAGES/kio6_nfs.mo share/locale/or/LC_MESSAGES/kio6_sftp.mo share/locale/or/LC_MESSAGES/kio6_smb.mo share/locale/or/LC_MESSAGES/kio6_thumbnail.mo share/locale/pa/LC_MESSAGES/kio-extras_kcms.mo share/locale/pa/LC_MESSAGES/kio6_activities.mo share/locale/pa/LC_MESSAGES/kio6_afc.mo share/locale/pa/LC_MESSAGES/kio6_archive.mo share/locale/pa/LC_MESSAGES/kio6_fish.mo share/locale/pa/LC_MESSAGES/kio6_info.mo share/locale/pa/LC_MESSAGES/kio6_man.mo share/locale/pa/LC_MESSAGES/kio6_mtp.mo share/locale/pa/LC_MESSAGES/kio6_nfs.mo share/locale/pa/LC_MESSAGES/kio6_sftp.mo share/locale/pa/LC_MESSAGES/kio6_smb.mo share/locale/pa/LC_MESSAGES/kio6_thumbnail.mo share/locale/pl/LC_MESSAGES/kio-extras_kcms.mo share/locale/pl/LC_MESSAGES/kio6_activities.mo share/locale/pl/LC_MESSAGES/kio6_afc.mo share/locale/pl/LC_MESSAGES/kio6_archive.mo share/locale/pl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pl/LC_MESSAGES/kio6_fish.mo share/locale/pl/LC_MESSAGES/kio6_info.mo share/locale/pl/LC_MESSAGES/kio6_man.mo share/locale/pl/LC_MESSAGES/kio6_mtp.mo share/locale/pl/LC_MESSAGES/kio6_nfs.mo share/locale/pl/LC_MESSAGES/kio6_recentlyused.mo share/locale/pl/LC_MESSAGES/kio6_sftp.mo share/locale/pl/LC_MESSAGES/kio6_smb.mo share/locale/pl/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt/LC_MESSAGES/kio6_activities.mo share/locale/pt/LC_MESSAGES/kio6_afc.mo share/locale/pt/LC_MESSAGES/kio6_archive.mo share/locale/pt/LC_MESSAGES/kio6_fish.mo share/locale/pt/LC_MESSAGES/kio6_info.mo share/locale/pt/LC_MESSAGES/kio6_man.mo share/locale/pt/LC_MESSAGES/kio6_mtp.mo share/locale/pt/LC_MESSAGES/kio6_nfs.mo share/locale/pt/LC_MESSAGES/kio6_sftp.mo share/locale/pt/LC_MESSAGES/kio6_smb.mo share/locale/pt/LC_MESSAGES/kio6_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kio-extras_kcms.mo share/locale/pt_BR/LC_MESSAGES/kio6_activities.mo share/locale/pt_BR/LC_MESSAGES/kio6_afc.mo share/locale/pt_BR/LC_MESSAGES/kio6_archive.mo share/locale/pt_BR/LC_MESSAGES/kio6_filenamesearch.mo share/locale/pt_BR/LC_MESSAGES/kio6_fish.mo share/locale/pt_BR/LC_MESSAGES/kio6_info.mo share/locale/pt_BR/LC_MESSAGES/kio6_man.mo share/locale/pt_BR/LC_MESSAGES/kio6_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio6_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio6_recentlyused.mo share/locale/pt_BR/LC_MESSAGES/kio6_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio6_smb.mo share/locale/pt_BR/LC_MESSAGES/kio6_thumbnail.mo share/locale/ro/LC_MESSAGES/kio-extras_kcms.mo share/locale/ro/LC_MESSAGES/kio6_activities.mo +share/locale/ro/LC_MESSAGES/kio6_afc.mo share/locale/ro/LC_MESSAGES/kio6_archive.mo share/locale/ro/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ro/LC_MESSAGES/kio6_fish.mo share/locale/ro/LC_MESSAGES/kio6_info.mo share/locale/ro/LC_MESSAGES/kio6_man.mo share/locale/ro/LC_MESSAGES/kio6_mtp.mo share/locale/ro/LC_MESSAGES/kio6_nfs.mo share/locale/ro/LC_MESSAGES/kio6_recentlyused.mo share/locale/ro/LC_MESSAGES/kio6_sftp.mo share/locale/ro/LC_MESSAGES/kio6_smb.mo share/locale/ro/LC_MESSAGES/kio6_thumbnail.mo share/locale/ru/LC_MESSAGES/kio-extras_kcms.mo share/locale/ru/LC_MESSAGES/kio6_activities.mo share/locale/ru/LC_MESSAGES/kio6_afc.mo share/locale/ru/LC_MESSAGES/kio6_archive.mo share/locale/ru/LC_MESSAGES/kio6_filenamesearch.mo share/locale/ru/LC_MESSAGES/kio6_fish.mo share/locale/ru/LC_MESSAGES/kio6_info.mo share/locale/ru/LC_MESSAGES/kio6_man.mo share/locale/ru/LC_MESSAGES/kio6_mtp.mo share/locale/ru/LC_MESSAGES/kio6_nfs.mo share/locale/ru/LC_MESSAGES/kio6_recentlyused.mo share/locale/ru/LC_MESSAGES/kio6_sftp.mo share/locale/ru/LC_MESSAGES/kio6_smb.mo share/locale/ru/LC_MESSAGES/kio6_thumbnail.mo share/locale/sa/LC_MESSAGES/kio-extras_kcms.mo share/locale/sa/LC_MESSAGES/kio6_activities.mo share/locale/sa/LC_MESSAGES/kio6_afc.mo share/locale/sa/LC_MESSAGES/kio6_archive.mo share/locale/sa/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sa/LC_MESSAGES/kio6_fish.mo share/locale/sa/LC_MESSAGES/kio6_info.mo share/locale/sa/LC_MESSAGES/kio6_man.mo share/locale/sa/LC_MESSAGES/kio6_mtp.mo share/locale/sa/LC_MESSAGES/kio6_nfs.mo share/locale/sa/LC_MESSAGES/kio6_recentlyused.mo share/locale/sa/LC_MESSAGES/kio6_sftp.mo share/locale/sa/LC_MESSAGES/kio6_smb.mo share/locale/sa/LC_MESSAGES/kio6_thumbnail.mo share/locale/se/LC_MESSAGES/kio-extras_kcms.mo share/locale/se/LC_MESSAGES/kio6_activities.mo share/locale/se/LC_MESSAGES/kio6_fish.mo share/locale/se/LC_MESSAGES/kio6_man.mo share/locale/se/LC_MESSAGES/kio6_nfs.mo share/locale/se/LC_MESSAGES/kio6_sftp.mo share/locale/se/LC_MESSAGES/kio6_smb.mo share/locale/se/LC_MESSAGES/kio6_thumbnail.mo share/locale/si/LC_MESSAGES/kio6_archive.mo share/locale/si/LC_MESSAGES/kio6_fish.mo share/locale/si/LC_MESSAGES/kio6_info.mo share/locale/si/LC_MESSAGES/kio6_man.mo share/locale/si/LC_MESSAGES/kio6_nfs.mo share/locale/si/LC_MESSAGES/kio6_sftp.mo share/locale/si/LC_MESSAGES/kio6_smb.mo share/locale/si/LC_MESSAGES/kio6_thumbnail.mo share/locale/sk/LC_MESSAGES/kio-extras_kcms.mo share/locale/sk/LC_MESSAGES/kio6_activities.mo share/locale/sk/LC_MESSAGES/kio6_afc.mo share/locale/sk/LC_MESSAGES/kio6_archive.mo share/locale/sk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sk/LC_MESSAGES/kio6_fish.mo share/locale/sk/LC_MESSAGES/kio6_info.mo share/locale/sk/LC_MESSAGES/kio6_man.mo share/locale/sk/LC_MESSAGES/kio6_mtp.mo share/locale/sk/LC_MESSAGES/kio6_nfs.mo share/locale/sk/LC_MESSAGES/kio6_recentlyused.mo share/locale/sk/LC_MESSAGES/kio6_sftp.mo share/locale/sk/LC_MESSAGES/kio6_smb.mo share/locale/sk/LC_MESSAGES/kio6_thumbnail.mo share/locale/sl/LC_MESSAGES/kio-extras_kcms.mo share/locale/sl/LC_MESSAGES/kio6_activities.mo share/locale/sl/LC_MESSAGES/kio6_afc.mo share/locale/sl/LC_MESSAGES/kio6_archive.mo share/locale/sl/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sl/LC_MESSAGES/kio6_fish.mo share/locale/sl/LC_MESSAGES/kio6_info.mo share/locale/sl/LC_MESSAGES/kio6_man.mo share/locale/sl/LC_MESSAGES/kio6_mtp.mo share/locale/sl/LC_MESSAGES/kio6_nfs.mo share/locale/sl/LC_MESSAGES/kio6_recentlyused.mo share/locale/sl/LC_MESSAGES/kio6_sftp.mo share/locale/sl/LC_MESSAGES/kio6_smb.mo share/locale/sl/LC_MESSAGES/kio6_thumbnail.mo share/locale/sq/LC_MESSAGES/kio-extras_kcms.mo share/locale/sq/LC_MESSAGES/kio6_archive.mo share/locale/sq/LC_MESSAGES/kio6_fish.mo share/locale/sq/LC_MESSAGES/kio6_info.mo share/locale/sq/LC_MESSAGES/kio6_man.mo share/locale/sq/LC_MESSAGES/kio6_nfs.mo share/locale/sq/LC_MESSAGES/kio6_sftp.mo share/locale/sq/LC_MESSAGES/kio6_smb.mo share/locale/sq/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr/LC_MESSAGES/kio6_activities.mo share/locale/sr/LC_MESSAGES/kio6_archive.mo share/locale/sr/LC_MESSAGES/kio6_fish.mo share/locale/sr/LC_MESSAGES/kio6_info.mo share/locale/sr/LC_MESSAGES/kio6_man.mo share/locale/sr/LC_MESSAGES/kio6_mtp.mo share/locale/sr/LC_MESSAGES/kio6_nfs.mo share/locale/sr/LC_MESSAGES/kio6_sftp.mo share/locale/sr/LC_MESSAGES/kio6_smb.mo share/locale/sr/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavian/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavian/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_activities.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_archive.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_fish.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_info.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_man.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_smb.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sr@latin/LC_MESSAGES/kio-extras_kcms.mo share/locale/sr@latin/LC_MESSAGES/kio6_activities.mo share/locale/sr@latin/LC_MESSAGES/kio6_archive.mo share/locale/sr@latin/LC_MESSAGES/kio6_fish.mo share/locale/sr@latin/LC_MESSAGES/kio6_info.mo share/locale/sr@latin/LC_MESSAGES/kio6_man.mo share/locale/sr@latin/LC_MESSAGES/kio6_mtp.mo share/locale/sr@latin/LC_MESSAGES/kio6_nfs.mo share/locale/sr@latin/LC_MESSAGES/kio6_sftp.mo share/locale/sr@latin/LC_MESSAGES/kio6_smb.mo share/locale/sr@latin/LC_MESSAGES/kio6_thumbnail.mo share/locale/sv/LC_MESSAGES/kio-extras_kcms.mo share/locale/sv/LC_MESSAGES/kio6_activities.mo share/locale/sv/LC_MESSAGES/kio6_afc.mo share/locale/sv/LC_MESSAGES/kio6_archive.mo share/locale/sv/LC_MESSAGES/kio6_filenamesearch.mo share/locale/sv/LC_MESSAGES/kio6_fish.mo share/locale/sv/LC_MESSAGES/kio6_info.mo share/locale/sv/LC_MESSAGES/kio6_man.mo share/locale/sv/LC_MESSAGES/kio6_mtp.mo share/locale/sv/LC_MESSAGES/kio6_nfs.mo share/locale/sv/LC_MESSAGES/kio6_recentlyused.mo share/locale/sv/LC_MESSAGES/kio6_sftp.mo share/locale/sv/LC_MESSAGES/kio6_smb.mo share/locale/sv/LC_MESSAGES/kio6_thumbnail.mo share/locale/ta/LC_MESSAGES/kio-extras_kcms.mo share/locale/ta/LC_MESSAGES/kio6_activities.mo share/locale/ta/LC_MESSAGES/kio6_afc.mo share/locale/ta/LC_MESSAGES/kio6_archive.mo share/locale/ta/LC_MESSAGES/kio6_fish.mo share/locale/ta/LC_MESSAGES/kio6_info.mo share/locale/ta/LC_MESSAGES/kio6_man.mo share/locale/ta/LC_MESSAGES/kio6_mtp.mo share/locale/ta/LC_MESSAGES/kio6_nfs.mo share/locale/ta/LC_MESSAGES/kio6_sftp.mo share/locale/ta/LC_MESSAGES/kio6_smb.mo share/locale/ta/LC_MESSAGES/kio6_thumbnail.mo share/locale/te/LC_MESSAGES/kio6_archive.mo share/locale/te/LC_MESSAGES/kio6_fish.mo share/locale/te/LC_MESSAGES/kio6_man.mo share/locale/te/LC_MESSAGES/kio6_nfs.mo share/locale/te/LC_MESSAGES/kio6_sftp.mo share/locale/te/LC_MESSAGES/kio6_smb.mo share/locale/te/LC_MESSAGES/kio6_thumbnail.mo share/locale/tg/LC_MESSAGES/kio-extras_kcms.mo share/locale/tg/LC_MESSAGES/kio6_activities.mo share/locale/tg/LC_MESSAGES/kio6_archive.mo share/locale/tg/LC_MESSAGES/kio6_fish.mo share/locale/tg/LC_MESSAGES/kio6_info.mo share/locale/tg/LC_MESSAGES/kio6_man.mo share/locale/tg/LC_MESSAGES/kio6_nfs.mo share/locale/tg/LC_MESSAGES/kio6_sftp.mo share/locale/tg/LC_MESSAGES/kio6_smb.mo share/locale/tg/LC_MESSAGES/kio6_thumbnail.mo share/locale/th/LC_MESSAGES/kio-extras_kcms.mo share/locale/th/LC_MESSAGES/kio6_activities.mo share/locale/th/LC_MESSAGES/kio6_archive.mo share/locale/th/LC_MESSAGES/kio6_fish.mo share/locale/th/LC_MESSAGES/kio6_info.mo share/locale/th/LC_MESSAGES/kio6_man.mo share/locale/th/LC_MESSAGES/kio6_nfs.mo share/locale/th/LC_MESSAGES/kio6_sftp.mo share/locale/th/LC_MESSAGES/kio6_smb.mo share/locale/th/LC_MESSAGES/kio6_thumbnail.mo share/locale/tok/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kio-extras_kcms.mo share/locale/tr/LC_MESSAGES/kio6_activities.mo share/locale/tr/LC_MESSAGES/kio6_afc.mo share/locale/tr/LC_MESSAGES/kio6_archive.mo share/locale/tr/LC_MESSAGES/kio6_filenamesearch.mo share/locale/tr/LC_MESSAGES/kio6_fish.mo share/locale/tr/LC_MESSAGES/kio6_info.mo share/locale/tr/LC_MESSAGES/kio6_man.mo share/locale/tr/LC_MESSAGES/kio6_mtp.mo share/locale/tr/LC_MESSAGES/kio6_nfs.mo share/locale/tr/LC_MESSAGES/kio6_recentlyused.mo share/locale/tr/LC_MESSAGES/kio6_sftp.mo share/locale/tr/LC_MESSAGES/kio6_smb.mo share/locale/tr/LC_MESSAGES/kio6_thumbnail.mo share/locale/ug/LC_MESSAGES/kio-extras_kcms.mo share/locale/ug/LC_MESSAGES/kio6_activities.mo share/locale/ug/LC_MESSAGES/kio6_archive.mo share/locale/ug/LC_MESSAGES/kio6_fish.mo share/locale/ug/LC_MESSAGES/kio6_info.mo share/locale/ug/LC_MESSAGES/kio6_man.mo share/locale/ug/LC_MESSAGES/kio6_nfs.mo share/locale/ug/LC_MESSAGES/kio6_sftp.mo share/locale/ug/LC_MESSAGES/kio6_smb.mo share/locale/ug/LC_MESSAGES/kio6_thumbnail.mo share/locale/uk/LC_MESSAGES/kio-extras_kcms.mo share/locale/uk/LC_MESSAGES/kio6_activities.mo share/locale/uk/LC_MESSAGES/kio6_afc.mo share/locale/uk/LC_MESSAGES/kio6_archive.mo share/locale/uk/LC_MESSAGES/kio6_filenamesearch.mo share/locale/uk/LC_MESSAGES/kio6_fish.mo share/locale/uk/LC_MESSAGES/kio6_info.mo share/locale/uk/LC_MESSAGES/kio6_man.mo share/locale/uk/LC_MESSAGES/kio6_mtp.mo share/locale/uk/LC_MESSAGES/kio6_nfs.mo share/locale/uk/LC_MESSAGES/kio6_recentlyused.mo share/locale/uk/LC_MESSAGES/kio6_sftp.mo share/locale/uk/LC_MESSAGES/kio6_smb.mo share/locale/uk/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz/LC_MESSAGES/kio6_archive.mo share/locale/uz/LC_MESSAGES/kio6_fish.mo share/locale/uz/LC_MESSAGES/kio6_man.mo share/locale/uz/LC_MESSAGES/kio6_nfs.mo share/locale/uz/LC_MESSAGES/kio6_sftp.mo share/locale/uz/LC_MESSAGES/kio6_smb.mo share/locale/uz/LC_MESSAGES/kio6_thumbnail.mo share/locale/uz@cyrillic/LC_MESSAGES/kio-extras_kcms.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_archive.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_fish.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_man.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_nfs.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_sftp.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_smb.mo share/locale/uz@cyrillic/LC_MESSAGES/kio6_thumbnail.mo share/locale/vi/LC_MESSAGES/kio-extras_kcms.mo share/locale/vi/LC_MESSAGES/kio6_activities.mo share/locale/vi/LC_MESSAGES/kio6_afc.mo share/locale/vi/LC_MESSAGES/kio6_archive.mo share/locale/vi/LC_MESSAGES/kio6_fish.mo share/locale/vi/LC_MESSAGES/kio6_info.mo share/locale/vi/LC_MESSAGES/kio6_man.mo share/locale/vi/LC_MESSAGES/kio6_mtp.mo share/locale/vi/LC_MESSAGES/kio6_nfs.mo share/locale/vi/LC_MESSAGES/kio6_sftp.mo share/locale/vi/LC_MESSAGES/kio6_smb.mo share/locale/vi/LC_MESSAGES/kio6_thumbnail.mo share/locale/wa/LC_MESSAGES/kio-extras_kcms.mo share/locale/wa/LC_MESSAGES/kio6_activities.mo share/locale/wa/LC_MESSAGES/kio6_archive.mo share/locale/wa/LC_MESSAGES/kio6_fish.mo share/locale/wa/LC_MESSAGES/kio6_info.mo share/locale/wa/LC_MESSAGES/kio6_man.mo share/locale/wa/LC_MESSAGES/kio6_nfs.mo share/locale/wa/LC_MESSAGES/kio6_sftp.mo share/locale/wa/LC_MESSAGES/kio6_smb.mo share/locale/wa/LC_MESSAGES/kio6_thumbnail.mo share/locale/xh/LC_MESSAGES/kio-extras_kcms.mo share/locale/xh/LC_MESSAGES/kio6_man.mo share/locale/xh/LC_MESSAGES/kio6_nfs.mo share/locale/xh/LC_MESSAGES/kio6_sftp.mo share/locale/xh/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_CN/LC_MESSAGES/kio6_activities.mo share/locale/zh_CN/LC_MESSAGES/kio6_afc.mo share/locale/zh_CN/LC_MESSAGES/kio6_archive.mo share/locale/zh_CN/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_CN/LC_MESSAGES/kio6_fish.mo share/locale/zh_CN/LC_MESSAGES/kio6_info.mo share/locale/zh_CN/LC_MESSAGES/kio6_man.mo share/locale/zh_CN/LC_MESSAGES/kio6_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio6_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_CN/LC_MESSAGES/kio6_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio6_smb.mo share/locale/zh_CN/LC_MESSAGES/kio6_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kio-extras_kcms.mo share/locale/zh_TW/LC_MESSAGES/kio6_activities.mo share/locale/zh_TW/LC_MESSAGES/kio6_afc.mo share/locale/zh_TW/LC_MESSAGES/kio6_archive.mo share/locale/zh_TW/LC_MESSAGES/kio6_filenamesearch.mo share/locale/zh_TW/LC_MESSAGES/kio6_fish.mo share/locale/zh_TW/LC_MESSAGES/kio6_info.mo share/locale/zh_TW/LC_MESSAGES/kio6_man.mo share/locale/zh_TW/LC_MESSAGES/kio6_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio6_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio6_recentlyused.mo share/locale/zh_TW/LC_MESSAGES/kio6_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio6_smb.mo share/locale/zh_TW/LC_MESSAGES/kio6_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories6/kio-extras.categories share/qlogging-categories6/kio-extras.renamecategories %%AFC%%share/remoteview/afc-network.desktop %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%AFC%%share/solid/actions/solid_afc.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 54d3c5b9092a..74f4ea6d652e 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570623 -SHA256 (KDE/release-service/25.12.2/kirigami-gallery-25.12.2.tar.xz) = 006d18a6f97367c14c11c36fc34dd7c41f9d61d110e47a7367e8c0ffe85aa4e7 -SIZE (KDE/release-service/25.12.2/kirigami-gallery-25.12.2.tar.xz) = 380372 +TIMESTAMP = 1772541862 +SHA256 (KDE/release-service/25.12.3/kirigami-gallery-25.12.3.tar.xz) = 9cd49dbcc4fbab9269fe0cdcb49c16ecbb0c76dce02d204380fcdeb9fb60b2a2 +SIZE (KDE/release-service/25.12.3/kirigami-gallery-25.12.3.tar.xz) = 381836 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 0259dc187fbb..7dca4a3b0395 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570625 -SHA256 (KDE/release-service/25.12.2/kopeninghours-25.12.2.tar.xz) = cd0117d0baa4cdf66c5c74d4318b6ec777ca3608a37359b251e402b7b50c2fea -SIZE (KDE/release-service/25.12.2/kopeninghours-25.12.2.tar.xz) = 76276 +TIMESTAMP = 1772541863 +SHA256 (KDE/release-service/25.12.3/kopeninghours-25.12.3.tar.xz) = 674f7dd168679eecbc85d7e68052a0a979f4243a432958a698ba5bbd82178589 +SIZE (KDE/release-service/25.12.3/kopeninghours-25.12.3.tar.xz) = 76264 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index ccbc17650b03..3d8c8a789334 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570627 -SHA256 (KDE/release-service/25.12.2/kpublictransport-25.12.2.tar.xz) = 1438289d423cf70059c8e72939d8a51a0c054f046e28bf30a060959d3ddef43b -SIZE (KDE/release-service/25.12.2/kpublictransport-25.12.2.tar.xz) = 904152 +TIMESTAMP = 1772541865 +SHA256 (KDE/release-service/25.12.3/kpublictransport-25.12.3.tar.xz) = 5817a6d41d485322e79aef8dcab52b2dd01b86f5df2327a9104809addb0c44e7 +SIZE (KDE/release-service/25.12.3/kpublictransport-25.12.3.tar.xz) = 909668 diff --git a/devel/kunifiedpush/distinfo b/devel/kunifiedpush/distinfo index 92da816ac41d..31095e9bd8dd 100644 --- a/devel/kunifiedpush/distinfo +++ b/devel/kunifiedpush/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570629 -SHA256 (KDE/release-service/25.12.2/kunifiedpush-25.12.2.tar.xz) = e111dd53c7a77bfc32f358375b9649ed418d9c5acd9c44b95ec5a07c9c2078b9 -SIZE (KDE/release-service/25.12.2/kunifiedpush-25.12.2.tar.xz) = 85344 +TIMESTAMP = 1772541867 +SHA256 (KDE/release-service/25.12.3/kunifiedpush-25.12.3.tar.xz) = 3ebd6ef38fafb0abd3ec434ccf79468453ea53897f69dccf18226dd5f122c229 +SIZE (KDE/release-service/25.12.3/kunifiedpush-25.12.3.tar.xz) = 86280 diff --git a/devel/kunifiedpush/pkg-plist b/devel/kunifiedpush/pkg-plist index affecc5a5d2a..0d63fab565be 100644 --- a/devel/kunifiedpush/pkg-plist +++ b/devel/kunifiedpush/pkg-plist @@ -1,60 +1,61 @@ bin/kunifiedpush-distributor etc/xdg/KDE/kunifiedpush-distributor.conf etc/xdg/autostart/org.kde.kunifiedpush-distributor.desktop include/KUnifiedPush/KUnifiedPush/Connector include/KUnifiedPush/kunifiedpush/connector.h include/KUnifiedPush/kunifiedpush/kunifiedpush_export.h include/KUnifiedPush/kunifiedpush_version.h lib/cmake/KUnifiedPush/KUnifiedPushConfig.cmake lib/cmake/KUnifiedPush/KUnifiedPushConfigVersion.cmake lib/cmake/KUnifiedPush/KUnifiedPushTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KUnifiedPush/KUnifiedPushTargets.cmake lib/libKUnifiedPush.so lib/libKUnifiedPush.so.1 lib/libKUnifiedPush.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_push_notifications.so lib/systemd/user/graphical-session.target.wants/kunifiedpush-distributor.service lib/systemd/user/kunifiedpush-distributor.service share/applications/kcm_push_notifications.desktop share/locale/ar/LC_MESSAGES/kcm_push_notifications.mo share/locale/ast/LC_MESSAGES/kcm_push_notifications.mo share/locale/bg/LC_MESSAGES/kcm_push_notifications.mo share/locale/ca/LC_MESSAGES/kcm_push_notifications.mo share/locale/ca@valencia/LC_MESSAGES/kcm_push_notifications.mo share/locale/cs/LC_MESSAGES/kcm_push_notifications.mo share/locale/de/LC_MESSAGES/kcm_push_notifications.mo share/locale/en_GB/LC_MESSAGES/kcm_push_notifications.mo share/locale/eo/LC_MESSAGES/kcm_push_notifications.mo share/locale/es/LC_MESSAGES/kcm_push_notifications.mo share/locale/eu/LC_MESSAGES/kcm_push_notifications.mo share/locale/fi/LC_MESSAGES/kcm_push_notifications.mo share/locale/fr/LC_MESSAGES/kcm_push_notifications.mo share/locale/ga/LC_MESSAGES/kcm_push_notifications.mo share/locale/gl/LC_MESSAGES/kcm_push_notifications.mo share/locale/he/LC_MESSAGES/kcm_push_notifications.mo share/locale/hi/LC_MESSAGES/kcm_push_notifications.mo share/locale/hu/LC_MESSAGES/kcm_push_notifications.mo share/locale/ia/LC_MESSAGES/kcm_push_notifications.mo share/locale/it/LC_MESSAGES/kcm_push_notifications.mo share/locale/ja/LC_MESSAGES/kcm_push_notifications.mo share/locale/ka/LC_MESSAGES/kcm_push_notifications.mo share/locale/ko/LC_MESSAGES/kcm_push_notifications.mo share/locale/lt/LC_MESSAGES/kcm_push_notifications.mo share/locale/lv/LC_MESSAGES/kcm_push_notifications.mo share/locale/nl/LC_MESSAGES/kcm_push_notifications.mo share/locale/nn/LC_MESSAGES/kcm_push_notifications.mo share/locale/pa/LC_MESSAGES/kcm_push_notifications.mo share/locale/pl/LC_MESSAGES/kcm_push_notifications.mo share/locale/pt/LC_MESSAGES/kcm_push_notifications.mo share/locale/pt_BR/LC_MESSAGES/kcm_push_notifications.mo +share/locale/ro/LC_MESSAGES/kcm_push_notifications.mo share/locale/ru/LC_MESSAGES/kcm_push_notifications.mo share/locale/sa/LC_MESSAGES/kcm_push_notifications.mo share/locale/sk/LC_MESSAGES/kcm_push_notifications.mo share/locale/sl/LC_MESSAGES/kcm_push_notifications.mo share/locale/sv/LC_MESSAGES/kcm_push_notifications.mo share/locale/ta/LC_MESSAGES/kcm_push_notifications.mo share/locale/tr/LC_MESSAGES/kcm_push_notifications.mo share/locale/uk/LC_MESSAGES/kcm_push_notifications.mo share/locale/zh_CN/LC_MESSAGES/kcm_push_notifications.mo share/locale/zh_TW/LC_MESSAGES/kcm_push_notifications.mo share/qlogging-categories6/org_kde_kunifiedpush.categories diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 7d3155293530..97fbb2e4dd9e 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570631 -SHA256 (KDE/release-service/25.12.2/lokalize-25.12.2.tar.xz) = ca223a1e394c3e30ff3633ef20fea2d63a5a2060008328f38e942617f16b6ece -SIZE (KDE/release-service/25.12.2/lokalize-25.12.2.tar.xz) = 2069664 +TIMESTAMP = 1772541868 +SHA256 (KDE/release-service/25.12.3/lokalize-25.12.3.tar.xz) = f62c5c1116d0fa8c7c3d24b1b642060bc3a0fddc6aa65218f375303de4191e8e +SIZE (KDE/release-service/25.12.3/lokalize-25.12.3.tar.xz) = 2069888 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index 4ee3fe3e80b4..c5870571957e 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570633 -SHA256 (KDE/release-service/25.12.2/massif-visualizer-25.12.2.tar.xz) = 4c4a235fef6d2953a81eebe4eb877cb23826ae4a67ce19cda1e4d0ec61dbbf21 -SIZE (KDE/release-service/25.12.2/massif-visualizer-25.12.2.tar.xz) = 286012 +TIMESTAMP = 1772541870 +SHA256 (KDE/release-service/25.12.3/massif-visualizer-25.12.3.tar.xz) = 051801ee3d9704bb254332e7a317c228a510a5b83ff0304937011148b0212311 +SIZE (KDE/release-service/25.12.3/massif-visualizer-25.12.3.tar.xz) = 286636 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 14b4ffa7700a..2e52017845b7 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570635 -SHA256 (KDE/release-service/25.12.2/poxml-25.12.2.tar.xz) = bb8b97a1821deb361fecb0a9ff7ebdfbe3330fcbf9525e270e4812b76753e834 -SIZE (KDE/release-service/25.12.2/poxml-25.12.2.tar.xz) = 45208 +TIMESTAMP = 1772541872 +SHA256 (KDE/release-service/25.12.3/poxml-25.12.3.tar.xz) = f40957124b78a7dd954016bffa238c9ef2bb16a30a09e35f85cca35d3053547c +SIZE (KDE/release-service/25.12.3/poxml-25.12.3.tar.xz) = 45204 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 958810aa2ace..1cea3a938e68 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570637 -SHA256 (KDE/release-service/25.12.2/umbrello-25.12.2.tar.xz) = 7a2019690819ba6e8a13f755df544f0b805169a0035a63ae6bdc7dc5f2f559c2 -SIZE (KDE/release-service/25.12.2/umbrello-25.12.2.tar.xz) = 5654704 +TIMESTAMP = 1772541873 +SHA256 (KDE/release-service/25.12.3/umbrello-25.12.3.tar.xz) = 45714539df740badcbbd7cba63a8436786ff85ef071af8e5d04f4971e7d62dcb +SIZE (KDE/release-service/25.12.3/umbrello-25.12.3.tar.xz) = 5657620 diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 3c9db40b9d79..6e8d29fda8b7 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570640 -SHA256 (KDE/release-service/25.12.2/calligra-25.12.2.tar.xz) = f29a18bdd96c3d009a8056e9c60110c4d65ced30a71d7cd976e3a0849b40abb0 -SIZE (KDE/release-service/25.12.2/calligra-25.12.2.tar.xz) = 58041816 +TIMESTAMP = 1772541875 +SHA256 (KDE/release-service/25.12.3/calligra-25.12.3.tar.xz) = 98648733fc0052cb20aca00ac10fbd4656549422bc50fdf79d1b5f5efc5ebec1 +SIZE (KDE/release-service/25.12.3/calligra-25.12.3.tar.xz) = 57982464 diff --git a/editors/calligra/pkg-plist b/editors/calligra/pkg-plist index 7492b93a9900..bcde58a9d72a 100644 --- a/editors/calligra/pkg-plist +++ b/editors/calligra/pkg-plist @@ -1,7586 +1,7589 @@ bin/calligraconverter bin/calligralauncher bin/calligrasheets bin/calligrastage bin/calligrawords bin/karbon etc/xdg/calligrasheetsrc etc/xdg/calligrastagerc etc/xdg/calligrawordsrc etc/xdg/karbonrc lib/libRtfReader.so lib/libRtfReader.so.%%KDE_APPLICATIONS_VERSION%% lib/libRtfReader.so.%%SHLIB_VER%% lib/libautocorrection.so lib/libautocorrection.so.%%KDE_APPLICATIONS_VERSION%% lib/libautocorrection.so.%%SHLIB_VER%% lib/libbasicflakes.so lib/libbasicflakes.so.%%KDE_APPLICATIONS_VERSION%% lib/libbasicflakes.so.%%SHLIB_VER%% lib/libcalligrasheetscore.so lib/libcalligrasheetscore.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetscore.so.%%SHLIB_VER%% lib/libcalligrasheetsengine.so lib/libcalligrasheetsengine.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsengine.so.%%SHLIB_VER%% lib/libcalligrasheetspartlib.so lib/libcalligrasheetspartlib.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetspartlib.so.%%SHLIB_VER%% lib/libcalligrasheetsui.so lib/libcalligrasheetsui.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrasheetsui.so.%%SHLIB_VER%% lib/libcalligrastageprivate.so lib/libcalligrastageprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libcalligrastageprivate.so.%%SHLIB_VER%% lib/libflake.so lib/libflake.so.%%KDE_APPLICATIONS_VERSION%% lib/libflake.so.%%SHLIB_VER%% lib/libkarboncommon.so lib/libkarboncommon.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarboncommon.so.%%SHLIB_VER%% lib/libkarbonui.so lib/libkarbonui.so.%%KDE_APPLICATIONS_VERSION%% lib/libkarbonui.so.%%SHLIB_VER%% lib/libkoformula.so lib/libkoformula.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoformula.so.%%SHLIB_VER%% lib/libkomain.so lib/libkomain.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomain.so.%%SHLIB_VER%% lib/libkomsooxml.so lib/libkomsooxml.so.%%KDE_APPLICATIONS_VERSION%% lib/libkomsooxml.so.%%SHLIB_VER%% lib/libkoodf.so lib/libkoodf.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf.so.%%SHLIB_VER%% lib/libkoodf2.so lib/libkoodf2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodf2.so.%%SHLIB_VER%% lib/libkoodfreader.so lib/libkoodfreader.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoodfreader.so.%%SHLIB_VER%% lib/libkookularGenerator_odp.so lib/libkookularGenerator_odp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odp.so.%%SHLIB_VER%% lib/libkookularGenerator_odt.so lib/libkookularGenerator_odt.so.%%KDE_APPLICATIONS_VERSION%% lib/libkookularGenerator_odt.so.%%SHLIB_VER%% lib/libkopageapp.so lib/libkopageapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkopageapp.so.%%SHLIB_VER%% lib/libkoplugin.so lib/libkoplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkoplugin.so.%%SHLIB_VER%% lib/libkostore.so lib/libkostore.so.%%KDE_APPLICATIONS_VERSION%% lib/libkostore.so.%%SHLIB_VER%% lib/libkotext.so lib/libkotext.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotext.so.%%SHLIB_VER%% lib/libkotextlayout.so lib/libkotextlayout.so.%%KDE_APPLICATIONS_VERSION%% lib/libkotextlayout.so.%%SHLIB_VER%% lib/libkovectorimage.so lib/libkovectorimage.so.%%KDE_APPLICATIONS_VERSION%% lib/libkovectorimage.so.%%SHLIB_VER%% lib/libkowidgets.so lib/libkowidgets.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgets.so.%%SHLIB_VER%% lib/libkowidgetutils.so lib/libkowidgetutils.so.%%KDE_APPLICATIONS_VERSION%% lib/libkowidgetutils.so.%%SHLIB_VER%% lib/libkundo2.so lib/libkundo2.so.%%KDE_APPLICATIONS_VERSION%% lib/libkundo2.so.%%SHLIB_VER%% lib/libpigmentcms.so lib/libpigmentcms.so.%%KDE_APPLICATIONS_VERSION%% lib/libpigmentcms.so.%%SHLIB_VER%% lib/libwordsprivate.so lib/libwordsprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libwordsprivate.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_defaults.so %%QT_PLUGINDIR%%/calligra/dockers/calligra_docker_stencils.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixspread2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_applixword2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ascii2words.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_csv2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_dbase2kspread.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_docx2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_eps2svgai.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_gnumeric2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_html2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon1x2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2image.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_karbon2wmf.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_key2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kpr2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_kspread2tex.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2ascii.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2docx.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2epub2.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2mobi.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_odt2wiki.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_opencalc2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pdf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_ppt2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_pptx2odp.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_qpro2sheets.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_rtf2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2csv.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2gnumeric.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2html.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_sheets2opencalc.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_svg2karbon.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_vsdx2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wmf2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpd2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wpg2svg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_wps2odt.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xfig2odg.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xls2ods.so %%QT_PLUGINDIR%%/calligra/formatfilters/calligra_filter_xlsx2ods.so %%QT_PLUGINDIR%%/calligra/pageapptools/kopabackgroundtool.so %%QT_PLUGINDIR%%/calligra/parts/calligrasheetspart.so %%QT_PLUGINDIR%%/calligra/parts/calligrastagepart.so %%QT_PLUGINDIR%%/calligra/parts/calligrawordspart.so %%QT_PLUGINDIR%%/calligra/parts/karbonpart.so %%QT_PLUGINDIR%%/calligra/presentationeventactions/calligrastageeventactions.so %%QT_PLUGINDIR%%/calligra/shapefiltereffects/calligra_filtereffects.so %%QT_PLUGINDIR%%/calligra/shapes/braindump_shape_web.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_artistictext.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_chart.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_formula.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_music.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_paths.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_picture.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_plugin.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_text.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_threed.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_vector.so %%QT_PLUGINDIR%%/calligra/shapes/calligra_shape_video.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_autocorrect.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_changecase.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_spellcheck.so %%QT_PLUGINDIR%%/calligra/textediting/calligra_textediting_thesaurus.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/calligra_textinlineobject_variables.so %%QT_PLUGINDIR%%/calligra/textinlineobjects/kprvariables.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_basicflakes.so %%QT_PLUGINDIR%%/calligra/tools/calligra_tool_defaults.so %%QT_PLUGINDIR%%/calligra/tools/karbon_tools.so %%QT_PLUGINDIR%%/calligrasheets/extensions/sheetssolver.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadbitopsmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadconversionmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatabasemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreaddatetimemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadengineeringmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadfinancialmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadinformationmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadlogicmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadmathmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadreferencemodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadstatisticalmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtextmodule.so %%QT_PLUGINDIR%%/calligrasheets/functions/kspreadtrigonometrymodule.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_barwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_clockwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_edgewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_fade.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_iriswipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_matrixwipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_slidewipe.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_spacerotation.so %%QT_PLUGINDIR%%/calligrastage/pageeffects/kpr_pageeffect_swapeffect.so %%QT_PLUGINDIR%%/calligrastage/shapeanimations/kpr_shapeanimation_example.so %%QT_PLUGINDIR%%/calligrastage/tools/calligrastagetoolanimation.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_flattenpath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_refinepath.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_roundcorners.so %%QT_PLUGINDIR%%/karbon/extensions/karbon_whirlpinch.so %%QT_PLUGINDIR%%/kf6/propertiesdialog/calligradocinfopropspage.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligraimagethumbnail.so %%QT_PLUGINDIR%%/kf6/thumbcreator/calligrathumbnail.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_docx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odp_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_odt_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_powerpoint_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_pptx_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_rtf_calligra.so %%QT_PLUGINDIR%%/okular_generators/okularGenerator_wpd_calligra.so share/applications/calligra.desktop share/applications/okularApplication_docx_calligra.desktop share/applications/okularApplication_odp_calligra.desktop share/applications/okularApplication_odt_calligra.desktop share/applications/okularApplication_powerpoint_calligra.desktop share/applications/okularApplication_pptx_calligra.desktop share/applications/okularApplication_rtf_calligra.desktop share/applications/okularApplication_wpd_calligra.desktop share/applications/org.kde.calligra.desktop share/applications/org.kde.calligra.karbon.desktop share/applications/org.kde.calligra.sheets.desktop share/applications/org.kde.calligra.stage.desktop share/applications/org.kde.calligra.words.desktop share/applications/org.kde.calligrawords_ascii.desktop %%DATADIR%%/autocorrect/af_ZA.xml %%DATADIR%%/autocorrect/bg_BG.xml %%DATADIR%%/autocorrect/ca_ES.xml %%DATADIR%%/autocorrect/cs_CZ.xml %%DATADIR%%/autocorrect/da_DK.xml %%DATADIR%%/autocorrect/de.xml %%DATADIR%%/autocorrect/dsb.xml %%DATADIR%%/autocorrect/el_GR.xml %%DATADIR%%/autocorrect/en_AU.xml %%DATADIR%%/autocorrect/en_GB.xml %%DATADIR%%/autocorrect/en_US.xml %%DATADIR%%/autocorrect/en_ZA.xml %%DATADIR%%/autocorrect/fa_IR.xml %%DATADIR%%/autocorrect/fi_FI.xml %%DATADIR%%/autocorrect/ga_IE.xml %%DATADIR%%/autocorrect/hr_HR.xml %%DATADIR%%/autocorrect/hsb.xml %%DATADIR%%/autocorrect/hu_HU.xml %%DATADIR%%/autocorrect/is_IS.xml %%DATADIR%%/autocorrect/it.xml %%DATADIR%%/autocorrect/ja_JP.xml %%DATADIR%%/autocorrect/ko_KR.xml %%DATADIR%%/autocorrect/lb_LU.xml %%DATADIR%%/autocorrect/lt_LT.xml %%DATADIR%%/autocorrect/mn_MN.xml %%DATADIR%%/autocorrect/nb.xml %%DATADIR%%/autocorrect/nl_BE.xml %%DATADIR%%/autocorrect/nl_NL.xml %%DATADIR%%/autocorrect/nn.xml %%DATADIR%%/autocorrect/pl_PL.xml %%DATADIR%%/autocorrect/pt_BR.xml %%DATADIR%%/autocorrect/pt_PT.xml %%DATADIR%%/autocorrect/ro_RO.xml %%DATADIR%%/autocorrect/ru_RU.xml %%DATADIR%%/autocorrect/sk_SK.xml %%DATADIR%%/autocorrect/sl_SI.xml %%DATADIR%%/autocorrect/sr_CS.xml %%DATADIR%%/autocorrect/sr_Latn_CS.xml %%DATADIR%%/autocorrect/sr_Latn_ME.xml %%DATADIR%%/autocorrect/sr_Latn_RS.xml %%DATADIR%%/autocorrect/sr_ME.xml %%DATADIR%%/autocorrect/sr_RS.xml %%DATADIR%%/autocorrect/sv_SE.xml %%DATADIR%%/autocorrect/tr_TR.xml %%DATADIR%%/autocorrect/vi_VN.xml %%DATADIR%%/autocorrect/vro_EE.xml %%DATADIR%%/autocorrect/zh_CN.xml %%DATADIR%%/autocorrect/zh_TW.xml %%DATADIR%%/calligra_shell.rc %%DATADIR%%/cursors/cursor_connect.png %%DATADIR%%/cursors/cursor_rotate.png %%DATADIR%%/cursors/cursor_shear.png %%DATADIR%%/cursors/zoom_in_cursor.png %%DATADIR%%/cursors/zoom_out_cursor.png %%DATADIR%%/icons/hicolor/24x24/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/abs.png %%DATADIR%%/icons/hicolor/16x16/actions/animation-stage.png %%DATADIR%%/icons/hicolor/16x16/actions/bevelled.png %%DATADIR%%/icons/hicolor/16x16/actions/borderpainter.png %%DATADIR%%/icons/hicolor/16x16/actions/brackets.png %%DATADIR%%/icons/hicolor/16x16/actions/curve-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/enclosed.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-all.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-down.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-horizontal.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-left.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-right.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-up.png %%DATADIR%%/icons/hicolor/16x16/actions/escape-direction-vertical.png %%DATADIR%%/icons/hicolor/16x16/actions/frac.png %%DATADIR%%/icons/hicolor/16x16/actions/gsub.png %%DATADIR%%/icons/hicolor/16x16/actions/gsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/gsup.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/16x16/actions/int.png %%DATADIR%%/icons/hicolor/16x16/actions/lines-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/lsub.png %%DATADIR%%/icons/hicolor/16x16/actions/lsup.png %%DATADIR%%/icons/hicolor/16x16/actions/matrix.png %%DATADIR%%/icons/hicolor/16x16/actions/multiline.png %%DATADIR%%/icons/hicolor/16x16/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/16x16/actions/over.png %%DATADIR%%/icons/hicolor/16x16/actions/paren.png %%DATADIR%%/icons/hicolor/16x16/actions/root.png %%DATADIR%%/icons/hicolor/16x16/actions/rsub.png %%DATADIR%%/icons/hicolor/16x16/actions/rsubup.png %%DATADIR%%/icons/hicolor/16x16/actions/rsup.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-bounding-box.png %%DATADIR%%/icons/hicolor/16x16/actions/snap-extension.png %%DATADIR%%/icons/hicolor/16x16/actions/sqrt.png %%DATADIR%%/icons/hicolor/16x16/actions/standard-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/straight-connector.png %%DATADIR%%/icons/hicolor/16x16/actions/table.png %%DATADIR%%/icons/hicolor/16x16/actions/under.png %%DATADIR%%/icons/hicolor/16x16/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/abs.png %%DATADIR%%/icons/hicolor/22x22/actions/artistictext-tool.png %%DATADIR%%/icons/hicolor/22x22/actions/backgroundtool.png %%DATADIR%%/icons/hicolor/22x22/actions/bevelled.png %%DATADIR%%/icons/hicolor/22x22/actions/brackets.png %%DATADIR%%/icons/hicolor/22x22/actions/calligraphy.png %%DATADIR%%/icons/hicolor/22x22/actions/callout-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/circular-arrow-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/createpath.png %%DATADIR%%/icons/hicolor/22x22/actions/cross-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/editpath.png %%DATADIR%%/icons/hicolor/22x22/actions/edittext.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipse-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/enclosed.png %%DATADIR%%/icons/hicolor/22x22/actions/flower-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/format-break-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-connect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-convert-to-path.png %%DATADIR%%/icons/hicolor/22x22/actions/format-disconnect-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-insert-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-join-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-node-line.png %%DATADIR%%/icons/hicolor/22x22/actions/format-remove-node.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-curve.png %%DATADIR%%/icons/hicolor/22x22/actions/format-segment-line.png %%DATADIR%%/icons/hicolor/22x22/actions/frac.png %%DATADIR%%/icons/hicolor/22x22/actions/gearhead-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/gradient.png %%DATADIR%%/icons/hicolor/22x22/actions/gsub.png %%DATADIR%%/icons/hicolor/22x22/actions/gsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/gsup.png %%DATADIR%%/icons/hicolor/22x22/actions/hand.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/inscol.png %%DATADIR%%/icons/hicolor/22x22/actions/insrow.png %%DATADIR%%/icons/hicolor/22x22/actions/int.png %%DATADIR%%/icons/hicolor/22x22/actions/lsub.png %%DATADIR%%/icons/hicolor/22x22/actions/lsup.png %%DATADIR%%/icons/hicolor/22x22/actions/matrix.png %%DATADIR%%/icons/hicolor/22x22/actions/multiline.png %%DATADIR%%/icons/hicolor/22x22/actions/music-cross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-dottednote.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doublecross.png %%DATADIR%%/icons/hicolor/22x22/actions/music-doubleflat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-flat.png %%DATADIR%%/icons/hicolor/22x22/actions/music-natural.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-note-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-128th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-16th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-32nd.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-64th.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-breve.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-eighth.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-half.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-quarter.png %%DATADIR%%/icons/hicolor/22x22/actions/music-rest-whole.png %%DATADIR%%/icons/hicolor/22x22/actions/music-tiednote.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-cusp.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-smooth.png %%DATADIR%%/icons/hicolor/22x22/actions/node-type-symmetric.png %%DATADIR%%/icons/hicolor/22x22/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/22x22/actions/over.png %%DATADIR%%/icons/hicolor/22x22/actions/paren.png %%DATADIR%%/icons/hicolor/22x22/actions/pathshape.png %%DATADIR%%/icons/hicolor/22x22/actions/pattern.png %%DATADIR%%/icons/hicolor/22x22/actions/pentagon-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/rectangle-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/remcol.png %%DATADIR%%/icons/hicolor/22x22/actions/remrow.png %%DATADIR%%/icons/hicolor/22x22/actions/root.png %%DATADIR%%/icons/hicolor/22x22/actions/rsub.png %%DATADIR%%/icons/hicolor/22x22/actions/rsubup.png %%DATADIR%%/icons/hicolor/22x22/actions/rsup.png %%DATADIR%%/icons/hicolor/22x22/actions/select.png %%DATADIR%%/icons/hicolor/22x22/actions/smiley-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/spiral-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/sqrt.png %%DATADIR%%/icons/hicolor/22x22/actions/star-shape.png %%DATADIR%%/icons/hicolor/22x22/actions/table.png %%DATADIR%%/icons/hicolor/22x22/actions/text-put-on-path.png %%DATADIR%%/icons/hicolor/22x22/actions/text-remove-from-path.png %%DATADIR%%/icons/hicolor/22x22/actions/tool-text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_references.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_review.png %%DATADIR%%/icons/hicolor/22x22/actions/under.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/zoom-pixels.png %%DATADIR%%/icons/hicolor/32x32/actions/abs.png %%DATADIR%%/icons/hicolor/32x32/actions/bevelled.png %%DATADIR%%/icons/hicolor/32x32/actions/brackets.png %%DATADIR%%/icons/hicolor/32x32/actions/enclosed.png %%DATADIR%%/icons/hicolor/32x32/actions/frac.png %%DATADIR%%/icons/hicolor/32x32/actions/gsub.png %%DATADIR%%/icons/hicolor/32x32/actions/gsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/gsup.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-endnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-footnote.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-page-break.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-of-contents.png %%DATADIR%%/icons/hicolor/32x32/actions/int.png %%DATADIR%%/icons/hicolor/32x32/actions/lsub.png %%DATADIR%%/icons/hicolor/32x32/actions/lsup.png %%DATADIR%%/icons/hicolor/32x32/actions/matrix.png %%DATADIR%%/icons/hicolor/32x32/actions/multiline.png %%DATADIR%%/icons/hicolor/32x32/actions/onetwomatrix.png %%DATADIR%%/icons/hicolor/32x32/actions/over.png %%DATADIR%%/icons/hicolor/32x32/actions/paren.png %%DATADIR%%/icons/hicolor/32x32/actions/root.png %%DATADIR%%/icons/hicolor/32x32/actions/rsub.png %%DATADIR%%/icons/hicolor/32x32/actions/rsubup.png %%DATADIR%%/icons/hicolor/32x32/actions/rsup.png %%DATADIR%%/icons/hicolor/32x32/actions/shape-choose.png %%DATADIR%%/icons/hicolor/32x32/actions/sqrt.png %%DATADIR%%/icons/hicolor/32x32/actions/table.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_imageeffects.png %%DATADIR%%/icons/hicolor/32x32/actions/under.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-connection.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-formula.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-image.png %%DATADIR%%/icons/hicolor/32x32/mimetypes/x-shape-text.png %%DATADIR%%/icons/hicolor/48x48/actions/table.png %%DATADIR%%/icons/hicolor/scalable/actions/artistictext-tool.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-bounding-box.svg %%DATADIR%%/icons/hicolor/scalable/actions/snap-extension.svg %%DATADIR%%/icons/hicolor/scalable/actions/table.svgz %%DATADIR%%/icons/hicolor/scalable/actions/text-put-on-path.svg %%DATADIR%%/icons/hicolor/scalable/actions/text-remove-from-path.svg %%DATADIR%%/palettes/concept-cookie.gpl %%DATADIR%%/palettes/default.gpl %%DATADIR%%/palettes/gradient.gpl %%DATADIR%%/palettes/marker.gpl %%DATADIR%%/palettes/pixelart-16.gpl %%DATADIR%%/palettes/pixelart-32.gpl %%DATADIR%%/palettes/ps.gpl %%DATADIR%%/palettes/swatch-cmyk.gpl %%DATADIR%%/palettes/swatch-colored-grey.gpl %%DATADIR%%/palettes/swatch-rgb.gpl %%DATADIR%%/palettes/swatche.gpl %%DATADIR%%/palettes/web.gpl %%DATADIR%%/pics/questionmark.png %%DATADIR%%/stencils/Assorted/arrow-chevron.desktop %%DATADIR%%/stencils/Assorted/arrow-chevron.odg %%DATADIR%%/stencils/Assorted/arrow-chevron.png %%DATADIR%%/stencils/Assorted/arrow-down.desktop %%DATADIR%%/stencils/Assorted/arrow-down.odg %%DATADIR%%/stencils/Assorted/arrow-down.png %%DATADIR%%/stencils/Assorted/arrow-left-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-left-notched.odg %%DATADIR%%/stencils/Assorted/arrow-left-notched.png %%DATADIR%%/stencils/Assorted/arrow-left-right-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-right-up.png %%DATADIR%%/stencils/Assorted/arrow-left-right.desktop %%DATADIR%%/stencils/Assorted/arrow-left-right.odg %%DATADIR%%/stencils/Assorted/arrow-left-right.png %%DATADIR%%/stencils/Assorted/arrow-left-up.desktop %%DATADIR%%/stencils/Assorted/arrow-left-up.odg %%DATADIR%%/stencils/Assorted/arrow-left-up.png %%DATADIR%%/stencils/Assorted/arrow-left.desktop %%DATADIR%%/stencils/Assorted/arrow-left.odg %%DATADIR%%/stencils/Assorted/arrow-left.png %%DATADIR%%/stencils/Assorted/arrow-pentagon.desktop %%DATADIR%%/stencils/Assorted/arrow-pentagon.odg %%DATADIR%%/stencils/Assorted/arrow-pentagon.png %%DATADIR%%/stencils/Assorted/arrow-quad.desktop %%DATADIR%%/stencils/Assorted/arrow-quad.odg %%DATADIR%%/stencils/Assorted/arrow-quad.png %%DATADIR%%/stencils/Assorted/arrow-right-notched.desktop %%DATADIR%%/stencils/Assorted/arrow-right-notched.odg %%DATADIR%%/stencils/Assorted/arrow-right-notched.png %%DATADIR%%/stencils/Assorted/arrow-right.desktop %%DATADIR%%/stencils/Assorted/arrow-right.odg %%DATADIR%%/stencils/Assorted/arrow-right.png %%DATADIR%%/stencils/Assorted/arrow-turn-up.desktop %%DATADIR%%/stencils/Assorted/arrow-turn-up.odg %%DATADIR%%/stencils/Assorted/arrow-turn-up.png %%DATADIR%%/stencils/Assorted/arrow-up-down-left.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down-left.odg %%DATADIR%%/stencils/Assorted/arrow-up-down-left.png %%DATADIR%%/stencils/Assorted/arrow-up-down.desktop %%DATADIR%%/stencils/Assorted/arrow-up-down.odg %%DATADIR%%/stencils/Assorted/arrow-up-down.png %%DATADIR%%/stencils/Assorted/arrow-up.desktop %%DATADIR%%/stencils/Assorted/arrow-up.odg %%DATADIR%%/stencils/Assorted/arrow-up.png %%DATADIR%%/stencils/Assorted/circle-quarter.desktop %%DATADIR%%/stencils/Assorted/circle-quarter.odg %%DATADIR%%/stencils/Assorted/circle-quarter.png %%DATADIR%%/stencils/Assorted/circle.desktop %%DATADIR%%/stencils/Assorted/circle.odg %%DATADIR%%/stencils/Assorted/circle.png %%DATADIR%%/stencils/Assorted/collection.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.desktop %%DATADIR%%/stencils/Assorted/cross-maltese.odg %%DATADIR%%/stencils/Assorted/cross-maltese.png %%DATADIR%%/stencils/Assorted/cross-swiss.desktop %%DATADIR%%/stencils/Assorted/cross-swiss.odg %%DATADIR%%/stencils/Assorted/cross-swiss.png %%DATADIR%%/stencils/Assorted/diamond.desktop %%DATADIR%%/stencils/Assorted/diamond.odg %%DATADIR%%/stencils/Assorted/diamond.png %%DATADIR%%/stencils/Assorted/heart.desktop %%DATADIR%%/stencils/Assorted/heart.odg %%DATADIR%%/stencils/Assorted/heart.png %%DATADIR%%/stencils/Assorted/heptagon.desktop %%DATADIR%%/stencils/Assorted/heptagon.odg %%DATADIR%%/stencils/Assorted/heptagon.png %%DATADIR%%/stencils/Assorted/hexagon.desktop %%DATADIR%%/stencils/Assorted/hexagon.odg %%DATADIR%%/stencils/Assorted/hexagon.png %%DATADIR%%/stencils/Assorted/moon-quarter.desktop %%DATADIR%%/stencils/Assorted/moon-quarter.odg %%DATADIR%%/stencils/Assorted/moon-quarter.png %%DATADIR%%/stencils/Assorted/octagon.desktop %%DATADIR%%/stencils/Assorted/octagon.odg %%DATADIR%%/stencils/Assorted/octagon.png %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.desktop %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.odg %%DATADIR%%/stencils/Assorted/parallelogram-horizontal.png %%DATADIR%%/stencils/Assorted/parallelogram-vertical.desktop %%DATADIR%%/stencils/Assorted/parallelogram-vertical.odg %%DATADIR%%/stencils/Assorted/parallelogram-vertical.png %%DATADIR%%/stencils/Assorted/pentagon.desktop %%DATADIR%%/stencils/Assorted/pentagon.odg %%DATADIR%%/stencils/Assorted/pentagon.png %%DATADIR%%/stencils/Assorted/square.desktop %%DATADIR%%/stencils/Assorted/square.odg %%DATADIR%%/stencils/Assorted/square.png %%DATADIR%%/stencils/Assorted/star4.desktop %%DATADIR%%/stencils/Assorted/star4.odg %%DATADIR%%/stencils/Assorted/star4.png %%DATADIR%%/stencils/Assorted/star4curved.desktop %%DATADIR%%/stencils/Assorted/star4curved.odg %%DATADIR%%/stencils/Assorted/star4curved.png %%DATADIR%%/stencils/Assorted/star5.desktop %%DATADIR%%/stencils/Assorted/star5.odg %%DATADIR%%/stencils/Assorted/star5.png %%DATADIR%%/stencils/Assorted/star6.desktop %%DATADIR%%/stencils/Assorted/star6.odg %%DATADIR%%/stencils/Assorted/star6.png %%DATADIR%%/stencils/Assorted/star7.desktop %%DATADIR%%/stencils/Assorted/star7.odg %%DATADIR%%/stencils/Assorted/star7.png %%DATADIR%%/stencils/Assorted/star8.desktop %%DATADIR%%/stencils/Assorted/star8.odg %%DATADIR%%/stencils/Assorted/star8.png %%DATADIR%%/stencils/Assorted/star8curved.desktop %%DATADIR%%/stencils/Assorted/star8curved.odg %%DATADIR%%/stencils/Assorted/star8curved.png %%DATADIR%%/stencils/Assorted/star8sharp.desktop %%DATADIR%%/stencils/Assorted/star8sharp.odg %%DATADIR%%/stencils/Assorted/star8sharp.png %%DATADIR%%/stencils/Assorted/sun.desktop %%DATADIR%%/stencils/Assorted/sun.odg %%DATADIR%%/stencils/Assorted/sun.png %%DATADIR%%/stencils/Assorted/trapezoid.desktop %%DATADIR%%/stencils/Assorted/trapezoid.odg %%DATADIR%%/stencils/Assorted/trapezoid.png %%DATADIR%%/stencils/Assorted/triangle-isoceles.desktop %%DATADIR%%/stencils/Assorted/triangle-isoceles.odg %%DATADIR%%/stencils/Assorted/triangle-isoceles.png %%DATADIR%%/stencils/Assorted/triangle-rightangle.desktop %%DATADIR%%/stencils/Assorted/triangle-rightangle.odg %%DATADIR%%/stencils/Assorted/triangle-rightangle.png %%DATADIR%%/stencils/BPMN/Activity-Looping.desktop %%DATADIR%%/stencils/BPMN/Activity-Looping.odg %%DATADIR%%/stencils/BPMN/Activity-Looping.png %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Ad-Hoc-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Compensation-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Compensation.desktop %%DATADIR%%/stencils/BPMN/Compensation.odg %%DATADIR%%/stencils/BPMN/Compensation.png %%DATADIR%%/stencils/BPMN/Data-Object.desktop %%DATADIR%%/stencils/BPMN/Data-Object.odg %%DATADIR%%/stencils/BPMN/Data-Object.png %%DATADIR%%/stencils/BPMN/End-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/End-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/End-Event-Cancel.png %%DATADIR%%/stencils/BPMN/End-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/End-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/End-Event-Compensation.png %%DATADIR%%/stencils/BPMN/End-Event-Error.desktop %%DATADIR%%/stencils/BPMN/End-Event-Error.odg %%DATADIR%%/stencils/BPMN/End-Event-Error.png %%DATADIR%%/stencils/BPMN/End-Event-Link.desktop %%DATADIR%%/stencils/BPMN/End-Event-Link.odg %%DATADIR%%/stencils/BPMN/End-Event-Link.png %%DATADIR%%/stencils/BPMN/End-Event-Message.desktop %%DATADIR%%/stencils/BPMN/End-Event-Message.odg %%DATADIR%%/stencils/BPMN/End-Event-Message.png %%DATADIR%%/stencils/BPMN/End-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/End-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/End-Event-Multiple.png %%DATADIR%%/stencils/BPMN/End-Event-Terminate.desktop %%DATADIR%%/stencils/BPMN/End-Event-Terminate.odg %%DATADIR%%/stencils/BPMN/End-Event-Terminate.png %%DATADIR%%/stencils/BPMN/End-Event.desktop %%DATADIR%%/stencils/BPMN/End-Event.odg %%DATADIR%%/stencils/BPMN/End-Event.png %%DATADIR%%/stencils/BPMN/Gateway-Complex.desktop %%DATADIR%%/stencils/BPMN/Gateway-Complex.odg %%DATADIR%%/stencils/BPMN/Gateway-Complex.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Data-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.desktop %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.odg %%DATADIR%%/stencils/BPMN/Gateway-Exclusive-XOR-Event-Based.png %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.desktop %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.odg %%DATADIR%%/stencils/BPMN/Gateway-Inclusive-OR.png %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.desktop %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.odg %%DATADIR%%/stencils/BPMN/Gateway-Parallel-AND.png %%DATADIR%%/stencils/BPMN/Gateway.desktop %%DATADIR%%/stencils/BPMN/Gateway.odg %%DATADIR%%/stencils/BPMN/Gateway.png %%DATADIR%%/stencils/BPMN/Group.desktop %%DATADIR%%/stencils/BPMN/Group.odg %%DATADIR%%/stencils/BPMN/Group.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Cancel.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Compensation.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Error.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Link.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Message.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Rule.png %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event-Timer.png %%DATADIR%%/stencils/BPMN/Intermediate-Event.desktop %%DATADIR%%/stencils/BPMN/Intermediate-Event.odg %%DATADIR%%/stencils/BPMN/Intermediate-Event.png %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Looping-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Collapsed-Sub-Process.png %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.desktop %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.odg %%DATADIR%%/stencils/BPMN/Multiple-Instance-Task.png %%DATADIR%%/stencils/BPMN/Start-Event-Link.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Link.odg %%DATADIR%%/stencils/BPMN/Start-Event-Link.png %%DATADIR%%/stencils/BPMN/Start-Event-Message.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Message.odg %%DATADIR%%/stencils/BPMN/Start-Event-Message.png %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.odg %%DATADIR%%/stencils/BPMN/Start-Event-Multiple.png %%DATADIR%%/stencils/BPMN/Start-Event-Rule.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Rule.odg %%DATADIR%%/stencils/BPMN/Start-Event-Rule.png %%DATADIR%%/stencils/BPMN/Start-Event-Timer.desktop %%DATADIR%%/stencils/BPMN/Start-Event-Timer.odg %%DATADIR%%/stencils/BPMN/Start-Event-Timer.png %%DATADIR%%/stencils/BPMN/Start-Event.desktop %%DATADIR%%/stencils/BPMN/Start-Event.odg %%DATADIR%%/stencils/BPMN/Start-Event.png %%DATADIR%%/stencils/BPMN/Task.desktop %%DATADIR%%/stencils/BPMN/Task.odg %%DATADIR%%/stencils/BPMN/Task.png %%DATADIR%%/stencils/BPMN/Text-Annotation.desktop %%DATADIR%%/stencils/BPMN/Text-Annotation.odg %%DATADIR%%/stencils/BPMN/Text-Annotation.png %%DATADIR%%/stencils/BPMN/Transaction.desktop %%DATADIR%%/stencils/BPMN/Transaction.odg %%DATADIR%%/stencils/BPMN/Transaction.png %%DATADIR%%/stencils/BPMN/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.desktop %%DATADIR%%/stencils/Basic_Flowchart/card.odg %%DATADIR%%/stencils/Basic_Flowchart/collection.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.desktop %%DATADIR%%/stencils/Basic_Flowchart/data.odg %%DATADIR%%/stencils/Basic_Flowchart/database.desktop %%DATADIR%%/stencils/Basic_Flowchart/database.odg %%DATADIR%%/stencils/Basic_Flowchart/decision.desktop %%DATADIR%%/stencils/Basic_Flowchart/decision.odg %%DATADIR%%/stencils/Basic_Flowchart/delay.desktop %%DATADIR%%/stencils/Basic_Flowchart/delay.odg %%DATADIR%%/stencils/Basic_Flowchart/direct_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/direct_data.odg %%DATADIR%%/stencils/Basic_Flowchart/display.desktop %%DATADIR%%/stencils/Basic_Flowchart/display.odg %%DATADIR%%/stencils/Basic_Flowchart/document.desktop %%DATADIR%%/stencils/Basic_Flowchart/document.odg %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.desktop %%DATADIR%%/stencils/Basic_Flowchart/internal_storage.odg %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.desktop %%DATADIR%%/stencils/Basic_Flowchart/loop_limit.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_input.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_input.odg %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.desktop %%DATADIR%%/stencils/Basic_Flowchart/manual_operation.odg %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.desktop %%DATADIR%%/stencils/Basic_Flowchart/off-page_reference.odg %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.desktop %%DATADIR%%/stencils/Basic_Flowchart/paper_tape.odg %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.desktop %%DATADIR%%/stencils/Basic_Flowchart/parallel_mode.odg %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.desktop %%DATADIR%%/stencils/Basic_Flowchart/predefined_process.odg %%DATADIR%%/stencils/Basic_Flowchart/preparation.desktop %%DATADIR%%/stencils/Basic_Flowchart/preparation.odg %%DATADIR%%/stencils/Basic_Flowchart/process.desktop %%DATADIR%%/stencils/Basic_Flowchart/process.odg %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/sequential_data.odg %%DATADIR%%/stencils/Basic_Flowchart/start_1.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_1.odg %%DATADIR%%/stencils/Basic_Flowchart/start_2.desktop %%DATADIR%%/stencils/Basic_Flowchart/start_2.odg %%DATADIR%%/stencils/Basic_Flowchart/stored_data.desktop %%DATADIR%%/stencils/Basic_Flowchart/stored_data.odg %%DATADIR%%/stencils/Basic_Flowchart/terminator.desktop %%DATADIR%%/stencils/Basic_Flowchart/terminator.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.desktop %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.odg %%DATADIR%%/stencils/Building_Site/circle_diagonal_quarters_filled.png %%DATADIR%%/stencils/Building_Site/collection.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.desktop %%DATADIR%%/stencils/Building_Site/concrete_mixer.odg %%DATADIR%%/stencils/Building_Site/concrete_mixer.png %%DATADIR%%/stencils/Building_Site/fence_horizontal.desktop %%DATADIR%%/stencils/Building_Site/fence_horizontal.odg %%DATADIR%%/stencils/Building_Site/fence_horizontal.png %%DATADIR%%/stencils/Building_Site/fence_vertical.desktop %%DATADIR%%/stencils/Building_Site/fence_vertical.odg %%DATADIR%%/stencils/Building_Site/fence_vertical.png %%DATADIR%%/stencils/Building_Site/pre_silo.desktop %%DATADIR%%/stencils/Building_Site/pre_silo.odg %%DATADIR%%/stencils/Building_Site/pre_silo.png %%DATADIR%%/stencils/Building_Site/proportioning_batcher.desktop %%DATADIR%%/stencils/Building_Site/proportioning_batcher.odg %%DATADIR%%/stencils/Building_Site/proportioning_batcher.png %%DATADIR%%/stencils/Building_Site/road_crossroads.desktop %%DATADIR%%/stencils/Building_Site/road_crossroads.odg %%DATADIR%%/stencils/Building_Site/road_crossroads.png %%DATADIR%%/stencils/Building_Site/road_horizontal.desktop %%DATADIR%%/stencils/Building_Site/road_horizontal.odg %%DATADIR%%/stencils/Building_Site/road_horizontal.png %%DATADIR%%/stencils/Building_Site/road_rotated_tee.desktop %%DATADIR%%/stencils/Building_Site/road_rotated_tee.odg %%DATADIR%%/stencils/Building_Site/road_rotated_tee.png %%DATADIR%%/stencils/Building_Site/road_tee.desktop %%DATADIR%%/stencils/Building_Site/road_tee.odg %%DATADIR%%/stencils/Building_Site/road_tee.png %%DATADIR%%/stencils/Building_Site/road_turn.desktop %%DATADIR%%/stencils/Building_Site/road_turn.odg %%DATADIR%%/stencils/Building_Site/road_turn.png %%DATADIR%%/stencils/Building_Site/road_vertical.desktop %%DATADIR%%/stencils/Building_Site/road_vertical.odg %%DATADIR%%/stencils/Building_Site/road_vertical.png %%DATADIR%%/stencils/Building_Site/slope_horizontal.desktop %%DATADIR%%/stencils/Building_Site/slope_horizontal.odg %%DATADIR%%/stencils/Building_Site/slope_horizontal.png %%DATADIR%%/stencils/Building_Site/slope_vertical.desktop %%DATADIR%%/stencils/Building_Site/slope_vertical.odg %%DATADIR%%/stencils/Building_Site/slope_vertical.png %%DATADIR%%/stencils/Building_Site/wall_horizontal.desktop %%DATADIR%%/stencils/Building_Site/wall_horizontal.odg %%DATADIR%%/stencils/Building_Site/wall_horizontal.png %%DATADIR%%/stencils/Building_Site/wall_vertical.desktop %%DATADIR%%/stencils/Building_Site/wall_vertical.odg %%DATADIR%%/stencils/Building_Site/wall_vertical.png %%DATADIR%%/stencils/CMOS/collection.desktop %%DATADIR%%/stencils/CMOS/gnd_h.desktop %%DATADIR%%/stencils/CMOS/gnd_h.odg %%DATADIR%%/stencils/CMOS/gnd_h.png %%DATADIR%%/stencils/CMOS/gnd_v.desktop %%DATADIR%%/stencils/CMOS/gnd_v.odg %%DATADIR%%/stencils/CMOS/gnd_v.png %%DATADIR%%/stencils/CMOS/nmos_h.desktop %%DATADIR%%/stencils/CMOS/nmos_h.odg %%DATADIR%%/stencils/CMOS/nmos_h.png %%DATADIR%%/stencils/CMOS/nmos_v.desktop %%DATADIR%%/stencils/CMOS/nmos_v.odg %%DATADIR%%/stencils/CMOS/nmos_v.png %%DATADIR%%/stencils/CMOS/pmos_h.desktop %%DATADIR%%/stencils/CMOS/pmos_h.odg %%DATADIR%%/stencils/CMOS/pmos_h.png %%DATADIR%%/stencils/CMOS/pmos_v.desktop %%DATADIR%%/stencils/CMOS/pmos_v.odg %%DATADIR%%/stencils/CMOS/pmos_v.png %%DATADIR%%/stencils/CMOS/vdd_h.desktop %%DATADIR%%/stencils/CMOS/vdd_h.odg %%DATADIR%%/stencils/CMOS/vdd_h.png %%DATADIR%%/stencils/CMOS/vdd_v.desktop %%DATADIR%%/stencils/CMOS/vdd_v.odg %%DATADIR%%/stencils/CMOS/vdd_v.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_15.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_32.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_36.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_42.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_44.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_5.png %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.desktop %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.odg %%DATADIR%%/stencils/Central_Data_Processing/CPD_rack_7.png %%DATADIR%%/stencils/Central_Data_Processing/Litter.desktop %%DATADIR%%/stencils/Central_Data_Processing/Litter.odg %%DATADIR%%/stencils/Central_Data_Processing/Litter.png %%DATADIR%%/stencils/Central_Data_Processing/Modem.desktop %%DATADIR%%/stencils/Central_Data_Processing/Modem.odg %%DATADIR%%/stencils/Central_Data_Processing/Modem.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizador_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Organizer_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Path_Painel_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Router.desktop %%DATADIR%%/stencils/Central_Data_Processing/Router.odg %%DATADIR%%/stencils/Central_Data_Processing/Router.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_1U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_2U_Very_Slow.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_3U_Slow_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Slow_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_4U_Very_Right_Capacity.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U.png %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.desktop %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.odg %%DATADIR%%/stencils/Central_Data_Processing/Server_Rack_5U_Right_Density.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U.png %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.desktop %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.odg %%DATADIR%%/stencils/Central_Data_Processing/Storage_Rack_3U_SAN.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_24P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_16P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_48P.png %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Switch_Rack_50P.png %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.desktop %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.odg %%DATADIR%%/stencils/Central_Data_Processing/Telephone_exchange.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_20P.png %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.desktop %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.odg %%DATADIR%%/stencils/Central_Data_Processing/Voice_Painel_50P.png %%DATADIR%%/stencils/Central_Data_Processing/collection.desktop %%DATADIR%%/stencils/ChemEng/ACgen.desktop %%DATADIR%%/stencils/ChemEng/ACgen.odg %%DATADIR%%/stencils/ChemEng/ACgen.png %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.desktop %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.odg %%DATADIR%%/stencils/ChemEng/SaT-fixedtube.png %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.desktop %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.odg %%DATADIR%%/stencils/ChemEng/SaT-floatinghead.png %%DATADIR%%/stencils/ChemEng/aircooler.desktop %%DATADIR%%/stencils/ChemEng/aircooler.odg %%DATADIR%%/stencils/ChemEng/aircooler.png %%DATADIR%%/stencils/ChemEng/airforced.desktop %%DATADIR%%/stencils/ChemEng/airforced.odg %%DATADIR%%/stencils/ChemEng/airforced.png %%DATADIR%%/stencils/ChemEng/airinduced.desktop %%DATADIR%%/stencils/ChemEng/airinduced.odg %%DATADIR%%/stencils/ChemEng/airinduced.png %%DATADIR%%/stencils/ChemEng/autoclave.desktop %%DATADIR%%/stencils/ChemEng/autoclave.odg %%DATADIR%%/stencils/ChemEng/autoclave.png %%DATADIR%%/stencils/ChemEng/bigtraycol.desktop %%DATADIR%%/stencils/ChemEng/bigtraycol.odg %%DATADIR%%/stencils/ChemEng/bigtraycol.png %%DATADIR%%/stencils/ChemEng/centrifuge.desktop %%DATADIR%%/stencils/ChemEng/centrifuge.odg %%DATADIR%%/stencils/ChemEng/centrifuge.png %%DATADIR%%/stencils/ChemEng/coil.desktop %%DATADIR%%/stencils/ChemEng/coil.odg %%DATADIR%%/stencils/ChemEng/coil.png %%DATADIR%%/stencils/ChemEng/coilv.desktop %%DATADIR%%/stencils/ChemEng/coilv.odg %%DATADIR%%/stencils/ChemEng/coilv.png %%DATADIR%%/stencils/ChemEng/collection.desktop %%DATADIR%%/stencils/ChemEng/compr.desktop %%DATADIR%%/stencils/ChemEng/compr.odg %%DATADIR%%/stencils/ChemEng/compr.png %%DATADIR%%/stencils/ChemEng/coveredtank.desktop %%DATADIR%%/stencils/ChemEng/coveredtank.odg %%DATADIR%%/stencils/ChemEng/coveredtank.png %%DATADIR%%/stencils/ChemEng/cyclone.desktop %%DATADIR%%/stencils/ChemEng/cyclone.odg %%DATADIR%%/stencils/ChemEng/cyclone.png %%DATADIR%%/stencils/ChemEng/displa.desktop %%DATADIR%%/stencils/ChemEng/displa.odg %%DATADIR%%/stencils/ChemEng/displa.png %%DATADIR%%/stencils/ChemEng/doublepipe.desktop %%DATADIR%%/stencils/ChemEng/doublepipe.odg %%DATADIR%%/stencils/ChemEng/doublepipe.png %%DATADIR%%/stencils/ChemEng/ejector.desktop %%DATADIR%%/stencils/ChemEng/ejector.odg %%DATADIR%%/stencils/ChemEng/ejector.png %%DATADIR%%/stencils/ChemEng/fan.desktop %%DATADIR%%/stencils/ChemEng/fan.odg %%DATADIR%%/stencils/ChemEng/fan.png %%DATADIR%%/stencils/ChemEng/filter.desktop %%DATADIR%%/stencils/ChemEng/filter.odg %%DATADIR%%/stencils/ChemEng/filter.png %%DATADIR%%/stencils/ChemEng/fixedroof.desktop %%DATADIR%%/stencils/ChemEng/fixedroof.odg %%DATADIR%%/stencils/ChemEng/fixedroof.png %%DATADIR%%/stencils/ChemEng/floatingroof.desktop %%DATADIR%%/stencils/ChemEng/floatingroof.odg %%DATADIR%%/stencils/ChemEng/floatingroof.png %%DATADIR%%/stencils/ChemEng/flowfan.desktop %%DATADIR%%/stencils/ChemEng/flowfan.odg %%DATADIR%%/stencils/ChemEng/flowfan.png %%DATADIR%%/stencils/ChemEng/fluidcont.desktop %%DATADIR%%/stencils/ChemEng/fluidcont.odg %%DATADIR%%/stencils/ChemEng/fluidcont.png %%DATADIR%%/stencils/ChemEng/furnace.desktop %%DATADIR%%/stencils/ChemEng/furnace.odg %%DATADIR%%/stencils/ChemEng/furnace.png %%DATADIR%%/stencils/ChemEng/gasholder.desktop %%DATADIR%%/stencils/ChemEng/gasholder.odg %%DATADIR%%/stencils/ChemEng/gasholder.png %%DATADIR%%/stencils/ChemEng/hx.desktop %%DATADIR%%/stencils/ChemEng/hx.odg %%DATADIR%%/stencils/ChemEng/hx.png %%DATADIR%%/stencils/ChemEng/hxv.desktop %%DATADIR%%/stencils/ChemEng/hxv.odg %%DATADIR%%/stencils/ChemEng/hxv.png %%DATADIR%%/stencils/ChemEng/kettle.desktop %%DATADIR%%/stencils/ChemEng/kettle.odg %%DATADIR%%/stencils/ChemEng/kettle.png %%DATADIR%%/stencils/ChemEng/knockout.desktop %%DATADIR%%/stencils/ChemEng/knockout.odg %%DATADIR%%/stencils/ChemEng/knockout.png %%DATADIR%%/stencils/ChemEng/measure.desktop %%DATADIR%%/stencils/ChemEng/measure.odg %%DATADIR%%/stencils/ChemEng/measure.png %%DATADIR%%/stencils/ChemEng/mixer.desktop %%DATADIR%%/stencils/ChemEng/mixer.odg %%DATADIR%%/stencils/ChemEng/mixer.png %%DATADIR%%/stencils/ChemEng/plate.desktop %%DATADIR%%/stencils/ChemEng/plate.odg %%DATADIR%%/stencils/ChemEng/plate.png %%DATADIR%%/stencils/ChemEng/pneum.desktop %%DATADIR%%/stencils/ChemEng/pneum.odg %%DATADIR%%/stencils/ChemEng/pneum.png %%DATADIR%%/stencils/ChemEng/pneumv.desktop %%DATADIR%%/stencils/ChemEng/pneumv.odg %%DATADIR%%/stencils/ChemEng/pneumv.png %%DATADIR%%/stencils/ChemEng/pnuemv.desktop %%DATADIR%%/stencils/ChemEng/pnuemv.odg %%DATADIR%%/stencils/ChemEng/pnuemv.png %%DATADIR%%/stencils/ChemEng/pump.desktop %%DATADIR%%/stencils/ChemEng/pump.odg %%DATADIR%%/stencils/ChemEng/pump.png %%DATADIR%%/stencils/ChemEng/reactor.desktop %%DATADIR%%/stencils/ChemEng/reactor.odg %%DATADIR%%/stencils/ChemEng/reactor.png %%DATADIR%%/stencils/ChemEng/recipr.desktop %%DATADIR%%/stencils/ChemEng/recipr.odg %%DATADIR%%/stencils/ChemEng/recipr.png %%DATADIR%%/stencils/ChemEng/regval.desktop %%DATADIR%%/stencils/ChemEng/regval.odg %%DATADIR%%/stencils/ChemEng/regval.png %%DATADIR%%/stencils/ChemEng/regvalv.desktop %%DATADIR%%/stencils/ChemEng/regvalv.odg %%DATADIR%%/stencils/ChemEng/regvalv.png %%DATADIR%%/stencils/ChemEng/sealedtank.desktop %%DATADIR%%/stencils/ChemEng/sealedtank.odg %%DATADIR%%/stencils/ChemEng/sealedtank.png %%DATADIR%%/stencils/ChemEng/settling.desktop %%DATADIR%%/stencils/ChemEng/settling.odg %%DATADIR%%/stencils/ChemEng/settling.png %%DATADIR%%/stencils/ChemEng/spray.desktop %%DATADIR%%/stencils/ChemEng/spray.odg %%DATADIR%%/stencils/ChemEng/spray.png %%DATADIR%%/stencils/ChemEng/spraydrier.desktop %%DATADIR%%/stencils/ChemEng/spraydrier.odg %%DATADIR%%/stencils/ChemEng/spraydrier.png %%DATADIR%%/stencils/ChemEng/storagesphere.desktop %%DATADIR%%/stencils/ChemEng/storagesphere.odg %%DATADIR%%/stencils/ChemEng/storagesphere.png %%DATADIR%%/stencils/ChemEng/tank.desktop %%DATADIR%%/stencils/ChemEng/tank.odg %%DATADIR%%/stencils/ChemEng/tank.png %%DATADIR%%/stencils/ChemEng/traycol.desktop %%DATADIR%%/stencils/ChemEng/traycol.odg %%DATADIR%%/stencils/ChemEng/traycol.png %%DATADIR%%/stencils/ChemEng/val.desktop %%DATADIR%%/stencils/ChemEng/val.odg %%DATADIR%%/stencils/ChemEng/val.png %%DATADIR%%/stencils/ChemEng/valv.desktop %%DATADIR%%/stencils/ChemEng/valv.odg %%DATADIR%%/stencils/ChemEng/valv.png %%DATADIR%%/stencils/ChemEng/vessel.desktop %%DATADIR%%/stencils/ChemEng/vessel.odg %%DATADIR%%/stencils/ChemEng/vessel.png %%DATADIR%%/stencils/ChemEng/wcool.desktop %%DATADIR%%/stencils/ChemEng/wcool.odg %%DATADIR%%/stencils/ChemEng/wcool.png %%DATADIR%%/stencils/ChemEng/wcoolv.desktop %%DATADIR%%/stencils/ChemEng/wcoolv.odg %%DATADIR%%/stencils/ChemEng/wcoolv.png %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.desktop %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.odg %%DATADIR%%/stencils/Chemistry_Lab/30-degree-bend.png %%DATADIR%%/stencils/Chemistry_Lab/beaker.desktop %%DATADIR%%/stencils/Chemistry_Lab/beaker.odg %%DATADIR%%/stencils/Chemistry_Lab/beaker.png %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/buechner-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/burette.desktop %%DATADIR%%/stencils/Chemistry_Lab/burette.odg %%DATADIR%%/stencils/Chemistry_Lab/burette.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-extra-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-front.png %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp-large.png %%DATADIR%%/stencils/Chemistry_Lab/clamp.desktop %%DATADIR%%/stencils/Chemistry_Lab/clamp.odg %%DATADIR%%/stencils/Chemistry_Lab/clamp.png %%DATADIR%%/stencils/Chemistry_Lab/collection.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red-blue.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux-red.png %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.desktop %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.odg %%DATADIR%%/stencils/Chemistry_Lab/column-reflux.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-black.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-green.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-liebig-vertical.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-orange.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-pale-blue.png %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser-red.png %%DATADIR%%/stencils/Chemistry_Lab/condenser.desktop %%DATADIR%%/stencils/Chemistry_Lab/condenser.odg %%DATADIR%%/stencils/Chemistry_Lab/condenser.png %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.desktop %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.odg %%DATADIR%%/stencils/Chemistry_Lab/erlenmeyer.png %%DATADIR%%/stencils/Chemistry_Lab/funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/funnel.png %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.desktop %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.odg %%DATADIR%%/stencils/Chemistry_Lab/gooseneck.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand-front.png %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.desktop %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.odg %%DATADIR%%/stencils/Chemistry_Lab/lab-stand.png %%DATADIR%%/stencils/Chemistry_Lab/ring-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring-front.odg %%DATADIR%%/stencils/Chemistry_Lab/ring-front.png %%DATADIR%%/stencils/Chemistry_Lab/ring.desktop %%DATADIR%%/stencils/Chemistry_Lab/ring.odg %%DATADIR%%/stencils/Chemistry_Lab/ring.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-three-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel-two-phases.png %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.desktop %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.odg %%DATADIR%%/stencils/Chemistry_Lab/sep-funnel.png %%DATADIR%%/stencils/Chemistry_Lab/stirbar.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirbar.odg %%DATADIR%%/stencils/Chemistry_Lab/stirbar.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate-front.png %%DATADIR%%/stencils/Chemistry_Lab/stirplate.desktop %%DATADIR%%/stencils/Chemistry_Lab/stirplate.odg %%DATADIR%%/stencils/Chemistry_Lab/stirplate.png %%DATADIR%%/stencils/Circuit/collection.desktop %%DATADIR%%/stencils/Circuit/ground.desktop %%DATADIR%%/stencils/Circuit/ground.odg %%DATADIR%%/stencils/Circuit/ground.png %%DATADIR%%/stencils/Circuit/hcapacitor.desktop %%DATADIR%%/stencils/Circuit/hcapacitor.odg %%DATADIR%%/stencils/Circuit/hcapacitor.png %%DATADIR%%/stencils/Circuit/hdiode.desktop %%DATADIR%%/stencils/Circuit/hdiode.odg %%DATADIR%%/stencils/Circuit/hdiode.png %%DATADIR%%/stencils/Circuit/hfuse_de.desktop %%DATADIR%%/stencils/Circuit/hfuse_de.odg %%DATADIR%%/stencils/Circuit/hfuse_de.png %%DATADIR%%/stencils/Circuit/hinductor.desktop %%DATADIR%%/stencils/Circuit/hinductor.odg %%DATADIR%%/stencils/Circuit/hinductor.png %%DATADIR%%/stencils/Circuit/hinductor_de.desktop %%DATADIR%%/stencils/Circuit/hinductor_de.odg %%DATADIR%%/stencils/Circuit/hinductor_de.png %%DATADIR%%/stencils/Circuit/hjumper.desktop %%DATADIR%%/stencils/Circuit/hjumper.odg %%DATADIR%%/stencils/Circuit/hjumper.png %%DATADIR%%/stencils/Circuit/hled_de.desktop %%DATADIR%%/stencils/Circuit/hled_de.odg %%DATADIR%%/stencils/Circuit/hled_de.png %%DATADIR%%/stencils/Circuit/hpowersource_de.desktop %%DATADIR%%/stencils/Circuit/hpowersource_de.odg %%DATADIR%%/stencils/Circuit/hpowersource_de.png %%DATADIR%%/stencils/Circuit/hresistor.desktop %%DATADIR%%/stencils/Circuit/hresistor.odg %%DATADIR%%/stencils/Circuit/hresistor.png %%DATADIR%%/stencils/Circuit/hresistor_de.desktop %%DATADIR%%/stencils/Circuit/hresistor_de.odg %%DATADIR%%/stencils/Circuit/hresistor_de.png %%DATADIR%%/stencils/Circuit/hzener.desktop %%DATADIR%%/stencils/Circuit/hzener.odg %%DATADIR%%/stencils/Circuit/hzener.png %%DATADIR%%/stencils/Circuit/lamp_de.desktop %%DATADIR%%/stencils/Circuit/lamp_de.odg %%DATADIR%%/stencils/Circuit/lamp_de.png %%DATADIR%%/stencils/Circuit/microphone_de.desktop %%DATADIR%%/stencils/Circuit/microphone_de.odg %%DATADIR%%/stencils/Circuit/microphone_de.png %%DATADIR%%/stencils/Circuit/nmos_de.desktop %%DATADIR%%/stencils/Circuit/nmos_de.odg %%DATADIR%%/stencils/Circuit/nmos_de.png %%DATADIR%%/stencils/Circuit/npn.desktop %%DATADIR%%/stencils/Circuit/npn.odg %%DATADIR%%/stencils/Circuit/npn.png %%DATADIR%%/stencils/Circuit/opamp.desktop %%DATADIR%%/stencils/Circuit/opamp.odg %%DATADIR%%/stencils/Circuit/opamp.png %%DATADIR%%/stencils/Circuit/pmos_de.desktop %%DATADIR%%/stencils/Circuit/pmos_de.odg %%DATADIR%%/stencils/Circuit/pmos_de.png %%DATADIR%%/stencils/Circuit/pnp.desktop %%DATADIR%%/stencils/Circuit/pnp.odg %%DATADIR%%/stencils/Circuit/pnp.png %%DATADIR%%/stencils/Circuit/speaker_de.desktop %%DATADIR%%/stencils/Circuit/speaker_de.odg %%DATADIR%%/stencils/Circuit/speaker_de.png %%DATADIR%%/stencils/Circuit/vcapacitor.desktop %%DATADIR%%/stencils/Circuit/vcapacitor.odg %%DATADIR%%/stencils/Circuit/vcapacitor.png %%DATADIR%%/stencils/Circuit/vdiode.desktop %%DATADIR%%/stencils/Circuit/vdiode.odg %%DATADIR%%/stencils/Circuit/vdiode.png %%DATADIR%%/stencils/Circuit/vfuse_de.desktop %%DATADIR%%/stencils/Circuit/vfuse_de.odg %%DATADIR%%/stencils/Circuit/vfuse_de.png %%DATADIR%%/stencils/Circuit/vinductor.desktop %%DATADIR%%/stencils/Circuit/vinductor.odg %%DATADIR%%/stencils/Circuit/vinductor.png %%DATADIR%%/stencils/Circuit/vinductor_de.desktop %%DATADIR%%/stencils/Circuit/vinductor_de.odg %%DATADIR%%/stencils/Circuit/vinductor_de.png %%DATADIR%%/stencils/Circuit/vled_de.desktop %%DATADIR%%/stencils/Circuit/vled_de.odg %%DATADIR%%/stencils/Circuit/vled_de.png %%DATADIR%%/stencils/Circuit/vpowersource_de.desktop %%DATADIR%%/stencils/Circuit/vpowersource_de.odg %%DATADIR%%/stencils/Circuit/vpowersource_de.png %%DATADIR%%/stencils/Circuit/vresistor.desktop %%DATADIR%%/stencils/Circuit/vresistor.odg %%DATADIR%%/stencils/Circuit/vresistor.png %%DATADIR%%/stencils/Circuit/vresistor_de.desktop %%DATADIR%%/stencils/Circuit/vresistor_de.odg %%DATADIR%%/stencils/Circuit/vresistor_de.png %%DATADIR%%/stencils/Circuit/vzener.desktop %%DATADIR%%/stencils/Circuit/vzener.odg %%DATADIR%%/stencils/Circuit/vzener.png %%DATADIR%%/stencils/Circuit2/collection.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dcapacitor.odg %%DATADIR%%/stencils/Circuit2/dcapacitor.png %%DATADIR%%/stencils/Circuit2/ddiode.desktop %%DATADIR%%/stencils/Circuit2/ddiode.odg %%DATADIR%%/stencils/Circuit2/ddiode.png %%DATADIR%%/stencils/Circuit2/dinductor.desktop %%DATADIR%%/stencils/Circuit2/dinductor.odg %%DATADIR%%/stencils/Circuit2/dinductor.png %%DATADIR%%/stencils/Circuit2/dinductor_de.desktop %%DATADIR%%/stencils/Circuit2/dinductor_de.odg %%DATADIR%%/stencils/Circuit2/dinductor_de.png %%DATADIR%%/stencils/Circuit2/dled_de.desktop %%DATADIR%%/stencils/Circuit2/dled_de.odg %%DATADIR%%/stencils/Circuit2/dled_de.png %%DATADIR%%/stencils/Circuit2/dpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/dpcapacitor.odg %%DATADIR%%/stencils/Circuit2/dpcapacitor.png %%DATADIR%%/stencils/Circuit2/dresistor.desktop %%DATADIR%%/stencils/Circuit2/dresistor.odg %%DATADIR%%/stencils/Circuit2/dresistor.png %%DATADIR%%/stencils/Circuit2/dresistor_de.desktop %%DATADIR%%/stencils/Circuit2/dresistor_de.odg %%DATADIR%%/stencils/Circuit2/dresistor_de.png %%DATADIR%%/stencils/Circuit2/dzener.desktop %%DATADIR%%/stencils/Circuit2/dzener.odg %%DATADIR%%/stencils/Circuit2/dzener.png %%DATADIR%%/stencils/Circuit2/hammeter.desktop %%DATADIR%%/stencils/Circuit2/hammeter.odg %%DATADIR%%/stencils/Circuit2/hammeter.png %%DATADIR%%/stencils/Circuit2/hpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/hpcapacitor.odg %%DATADIR%%/stencils/Circuit2/hpcapacitor.png %%DATADIR%%/stencils/Circuit2/hvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/hvoltmeter.odg %%DATADIR%%/stencils/Circuit2/hvoltmeter.png %%DATADIR%%/stencils/Circuit2/newhled.desktop %%DATADIR%%/stencils/Circuit2/newhled.odg %%DATADIR%%/stencils/Circuit2/newhled.png %%DATADIR%%/stencils/Circuit2/newvled.desktop %%DATADIR%%/stencils/Circuit2/newvled.odg %%DATADIR%%/stencils/Circuit2/newvled.png %%DATADIR%%/stencils/Circuit2/opto.desktop %%DATADIR%%/stencils/Circuit2/opto.odg %%DATADIR%%/stencils/Circuit2/opto.png %%DATADIR%%/stencils/Circuit2/ramp.desktop %%DATADIR%%/stencils/Circuit2/ramp.odg %%DATADIR%%/stencils/Circuit2/ramp.png %%DATADIR%%/stencils/Circuit2/relay.desktop %%DATADIR%%/stencils/Circuit2/relay.odg %%DATADIR%%/stencils/Circuit2/relay.png %%DATADIR%%/stencils/Circuit2/sine.desktop %%DATADIR%%/stencils/Circuit2/sine.odg %%DATADIR%%/stencils/Circuit2/sine.png %%DATADIR%%/stencils/Circuit2/square.desktop %%DATADIR%%/stencils/Circuit2/square.odg %%DATADIR%%/stencils/Circuit2/square.png %%DATADIR%%/stencils/Circuit2/triac.desktop %%DATADIR%%/stencils/Circuit2/triac.odg %%DATADIR%%/stencils/Circuit2/triac.png %%DATADIR%%/stencils/Circuit2/triangle.desktop %%DATADIR%%/stencils/Circuit2/triangle.odg %%DATADIR%%/stencils/Circuit2/triangle.png %%DATADIR%%/stencils/Circuit2/vammeter.desktop %%DATADIR%%/stencils/Circuit2/vammeter.odg %%DATADIR%%/stencils/Circuit2/vammeter.png %%DATADIR%%/stencils/Circuit2/vpcapacitor.desktop %%DATADIR%%/stencils/Circuit2/vpcapacitor.odg %%DATADIR%%/stencils/Circuit2/vpcapacitor.png %%DATADIR%%/stencils/Circuit2/vvoltmeter.desktop %%DATADIR%%/stencils/Circuit2/vvoltmeter.odg %%DATADIR%%/stencils/Circuit2/vvoltmeter.png %%DATADIR%%/stencils/Cisco/1000.desktop %%DATADIR%%/stencils/Cisco/1000.odg %%DATADIR%%/stencils/Cisco/1000.png %%DATADIR%%/stencils/Cisco/100baset_hub.desktop %%DATADIR%%/stencils/Cisco/100baset_hub.odg %%DATADIR%%/stencils/Cisco/100baset_hub.png %%DATADIR%%/stencils/Cisco/10700.desktop %%DATADIR%%/stencils/Cisco/10700.odg %%DATADIR%%/stencils/Cisco/10700.png %%DATADIR%%/stencils/Cisco/15200.desktop %%DATADIR%%/stencils/Cisco/15200.odg %%DATADIR%%/stencils/Cisco/15200.png %%DATADIR%%/stencils/Cisco/15800.desktop %%DATADIR%%/stencils/Cisco/15800.odg %%DATADIR%%/stencils/Cisco/15800.png %%DATADIR%%/stencils/Cisco/3174.desktop %%DATADIR%%/stencils/Cisco/3174.odg %%DATADIR%%/stencils/Cisco/3174.png %%DATADIR%%/stencils/Cisco/3x74.desktop %%DATADIR%%/stencils/Cisco/3x74.odg %%DATADIR%%/stencils/Cisco/3x74.png %%DATADIR%%/stencils/Cisco/5000.desktop %%DATADIR%%/stencils/Cisco/5000.odg %%DATADIR%%/stencils/Cisco/5000.png %%DATADIR%%/stencils/Cisco/5002.desktop %%DATADIR%%/stencils/Cisco/5002.odg %%DATADIR%%/stencils/Cisco/5002.png %%DATADIR%%/stencils/Cisco/5500.desktop %%DATADIR%%/stencils/Cisco/5500.odg %%DATADIR%%/stencils/Cisco/5500.png %%DATADIR%%/stencils/Cisco/6701.desktop %%DATADIR%%/stencils/Cisco/6701.odg %%DATADIR%%/stencils/Cisco/6701.png %%DATADIR%%/stencils/Cisco/6705.desktop %%DATADIR%%/stencils/Cisco/6705.odg %%DATADIR%%/stencils/Cisco/6705.png %%DATADIR%%/stencils/Cisco/6732.desktop %%DATADIR%%/stencils/Cisco/6732.odg %%DATADIR%%/stencils/Cisco/6732.png %%DATADIR%%/stencils/Cisco/7500ars.desktop %%DATADIR%%/stencils/Cisco/7500ars.odg %%DATADIR%%/stencils/Cisco/7500ars.png %%DATADIR%%/stencils/Cisco/7505.desktop %%DATADIR%%/stencils/Cisco/7505.odg %%DATADIR%%/stencils/Cisco/7505.png %%DATADIR%%/stencils/Cisco/7507.desktop %%DATADIR%%/stencils/Cisco/7507.odg %%DATADIR%%/stencils/Cisco/7507.png %%DATADIR%%/stencils/Cisco/access_gateway.desktop %%DATADIR%%/stencils/Cisco/access_gateway.odg %%DATADIR%%/stencils/Cisco/access_gateway.png %%DATADIR%%/stencils/Cisco/access_server.desktop %%DATADIR%%/stencils/Cisco/access_server.odg %%DATADIR%%/stencils/Cisco/access_server.png %%DATADIR%%/stencils/Cisco/accesspoint.desktop %%DATADIR%%/stencils/Cisco/accesspoint.odg %%DATADIR%%/stencils/Cisco/accesspoint.png %%DATADIR%%/stencils/Cisco/adm.desktop %%DATADIR%%/stencils/Cisco/adm.odg %%DATADIR%%/stencils/Cisco/adm.png %%DATADIR%%/stencils/Cisco/androgynous_person.desktop %%DATADIR%%/stencils/Cisco/androgynous_person.odg %%DATADIR%%/stencils/Cisco/androgynous_person.png %%DATADIR%%/stencils/Cisco/antenna.desktop %%DATADIR%%/stencils/Cisco/antenna.odg %%DATADIR%%/stencils/Cisco/antenna.png %%DATADIR%%/stencils/Cisco/asic.desktop %%DATADIR%%/stencils/Cisco/asic.odg %%DATADIR%%/stencils/Cisco/asic.png %%DATADIR%%/stencils/Cisco/ata.desktop %%DATADIR%%/stencils/Cisco/ata.odg %%DATADIR%%/stencils/Cisco/ata.png %%DATADIR%%/stencils/Cisco/atm3800.desktop %%DATADIR%%/stencils/Cisco/atm3800.odg %%DATADIR%%/stencils/Cisco/atm3800.png %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.desktop %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.odg %%DATADIR%%/stencils/Cisco/atm_fast_gigabit_etherswitch.png %%DATADIR%%/stencils/Cisco/atm_router.desktop %%DATADIR%%/stencils/Cisco/atm_router.odg %%DATADIR%%/stencils/Cisco/atm_switch.desktop %%DATADIR%%/stencils/Cisco/atm_switch.odg %%DATADIR%%/stencils/Cisco/atm_switch.png %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.desktop %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.odg %%DATADIR%%/stencils/Cisco/atm_tag_switch_router.png %%DATADIR%%/stencils/Cisco/automatic_protection_switching.desktop %%DATADIR%%/stencils/Cisco/automatic_protection_switching.odg %%DATADIR%%/stencils/Cisco/automatic_protection_switching.png %%DATADIR%%/stencils/Cisco/bbfw.desktop %%DATADIR%%/stencils/Cisco/bbfw.odg %%DATADIR%%/stencils/Cisco/bbfw.png %%DATADIR%%/stencils/Cisco/bbfw_media.desktop %%DATADIR%%/stencils/Cisco/bbfw_media.odg %%DATADIR%%/stencils/Cisco/bbfw_media.png %%DATADIR%%/stencils/Cisco/bbs.desktop %%DATADIR%%/stencils/Cisco/bbs.odg %%DATADIR%%/stencils/Cisco/bbs.png %%DATADIR%%/stencils/Cisco/bbsm.desktop %%DATADIR%%/stencils/Cisco/bbsm.odg %%DATADIR%%/stencils/Cisco/bbsm.png %%DATADIR%%/stencils/Cisco/branch_office.desktop %%DATADIR%%/stencils/Cisco/branch_office.odg %%DATADIR%%/stencils/Cisco/branch_office.png %%DATADIR%%/stencils/Cisco/branch_office_blue.desktop %%DATADIR%%/stencils/Cisco/branch_office_blue.odg %%DATADIR%%/stencils/Cisco/branch_office_blue.png %%DATADIR%%/stencils/Cisco/branch_office_subdued.desktop %%DATADIR%%/stencils/Cisco/branch_office_subdued.odg %%DATADIR%%/stencils/Cisco/branch_office_subdued.png %%DATADIR%%/stencils/Cisco/breakout_box.desktop %%DATADIR%%/stencils/Cisco/breakout_box.odg %%DATADIR%%/stencils/Cisco/breakout_box.png %%DATADIR%%/stencils/Cisco/bridge.desktop %%DATADIR%%/stencils/Cisco/bridge.odg %%DATADIR%%/stencils/Cisco/bridge.png %%DATADIR%%/stencils/Cisco/broadband_router.desktop %%DATADIR%%/stencils/Cisco/broadband_router.odg %%DATADIR%%/stencils/Cisco/broadband_router.png %%DATADIR%%/stencils/Cisco/bts10200.desktop %%DATADIR%%/stencils/Cisco/bts10200.odg %%DATADIR%%/stencils/Cisco/bts10200.png %%DATADIR%%/stencils/Cisco/ca.desktop %%DATADIR%%/stencils/Cisco/ca.odg %%DATADIR%%/stencils/Cisco/ca.png %%DATADIR%%/stencils/Cisco/cable_modem.desktop %%DATADIR%%/stencils/Cisco/cable_modem.odg %%DATADIR%%/stencils/Cisco/cable_modem.png %%DATADIR%%/stencils/Cisco/callmanager.desktop %%DATADIR%%/stencils/Cisco/callmanager.odg %%DATADIR%%/stencils/Cisco/callmanager.png %%DATADIR%%/stencils/Cisco/car.desktop %%DATADIR%%/stencils/Cisco/car.odg %%DATADIR%%/stencils/Cisco/car.png %%DATADIR%%/stencils/Cisco/carrier_routing_system.desktop %%DATADIR%%/stencils/Cisco/carrier_routing_system.odg %%DATADIR%%/stencils/Cisco/carrier_routing_system.png %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.desktop %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.odg %%DATADIR%%/stencils/Cisco/catalyst_access_gateway.png %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.desktop %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.odg %%DATADIR%%/stencils/Cisco/cddi_fddi_concentrator.png %%DATADIR%%/stencils/Cisco/cdm.desktop %%DATADIR%%/stencils/Cisco/cdm.odg %%DATADIR%%/stencils/Cisco/cdm.png %%DATADIR%%/stencils/Cisco/cellular_phone.desktop %%DATADIR%%/stencils/Cisco/cellular_phone.odg %%DATADIR%%/stencils/Cisco/cellular_phone.png %%DATADIR%%/stencils/Cisco/centri_firewall.desktop %%DATADIR%%/stencils/Cisco/centri_firewall.odg %%DATADIR%%/stencils/Cisco/centri_firewall.png %%DATADIR%%/stencils/Cisco/channelized_pipe.desktop %%DATADIR%%/stencils/Cisco/channelized_pipe.odg %%DATADIR%%/stencils/Cisco/channelized_pipe.png %%DATADIR%%/stencils/Cisco/cisco_hub.desktop %%DATADIR%%/stencils/Cisco/cisco_hub.odg %%DATADIR%%/stencils/Cisco/cisco_hub.png %%DATADIR%%/stencils/Cisco/ciscosecurity.desktop %%DATADIR%%/stencils/Cisco/ciscosecurity.odg %%DATADIR%%/stencils/Cisco/ciscosecurity.png %%DATADIR%%/stencils/Cisco/ciscoworks.desktop %%DATADIR%%/stencils/Cisco/ciscoworks.odg %%DATADIR%%/stencils/Cisco/ciscoworks.png %%DATADIR%%/stencils/Cisco/ciscoworks_man.desktop %%DATADIR%%/stencils/Cisco/ciscoworks_man.odg %%DATADIR%%/stencils/Cisco/ciscoworks_man.png %%DATADIR%%/stencils/Cisco/class45_switch.desktop %%DATADIR%%/stencils/Cisco/class45_switch.odg %%DATADIR%%/stencils/Cisco/class45_switch.png %%DATADIR%%/stencils/Cisco/cloud.desktop %%DATADIR%%/stencils/Cisco/cloud.odg %%DATADIR%%/stencils/Cisco/cloud.png %%DATADIR%%/stencils/Cisco/cloud_dark.desktop %%DATADIR%%/stencils/Cisco/cloud_dark.odg %%DATADIR%%/stencils/Cisco/cloud_dark.png %%DATADIR%%/stencils/Cisco/cloud_gold.desktop %%DATADIR%%/stencils/Cisco/cloud_gold.odg %%DATADIR%%/stencils/Cisco/cloud_gold.png %%DATADIR%%/stencils/Cisco/cloud_white.desktop %%DATADIR%%/stencils/Cisco/cloud_white.odg %%DATADIR%%/stencils/Cisco/cloud_white.png %%DATADIR%%/stencils/Cisco/collection.desktop %%DATADIR%%/stencils/Cisco/communications_server.desktop %%DATADIR%%/stencils/Cisco/communications_server.odg %%DATADIR%%/stencils/Cisco/communications_server.png %%DATADIR%%/stencils/Cisco/concatenated_payload.desktop %%DATADIR%%/stencils/Cisco/concatenated_payload.odg %%DATADIR%%/stencils/Cisco/concatenated_payload.png %%DATADIR%%/stencils/Cisco/content_engine.desktop %%DATADIR%%/stencils/Cisco/content_engine.odg %%DATADIR%%/stencils/Cisco/content_engine.png %%DATADIR%%/stencils/Cisco/content_router.desktop %%DATADIR%%/stencils/Cisco/content_router.odg %%DATADIR%%/stencils/Cisco/content_router.png %%DATADIR%%/stencils/Cisco/content_service_module.desktop %%DATADIR%%/stencils/Cisco/content_service_module.odg %%DATADIR%%/stencils/Cisco/content_service_module.png %%DATADIR%%/stencils/Cisco/content_switch.desktop %%DATADIR%%/stencils/Cisco/content_switch.odg %%DATADIR%%/stencils/Cisco/content_switch.png %%DATADIR%%/stencils/Cisco/csm-s.desktop %%DATADIR%%/stencils/Cisco/csm-s.odg %%DATADIR%%/stencils/Cisco/csm-s.png %%DATADIR%%/stencils/Cisco/css1100.desktop %%DATADIR%%/stencils/Cisco/css1100.odg %%DATADIR%%/stencils/Cisco/css1100.png %%DATADIR%%/stencils/Cisco/csu_dsu.desktop %%DATADIR%%/stencils/Cisco/csu_dsu.odg %%DATADIR%%/stencils/Cisco/csu_dsu.png %%DATADIR%%/stencils/Cisco/cte.desktop %%DATADIR%%/stencils/Cisco/cte.odg %%DATADIR%%/stencils/Cisco/cte.png %%DATADIR%%/stencils/Cisco/data_center_switch.desktop %%DATADIR%%/stencils/Cisco/data_center_switch.odg %%DATADIR%%/stencils/Cisco/data_center_switch.png %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.desktop %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.odg %%DATADIR%%/stencils/Cisco/data_center_switch_reversed.png %%DATADIR%%/stencils/Cisco/data_switch_processor.desktop %%DATADIR%%/stencils/Cisco/data_switch_processor.odg %%DATADIR%%/stencils/Cisco/data_switch_processor.png %%DATADIR%%/stencils/Cisco/detector.desktop %%DATADIR%%/stencils/Cisco/detector.odg %%DATADIR%%/stencils/Cisco/detector.png %%DATADIR%%/stencils/Cisco/digital_cross-connect.desktop %%DATADIR%%/stencils/Cisco/digital_cross-connect.odg %%DATADIR%%/stencils/Cisco/digital_cross-connect.png %%DATADIR%%/stencils/Cisco/director_fcis.desktop %%DATADIR%%/stencils/Cisco/director_fcis.odg %%DATADIR%%/stencils/Cisco/director_fcis.png %%DATADIR%%/stencils/Cisco/directory_server.desktop %%DATADIR%%/stencils/Cisco/directory_server.odg %%DATADIR%%/stencils/Cisco/directory_server.png %%DATADIR%%/stencils/Cisco/disk_subsystem.desktop %%DATADIR%%/stencils/Cisco/disk_subsystem.odg %%DATADIR%%/stencils/Cisco/disk_subsystem.png %%DATADIR%%/stencils/Cisco/diskette.desktop %%DATADIR%%/stencils/Cisco/diskette.odg %%DATADIR%%/stencils/Cisco/diskette.png %%DATADIR%%/stencils/Cisco/distributed_director.desktop %%DATADIR%%/stencils/Cisco/distributed_director.odg %%DATADIR%%/stencils/Cisco/distributed_director.png %%DATADIR%%/stencils/Cisco/dot_dot.desktop %%DATADIR%%/stencils/Cisco/dot_dot.odg %%DATADIR%%/stencils/Cisco/dot_dot.png %%DATADIR%%/stencils/Cisco/dpt.desktop %%DATADIR%%/stencils/Cisco/dpt.odg %%DATADIR%%/stencils/Cisco/dpt.png %%DATADIR%%/stencils/Cisco/dslam.desktop %%DATADIR%%/stencils/Cisco/dslam.odg %%DATADIR%%/stencils/Cisco/dslam.png %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.desktop %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.odg %%DATADIR%%/stencils/Cisco/dual_mode_accesspoint.png %%DATADIR%%/stencils/Cisco/dwdm_filter.desktop %%DATADIR%%/stencils/Cisco/dwdm_filter.odg %%DATADIR%%/stencils/Cisco/dwdm_filter.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router.png %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.desktop %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.odg %%DATADIR%%/stencils/Cisco/edge_label_switch_router_with_netflow.png %%DATADIR%%/stencils/Cisco/end_office.desktop %%DATADIR%%/stencils/Cisco/end_office.odg %%DATADIR%%/stencils/Cisco/end_office.png %%DATADIR%%/stencils/Cisco/etherclient.desktop %%DATADIR%%/stencils/Cisco/etherclient.odg %%DATADIR%%/stencils/Cisco/etherclient.png %%DATADIR%%/stencils/Cisco/fax.desktop %%DATADIR%%/stencils/Cisco/fax.odg %%DATADIR%%/stencils/Cisco/fax.png %%DATADIR%%/stencils/Cisco/fc_storage.desktop %%DATADIR%%/stencils/Cisco/fc_storage.odg %%DATADIR%%/stencils/Cisco/fc_storage.png %%DATADIR%%/stencils/Cisco/fddi_ring.desktop %%DATADIR%%/stencils/Cisco/fddi_ring.odg %%DATADIR%%/stencils/Cisco/fddi_ring.png %%DATADIR%%/stencils/Cisco/file_cabinet.desktop %%DATADIR%%/stencils/Cisco/file_cabinet.odg %%DATADIR%%/stencils/Cisco/file_cabinet.png %%DATADIR%%/stencils/Cisco/file_engine.desktop %%DATADIR%%/stencils/Cisco/file_engine.odg %%DATADIR%%/stencils/Cisco/file_engine.png %%DATADIR%%/stencils/Cisco/file_server.desktop %%DATADIR%%/stencils/Cisco/file_server.odg %%DATADIR%%/stencils/Cisco/file_server.png %%DATADIR%%/stencils/Cisco/firewall.desktop %%DATADIR%%/stencils/Cisco/firewall.odg %%DATADIR%%/stencils/Cisco/firewall.png %%DATADIR%%/stencils/Cisco/firewall_horizontal.desktop %%DATADIR%%/stencils/Cisco/firewall_horizontal.odg %%DATADIR%%/stencils/Cisco/firewall_horizontal.png %%DATADIR%%/stencils/Cisco/firewall_subdued.desktop %%DATADIR%%/stencils/Cisco/firewall_subdued.odg %%DATADIR%%/stencils/Cisco/firewall_subdued.png %%DATADIR%%/stencils/Cisco/front_end_processor.desktop %%DATADIR%%/stencils/Cisco/front_end_processor.odg %%DATADIR%%/stencils/Cisco/front_end_processor.png %%DATADIR%%/stencils/Cisco/fwsm.desktop %%DATADIR%%/stencils/Cisco/fwsm.odg %%DATADIR%%/stencils/Cisco/fwsm.png %%DATADIR%%/stencils/Cisco/general_appliance.desktop %%DATADIR%%/stencils/Cisco/general_appliance.odg %%DATADIR%%/stencils/Cisco/general_appliance.png %%DATADIR%%/stencils/Cisco/generic_building.desktop %%DATADIR%%/stencils/Cisco/generic_building.odg %%DATADIR%%/stencils/Cisco/generic_building.png %%DATADIR%%/stencils/Cisco/generic_building_blue.desktop %%DATADIR%%/stencils/Cisco/generic_building_blue.odg %%DATADIR%%/stencils/Cisco/generic_building_blue.png %%DATADIR%%/stencils/Cisco/generic_building_subdued.desktop %%DATADIR%%/stencils/Cisco/generic_building_subdued.odg %%DATADIR%%/stencils/Cisco/generic_building_subdued.png %%DATADIR%%/stencils/Cisco/generic_gateway.desktop %%DATADIR%%/stencils/Cisco/generic_gateway.odg %%DATADIR%%/stencils/Cisco/generic_gateway.png %%DATADIR%%/stencils/Cisco/generic_processor.desktop %%DATADIR%%/stencils/Cisco/generic_processor.odg %%DATADIR%%/stencils/Cisco/generic_processor.png %%DATADIR%%/stencils/Cisco/generic_softswitch.desktop %%DATADIR%%/stencils/Cisco/generic_softswitch.odg %%DATADIR%%/stencils/Cisco/generic_softswitch.png %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.desktop %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.odg %%DATADIR%%/stencils/Cisco/gigabit_switch_router_atm_tag.png %%DATADIR%%/stencils/Cisco/government_building.desktop %%DATADIR%%/stencils/Cisco/government_building.odg %%DATADIR%%/stencils/Cisco/government_building.png %%DATADIR%%/stencils/Cisco/guard.desktop %%DATADIR%%/stencils/Cisco/guard.odg %%DATADIR%%/stencils/Cisco/guard.png %%DATADIR%%/stencils/Cisco/h323.desktop %%DATADIR%%/stencils/Cisco/h323.odg %%DATADIR%%/stencils/Cisco/h323.png %%DATADIR%%/stencils/Cisco/handheld.desktop %%DATADIR%%/stencils/Cisco/handheld.odg %%DATADIR%%/stencils/Cisco/handheld.png %%DATADIR%%/stencils/Cisco/headphones.desktop %%DATADIR%%/stencils/Cisco/headphones.odg %%DATADIR%%/stencils/Cisco/headphones.png %%DATADIR%%/stencils/Cisco/home_office.desktop %%DATADIR%%/stencils/Cisco/home_office.odg %%DATADIR%%/stencils/Cisco/home_office.png %%DATADIR%%/stencils/Cisco/hootphone.desktop %%DATADIR%%/stencils/Cisco/hootphone.odg %%DATADIR%%/stencils/Cisco/hootphone.png %%DATADIR%%/stencils/Cisco/host.desktop %%DATADIR%%/stencils/Cisco/host.odg %%DATADIR%%/stencils/Cisco/host.png %%DATADIR%%/stencils/Cisco/house.desktop %%DATADIR%%/stencils/Cisco/house.odg %%DATADIR%%/stencils/Cisco/house.png %%DATADIR%%/stencils/Cisco/house_blue.desktop %%DATADIR%%/stencils/Cisco/house_blue.odg %%DATADIR%%/stencils/Cisco/house_blue.png %%DATADIR%%/stencils/Cisco/hp_mini.desktop %%DATADIR%%/stencils/Cisco/hp_mini.odg %%DATADIR%%/stencils/Cisco/hp_mini.png %%DATADIR%%/stencils/Cisco/hub.desktop %%DATADIR%%/stencils/Cisco/hub.odg %%DATADIR%%/stencils/Cisco/hub.png %%DATADIR%%/stencils/Cisco/hub_subdued.desktop %%DATADIR%%/stencils/Cisco/hub_subdued.odg %%DATADIR%%/stencils/Cisco/hub_subdued.png %%DATADIR%%/stencils/Cisco/iad_router.desktop %%DATADIR%%/stencils/Cisco/iad_router.odg %%DATADIR%%/stencils/Cisco/iad_router.png %%DATADIR%%/stencils/Cisco/ibm_mainframe.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe.png %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.desktop %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.odg %%DATADIR%%/stencils/Cisco/ibm_mainframe_with_fep.png %%DATADIR%%/stencils/Cisco/ibm_mini.desktop %%DATADIR%%/stencils/Cisco/ibm_mini.odg %%DATADIR%%/stencils/Cisco/ibm_mini.png %%DATADIR%%/stencils/Cisco/ibm_tower.desktop %%DATADIR%%/stencils/Cisco/ibm_tower.odg %%DATADIR%%/stencils/Cisco/ibm_tower.png %%DATADIR%%/stencils/Cisco/icm.desktop %%DATADIR%%/stencils/Cisco/icm.odg %%DATADIR%%/stencils/Cisco/icm.png %%DATADIR%%/stencils/Cisco/ics.desktop %%DATADIR%%/stencils/Cisco/ics.odg %%DATADIR%%/stencils/Cisco/ics.png %%DATADIR%%/stencils/Cisco/intelliswitch_stack.desktop %%DATADIR%%/stencils/Cisco/intelliswitch_stack.odg %%DATADIR%%/stencils/Cisco/intelliswitch_stack.png %%DATADIR%%/stencils/Cisco/ios_firewall.desktop %%DATADIR%%/stencils/Cisco/ios_firewall.odg %%DATADIR%%/stencils/Cisco/ios_firewall.png %%DATADIR%%/stencils/Cisco/ios_slb.desktop %%DATADIR%%/stencils/Cisco/ios_slb.odg %%DATADIR%%/stencils/Cisco/ios_slb.png %%DATADIR%%/stencils/Cisco/ip.desktop %%DATADIR%%/stencils/Cisco/ip.odg %%DATADIR%%/stencils/Cisco/ip.png %%DATADIR%%/stencils/Cisco/ip_dsl.desktop %%DATADIR%%/stencils/Cisco/ip_dsl.odg %%DATADIR%%/stencils/Cisco/ip_dsl.png %%DATADIR%%/stencils/Cisco/ip_old-style.desktop %%DATADIR%%/stencils/Cisco/ip_old-style.odg %%DATADIR%%/stencils/Cisco/ip_old-style.png %%DATADIR%%/stencils/Cisco/ip_phone.desktop %%DATADIR%%/stencils/Cisco/ip_phone.odg %%DATADIR%%/stencils/Cisco/ip_phone.png %%DATADIR%%/stencils/Cisco/ip_softphone.desktop %%DATADIR%%/stencils/Cisco/ip_softphone.odg %%DATADIR%%/stencils/Cisco/ip_softphone.png %%DATADIR%%/stencils/Cisco/ip_telephony_router.desktop %%DATADIR%%/stencils/Cisco/ip_telephony_router.odg %%DATADIR%%/stencils/Cisco/ip_telephony_router.png %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.desktop %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.odg %%DATADIR%%/stencils/Cisco/ip_transport_concentrator.png %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.desktop %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.odg %%DATADIR%%/stencils/Cisco/iptv_broadcast_server.png %%DATADIR%%/stencils/Cisco/iptv_content_manager.desktop %%DATADIR%%/stencils/Cisco/iptv_content_manager.odg %%DATADIR%%/stencils/Cisco/iptv_content_manager.png %%DATADIR%%/stencils/Cisco/iscsi_switch.desktop %%DATADIR%%/stencils/Cisco/iscsi_switch.odg %%DATADIR%%/stencils/Cisco/iscsi_switch.png %%DATADIR%%/stencils/Cisco/isdn_switch.desktop %%DATADIR%%/stencils/Cisco/isdn_switch.odg %%DATADIR%%/stencils/Cisco/isdn_switch.png %%DATADIR%%/stencils/Cisco/itp.desktop %%DATADIR%%/stencils/Cisco/itp.odg %%DATADIR%%/stencils/Cisco/itp.png %%DATADIR%%/stencils/Cisco/jbod.desktop %%DATADIR%%/stencils/Cisco/jbod.odg %%DATADIR%%/stencils/Cisco/jbod.png %%DATADIR%%/stencils/Cisco/key.desktop %%DATADIR%%/stencils/Cisco/key.odg %%DATADIR%%/stencils/Cisco/key.png %%DATADIR%%/stencils/Cisco/label_switch_router.desktop %%DATADIR%%/stencils/Cisco/label_switch_router.odg %%DATADIR%%/stencils/Cisco/label_switch_router.png %%DATADIR%%/stencils/Cisco/lan2lan_switch.desktop %%DATADIR%%/stencils/Cisco/lan2lan_switch.odg %%DATADIR%%/stencils/Cisco/lan2lan_switch.png %%DATADIR%%/stencils/Cisco/lan_to_lan.desktop %%DATADIR%%/stencils/Cisco/lan_to_lan.odg %%DATADIR%%/stencils/Cisco/lan_to_lan.png %%DATADIR%%/stencils/Cisco/laptop.desktop %%DATADIR%%/stencils/Cisco/laptop.odg %%DATADIR%%/stencils/Cisco/laptop.png %%DATADIR%%/stencils/Cisco/layer3_switch.desktop %%DATADIR%%/stencils/Cisco/layer3_switch.odg %%DATADIR%%/stencils/Cisco/layer3_switch.png %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.desktop %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.odg %%DATADIR%%/stencils/Cisco/layer_2_remote_switch.png %%DATADIR%%/stencils/Cisco/lightweight_ap.desktop %%DATADIR%%/stencils/Cisco/lightweight_ap.odg %%DATADIR%%/stencils/Cisco/lightweight_ap.png %%DATADIR%%/stencils/Cisco/localdirector.desktop %%DATADIR%%/stencils/Cisco/localdirector.odg %%DATADIR%%/stencils/Cisco/localdirector.png %%DATADIR%%/stencils/Cisco/location_server.desktop %%DATADIR%%/stencils/Cisco/location_server.odg %%DATADIR%%/stencils/Cisco/location_server.png %%DATADIR%%/stencils/Cisco/lock.desktop %%DATADIR%%/stencils/Cisco/lock.odg %%DATADIR%%/stencils/Cisco/lock.png %%DATADIR%%/stencils/Cisco/lock_and_key.desktop %%DATADIR%%/stencils/Cisco/lock_and_key.odg %%DATADIR%%/stencils/Cisco/lock_and_key.png %%DATADIR%%/stencils/Cisco/longreach_cpe.desktop %%DATADIR%%/stencils/Cisco/longreach_cpe.odg %%DATADIR%%/stencils/Cisco/longreach_cpe.png %%DATADIR%%/stencils/Cisco/mac_woman.desktop %%DATADIR%%/stencils/Cisco/mac_woman.odg %%DATADIR%%/stencils/Cisco/mac_woman.png %%DATADIR%%/stencils/Cisco/mac_woman_right.desktop %%DATADIR%%/stencils/Cisco/mac_woman_right.odg %%DATADIR%%/stencils/Cisco/mac_woman_right.png %%DATADIR%%/stencils/Cisco/macintosh.desktop %%DATADIR%%/stencils/Cisco/macintosh.odg %%DATADIR%%/stencils/Cisco/macintosh.png %%DATADIR%%/stencils/Cisco/man.desktop %%DATADIR%%/stencils/Cisco/man.odg %%DATADIR%%/stencils/Cisco/man.png %%DATADIR%%/stencils/Cisco/man_blue.desktop %%DATADIR%%/stencils/Cisco/man_blue.odg %%DATADIR%%/stencils/Cisco/man_blue.png %%DATADIR%%/stencils/Cisco/man_gold.desktop %%DATADIR%%/stencils/Cisco/man_gold.odg %%DATADIR%%/stencils/Cisco/man_gold.png %%DATADIR%%/stencils/Cisco/man_red.desktop %%DATADIR%%/stencils/Cisco/man_red.odg %%DATADIR%%/stencils/Cisco/man_red.png %%DATADIR%%/stencils/Cisco/man_woman.desktop %%DATADIR%%/stencils/Cisco/man_woman.odg %%DATADIR%%/stencils/Cisco/man_woman.png %%DATADIR%%/stencils/Cisco/mas_gateway.desktop %%DATADIR%%/stencils/Cisco/mas_gateway.odg %%DATADIR%%/stencils/Cisco/mas_gateway.png %%DATADIR%%/stencils/Cisco/mau.desktop %%DATADIR%%/stencils/Cisco/mau.odg %%DATADIR%%/stencils/Cisco/mau.png %%DATADIR%%/stencils/Cisco/mcu.desktop %%DATADIR%%/stencils/Cisco/mcu.odg %%DATADIR%%/stencils/Cisco/mcu.png %%DATADIR%%/stencils/Cisco/mdu.desktop %%DATADIR%%/stencils/Cisco/mdu.odg %%DATADIR%%/stencils/Cisco/mdu.png %%DATADIR%%/stencils/Cisco/me1100.desktop %%DATADIR%%/stencils/Cisco/me1100.odg %%DATADIR%%/stencils/Cisco/me1100.png %%DATADIR%%/stencils/Cisco/medium_building.desktop %%DATADIR%%/stencils/Cisco/medium_building.odg %%DATADIR%%/stencils/Cisco/medium_building.png %%DATADIR%%/stencils/Cisco/medium_building_blue.desktop %%DATADIR%%/stencils/Cisco/medium_building_blue.odg %%DATADIR%%/stencils/Cisco/medium_building_blue.png %%DATADIR%%/stencils/Cisco/medium_building_subdued.desktop %%DATADIR%%/stencils/Cisco/medium_building_subdued.odg %%DATADIR%%/stencils/Cisco/medium_building_subdued.png %%DATADIR%%/stencils/Cisco/metro1500.desktop %%DATADIR%%/stencils/Cisco/metro1500.odg %%DATADIR%%/stencils/Cisco/metro1500.png %%DATADIR%%/stencils/Cisco/mgx8240.desktop %%DATADIR%%/stencils/Cisco/mgx8240.odg %%DATADIR%%/stencils/Cisco/mgx8240.png %%DATADIR%%/stencils/Cisco/mgx8220.desktop %%DATADIR%%/stencils/Cisco/mgx8220.odg %%DATADIR%%/stencils/Cisco/mgx8220.png %%DATADIR%%/stencils/Cisco/mgx8260.desktop %%DATADIR%%/stencils/Cisco/mgx8260.odg %%DATADIR%%/stencils/Cisco/mgx8260.png %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.desktop %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.odg %%DATADIR%%/stencils/Cisco/mgx_8000_series_voice_gateway.png %%DATADIR%%/stencils/Cisco/microphone.desktop %%DATADIR%%/stencils/Cisco/microphone.odg %%DATADIR%%/stencils/Cisco/microphone.png %%DATADIR%%/stencils/Cisco/microwebserver.desktop %%DATADIR%%/stencils/Cisco/microwebserver.odg %%DATADIR%%/stencils/Cisco/microwebserver.png %%DATADIR%%/stencils/Cisco/mini_vax.desktop %%DATADIR%%/stencils/Cisco/mini_vax.odg %%DATADIR%%/stencils/Cisco/mini_vax.png %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.desktop %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.odg %%DATADIR%%/stencils/Cisco/mobile_access_ip_phone.png %%DATADIR%%/stencils/Cisco/mobile_access_router.desktop %%DATADIR%%/stencils/Cisco/mobile_access_router.odg %%DATADIR%%/stencils/Cisco/mobile_access_router.png %%DATADIR%%/stencils/Cisco/modem.desktop %%DATADIR%%/stencils/Cisco/modem.odg %%DATADIR%%/stencils/Cisco/modem.png %%DATADIR%%/stencils/Cisco/moh_server.desktop %%DATADIR%%/stencils/Cisco/moh_server.odg %%DATADIR%%/stencils/Cisco/moh_server.png %%DATADIR%%/stencils/Cisco/monitor.desktop %%DATADIR%%/stencils/Cisco/monitor.odg %%DATADIR%%/stencils/Cisco/monitor.png %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.desktop %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.odg %%DATADIR%%/stencils/Cisco/multi-fabric_server_switch.png %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_remote_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch.odg %%DATADIR%%/stencils/Cisco/multilayer_switch.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon.png %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.desktop %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.odg %%DATADIR%%/stencils/Cisco/multilayer_switch_with_silicon_subdued.png %%DATADIR%%/stencils/Cisco/multiswitch_device.desktop %%DATADIR%%/stencils/Cisco/multiswitch_device.odg %%DATADIR%%/stencils/Cisco/multiswitch_device.png %%DATADIR%%/stencils/Cisco/mux.desktop %%DATADIR%%/stencils/Cisco/mux.odg %%DATADIR%%/stencils/Cisco/mux.png %%DATADIR%%/stencils/Cisco/nat.desktop %%DATADIR%%/stencils/Cisco/nat.odg %%DATADIR%%/stencils/Cisco/nat.png %%DATADIR%%/stencils/Cisco/netflow_router.desktop %%DATADIR%%/stencils/Cisco/netflow_router.odg %%DATADIR%%/stencils/Cisco/netflow_router.png %%DATADIR%%/stencils/Cisco/netranger.desktop %%DATADIR%%/stencils/Cisco/netranger.odg %%DATADIR%%/stencils/Cisco/netranger.png %%DATADIR%%/stencils/Cisco/netsonar.desktop %%DATADIR%%/stencils/Cisco/netsonar.odg %%DATADIR%%/stencils/Cisco/netsonar.png %%DATADIR%%/stencils/Cisco/network_management.desktop %%DATADIR%%/stencils/Cisco/network_management.odg %%DATADIR%%/stencils/Cisco/network_management.png %%DATADIR%%/stencils/Cisco/newton.desktop %%DATADIR%%/stencils/Cisco/newton.odg %%DATADIR%%/stencils/Cisco/newton.png %%DATADIR%%/stencils/Cisco/octel.desktop %%DATADIR%%/stencils/Cisco/octel.odg %%DATADIR%%/stencils/Cisco/octel.png %%DATADIR%%/stencils/Cisco/ons15104.desktop %%DATADIR%%/stencils/Cisco/ons15104.odg %%DATADIR%%/stencils/Cisco/ons15104.png %%DATADIR%%/stencils/Cisco/ons15540.desktop %%DATADIR%%/stencils/Cisco/ons15540.odg %%DATADIR%%/stencils/Cisco/ons15540.png %%DATADIR%%/stencils/Cisco/optical_amplifier.desktop %%DATADIR%%/stencils/Cisco/optical_amplifier.odg %%DATADIR%%/stencils/Cisco/optical_amplifier.png %%DATADIR%%/stencils/Cisco/optical_cross-connect.desktop %%DATADIR%%/stencils/Cisco/optical_cross-connect.odg %%DATADIR%%/stencils/Cisco/optical_cross-connect.png %%DATADIR%%/stencils/Cisco/optical_fiber.desktop %%DATADIR%%/stencils/Cisco/optical_fiber.odg %%DATADIR%%/stencils/Cisco/optical_fiber.png %%DATADIR%%/stencils/Cisco/optical_services_router.desktop %%DATADIR%%/stencils/Cisco/optical_services_router.odg %%DATADIR%%/stencils/Cisco/optical_services_router.png %%DATADIR%%/stencils/Cisco/optical_transport.desktop %%DATADIR%%/stencils/Cisco/optical_transport.odg %%DATADIR%%/stencils/Cisco/optical_transport.png %%DATADIR%%/stencils/Cisco/pad.desktop %%DATADIR%%/stencils/Cisco/pad.odg %%DATADIR%%/stencils/Cisco/pad.png %%DATADIR%%/stencils/Cisco/pager.desktop %%DATADIR%%/stencils/Cisco/pager.odg %%DATADIR%%/stencils/Cisco/pager.png %%DATADIR%%/stencils/Cisco/pbx.desktop %%DATADIR%%/stencils/Cisco/pbx.odg %%DATADIR%%/stencils/Cisco/pbx.png %%DATADIR%%/stencils/Cisco/pbx_switch.desktop %%DATADIR%%/stencils/Cisco/pbx_switch.odg %%DATADIR%%/stencils/Cisco/pbx_switch.png %%DATADIR%%/stencils/Cisco/pc.desktop %%DATADIR%%/stencils/Cisco/pc.odg %%DATADIR%%/stencils/Cisco/pc.png %%DATADIR%%/stencils/Cisco/pc_adapter_card.desktop %%DATADIR%%/stencils/Cisco/pc_adapter_card.odg %%DATADIR%%/stencils/Cisco/pc_adapter_card.png %%DATADIR%%/stencils/Cisco/pc_card.desktop %%DATADIR%%/stencils/Cisco/pc_card.odg %%DATADIR%%/stencils/Cisco/pc_card.png %%DATADIR%%/stencils/Cisco/pc_man.desktop %%DATADIR%%/stencils/Cisco/pc_man.odg %%DATADIR%%/stencils/Cisco/pc_man.png %%DATADIR%%/stencils/Cisco/pc_man_left.desktop %%DATADIR%%/stencils/Cisco/pc_man_left.odg %%DATADIR%%/stencils/Cisco/pc_man_left.png %%DATADIR%%/stencils/Cisco/pc_router_card.desktop %%DATADIR%%/stencils/Cisco/pc_router_card.odg %%DATADIR%%/stencils/Cisco/pc_router_card.png %%DATADIR%%/stencils/Cisco/pc_software.desktop %%DATADIR%%/stencils/Cisco/pc_software.odg %%DATADIR%%/stencils/Cisco/pc_software.png %%DATADIR%%/stencils/Cisco/pc_video.desktop %%DATADIR%%/stencils/Cisco/pc_video.odg %%DATADIR%%/stencils/Cisco/pc_video.png %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.desktop %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.odg %%DATADIR%%/stencils/Cisco/pc_with_router-based_software.png %%DATADIR%%/stencils/Cisco/pda.desktop %%DATADIR%%/stencils/Cisco/pda.odg %%DATADIR%%/stencils/Cisco/pda.png %%DATADIR%%/stencils/Cisco/phone.desktop %%DATADIR%%/stencils/Cisco/phone.odg %%DATADIR%%/stencils/Cisco/phone.png %%DATADIR%%/stencils/Cisco/phone_2.desktop %%DATADIR%%/stencils/Cisco/phone_2.odg %%DATADIR%%/stencils/Cisco/phone_2.png %%DATADIR%%/stencils/Cisco/phone_appliance.desktop %%DATADIR%%/stencils/Cisco/phone_appliance.odg %%DATADIR%%/stencils/Cisco/phone_appliance.png %%DATADIR%%/stencils/Cisco/phone_ethernet.desktop %%DATADIR%%/stencils/Cisco/phone_ethernet.odg %%DATADIR%%/stencils/Cisco/phone_ethernet.png %%DATADIR%%/stencils/Cisco/phone_fax.desktop %%DATADIR%%/stencils/Cisco/phone_fax.odg %%DATADIR%%/stencils/Cisco/phone_fax.png %%DATADIR%%/stencils/Cisco/phone_feature.desktop %%DATADIR%%/stencils/Cisco/phone_feature.odg %%DATADIR%%/stencils/Cisco/phone_feature.png %%DATADIR%%/stencils/Cisco/pix_firewall.desktop %%DATADIR%%/stencils/Cisco/pix_firewall.odg %%DATADIR%%/stencils/Cisco/pix_firewall.png %%DATADIR%%/stencils/Cisco/pix_firewall_left.desktop %%DATADIR%%/stencils/Cisco/pix_firewall_left.odg %%DATADIR%%/stencils/Cisco/pix_firewall_left.png %%DATADIR%%/stencils/Cisco/printer.desktop %%DATADIR%%/stencils/Cisco/printer.odg %%DATADIR%%/stencils/Cisco/printer.png %%DATADIR%%/stencils/Cisco/programmable_switch.desktop %%DATADIR%%/stencils/Cisco/programmable_switch.odg %%DATADIR%%/stencils/Cisco/programmable_switch.png %%DATADIR%%/stencils/Cisco/protocol_translator.desktop %%DATADIR%%/stencils/Cisco/protocol_translator.odg %%DATADIR%%/stencils/Cisco/protocol_translator.png %%DATADIR%%/stencils/Cisco/pxf.desktop %%DATADIR%%/stencils/Cisco/pxf.odg %%DATADIR%%/stencils/Cisco/pxf.png %%DATADIR%%/stencils/Cisco/radio_tower.desktop %%DATADIR%%/stencils/Cisco/radio_tower.odg %%DATADIR%%/stencils/Cisco/radio_tower.png %%DATADIR%%/stencils/Cisco/ratemux.desktop %%DATADIR%%/stencils/Cisco/ratemux.odg %%DATADIR%%/stencils/Cisco/ratemux.png %%DATADIR%%/stencils/Cisco/relational_database.desktop %%DATADIR%%/stencils/Cisco/relational_database.odg %%DATADIR%%/stencils/Cisco/relational_database.png %%DATADIR%%/stencils/Cisco/repeater.desktop %%DATADIR%%/stencils/Cisco/repeater.odg %%DATADIR%%/stencils/Cisco/repeater.png %%DATADIR%%/stencils/Cisco/route_switch_processor.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor.odg %%DATADIR%%/stencils/Cisco/route_switch_processor.png %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.desktop %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.odg %%DATADIR%%/stencils/Cisco/route_switch_processor_with_si.png %%DATADIR%%/stencils/Cisco/router.desktop %%DATADIR%%/stencils/Cisco/router.odg %%DATADIR%%/stencils/Cisco/router.png %%DATADIR%%/stencils/Cisco/router_in_building.desktop %%DATADIR%%/stencils/Cisco/router_in_building.odg %%DATADIR%%/stencils/Cisco/router_in_building.png %%DATADIR%%/stencils/Cisco/router_subdued.desktop %%DATADIR%%/stencils/Cisco/router_subdued.odg %%DATADIR%%/stencils/Cisco/router_subdued.png %%DATADIR%%/stencils/Cisco/router_with_firewall.desktop %%DATADIR%%/stencils/Cisco/router_with_firewall.odg %%DATADIR%%/stencils/Cisco/router_with_firewall.png %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.desktop %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.odg %%DATADIR%%/stencils/Cisco/router_with_silicon_switch.png %%DATADIR%%/stencils/Cisco/rps.desktop %%DATADIR%%/stencils/Cisco/rps.odg %%DATADIR%%/stencils/Cisco/rps.png %%DATADIR%%/stencils/Cisco/running_man.desktop %%DATADIR%%/stencils/Cisco/running_man.odg %%DATADIR%%/stencils/Cisco/running_man.png %%DATADIR%%/stencils/Cisco/running_man_subdued.desktop %%DATADIR%%/stencils/Cisco/running_man_subdued.odg %%DATADIR%%/stencils/Cisco/running_man_subdued.png %%DATADIR%%/stencils/Cisco/running_woman.desktop %%DATADIR%%/stencils/Cisco/running_woman.odg %%DATADIR%%/stencils/Cisco/running_woman.png %%DATADIR%%/stencils/Cisco/satellite.desktop %%DATADIR%%/stencils/Cisco/satellite.odg %%DATADIR%%/stencils/Cisco/satellite.png %%DATADIR%%/stencils/Cisco/satellite_dish.desktop %%DATADIR%%/stencils/Cisco/satellite_dish.odg %%DATADIR%%/stencils/Cisco/satellite_dish.png %%DATADIR%%/stencils/Cisco/sc2200.desktop %%DATADIR%%/stencils/Cisco/sc2200.odg %%DATADIR%%/stencils/Cisco/sc2200.png %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.desktop %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.odg %%DATADIR%%/stencils/Cisco/sc2200_vsc3000_host.png %%DATADIR%%/stencils/Cisco/scanner.desktop %%DATADIR%%/stencils/Cisco/scanner.odg %%DATADIR%%/stencils/Cisco/scanner.png %%DATADIR%%/stencils/Cisco/security_appliance.desktop %%DATADIR%%/stencils/Cisco/security_appliance.odg %%DATADIR%%/stencils/Cisco/security_appliance.png %%DATADIR%%/stencils/Cisco/server_switch.desktop %%DATADIR%%/stencils/Cisco/server_switch.odg %%DATADIR%%/stencils/Cisco/server_switch.png %%DATADIR%%/stencils/Cisco/server_with_pc_router.desktop %%DATADIR%%/stencils/Cisco/server_with_pc_router.odg %%DATADIR%%/stencils/Cisco/server_with_pc_router.png %%DATADIR%%/stencils/Cisco/service_control.desktop %%DATADIR%%/stencils/Cisco/service_control.odg %%DATADIR%%/stencils/Cisco/service_control.png %%DATADIR%%/stencils/Cisco/sip_proxy_server.desktop %%DATADIR%%/stencils/Cisco/sip_proxy_server.odg %%DATADIR%%/stencils/Cisco/sip_proxy_server.png %%DATADIR%%/stencils/Cisco/sitting_woman.desktop %%DATADIR%%/stencils/Cisco/sitting_woman.odg %%DATADIR%%/stencils/Cisco/sitting_woman.png %%DATADIR%%/stencils/Cisco/small_business.desktop %%DATADIR%%/stencils/Cisco/small_business.odg %%DATADIR%%/stencils/Cisco/small_business.png %%DATADIR%%/stencils/Cisco/small_hub.desktop %%DATADIR%%/stencils/Cisco/small_hub.odg %%DATADIR%%/stencils/Cisco/small_hub.png %%DATADIR%%/stencils/Cisco/softphone.desktop %%DATADIR%%/stencils/Cisco/softphone.odg %%DATADIR%%/stencils/Cisco/softphone.png %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.desktop %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.odg %%DATADIR%%/stencils/Cisco/software-based_router_on_file_server.png %%DATADIR%%/stencils/Cisco/sonet_mux.desktop %%DATADIR%%/stencils/Cisco/sonet_mux.odg %%DATADIR%%/stencils/Cisco/sonet_mux.png %%DATADIR%%/stencils/Cisco/speaker.desktop %%DATADIR%%/stencils/Cisco/speaker.odg %%DATADIR%%/stencils/Cisco/speaker.png %%DATADIR%%/stencils/Cisco/ssl_terminator.desktop %%DATADIR%%/stencils/Cisco/ssl_terminator.odg %%DATADIR%%/stencils/Cisco/ssl_terminator.png %%DATADIR%%/stencils/Cisco/standing_man.desktop %%DATADIR%%/stencils/Cisco/standing_man.odg %%DATADIR%%/stencils/Cisco/standing_man.png %%DATADIR%%/stencils/Cisco/stb.desktop %%DATADIR%%/stencils/Cisco/stb.odg %%DATADIR%%/stencils/Cisco/stb.png %%DATADIR%%/stencils/Cisco/storage_array.desktop %%DATADIR%%/stencils/Cisco/storage_array.odg %%DATADIR%%/stencils/Cisco/storage_array.png %%DATADIR%%/stencils/Cisco/storage_router.desktop %%DATADIR%%/stencils/Cisco/storage_router.odg %%DATADIR%%/stencils/Cisco/storage_router.png %%DATADIR%%/stencils/Cisco/storage_solution_engine.desktop %%DATADIR%%/stencils/Cisco/storage_solution_engine.odg %%DATADIR%%/stencils/Cisco/storage_solution_engine.png %%DATADIR%%/stencils/Cisco/stp.desktop %%DATADIR%%/stencils/Cisco/stp.odg %%DATADIR%%/stencils/Cisco/stp.png %%DATADIR%%/stencils/Cisco/sun_workstation.desktop %%DATADIR%%/stencils/Cisco/sun_workstation.odg %%DATADIR%%/stencils/Cisco/sun_workstation.png %%DATADIR%%/stencils/Cisco/supercomputer.desktop %%DATADIR%%/stencils/Cisco/supercomputer.odg %%DATADIR%%/stencils/Cisco/supercomputer.png %%DATADIR%%/stencils/Cisco/svx.desktop %%DATADIR%%/stencils/Cisco/svx.odg %%DATADIR%%/stencils/Cisco/svx.png %%DATADIR%%/stencils/Cisco/switch_processor.desktop %%DATADIR%%/stencils/Cisco/switch_processor.odg %%DATADIR%%/stencils/Cisco/switch_processor.png %%DATADIR%%/stencils/Cisco/system_controller.desktop %%DATADIR%%/stencils/Cisco/system_controller.odg %%DATADIR%%/stencils/Cisco/system_controller.png %%DATADIR%%/stencils/Cisco/tablet.desktop %%DATADIR%%/stencils/Cisco/tablet.odg %%DATADIR%%/stencils/Cisco/tablet.png %%DATADIR%%/stencils/Cisco/tape_array.desktop %%DATADIR%%/stencils/Cisco/tape_array.odg %%DATADIR%%/stencils/Cisco/tape_array.png %%DATADIR%%/stencils/Cisco/tdm_router.desktop %%DATADIR%%/stencils/Cisco/tdm_router.odg %%DATADIR%%/stencils/Cisco/tdm_router.png %%DATADIR%%/stencils/Cisco/telecommuter.desktop %%DATADIR%%/stencils/Cisco/telecommuter.odg %%DATADIR%%/stencils/Cisco/telecommuter.png %%DATADIR%%/stencils/Cisco/telecommuter_house.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house.odg %%DATADIR%%/stencils/Cisco/telecommuter_house.png %%DATADIR%%/stencils/Cisco/telecommuter_house_router.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_router.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_router.png %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.desktop %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.odg %%DATADIR%%/stencils/Cisco/telecommuter_house_subdued.png %%DATADIR%%/stencils/Cisco/terminal.desktop %%DATADIR%%/stencils/Cisco/terminal.odg %%DATADIR%%/stencils/Cisco/terminal.png %%DATADIR%%/stencils/Cisco/terminal_server.desktop %%DATADIR%%/stencils/Cisco/terminal_server.odg %%DATADIR%%/stencils/Cisco/terminal_server.png %%DATADIR%%/stencils/Cisco/tokenring.desktop %%DATADIR%%/stencils/Cisco/tokenring.odg %%DATADIR%%/stencils/Cisco/tokenring.png %%DATADIR%%/stencils/Cisco/transpath.desktop %%DATADIR%%/stencils/Cisco/transpath.odg %%DATADIR%%/stencils/Cisco/transpath.png %%DATADIR%%/stencils/Cisco/truck.desktop %%DATADIR%%/stencils/Cisco/truck.odg %%DATADIR%%/stencils/Cisco/truck.png %%DATADIR%%/stencils/Cisco/turret.desktop %%DATADIR%%/stencils/Cisco/turret.odg %%DATADIR%%/stencils/Cisco/turret.png %%DATADIR%%/stencils/Cisco/tv.desktop %%DATADIR%%/stencils/Cisco/tv.odg %%DATADIR%%/stencils/Cisco/tv.png %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.desktop %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.odg %%DATADIR%%/stencils/Cisco/ubr910_cable_dsu.png %%DATADIR%%/stencils/Cisco/umg_series.desktop %%DATADIR%%/stencils/Cisco/umg_series.odg %%DATADIR%%/stencils/Cisco/umg_series.png %%DATADIR%%/stencils/Cisco/unity_express.desktop %%DATADIR%%/stencils/Cisco/unity_express.odg %%DATADIR%%/stencils/Cisco/unity_express.png %%DATADIR%%/stencils/Cisco/unity_server.desktop %%DATADIR%%/stencils/Cisco/unity_server.odg %%DATADIR%%/stencils/Cisco/unity_server.png %%DATADIR%%/stencils/Cisco/universal_gateway.desktop %%DATADIR%%/stencils/Cisco/universal_gateway.odg %%DATADIR%%/stencils/Cisco/universal_gateway.png %%DATADIR%%/stencils/Cisco/university.desktop %%DATADIR%%/stencils/Cisco/university.odg %%DATADIR%%/stencils/Cisco/university.png %%DATADIR%%/stencils/Cisco/ups.desktop %%DATADIR%%/stencils/Cisco/ups.odg %%DATADIR%%/stencils/Cisco/ups.png %%DATADIR%%/stencils/Cisco/video_camera.desktop %%DATADIR%%/stencils/Cisco/video_camera.odg %%DATADIR%%/stencils/Cisco/video_camera.png %%DATADIR%%/stencils/Cisco/video_camera_right.desktop %%DATADIR%%/stencils/Cisco/video_camera_right.odg %%DATADIR%%/stencils/Cisco/video_camera_right.png %%DATADIR%%/stencils/Cisco/vip.desktop %%DATADIR%%/stencils/Cisco/vip.odg %%DATADIR%%/stencils/Cisco/vip.png %%DATADIR%%/stencils/Cisco/virtual_layer_switch.desktop %%DATADIR%%/stencils/Cisco/virtual_layer_switch.odg %%DATADIR%%/stencils/Cisco/virtual_layer_switch.png %%DATADIR%%/stencils/Cisco/vn2900.desktop %%DATADIR%%/stencils/Cisco/vn2900.odg %%DATADIR%%/stencils/Cisco/vn2900.png %%DATADIR%%/stencils/Cisco/vn5900.desktop %%DATADIR%%/stencils/Cisco/vn5900.odg %%DATADIR%%/stencils/Cisco/vn5900.png %%DATADIR%%/stencils/Cisco/vn5902.desktop %%DATADIR%%/stencils/Cisco/vn5902.odg %%DATADIR%%/stencils/Cisco/vn5902.png %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.odg %%DATADIR%%/stencils/Cisco/voice-enabled_access_server.png %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.odg %%DATADIR%%/stencils/Cisco/voice-enabled_atm_switch.png %%DATADIR%%/stencils/Cisco/voice-enabled_router.desktop %%DATADIR%%/stencils/Cisco/voice-enabled_router.odg %%DATADIR%%/stencils/Cisco/voice-enabled_router.png %%DATADIR%%/stencils/Cisco/voice_switch2.desktop %%DATADIR%%/stencils/Cisco/voice_switch2.odg %%DATADIR%%/stencils/Cisco/voice_switch2.png %%DATADIR%%/stencils/Cisco/vpn_concentrator.desktop %%DATADIR%%/stencils/Cisco/vpn_concentrator.odg %%DATADIR%%/stencils/Cisco/vpn_concentrator.png %%DATADIR%%/stencils/Cisco/vpn_gateway.desktop %%DATADIR%%/stencils/Cisco/vpn_gateway.odg %%DATADIR%%/stencils/Cisco/vpn_gateway.png %%DATADIR%%/stencils/Cisco/vsc3000.desktop %%DATADIR%%/stencils/Cisco/vsc3000.odg %%DATADIR%%/stencils/Cisco/vsc3000.png %%DATADIR%%/stencils/Cisco/wan.desktop %%DATADIR%%/stencils/Cisco/wan.odg %%DATADIR%%/stencils/Cisco/wan.png %%DATADIR%%/stencils/Cisco/wavelength_router.desktop %%DATADIR%%/stencils/Cisco/wavelength_router.odg %%DATADIR%%/stencils/Cisco/wavelength_router.png %%DATADIR%%/stencils/Cisco/wdm.desktop %%DATADIR%%/stencils/Cisco/wdm.odg %%DATADIR%%/stencils/Cisco/wdm.png %%DATADIR%%/stencils/Cisco/web_browser.desktop %%DATADIR%%/stencils/Cisco/web_browser.odg %%DATADIR%%/stencils/Cisco/web_browser.png %%DATADIR%%/stencils/Cisco/web_cluster.desktop %%DATADIR%%/stencils/Cisco/web_cluster.odg %%DATADIR%%/stencils/Cisco/web_cluster.png %%DATADIR%%/stencils/Cisco/wi-fi_tag.desktop %%DATADIR%%/stencils/Cisco/wi-fi_tag.odg %%DATADIR%%/stencils/Cisco/wi-fi_tag.png %%DATADIR%%/stencils/Cisco/wireless.desktop %%DATADIR%%/stencils/Cisco/wireless.odg %%DATADIR%%/stencils/Cisco/wireless.png %%DATADIR%%/stencils/Cisco/wireless_bridge.desktop %%DATADIR%%/stencils/Cisco/wireless_bridge.odg %%DATADIR%%/stencils/Cisco/wireless_bridge.png %%DATADIR%%/stencils/Cisco/wireless_connectivity.desktop %%DATADIR%%/stencils/Cisco/wireless_connectivity.odg %%DATADIR%%/stencils/Cisco/wireless_connectivity.png %%DATADIR%%/stencils/Cisco/wireless_location_appliance.desktop %%DATADIR%%/stencils/Cisco/wireless_location_appliance.odg %%DATADIR%%/stencils/Cisco/wireless_location_appliance.png %%DATADIR%%/stencils/Cisco/wireless_router.desktop %%DATADIR%%/stencils/Cisco/wireless_router.odg %%DATADIR%%/stencils/Cisco/wireless_router.png %%DATADIR%%/stencils/Cisco/wireless_transport.desktop %%DATADIR%%/stencils/Cisco/wireless_transport.odg %%DATADIR%%/stencils/Cisco/wireless_transport.png %%DATADIR%%/stencils/Cisco/wlan_controller.desktop %%DATADIR%%/stencils/Cisco/wlan_controller.odg %%DATADIR%%/stencils/Cisco/wlan_controller.png %%DATADIR%%/stencils/Cisco/woman.desktop %%DATADIR%%/stencils/Cisco/woman.odg %%DATADIR%%/stencils/Cisco/woman.png %%DATADIR%%/stencils/Cisco/woman_blue.desktop %%DATADIR%%/stencils/Cisco/woman_blue.odg %%DATADIR%%/stencils/Cisco/woman_blue.png %%DATADIR%%/stencils/Cisco/woman_gold.desktop %%DATADIR%%/stencils/Cisco/woman_gold.odg %%DATADIR%%/stencils/Cisco/woman_gold.png %%DATADIR%%/stencils/Cisco/woman_red.desktop %%DATADIR%%/stencils/Cisco/woman_red.odg %%DATADIR%%/stencils/Cisco/woman_red.png %%DATADIR%%/stencils/Cisco/workgroup_director.desktop %%DATADIR%%/stencils/Cisco/workgroup_director.odg %%DATADIR%%/stencils/Cisco/workgroup_director.png %%DATADIR%%/stencils/Cisco/workgroup_fcis.desktop %%DATADIR%%/stencils/Cisco/workgroup_fcis.odg %%DATADIR%%/stencils/Cisco/workgroup_fcis.png %%DATADIR%%/stencils/Cisco/workgroup_switch.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch.odg %%DATADIR%%/stencils/Cisco/workgroup_switch.png %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_subdued.png %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.desktop %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.odg %%DATADIR%%/stencils/Cisco/workgroup_switch_voice-enabled.png %%DATADIR%%/stencils/Cisco/workstation.desktop %%DATADIR%%/stencils/Cisco/workstation.odg %%DATADIR%%/stencils/Cisco/workstation.png %%DATADIR%%/stencils/Cisco/www_server.desktop %%DATADIR%%/stencils/Cisco/www_server.odg %%DATADIR%%/stencils/Cisco/www_server.png %%DATADIR%%/stencils/Civil/bvrest.desktop %%DATADIR%%/stencils/Civil/bvrest.odg %%DATADIR%%/stencils/Civil/bvrest.png %%DATADIR%%/stencils/Civil/civil_aerator.desktop %%DATADIR%%/stencils/Civil/civil_aerator.odg %%DATADIR%%/stencils/Civil/civil_aerator.png %%DATADIR%%/stencils/Civil/civil_arrow_right.desktop %%DATADIR%%/stencils/Civil/civil_arrow_right.odg %%DATADIR%%/stencils/Civil/civil_arrow_right.png %%DATADIR%%/stencils/Civil/civil_arrow_up.desktop %%DATADIR%%/stencils/Civil/civil_arrow_up.odg %%DATADIR%%/stencils/Civil/civil_arrow_up.png %%DATADIR%%/stencils/Civil/civil_backflow_preventer.desktop %%DATADIR%%/stencils/Civil/civil_backflow_preventer.odg %%DATADIR%%/stencils/Civil/civil_backflow_preventer.png %%DATADIR%%/stencils/Civil/civil_basin.desktop %%DATADIR%%/stencils/Civil/civil_basin.odg %%DATADIR%%/stencils/Civil/civil_basin.png %%DATADIR%%/stencils/Civil/civil_container.desktop %%DATADIR%%/stencils/Civil/civil_container.odg %%DATADIR%%/stencils/Civil/civil_container.png %%DATADIR%%/stencils/Civil/civil_final-settling_basin.desktop %%DATADIR%%/stencils/Civil/civil_final-settling_basin.odg %%DATADIR%%/stencils/Civil/civil_final-settling_basin.png %%DATADIR%%/stencils/Civil/civil_frequency_converter.desktop %%DATADIR%%/stencils/Civil/civil_frequency_converter.odg %%DATADIR%%/stencils/Civil/civil_frequency_converter.png %%DATADIR%%/stencils/Civil/civil_gas_bottle.desktop %%DATADIR%%/stencils/Civil/civil_gas_bottle.odg %%DATADIR%%/stencils/Civil/civil_gas_bottle.png %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_horizontal_limiting_line.png %%DATADIR%%/stencils/Civil/civil_horizontal_valve.desktop %%DATADIR%%/stencils/Civil/civil_horizontal_valve.odg %%DATADIR%%/stencils/Civil/civil_horizontal_valve.png %%DATADIR%%/stencils/Civil/civil_motor.desktop %%DATADIR%%/stencils/Civil/civil_motor.odg %%DATADIR%%/stencils/Civil/civil_motor.png %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.desktop %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.odg %%DATADIR%%/stencils/Civil/civil_preliminary_clarification_tank.png %%DATADIR%%/stencils/Civil/civil_rotor.desktop %%DATADIR%%/stencils/Civil/civil_rotor.odg %%DATADIR%%/stencils/Civil/civil_rotor.png %%DATADIR%%/stencils/Civil/civil_soil.desktop %%DATADIR%%/stencils/Civil/civil_soil.odg %%DATADIR%%/stencils/Civil/civil_soil.png %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.desktop %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.odg %%DATADIR%%/stencils/Civil/civil_vertical_limiting_line.png %%DATADIR%%/stencils/Civil/civil_vertical_propeller.desktop %%DATADIR%%/stencils/Civil/civil_vertical_propeller.odg %%DATADIR%%/stencils/Civil/civil_vertical_propeller.png %%DATADIR%%/stencils/Civil/collection.desktop %%DATADIR%%/stencils/Civil/hcompressor.desktop %%DATADIR%%/stencils/Civil/hcompressor.odg %%DATADIR%%/stencils/Civil/hcompressor.png %%DATADIR%%/stencils/Civil/hpump.desktop %%DATADIR%%/stencils/Civil/hpump.odg %%DATADIR%%/stencils/Civil/hpump.png %%DATADIR%%/stencils/Civil/hrest.desktop %%DATADIR%%/stencils/Civil/hrest.odg %%DATADIR%%/stencils/Civil/hrest.png %%DATADIR%%/stencils/Civil/line.desktop %%DATADIR%%/stencils/Civil/line.odg %%DATADIR%%/stencils/Civil/line.png %%DATADIR%%/stencils/Civil/vcompressor.desktop %%DATADIR%%/stencils/Civil/vcompressor.odg %%DATADIR%%/stencils/Civil/vcompressor.png %%DATADIR%%/stencils/Civil/vpump.desktop %%DATADIR%%/stencils/Civil/vpump.odg %%DATADIR%%/stencils/Civil/vpump.png %%DATADIR%%/stencils/Civil/vrest.desktop %%DATADIR%%/stencils/Civil/vrest.odg %%DATADIR%%/stencils/Civil/vrest.png %%DATADIR%%/stencils/Civil/water_level.desktop %%DATADIR%%/stencils/Civil/water_level.odg %%DATADIR%%/stencils/Civil/water_level.png %%DATADIR%%/stencils/Contact/c_if.desktop %%DATADIR%%/stencils/Contact/c_if.odg %%DATADIR%%/stencils/Contact/c_if.png %%DATADIR%%/stencils/Contact/c_ifnot.desktop %%DATADIR%%/stencils/Contact/c_ifnot.odg %%DATADIR%%/stencils/Contact/c_ifnot.png %%DATADIR%%/stencils/Contact/c_lamp.desktop %%DATADIR%%/stencils/Contact/c_lamp.odg %%DATADIR%%/stencils/Contact/c_lamp.png %%DATADIR%%/stencils/Contact/c_relay.desktop %%DATADIR%%/stencils/Contact/c_relay.odg %%DATADIR%%/stencils/Contact/c_relay.png %%DATADIR%%/stencils/Contact/collection.desktop %%DATADIR%%/stencils/Contact/l_if.desktop %%DATADIR%%/stencils/Contact/l_if.odg %%DATADIR%%/stencils/Contact/l_if.png %%DATADIR%%/stencils/Contact/l_ifnot.desktop %%DATADIR%%/stencils/Contact/l_ifnot.odg %%DATADIR%%/stencils/Contact/l_ifnot.png %%DATADIR%%/stencils/Contact/l_out.desktop %%DATADIR%%/stencils/Contact/l_out.odg %%DATADIR%%/stencils/Contact/l_out.png %%DATADIR%%/stencils/Contact/l_outj.desktop %%DATADIR%%/stencils/Contact/l_outj.odg %%DATADIR%%/stencils/Contact/l_outj.png %%DATADIR%%/stencils/Contact/l_outnot.desktop %%DATADIR%%/stencils/Contact/l_outnot.odg %%DATADIR%%/stencils/Contact/l_outnot.png %%DATADIR%%/stencils/Contact/l_outr.desktop %%DATADIR%%/stencils/Contact/l_outr.odg %%DATADIR%%/stencils/Contact/l_outr.png %%DATADIR%%/stencils/Contact/l_outrcep.desktop %%DATADIR%%/stencils/Contact/l_outrcep.odg %%DATADIR%%/stencils/Contact/l_outrcep.png %%DATADIR%%/stencils/Contact/l_outs.desktop %%DATADIR%%/stencils/Contact/l_outs.odg %%DATADIR%%/stencils/Contact/l_outs.png %%DATADIR%%/stencils/Contact/l_sout.desktop %%DATADIR%%/stencils/Contact/l_sout.odg %%DATADIR%%/stencils/Contact/l_sout.png %%DATADIR%%/stencils/Contact/l_soutnot.desktop %%DATADIR%%/stencils/Contact/l_soutnot.odg %%DATADIR%%/stencils/Contact/l_soutnot.png %%DATADIR%%/stencils/Contact/l_soutr.desktop %%DATADIR%%/stencils/Contact/l_soutr.odg %%DATADIR%%/stencils/Contact/l_soutr.png %%DATADIR%%/stencils/Contact/l_souts.desktop %%DATADIR%%/stencils/Contact/l_souts.odg %%DATADIR%%/stencils/Contact/l_souts.png %%DATADIR%%/stencils/Cybernetics/b-integrator.desktop %%DATADIR%%/stencils/Cybernetics/b-integrator.odg %%DATADIR%%/stencils/Cybernetics/b-integrator.png %%DATADIR%%/stencils/Cybernetics/b-minus.desktop %%DATADIR%%/stencils/Cybernetics/b-minus.odg %%DATADIR%%/stencils/Cybernetics/b-minus.png %%DATADIR%%/stencils/Cybernetics/b-sens.desktop %%DATADIR%%/stencils/Cybernetics/b-sens.odg %%DATADIR%%/stencils/Cybernetics/b-sens.png %%DATADIR%%/stencils/Cybernetics/collection.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.desktop %%DATADIR%%/stencils/Cybernetics/delta-t.odg %%DATADIR%%/stencils/Cybernetics/delta-t.png %%DATADIR%%/stencils/Cybernetics/empty-func.desktop %%DATADIR%%/stencils/Cybernetics/empty-func.odg %%DATADIR%%/stencils/Cybernetics/empty-func.png %%DATADIR%%/stencils/Cybernetics/factor-0to-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to-1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to-1.png %%DATADIR%%/stencils/Cybernetics/factor-0to1.desktop %%DATADIR%%/stencils/Cybernetics/factor-0to1.odg %%DATADIR%%/stencils/Cybernetics/factor-0to1.png %%DATADIR%%/stencils/Cybernetics/factor-greater1.desktop %%DATADIR%%/stencils/Cybernetics/factor-greater1.odg %%DATADIR%%/stencils/Cybernetics/factor-greater1.png %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.desktop %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.odg %%DATADIR%%/stencils/Cybernetics/factor-smaller-1.png %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/full-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.desktop %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.odg %%DATADIR%%/stencils/Cybernetics/half-wave-rectifier.png %%DATADIR%%/stencils/Cybernetics/hpf.desktop %%DATADIR%%/stencils/Cybernetics/hpf.odg %%DATADIR%%/stencils/Cybernetics/hpf.png %%DATADIR%%/stencils/Cybernetics/l-integrator.desktop %%DATADIR%%/stencils/Cybernetics/l-integrator.odg %%DATADIR%%/stencils/Cybernetics/l-integrator.png %%DATADIR%%/stencils/Cybernetics/l-minus.desktop %%DATADIR%%/stencils/Cybernetics/l-minus.odg %%DATADIR%%/stencils/Cybernetics/l-minus.png %%DATADIR%%/stencils/Cybernetics/l-sens.desktop %%DATADIR%%/stencils/Cybernetics/l-sens.odg %%DATADIR%%/stencils/Cybernetics/l-sens.png %%DATADIR%%/stencils/Cybernetics/lpf.desktop %%DATADIR%%/stencils/Cybernetics/lpf.odg %%DATADIR%%/stencils/Cybernetics/lpf.png %%DATADIR%%/stencils/Cybernetics/negative-shift.desktop %%DATADIR%%/stencils/Cybernetics/negative-shift.odg %%DATADIR%%/stencils/Cybernetics/negative-shift.png %%DATADIR%%/stencils/Cybernetics/positive-shift.desktop %%DATADIR%%/stencils/Cybernetics/positive-shift.odg %%DATADIR%%/stencils/Cybernetics/positive-shift.png %%DATADIR%%/stencils/Cybernetics/product.desktop %%DATADIR%%/stencils/Cybernetics/product.odg %%DATADIR%%/stencils/Cybernetics/product.png %%DATADIR%%/stencils/Cybernetics/r-integrator.desktop %%DATADIR%%/stencils/Cybernetics/r-integrator.odg %%DATADIR%%/stencils/Cybernetics/r-integrator.png %%DATADIR%%/stencils/Cybernetics/r-minus.desktop %%DATADIR%%/stencils/Cybernetics/r-minus.odg %%DATADIR%%/stencils/Cybernetics/r-minus.png %%DATADIR%%/stencils/Cybernetics/r-sens.desktop %%DATADIR%%/stencils/Cybernetics/r-sens.odg %%DATADIR%%/stencils/Cybernetics/r-sens.png %%DATADIR%%/stencils/Cybernetics/relay.desktop %%DATADIR%%/stencils/Cybernetics/relay.odg %%DATADIR%%/stencils/Cybernetics/relay.png %%DATADIR%%/stencils/Cybernetics/saturation.desktop %%DATADIR%%/stencils/Cybernetics/saturation.odg %%DATADIR%%/stencils/Cybernetics/saturation.png %%DATADIR%%/stencils/Cybernetics/sigmoid.desktop %%DATADIR%%/stencils/Cybernetics/sigmoid.odg %%DATADIR%%/stencils/Cybernetics/sigmoid.png %%DATADIR%%/stencils/Cybernetics/sine.desktop %%DATADIR%%/stencils/Cybernetics/sine.odg %%DATADIR%%/stencils/Cybernetics/sine.png %%DATADIR%%/stencils/Cybernetics/sum.desktop %%DATADIR%%/stencils/Cybernetics/sum.odg %%DATADIR%%/stencils/Cybernetics/sum.png %%DATADIR%%/stencils/Cybernetics/t-integrator.desktop %%DATADIR%%/stencils/Cybernetics/t-integrator.odg %%DATADIR%%/stencils/Cybernetics/t-integrator.png %%DATADIR%%/stencils/Cybernetics/t-minus.desktop %%DATADIR%%/stencils/Cybernetics/t-minus.odg %%DATADIR%%/stencils/Cybernetics/t-minus.png %%DATADIR%%/stencils/Cybernetics/t-sens.desktop %%DATADIR%%/stencils/Cybernetics/t-sens.odg %%DATADIR%%/stencils/Cybernetics/t-sens.png %%DATADIR%%/stencils/Digital/add_h.desktop %%DATADIR%%/stencils/Digital/add_h.odg %%DATADIR%%/stencils/Digital/add_h.png %%DATADIR%%/stencils/Digital/add_v.desktop %%DATADIR%%/stencils/Digital/add_v.odg %%DATADIR%%/stencils/Digital/add_v.png %%DATADIR%%/stencils/Digital/and_h.desktop %%DATADIR%%/stencils/Digital/and_h.odg %%DATADIR%%/stencils/Digital/and_h.png %%DATADIR%%/stencils/Digital/and_v.desktop %%DATADIR%%/stencils/Digital/and_v.odg %%DATADIR%%/stencils/Digital/and_v.png %%DATADIR%%/stencils/Digital/buff_h.desktop %%DATADIR%%/stencils/Digital/buff_h.odg %%DATADIR%%/stencils/Digital/buff_h.png %%DATADIR%%/stencils/Digital/buff_v.desktop %%DATADIR%%/stencils/Digital/buff_v.odg %%DATADIR%%/stencils/Digital/buff_v.png %%DATADIR%%/stencils/Digital/collection.desktop %%DATADIR%%/stencils/Digital/conn.desktop %%DATADIR%%/stencils/Digital/conn.odg %%DATADIR%%/stencils/Digital/conn.png %%DATADIR%%/stencils/Digital/inv_h.desktop %%DATADIR%%/stencils/Digital/inv_h.odg %%DATADIR%%/stencils/Digital/inv_h.png %%DATADIR%%/stencils/Digital/inv_v.desktop %%DATADIR%%/stencils/Digital/inv_v.odg %%DATADIR%%/stencils/Digital/inv_v.png %%DATADIR%%/stencils/Digital/mux_h.desktop %%DATADIR%%/stencils/Digital/mux_h.odg %%DATADIR%%/stencils/Digital/mux_h.png %%DATADIR%%/stencils/Digital/mux_v.desktop %%DATADIR%%/stencils/Digital/mux_v.odg %%DATADIR%%/stencils/Digital/mux_v.png %%DATADIR%%/stencils/Digital/nand_h.desktop %%DATADIR%%/stencils/Digital/nand_h.odg %%DATADIR%%/stencils/Digital/nand_h.png %%DATADIR%%/stencils/Digital/nand_v.desktop %%DATADIR%%/stencils/Digital/nand_v.odg %%DATADIR%%/stencils/Digital/nand_v.png %%DATADIR%%/stencils/Digital/nor_h.desktop %%DATADIR%%/stencils/Digital/nor_h.odg %%DATADIR%%/stencils/Digital/nor_h.png %%DATADIR%%/stencils/Digital/nor_v.desktop %%DATADIR%%/stencils/Digital/nor_v.odg %%DATADIR%%/stencils/Digital/nor_v.png %%DATADIR%%/stencils/Digital/or_h.desktop %%DATADIR%%/stencils/Digital/or_h.odg %%DATADIR%%/stencils/Digital/or_h.png %%DATADIR%%/stencils/Digital/or_v.desktop %%DATADIR%%/stencils/Digital/or_v.odg %%DATADIR%%/stencils/Digital/or_v.png %%DATADIR%%/stencils/Digital/reg_h.desktop %%DATADIR%%/stencils/Digital/reg_h.odg %%DATADIR%%/stencils/Digital/reg_h.png %%DATADIR%%/stencils/Digital/reg_v.desktop %%DATADIR%%/stencils/Digital/reg_v.odg %%DATADIR%%/stencils/Digital/reg_v.png %%DATADIR%%/stencils/Digital/xnor_h.desktop %%DATADIR%%/stencils/Digital/xnor_h.odg %%DATADIR%%/stencils/Digital/xnor_h.png %%DATADIR%%/stencils/Digital/xnor_v.desktop %%DATADIR%%/stencils/Digital/xnor_v.odg %%DATADIR%%/stencils/Digital/xnor_v.png %%DATADIR%%/stencils/Digital/xor_h.desktop %%DATADIR%%/stencils/Digital/xor_h.odg %%DATADIR%%/stencils/Digital/xor_h.png %%DATADIR%%/stencils/Digital/xor_v.desktop %%DATADIR%%/stencils/Digital/xor_v.odg %%DATADIR%%/stencils/Digital/xor_v.png %%DATADIR%%/stencils/Edpc/and.desktop %%DATADIR%%/stencils/Edpc/and.odg %%DATADIR%%/stencils/Edpc/and.png %%DATADIR%%/stencils/Edpc/collection.desktop %%DATADIR%%/stencils/Edpc/function.desktop %%DATADIR%%/stencils/Edpc/function.odg %%DATADIR%%/stencils/Edpc/function.png %%DATADIR%%/stencils/Edpc/or.desktop %%DATADIR%%/stencils/Edpc/or.odg %%DATADIR%%/stencils/Edpc/or.png %%DATADIR%%/stencils/Edpc/organisation_unit.desktop %%DATADIR%%/stencils/Edpc/organisation_unit.odg %%DATADIR%%/stencils/Edpc/organisation_unit.png %%DATADIR%%/stencils/Edpc/xor.desktop %%DATADIR%%/stencils/Edpc/xor.odg %%DATADIR%%/stencils/Edpc/xor.png %%DATADIR%%/stencils/Electric/cnx.desktop %%DATADIR%%/stencils/Electric/cnx.odg %%DATADIR%%/stencils/Electric/cnx.png %%DATADIR%%/stencils/Electric/collection.desktop %%DATADIR%%/stencils/Electric/command.desktop %%DATADIR%%/stencils/Electric/command.odg %%DATADIR%%/stencils/Electric/command.png %%DATADIR%%/stencils/Electric/contact_f.desktop %%DATADIR%%/stencils/Electric/contact_f.odg %%DATADIR%%/stencils/Electric/contact_f.png %%DATADIR%%/stencils/Electric/contact_o.desktop %%DATADIR%%/stencils/Electric/contact_o.odg %%DATADIR%%/stencils/Electric/contact_o.png %%DATADIR%%/stencils/Electric/intpos_f.desktop %%DATADIR%%/stencils/Electric/intpos_f.odg %%DATADIR%%/stencils/Electric/intpos_f.png %%DATADIR%%/stencils/Electric/intpos_o.desktop %%DATADIR%%/stencils/Electric/intpos_o.odg %%DATADIR%%/stencils/Electric/intpos_o.png %%DATADIR%%/stencils/Electric/lamp.desktop %%DATADIR%%/stencils/Electric/lamp.odg %%DATADIR%%/stencils/Electric/lamp.png %%DATADIR%%/stencils/Electric/relay.desktop %%DATADIR%%/stencils/Electric/relay.odg %%DATADIR%%/stencils/Electric/relay.png %%DATADIR%%/stencils/Electric/vcommand.desktop %%DATADIR%%/stencils/Electric/vcommand.odg %%DATADIR%%/stencils/Electric/vcommand.png %%DATADIR%%/stencils/Electric/vcontact_f.desktop %%DATADIR%%/stencils/Electric/vcontact_f.odg %%DATADIR%%/stencils/Electric/vcontact_f.png %%DATADIR%%/stencils/Electric/vcontact_o.desktop %%DATADIR%%/stencils/Electric/vcontact_o.odg %%DATADIR%%/stencils/Electric/vcontact_o.png %%DATADIR%%/stencils/Electric/vintpos_f.desktop %%DATADIR%%/stencils/Electric/vintpos_f.odg %%DATADIR%%/stencils/Electric/vintpos_f.png %%DATADIR%%/stencils/Electric/vintpos_o.desktop %%DATADIR%%/stencils/Electric/vintpos_o.odg %%DATADIR%%/stencils/Electric/vintpos_o.png %%DATADIR%%/stencils/Electric/vlamp.desktop %%DATADIR%%/stencils/Electric/vlamp.odg %%DATADIR%%/stencils/Electric/vlamp.png %%DATADIR%%/stencils/Electric/vrelay.desktop %%DATADIR%%/stencils/Electric/vrelay.odg %%DATADIR%%/stencils/Electric/vrelay.png %%DATADIR%%/stencils/Electric2/ckt-breaker.desktop %%DATADIR%%/stencils/Electric2/ckt-breaker.odg %%DATADIR%%/stencils/Electric2/ckt-breaker.png %%DATADIR%%/stencils/Electric2/collection.desktop %%DATADIR%%/stencils/Electric2/generator.desktop %%DATADIR%%/stencils/Electric2/generator.odg %%DATADIR%%/stencils/Electric2/generator.png %%DATADIR%%/stencils/Electric2/isolator.desktop %%DATADIR%%/stencils/Electric2/isolator.odg %%DATADIR%%/stencils/Electric2/isolator.png %%DATADIR%%/stencils/Electric2/transformer.desktop %%DATADIR%%/stencils/Electric2/transformer.odg %%DATADIR%%/stencils/Electric2/transformer.png %%DATADIR%%/stencils/Electronic/ampermeter.desktop %%DATADIR%%/stencils/Electronic/ampermeter.odg %%DATADIR%%/stencils/Electronic/ampermeter.png %%DATADIR%%/stencils/Electronic/antenna.desktop %%DATADIR%%/stencils/Electronic/antenna.odg %%DATADIR%%/stencils/Electronic/antenna.png %%DATADIR%%/stencils/Electronic/bell.desktop %%DATADIR%%/stencils/Electronic/bell.odg %%DATADIR%%/stencils/Electronic/bell.png %%DATADIR%%/stencils/Electronic/button.desktop %%DATADIR%%/stencils/Electronic/button.odg %%DATADIR%%/stencils/Electronic/button.png %%DATADIR%%/stencils/Electronic/capacitor.desktop %%DATADIR%%/stencils/Electronic/capacitor.odg %%DATADIR%%/stencils/Electronic/capacitor.png %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.desktop %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.odg %%DATADIR%%/stencils/Electronic/capacitor_electrolytic.png %%DATADIR%%/stencils/Electronic/collection.desktop %%DATADIR%%/stencils/Electronic/contact.desktop %%DATADIR%%/stencils/Electronic/contact.odg %%DATADIR%%/stencils/Electronic/contact.png %%DATADIR%%/stencils/Electronic/contact_pair.desktop %%DATADIR%%/stencils/Electronic/contact_pair.odg %%DATADIR%%/stencils/Electronic/contact_pair.png %%DATADIR%%/stencils/Electronic/crystal.desktop %%DATADIR%%/stencils/Electronic/crystal.odg %%DATADIR%%/stencils/Electronic/crystal.png %%DATADIR%%/stencils/Electronic/di_gate.desktop %%DATADIR%%/stencils/Electronic/di_gate.odg %%DATADIR%%/stencils/Electronic/di_gate.png %%DATADIR%%/stencils/Electronic/diac.desktop %%DATADIR%%/stencils/Electronic/diac.odg %%DATADIR%%/stencils/Electronic/diac.png %%DATADIR%%/stencils/Electronic/diode_inverse.desktop %%DATADIR%%/stencils/Electronic/diode_inverse.odg %%DATADIR%%/stencils/Electronic/diode_inverse.png %%DATADIR%%/stencils/Electronic/diode_schottky.desktop %%DATADIR%%/stencils/Electronic/diode_schottky.odg %%DATADIR%%/stencils/Electronic/diode_schottky.png %%DATADIR%%/stencils/Electronic/diode_tunnel.desktop %%DATADIR%%/stencils/Electronic/diode_tunnel.odg %%DATADIR%%/stencils/Electronic/diode_tunnel.png %%DATADIR%%/stencils/Electronic/diode_zenner.desktop %%DATADIR%%/stencils/Electronic/diode_zenner.odg %%DATADIR%%/stencils/Electronic/diode_zenner.png %%DATADIR%%/stencils/Electronic/engine.desktop %%DATADIR%%/stencils/Electronic/engine.odg %%DATADIR%%/stencils/Electronic/engine.png %%DATADIR%%/stencils/Electronic/ground.desktop %%DATADIR%%/stencils/Electronic/ground.odg %%DATADIR%%/stencils/Electronic/ground.png %%DATADIR%%/stencils/Electronic/headphone.desktop %%DATADIR%%/stencils/Electronic/headphone.odg %%DATADIR%%/stencils/Electronic/headphone.png %%DATADIR%%/stencils/Electronic/inductor.desktop %%DATADIR%%/stencils/Electronic/inductor.odg %%DATADIR%%/stencils/Electronic/inductor.png %%DATADIR%%/stencils/Electronic/led_display.desktop %%DATADIR%%/stencils/Electronic/led_display.odg %%DATADIR%%/stencils/Electronic/led_display.png %%DATADIR%%/stencils/Electronic/microphone.desktop %%DATADIR%%/stencils/Electronic/microphone.odg %%DATADIR%%/stencils/Electronic/microphone.png %%DATADIR%%/stencils/Electronic/photo_emiting_part.desktop %%DATADIR%%/stencils/Electronic/photo_emiting_part.odg %%DATADIR%%/stencils/Electronic/photo_emiting_part.png %%DATADIR%%/stencils/Electronic/photo_sensitive_part.desktop %%DATADIR%%/stencils/Electronic/photo_sensitive_part.odg %%DATADIR%%/stencils/Electronic/photo_sensitive_part.png %%DATADIR%%/stencils/Electronic/port_in.desktop %%DATADIR%%/stencils/Electronic/port_in.odg %%DATADIR%%/stencils/Electronic/port_in.png %%DATADIR%%/stencils/Electronic/port_inout.desktop %%DATADIR%%/stencils/Electronic/port_inout.odg %%DATADIR%%/stencils/Electronic/port_inout.png %%DATADIR%%/stencils/Electronic/port_out.desktop %%DATADIR%%/stencils/Electronic/port_out.odg %%DATADIR%%/stencils/Electronic/port_out.png %%DATADIR%%/stencils/Electronic/potenciometer.desktop %%DATADIR%%/stencils/Electronic/potenciometer.odg %%DATADIR%%/stencils/Electronic/potenciometer.png %%DATADIR%%/stencils/Electronic/source.desktop %%DATADIR%%/stencils/Electronic/source.odg %%DATADIR%%/stencils/Electronic/source.png %%DATADIR%%/stencils/Electronic/source_current.desktop %%DATADIR%%/stencils/Electronic/source_current.odg %%DATADIR%%/stencils/Electronic/source_current.png %%DATADIR%%/stencils/Electronic/source_substitution.desktop %%DATADIR%%/stencils/Electronic/source_substitution.odg %%DATADIR%%/stencils/Electronic/source_substitution.png %%DATADIR%%/stencils/Electronic/source_voltage.desktop %%DATADIR%%/stencils/Electronic/source_voltage.odg %%DATADIR%%/stencils/Electronic/source_voltage.png %%DATADIR%%/stencils/Electronic/source_voltage_alternating.desktop %%DATADIR%%/stencils/Electronic/source_voltage_alternating.odg %%DATADIR%%/stencils/Electronic/source_voltage_alternating.png %%DATADIR%%/stencils/Electronic/source_voltage_direct.desktop %%DATADIR%%/stencils/Electronic/source_voltage_direct.odg %%DATADIR%%/stencils/Electronic/source_voltage_direct.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_npn_2.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_1.png %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.desktop %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.odg %%DATADIR%%/stencils/Electronic/transistor_bipolar_pnp_2.png %%DATADIR%%/stencils/Electronic/transistor_jfe_n.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_n.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_n.png %%DATADIR%%/stencils/Electronic/transistor_jfe_p.desktop %%DATADIR%%/stencils/Electronic/transistor_jfe_p.odg %%DATADIR%%/stencils/Electronic/transistor_jfe_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_c_p.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_n.png %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.desktop %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.odg %%DATADIR%%/stencils/Electronic/transistor_misfe_i_p.png %%DATADIR%%/stencils/Electronic/transistor_single_pn.desktop %%DATADIR%%/stencils/Electronic/transistor_single_pn.odg %%DATADIR%%/stencils/Electronic/transistor_single_pn.png %%DATADIR%%/stencils/Electronic/triac.desktop %%DATADIR%%/stencils/Electronic/triac.odg %%DATADIR%%/stencils/Electronic/triac.png %%DATADIR%%/stencils/Electronic/tyristor_diode.desktop %%DATADIR%%/stencils/Electronic/tyristor_diode.odg %%DATADIR%%/stencils/Electronic/tyristor_diode.png %%DATADIR%%/stencils/Electronic/tyristor_triode.desktop %%DATADIR%%/stencils/Electronic/tyristor_triode.odg %%DATADIR%%/stencils/Electronic/tyristor_triode.png %%DATADIR%%/stencils/Electronic/vacuum_diode.desktop %%DATADIR%%/stencils/Electronic/vacuum_diode.odg %%DATADIR%%/stencils/Electronic/vacuum_diode.png %%DATADIR%%/stencils/Electronic/vacuum_pentode.desktop %%DATADIR%%/stencils/Electronic/vacuum_pentode.odg %%DATADIR%%/stencils/Electronic/vacuum_pentode.png %%DATADIR%%/stencils/Electronic/vacuum_triode.desktop %%DATADIR%%/stencils/Electronic/vacuum_triode.odg %%DATADIR%%/stencils/Electronic/vacuum_triode.png %%DATADIR%%/stencils/Electronic/variable_linear_part.desktop %%DATADIR%%/stencils/Electronic/variable_linear_part.odg %%DATADIR%%/stencils/Electronic/variable_linear_part.png %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.desktop %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.odg %%DATADIR%%/stencils/Electronic/variable_nonlinear_part.png %%DATADIR%%/stencils/Electronic/varicap.desktop %%DATADIR%%/stencils/Electronic/varicap.odg %%DATADIR%%/stencils/Electronic/varicap.png %%DATADIR%%/stencils/Electronic/voltmeter.desktop %%DATADIR%%/stencils/Electronic/voltmeter.odg %%DATADIR%%/stencils/Electronic/voltmeter.png %%DATADIR%%/stencils/Flags/afghanistan.desktop %%DATADIR%%/stencils/Flags/afghanistan.odg %%DATADIR%%/stencils/Flags/afghanistan.png %%DATADIR%%/stencils/Flags/albania.desktop %%DATADIR%%/stencils/Flags/albania.odg %%DATADIR%%/stencils/Flags/albania.png %%DATADIR%%/stencils/Flags/algeria.desktop %%DATADIR%%/stencils/Flags/algeria.odg %%DATADIR%%/stencils/Flags/algeria.png %%DATADIR%%/stencils/Flags/andorra.desktop %%DATADIR%%/stencils/Flags/andorra.odg %%DATADIR%%/stencils/Flags/andorra.png %%DATADIR%%/stencils/Flags/angola.desktop %%DATADIR%%/stencils/Flags/angola.odg %%DATADIR%%/stencils/Flags/angola.png %%DATADIR%%/stencils/Flags/antarctica.desktop %%DATADIR%%/stencils/Flags/antarctica.odg %%DATADIR%%/stencils/Flags/antarctica.png %%DATADIR%%/stencils/Flags/antigua_and_barbuda.desktop %%DATADIR%%/stencils/Flags/antigua_and_barbuda.odg %%DATADIR%%/stencils/Flags/antigua_and_barbuda.png %%DATADIR%%/stencils/Flags/argentina.desktop %%DATADIR%%/stencils/Flags/argentina.odg %%DATADIR%%/stencils/Flags/argentina.png %%DATADIR%%/stencils/Flags/armenia.desktop %%DATADIR%%/stencils/Flags/armenia.odg %%DATADIR%%/stencils/Flags/armenia.png %%DATADIR%%/stencils/Flags/australia.desktop %%DATADIR%%/stencils/Flags/australia.odg %%DATADIR%%/stencils/Flags/australia.png %%DATADIR%%/stencils/Flags/austria.desktop %%DATADIR%%/stencils/Flags/austria.odg %%DATADIR%%/stencils/Flags/austria.png %%DATADIR%%/stencils/Flags/azerbaijan.desktop %%DATADIR%%/stencils/Flags/azerbaijan.odg %%DATADIR%%/stencils/Flags/azerbaijan.png %%DATADIR%%/stencils/Flags/bahamas.desktop %%DATADIR%%/stencils/Flags/bahamas.odg %%DATADIR%%/stencils/Flags/bahamas.png %%DATADIR%%/stencils/Flags/bahrain.desktop %%DATADIR%%/stencils/Flags/bahrain.odg %%DATADIR%%/stencils/Flags/bahrain.png %%DATADIR%%/stencils/Flags/bangladesh.desktop %%DATADIR%%/stencils/Flags/bangladesh.odg %%DATADIR%%/stencils/Flags/bangladesh.png %%DATADIR%%/stencils/Flags/barbados.desktop %%DATADIR%%/stencils/Flags/barbados.odg %%DATADIR%%/stencils/Flags/barbados.png %%DATADIR%%/stencils/Flags/belarus.desktop %%DATADIR%%/stencils/Flags/belarus.odg %%DATADIR%%/stencils/Flags/belarus.png %%DATADIR%%/stencils/Flags/belgium.desktop %%DATADIR%%/stencils/Flags/belgium.odg %%DATADIR%%/stencils/Flags/belgium.png %%DATADIR%%/stencils/Flags/belize.desktop %%DATADIR%%/stencils/Flags/belize.odg %%DATADIR%%/stencils/Flags/belize.png %%DATADIR%%/stencils/Flags/benin.desktop %%DATADIR%%/stencils/Flags/benin.odg %%DATADIR%%/stencils/Flags/benin.png %%DATADIR%%/stencils/Flags/bhutan.desktop %%DATADIR%%/stencils/Flags/bhutan.odg %%DATADIR%%/stencils/Flags/bhutan.png %%DATADIR%%/stencils/Flags/bolivia.desktop %%DATADIR%%/stencils/Flags/bolivia.odg %%DATADIR%%/stencils/Flags/bolivia.png %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.desktop %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.odg %%DATADIR%%/stencils/Flags/bosnia_and_herzegovina.png %%DATADIR%%/stencils/Flags/botswana.desktop %%DATADIR%%/stencils/Flags/botswana.odg %%DATADIR%%/stencils/Flags/botswana.png %%DATADIR%%/stencils/Flags/brazil.desktop %%DATADIR%%/stencils/Flags/brazil.odg %%DATADIR%%/stencils/Flags/brazil.png %%DATADIR%%/stencils/Flags/brunei_darussalam.desktop %%DATADIR%%/stencils/Flags/brunei_darussalam.odg %%DATADIR%%/stencils/Flags/brunei_darussalam.png %%DATADIR%%/stencils/Flags/bulgaria.desktop %%DATADIR%%/stencils/Flags/bulgaria.odg %%DATADIR%%/stencils/Flags/bulgaria.png %%DATADIR%%/stencils/Flags/burkina_faso.desktop %%DATADIR%%/stencils/Flags/burkina_faso.odg %%DATADIR%%/stencils/Flags/burkina_faso.png %%DATADIR%%/stencils/Flags/burundi.desktop %%DATADIR%%/stencils/Flags/burundi.odg %%DATADIR%%/stencils/Flags/burundi.png %%DATADIR%%/stencils/Flags/cambodia.desktop %%DATADIR%%/stencils/Flags/cambodia.odg %%DATADIR%%/stencils/Flags/cambodia.png %%DATADIR%%/stencils/Flags/cameroon.desktop %%DATADIR%%/stencils/Flags/cameroon.odg %%DATADIR%%/stencils/Flags/cameroon.png %%DATADIR%%/stencils/Flags/canada.desktop %%DATADIR%%/stencils/Flags/canada.odg %%DATADIR%%/stencils/Flags/canada.png %%DATADIR%%/stencils/Flags/cape_verde.desktop %%DATADIR%%/stencils/Flags/cape_verde.odg %%DATADIR%%/stencils/Flags/cape_verde.png %%DATADIR%%/stencils/Flags/central_african_republic.desktop %%DATADIR%%/stencils/Flags/central_african_republic.odg %%DATADIR%%/stencils/Flags/central_african_republic.png %%DATADIR%%/stencils/Flags/chad.desktop %%DATADIR%%/stencils/Flags/chad.odg %%DATADIR%%/stencils/Flags/chad.png %%DATADIR%%/stencils/Flags/chile.desktop %%DATADIR%%/stencils/Flags/chile.odg %%DATADIR%%/stencils/Flags/chile.png %%DATADIR%%/stencils/Flags/china_hong_kong.desktop %%DATADIR%%/stencils/Flags/china_hong_kong.odg %%DATADIR%%/stencils/Flags/china_hong_kong.png %%DATADIR%%/stencils/Flags/china_macao.desktop %%DATADIR%%/stencils/Flags/china_macao.odg %%DATADIR%%/stencils/Flags/china_macao.png %%DATADIR%%/stencils/Flags/china_prc.desktop %%DATADIR%%/stencils/Flags/china_prc.odg %%DATADIR%%/stencils/Flags/china_prc.png %%DATADIR%%/stencils/Flags/china_roc.desktop %%DATADIR%%/stencils/Flags/china_roc.odg %%DATADIR%%/stencils/Flags/china_roc.png %%DATADIR%%/stencils/Flags/collection.desktop %%DATADIR%%/stencils/Flags/colombia.desktop %%DATADIR%%/stencils/Flags/colombia.odg %%DATADIR%%/stencils/Flags/colombia.png %%DATADIR%%/stencils/Flags/comoros.desktop %%DATADIR%%/stencils/Flags/comoros.odg %%DATADIR%%/stencils/Flags/comoros.png %%DATADIR%%/stencils/Flags/congo_brazzaville.desktop %%DATADIR%%/stencils/Flags/congo_brazzaville.odg %%DATADIR%%/stencils/Flags/congo_brazzaville.png %%DATADIR%%/stencils/Flags/congo_kinshasa.desktop %%DATADIR%%/stencils/Flags/congo_kinshasa.odg %%DATADIR%%/stencils/Flags/congo_kinshasa.png %%DATADIR%%/stencils/Flags/costa_rica.desktop %%DATADIR%%/stencils/Flags/costa_rica.odg %%DATADIR%%/stencils/Flags/costa_rica.png %%DATADIR%%/stencils/Flags/cote_divoire.desktop %%DATADIR%%/stencils/Flags/cote_divoire.odg %%DATADIR%%/stencils/Flags/cote_divoire.png %%DATADIR%%/stencils/Flags/croatia.desktop %%DATADIR%%/stencils/Flags/croatia.odg %%DATADIR%%/stencils/Flags/croatia.png %%DATADIR%%/stencils/Flags/cuba.desktop %%DATADIR%%/stencils/Flags/cuba.odg %%DATADIR%%/stencils/Flags/cuba.png %%DATADIR%%/stencils/Flags/cyprus.desktop %%DATADIR%%/stencils/Flags/cyprus.odg %%DATADIR%%/stencils/Flags/cyprus.png %%DATADIR%%/stencils/Flags/czechia.desktop %%DATADIR%%/stencils/Flags/czechia.odg %%DATADIR%%/stencils/Flags/czechia.png %%DATADIR%%/stencils/Flags/denmark.desktop %%DATADIR%%/stencils/Flags/denmark.odg %%DATADIR%%/stencils/Flags/denmark.png %%DATADIR%%/stencils/Flags/djibouti.desktop %%DATADIR%%/stencils/Flags/djibouti.odg %%DATADIR%%/stencils/Flags/djibouti.png %%DATADIR%%/stencils/Flags/dominica.desktop %%DATADIR%%/stencils/Flags/dominica.odg %%DATADIR%%/stencils/Flags/dominica.png %%DATADIR%%/stencils/Flags/dominican_republic.desktop %%DATADIR%%/stencils/Flags/dominican_republic.odg %%DATADIR%%/stencils/Flags/dominican_republic.png %%DATADIR%%/stencils/Flags/ecuador.desktop %%DATADIR%%/stencils/Flags/ecuador.odg %%DATADIR%%/stencils/Flags/ecuador.png %%DATADIR%%/stencils/Flags/egypt.desktop %%DATADIR%%/stencils/Flags/egypt.odg %%DATADIR%%/stencils/Flags/egypt.png %%DATADIR%%/stencils/Flags/el_salvador.desktop %%DATADIR%%/stencils/Flags/el_salvador.odg %%DATADIR%%/stencils/Flags/el_salvador.png %%DATADIR%%/stencils/Flags/equatorial_guinea.desktop %%DATADIR%%/stencils/Flags/equatorial_guinea.odg %%DATADIR%%/stencils/Flags/equatorial_guinea.png %%DATADIR%%/stencils/Flags/eritrea.desktop %%DATADIR%%/stencils/Flags/eritrea.odg %%DATADIR%%/stencils/Flags/eritrea.png %%DATADIR%%/stencils/Flags/estonia.desktop %%DATADIR%%/stencils/Flags/estonia.odg %%DATADIR%%/stencils/Flags/estonia.png %%DATADIR%%/stencils/Flags/ethiopia.desktop %%DATADIR%%/stencils/Flags/ethiopia.odg %%DATADIR%%/stencils/Flags/ethiopia.png %%DATADIR%%/stencils/Flags/europeanunion.desktop %%DATADIR%%/stencils/Flags/europeanunion.odg %%DATADIR%%/stencils/Flags/europeanunion.png %%DATADIR%%/stencils/Flags/fiji.desktop %%DATADIR%%/stencils/Flags/fiji.odg %%DATADIR%%/stencils/Flags/fiji.png %%DATADIR%%/stencils/Flags/finland.desktop %%DATADIR%%/stencils/Flags/finland.odg %%DATADIR%%/stencils/Flags/finland.png %%DATADIR%%/stencils/Flags/france.desktop %%DATADIR%%/stencils/Flags/france.odg %%DATADIR%%/stencils/Flags/france.png %%DATADIR%%/stencils/Flags/gabon.desktop %%DATADIR%%/stencils/Flags/gabon.odg %%DATADIR%%/stencils/Flags/gabon.png %%DATADIR%%/stencils/Flags/gambia.desktop %%DATADIR%%/stencils/Flags/gambia.odg %%DATADIR%%/stencils/Flags/gambia.png %%DATADIR%%/stencils/Flags/georgia.desktop %%DATADIR%%/stencils/Flags/georgia.odg %%DATADIR%%/stencils/Flags/georgia.png %%DATADIR%%/stencils/Flags/germany.desktop %%DATADIR%%/stencils/Flags/germany.odg %%DATADIR%%/stencils/Flags/germany.png %%DATADIR%%/stencils/Flags/ghana.desktop %%DATADIR%%/stencils/Flags/ghana.odg %%DATADIR%%/stencils/Flags/ghana.png %%DATADIR%%/stencils/Flags/greece.desktop %%DATADIR%%/stencils/Flags/greece.odg %%DATADIR%%/stencils/Flags/greece.png %%DATADIR%%/stencils/Flags/grenada.desktop %%DATADIR%%/stencils/Flags/grenada.odg %%DATADIR%%/stencils/Flags/grenada.png %%DATADIR%%/stencils/Flags/guatemala.desktop %%DATADIR%%/stencils/Flags/guatemala.odg %%DATADIR%%/stencils/Flags/guatemala.png %%DATADIR%%/stencils/Flags/guinea.desktop %%DATADIR%%/stencils/Flags/guinea.odg %%DATADIR%%/stencils/Flags/guinea.png %%DATADIR%%/stencils/Flags/guyana.desktop %%DATADIR%%/stencils/Flags/guyana.odg %%DATADIR%%/stencils/Flags/guyana.png %%DATADIR%%/stencils/Flags/haiti.desktop %%DATADIR%%/stencils/Flags/haiti.odg %%DATADIR%%/stencils/Flags/haiti.png %%DATADIR%%/stencils/Flags/honduras.desktop %%DATADIR%%/stencils/Flags/honduras.odg %%DATADIR%%/stencils/Flags/honduras.png %%DATADIR%%/stencils/Flags/hungary.desktop %%DATADIR%%/stencils/Flags/hungary.odg %%DATADIR%%/stencils/Flags/hungary.png %%DATADIR%%/stencils/Flags/iceland.desktop %%DATADIR%%/stencils/Flags/iceland.odg %%DATADIR%%/stencils/Flags/iceland.png %%DATADIR%%/stencils/Flags/india.desktop %%DATADIR%%/stencils/Flags/india.odg %%DATADIR%%/stencils/Flags/india.png %%DATADIR%%/stencils/Flags/indonesia.desktop %%DATADIR%%/stencils/Flags/indonesia.odg %%DATADIR%%/stencils/Flags/indonesia.png %%DATADIR%%/stencils/Flags/iran.desktop %%DATADIR%%/stencils/Flags/iran.odg %%DATADIR%%/stencils/Flags/iran.png %%DATADIR%%/stencils/Flags/iraq.desktop %%DATADIR%%/stencils/Flags/iraq.odg %%DATADIR%%/stencils/Flags/iraq.png %%DATADIR%%/stencils/Flags/ireland.desktop %%DATADIR%%/stencils/Flags/ireland.odg %%DATADIR%%/stencils/Flags/ireland.png %%DATADIR%%/stencils/Flags/israel.desktop %%DATADIR%%/stencils/Flags/israel.odg %%DATADIR%%/stencils/Flags/israel.png %%DATADIR%%/stencils/Flags/italy.desktop %%DATADIR%%/stencils/Flags/italy.odg %%DATADIR%%/stencils/Flags/italy.png %%DATADIR%%/stencils/Flags/jamaica.desktop %%DATADIR%%/stencils/Flags/jamaica.odg %%DATADIR%%/stencils/Flags/jamaica.png %%DATADIR%%/stencils/Flags/japan.desktop %%DATADIR%%/stencils/Flags/japan.odg %%DATADIR%%/stencils/Flags/japan.png %%DATADIR%%/stencils/Flags/jordan.desktop %%DATADIR%%/stencils/Flags/jordan.odg %%DATADIR%%/stencils/Flags/jordan.png %%DATADIR%%/stencils/Flags/kazakhstan.desktop %%DATADIR%%/stencils/Flags/kazakhstan.odg %%DATADIR%%/stencils/Flags/kazakhstan.png %%DATADIR%%/stencils/Flags/kenya.desktop %%DATADIR%%/stencils/Flags/kenya.odg %%DATADIR%%/stencils/Flags/kenya.png %%DATADIR%%/stencils/Flags/kiribati.desktop %%DATADIR%%/stencils/Flags/kiribati.odg %%DATADIR%%/stencils/Flags/kiribati.png %%DATADIR%%/stencils/Flags/kuwait.desktop %%DATADIR%%/stencils/Flags/kuwait.odg %%DATADIR%%/stencils/Flags/kuwait.png %%DATADIR%%/stencils/Flags/kyrgyzstan.desktop %%DATADIR%%/stencils/Flags/kyrgyzstan.odg %%DATADIR%%/stencils/Flags/kyrgyzstan.png %%DATADIR%%/stencils/Flags/laos.desktop %%DATADIR%%/stencils/Flags/laos.odg %%DATADIR%%/stencils/Flags/laos.png %%DATADIR%%/stencils/Flags/latvia.desktop %%DATADIR%%/stencils/Flags/latvia.odg %%DATADIR%%/stencils/Flags/latvia.png %%DATADIR%%/stencils/Flags/lebanon.desktop %%DATADIR%%/stencils/Flags/lebanon.odg %%DATADIR%%/stencils/Flags/lebanon.png %%DATADIR%%/stencils/Flags/lesotho.desktop %%DATADIR%%/stencils/Flags/lesotho.odg %%DATADIR%%/stencils/Flags/lesotho.png %%DATADIR%%/stencils/Flags/liberia.desktop %%DATADIR%%/stencils/Flags/liberia.odg %%DATADIR%%/stencils/Flags/liberia.png %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.desktop %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.odg %%DATADIR%%/stencils/Flags/libyan_arab_jamahiriya.png %%DATADIR%%/stencils/Flags/liechtenstein.desktop %%DATADIR%%/stencils/Flags/liechtenstein.odg %%DATADIR%%/stencils/Flags/liechtenstein.png %%DATADIR%%/stencils/Flags/lithuania.desktop %%DATADIR%%/stencils/Flags/lithuania.odg %%DATADIR%%/stencils/Flags/lithuania.png %%DATADIR%%/stencils/Flags/luxembourg.desktop %%DATADIR%%/stencils/Flags/luxembourg.odg %%DATADIR%%/stencils/Flags/luxembourg.png %%DATADIR%%/stencils/Flags/macedonia.desktop %%DATADIR%%/stencils/Flags/macedonia.odg %%DATADIR%%/stencils/Flags/macedonia.png %%DATADIR%%/stencils/Flags/madagascar.desktop %%DATADIR%%/stencils/Flags/madagascar.odg %%DATADIR%%/stencils/Flags/madagascar.png %%DATADIR%%/stencils/Flags/malawi.desktop %%DATADIR%%/stencils/Flags/malawi.odg %%DATADIR%%/stencils/Flags/malawi.png %%DATADIR%%/stencils/Flags/malaysia.desktop %%DATADIR%%/stencils/Flags/malaysia.odg %%DATADIR%%/stencils/Flags/malaysia.png %%DATADIR%%/stencils/Flags/maldives.desktop %%DATADIR%%/stencils/Flags/maldives.odg %%DATADIR%%/stencils/Flags/maldives.png %%DATADIR%%/stencils/Flags/mali.desktop %%DATADIR%%/stencils/Flags/mali.odg %%DATADIR%%/stencils/Flags/mali.png %%DATADIR%%/stencils/Flags/malta.desktop %%DATADIR%%/stencils/Flags/malta.odg %%DATADIR%%/stencils/Flags/malta.png %%DATADIR%%/stencils/Flags/marshall_islands.desktop %%DATADIR%%/stencils/Flags/marshall_islands.odg %%DATADIR%%/stencils/Flags/marshall_islands.png %%DATADIR%%/stencils/Flags/mauritania.desktop %%DATADIR%%/stencils/Flags/mauritania.odg %%DATADIR%%/stencils/Flags/mauritania.png %%DATADIR%%/stencils/Flags/mauritius.desktop %%DATADIR%%/stencils/Flags/mauritius.odg %%DATADIR%%/stencils/Flags/mauritius.png %%DATADIR%%/stencils/Flags/mexico.desktop %%DATADIR%%/stencils/Flags/mexico.odg %%DATADIR%%/stencils/Flags/mexico.png %%DATADIR%%/stencils/Flags/micronesia.desktop %%DATADIR%%/stencils/Flags/micronesia.odg %%DATADIR%%/stencils/Flags/micronesia.png %%DATADIR%%/stencils/Flags/moldova.desktop %%DATADIR%%/stencils/Flags/moldova.odg %%DATADIR%%/stencils/Flags/moldova.png %%DATADIR%%/stencils/Flags/monaco.desktop %%DATADIR%%/stencils/Flags/monaco.odg %%DATADIR%%/stencils/Flags/monaco.png %%DATADIR%%/stencils/Flags/mongolia.desktop %%DATADIR%%/stencils/Flags/mongolia.odg %%DATADIR%%/stencils/Flags/mongolia.png %%DATADIR%%/stencils/Flags/montenegro.desktop %%DATADIR%%/stencils/Flags/montenegro.odg %%DATADIR%%/stencils/Flags/montenegro.png %%DATADIR%%/stencils/Flags/morocco.desktop %%DATADIR%%/stencils/Flags/morocco.odg %%DATADIR%%/stencils/Flags/morocco.png %%DATADIR%%/stencils/Flags/mozambique.desktop %%DATADIR%%/stencils/Flags/mozambique.odg %%DATADIR%%/stencils/Flags/mozambique.png %%DATADIR%%/stencils/Flags/myanmar.desktop %%DATADIR%%/stencils/Flags/myanmar.odg %%DATADIR%%/stencils/Flags/myanmar.png %%DATADIR%%/stencils/Flags/namibia.desktop %%DATADIR%%/stencils/Flags/namibia.odg %%DATADIR%%/stencils/Flags/namibia.png %%DATADIR%%/stencils/Flags/nauru.desktop %%DATADIR%%/stencils/Flags/nauru.odg %%DATADIR%%/stencils/Flags/nauru.png %%DATADIR%%/stencils/Flags/nepal.desktop %%DATADIR%%/stencils/Flags/nepal.odg %%DATADIR%%/stencils/Flags/nepal.png %%DATADIR%%/stencils/Flags/netherlands.desktop %%DATADIR%%/stencils/Flags/netherlands.odg %%DATADIR%%/stencils/Flags/netherlands.png %%DATADIR%%/stencils/Flags/netherlands_antilles.desktop %%DATADIR%%/stencils/Flags/netherlands_antilles.odg %%DATADIR%%/stencils/Flags/netherlands_antilles.png %%DATADIR%%/stencils/Flags/newzealand.desktop %%DATADIR%%/stencils/Flags/newzealand.odg %%DATADIR%%/stencils/Flags/newzealand.png %%DATADIR%%/stencils/Flags/nicaragua.desktop %%DATADIR%%/stencils/Flags/nicaragua.odg %%DATADIR%%/stencils/Flags/nicaragua.png %%DATADIR%%/stencils/Flags/niger.desktop %%DATADIR%%/stencils/Flags/niger.odg %%DATADIR%%/stencils/Flags/niger.png %%DATADIR%%/stencils/Flags/nigeria.desktop %%DATADIR%%/stencils/Flags/nigeria.odg %%DATADIR%%/stencils/Flags/nigeria.png %%DATADIR%%/stencils/Flags/north_korea.desktop %%DATADIR%%/stencils/Flags/north_korea.odg %%DATADIR%%/stencils/Flags/north_korea.png %%DATADIR%%/stencils/Flags/norway.desktop %%DATADIR%%/stencils/Flags/norway.odg %%DATADIR%%/stencils/Flags/norway.png %%DATADIR%%/stencils/Flags/olympic.desktop %%DATADIR%%/stencils/Flags/olympic.odg %%DATADIR%%/stencils/Flags/olympic.png %%DATADIR%%/stencils/Flags/oman.desktop %%DATADIR%%/stencils/Flags/oman.odg %%DATADIR%%/stencils/Flags/oman.png %%DATADIR%%/stencils/Flags/pakistan.desktop %%DATADIR%%/stencils/Flags/pakistan.odg %%DATADIR%%/stencils/Flags/pakistan.png %%DATADIR%%/stencils/Flags/palau.desktop %%DATADIR%%/stencils/Flags/palau.odg %%DATADIR%%/stencils/Flags/palau.png %%DATADIR%%/stencils/Flags/palestine.desktop %%DATADIR%%/stencils/Flags/palestine.odg %%DATADIR%%/stencils/Flags/palestine.png %%DATADIR%%/stencils/Flags/panama.desktop %%DATADIR%%/stencils/Flags/panama.odg %%DATADIR%%/stencils/Flags/panama.png %%DATADIR%%/stencils/Flags/papua_new_guinea.desktop %%DATADIR%%/stencils/Flags/papua_new_guinea.odg %%DATADIR%%/stencils/Flags/papua_new_guinea.png %%DATADIR%%/stencils/Flags/paraguay.desktop %%DATADIR%%/stencils/Flags/paraguay.odg %%DATADIR%%/stencils/Flags/paraguay.png %%DATADIR%%/stencils/Flags/peru.desktop %%DATADIR%%/stencils/Flags/peru.odg %%DATADIR%%/stencils/Flags/peru.png %%DATADIR%%/stencils/Flags/philippines.desktop %%DATADIR%%/stencils/Flags/philippines.odg %%DATADIR%%/stencils/Flags/philippines.png %%DATADIR%%/stencils/Flags/poland.desktop %%DATADIR%%/stencils/Flags/poland.odg %%DATADIR%%/stencils/Flags/poland.png %%DATADIR%%/stencils/Flags/portugal.desktop %%DATADIR%%/stencils/Flags/portugal.odg %%DATADIR%%/stencils/Flags/portugal.png %%DATADIR%%/stencils/Flags/qatar.desktop %%DATADIR%%/stencils/Flags/qatar.odg %%DATADIR%%/stencils/Flags/qatar.png %%DATADIR%%/stencils/Flags/romania.desktop %%DATADIR%%/stencils/Flags/romania.odg %%DATADIR%%/stencils/Flags/romania.png %%DATADIR%%/stencils/Flags/russian_federation.desktop %%DATADIR%%/stencils/Flags/russian_federation.odg %%DATADIR%%/stencils/Flags/russian_federation.png %%DATADIR%%/stencils/Flags/rwanda.desktop %%DATADIR%%/stencils/Flags/rwanda.odg %%DATADIR%%/stencils/Flags/rwanda.png %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.desktop %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.odg %%DATADIR%%/stencils/Flags/saint_kitts_and_nevis.png %%DATADIR%%/stencils/Flags/saint_lucia.desktop %%DATADIR%%/stencils/Flags/saint_lucia.odg %%DATADIR%%/stencils/Flags/saint_lucia.png %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.desktop %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.odg %%DATADIR%%/stencils/Flags/saint_vincent_and_the_grenadines.png %%DATADIR%%/stencils/Flags/samoa.desktop %%DATADIR%%/stencils/Flags/samoa.odg %%DATADIR%%/stencils/Flags/samoa.png %%DATADIR%%/stencils/Flags/san_marino.desktop %%DATADIR%%/stencils/Flags/san_marino.odg %%DATADIR%%/stencils/Flags/san_marino.png %%DATADIR%%/stencils/Flags/sao_tome_and_principe.desktop %%DATADIR%%/stencils/Flags/sao_tome_and_principe.odg %%DATADIR%%/stencils/Flags/sao_tome_and_principe.png %%DATADIR%%/stencils/Flags/saudi_arabia.desktop %%DATADIR%%/stencils/Flags/saudi_arabia.odg %%DATADIR%%/stencils/Flags/saudi_arabia.png %%DATADIR%%/stencils/Flags/senegal.desktop %%DATADIR%%/stencils/Flags/senegal.odg %%DATADIR%%/stencils/Flags/senegal.png %%DATADIR%%/stencils/Flags/serbia.desktop %%DATADIR%%/stencils/Flags/serbia.odg %%DATADIR%%/stencils/Flags/serbia.png %%DATADIR%%/stencils/Flags/seychelles.desktop %%DATADIR%%/stencils/Flags/seychelles.odg %%DATADIR%%/stencils/Flags/seychelles.png %%DATADIR%%/stencils/Flags/sierra_leone.desktop %%DATADIR%%/stencils/Flags/sierra_leone.odg %%DATADIR%%/stencils/Flags/sierra_leone.png %%DATADIR%%/stencils/Flags/singapore.desktop %%DATADIR%%/stencils/Flags/singapore.odg %%DATADIR%%/stencils/Flags/singapore.png %%DATADIR%%/stencils/Flags/slovakia.desktop %%DATADIR%%/stencils/Flags/slovakia.odg %%DATADIR%%/stencils/Flags/slovakia.png %%DATADIR%%/stencils/Flags/slovenia.desktop %%DATADIR%%/stencils/Flags/slovenia.odg %%DATADIR%%/stencils/Flags/slovenia.png %%DATADIR%%/stencils/Flags/solomonislands.desktop %%DATADIR%%/stencils/Flags/solomonislands.odg %%DATADIR%%/stencils/Flags/solomonislands.png %%DATADIR%%/stencils/Flags/somalia.desktop %%DATADIR%%/stencils/Flags/somalia.odg %%DATADIR%%/stencils/Flags/somalia.png %%DATADIR%%/stencils/Flags/south_africa.desktop %%DATADIR%%/stencils/Flags/south_africa.odg %%DATADIR%%/stencils/Flags/south_africa.png %%DATADIR%%/stencils/Flags/south_korea.desktop %%DATADIR%%/stencils/Flags/south_korea.odg %%DATADIR%%/stencils/Flags/south_korea.png %%DATADIR%%/stencils/Flags/spain.desktop %%DATADIR%%/stencils/Flags/spain.odg %%DATADIR%%/stencils/Flags/spain.png %%DATADIR%%/stencils/Flags/sri_lanka.desktop %%DATADIR%%/stencils/Flags/sri_lanka.odg %%DATADIR%%/stencils/Flags/sri_lanka.png %%DATADIR%%/stencils/Flags/sudan.desktop %%DATADIR%%/stencils/Flags/sudan.odg %%DATADIR%%/stencils/Flags/sudan.png %%DATADIR%%/stencils/Flags/suisse.desktop %%DATADIR%%/stencils/Flags/suisse.odg %%DATADIR%%/stencils/Flags/suisse.png %%DATADIR%%/stencils/Flags/suriname.desktop %%DATADIR%%/stencils/Flags/suriname.odg %%DATADIR%%/stencils/Flags/suriname.png %%DATADIR%%/stencils/Flags/swaziland.desktop %%DATADIR%%/stencils/Flags/swaziland.odg %%DATADIR%%/stencils/Flags/swaziland.png %%DATADIR%%/stencils/Flags/sweden.desktop %%DATADIR%%/stencils/Flags/sweden.odg %%DATADIR%%/stencils/Flags/sweden.png %%DATADIR%%/stencils/Flags/syrian_arab_republic.desktop %%DATADIR%%/stencils/Flags/syrian_arab_republic.odg %%DATADIR%%/stencils/Flags/syrian_arab_republic.png %%DATADIR%%/stencils/Flags/tajikistan.desktop %%DATADIR%%/stencils/Flags/tajikistan.odg %%DATADIR%%/stencils/Flags/tajikistan.png %%DATADIR%%/stencils/Flags/tanzania.desktop %%DATADIR%%/stencils/Flags/tanzania.odg %%DATADIR%%/stencils/Flags/tanzania.png %%DATADIR%%/stencils/Flags/thailand.desktop %%DATADIR%%/stencils/Flags/thailand.odg %%DATADIR%%/stencils/Flags/thailand.png %%DATADIR%%/stencils/Flags/timor_leste.desktop %%DATADIR%%/stencils/Flags/timor_leste.odg %%DATADIR%%/stencils/Flags/timor_leste.png %%DATADIR%%/stencils/Flags/togo.desktop %%DATADIR%%/stencils/Flags/togo.odg %%DATADIR%%/stencils/Flags/togo.png %%DATADIR%%/stencils/Flags/tonga.desktop %%DATADIR%%/stencils/Flags/tonga.odg %%DATADIR%%/stencils/Flags/tonga.png %%DATADIR%%/stencils/Flags/trinidad_and_tobago.desktop %%DATADIR%%/stencils/Flags/trinidad_and_tobago.odg %%DATADIR%%/stencils/Flags/trinidad_and_tobago.png %%DATADIR%%/stencils/Flags/tunisia.desktop %%DATADIR%%/stencils/Flags/tunisia.odg %%DATADIR%%/stencils/Flags/tunisia.png %%DATADIR%%/stencils/Flags/turkey.desktop %%DATADIR%%/stencils/Flags/turkey.odg %%DATADIR%%/stencils/Flags/turkey.png %%DATADIR%%/stencils/Flags/turkmenistan.desktop %%DATADIR%%/stencils/Flags/turkmenistan.odg %%DATADIR%%/stencils/Flags/turkmenistan.png %%DATADIR%%/stencils/Flags/tuvalu.desktop %%DATADIR%%/stencils/Flags/tuvalu.odg %%DATADIR%%/stencils/Flags/tuvalu.png %%DATADIR%%/stencils/Flags/uganda.desktop %%DATADIR%%/stencils/Flags/uganda.odg %%DATADIR%%/stencils/Flags/uganda.png %%DATADIR%%/stencils/Flags/ukraine.desktop %%DATADIR%%/stencils/Flags/ukraine.odg %%DATADIR%%/stencils/Flags/ukraine.png %%DATADIR%%/stencils/Flags/unesco.desktop %%DATADIR%%/stencils/Flags/unesco.odg %%DATADIR%%/stencils/Flags/unesco.png %%DATADIR%%/stencils/Flags/unicef.desktop %%DATADIR%%/stencils/Flags/unicef.odg %%DATADIR%%/stencils/Flags/unicef.png %%DATADIR%%/stencils/Flags/united_arab_emirates.desktop %%DATADIR%%/stencils/Flags/united_arab_emirates.odg %%DATADIR%%/stencils/Flags/united_arab_emirates.png %%DATADIR%%/stencils/Flags/united_kingdom.desktop %%DATADIR%%/stencils/Flags/united_kingdom.odg %%DATADIR%%/stencils/Flags/united_kingdom.png %%DATADIR%%/stencils/Flags/united_states.desktop %%DATADIR%%/stencils/Flags/united_states.odg %%DATADIR%%/stencils/Flags/united_states.png %%DATADIR%%/stencils/Flags/unitednations.desktop %%DATADIR%%/stencils/Flags/unitednations.odg %%DATADIR%%/stencils/Flags/unitednations.png %%DATADIR%%/stencils/Flags/uruguay.desktop %%DATADIR%%/stencils/Flags/uruguay.odg %%DATADIR%%/stencils/Flags/uruguay.png %%DATADIR%%/stencils/Flags/uzbekistan.desktop %%DATADIR%%/stencils/Flags/uzbekistan.odg %%DATADIR%%/stencils/Flags/uzbekistan.png %%DATADIR%%/stencils/Flags/vanuatu.desktop %%DATADIR%%/stencils/Flags/vanuatu.odg %%DATADIR%%/stencils/Flags/vanuatu.png %%DATADIR%%/stencils/Flags/vatican.desktop %%DATADIR%%/stencils/Flags/vatican.odg %%DATADIR%%/stencils/Flags/vatican.png %%DATADIR%%/stencils/Flags/venezuela.desktop %%DATADIR%%/stencils/Flags/venezuela.odg %%DATADIR%%/stencils/Flags/venezuela.png %%DATADIR%%/stencils/Flags/vietnam.desktop %%DATADIR%%/stencils/Flags/vietnam.odg %%DATADIR%%/stencils/Flags/vietnam.png %%DATADIR%%/stencils/Flags/wake_island.desktop %%DATADIR%%/stencils/Flags/wake_island.odg %%DATADIR%%/stencils/Flags/wake_island.png %%DATADIR%%/stencils/Flags/western_sahara.desktop %%DATADIR%%/stencils/Flags/western_sahara.odg %%DATADIR%%/stencils/Flags/western_sahara.png %%DATADIR%%/stencils/Flags/who.desktop %%DATADIR%%/stencils/Flags/who.odg %%DATADIR%%/stencils/Flags/who.png %%DATADIR%%/stencils/Flags/yemen.desktop %%DATADIR%%/stencils/Flags/yemen.odg %%DATADIR%%/stencils/Flags/yemen.png %%DATADIR%%/stencils/Flags/zambia.desktop %%DATADIR%%/stencils/Flags/zambia.odg %%DATADIR%%/stencils/Flags/zambia.png %%DATADIR%%/stencils/Flags/zimbabwe.desktop %%DATADIR%%/stencils/Flags/zimbabwe.odg %%DATADIR%%/stencils/Flags/zimbabwe.png %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/alt-entity.png %%DATADIR%%/stencils/Gane_and_Sarson/collection.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.desktop %%DATADIR%%/stencils/Gane_and_Sarson/data_store.odg %%DATADIR%%/stencils/Gane_and_Sarson/data_store.png %%DATADIR%%/stencils/Gane_and_Sarson/entity.desktop %%DATADIR%%/stencils/Gane_and_Sarson/entity.odg %%DATADIR%%/stencils/Gane_and_Sarson/entity.png %%DATADIR%%/stencils/Gane_and_Sarson/process.desktop %%DATADIR%%/stencils/Gane_and_Sarson/process.odg %%DATADIR%%/stencils/Gane_and_Sarson/process.png %%DATADIR%%/stencils/Jigsaw/collection.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.desktop %%DATADIR%%/stencils/Jigsaw/part_iiii.odg %%DATADIR%%/stencils/Jigsaw/part_iiii.png %%DATADIR%%/stencils/Jigsaw/part_iiio.desktop %%DATADIR%%/stencils/Jigsaw/part_iiio.odg %%DATADIR%%/stencils/Jigsaw/part_iiio.png %%DATADIR%%/stencils/Jigsaw/part_iioi.desktop %%DATADIR%%/stencils/Jigsaw/part_iioi.odg %%DATADIR%%/stencils/Jigsaw/part_iioi.png %%DATADIR%%/stencils/Jigsaw/part_iioo.desktop %%DATADIR%%/stencils/Jigsaw/part_iioo.odg %%DATADIR%%/stencils/Jigsaw/part_iioo.png %%DATADIR%%/stencils/Jigsaw/part_ioii.desktop %%DATADIR%%/stencils/Jigsaw/part_ioii.odg %%DATADIR%%/stencils/Jigsaw/part_ioii.png %%DATADIR%%/stencils/Jigsaw/part_ioio.desktop %%DATADIR%%/stencils/Jigsaw/part_ioio.odg %%DATADIR%%/stencils/Jigsaw/part_ioio.png %%DATADIR%%/stencils/Jigsaw/part_iooi.desktop %%DATADIR%%/stencils/Jigsaw/part_iooi.odg %%DATADIR%%/stencils/Jigsaw/part_iooi.png %%DATADIR%%/stencils/Jigsaw/part_iooo.desktop %%DATADIR%%/stencils/Jigsaw/part_iooo.odg %%DATADIR%%/stencils/Jigsaw/part_iooo.png %%DATADIR%%/stencils/Jigsaw/part_oiii.desktop %%DATADIR%%/stencils/Jigsaw/part_oiii.odg %%DATADIR%%/stencils/Jigsaw/part_oiii.png %%DATADIR%%/stencils/Jigsaw/part_oiio.desktop %%DATADIR%%/stencils/Jigsaw/part_oiio.odg %%DATADIR%%/stencils/Jigsaw/part_oiio.png %%DATADIR%%/stencils/Jigsaw/part_oioi.desktop %%DATADIR%%/stencils/Jigsaw/part_oioi.odg %%DATADIR%%/stencils/Jigsaw/part_oioi.png %%DATADIR%%/stencils/Jigsaw/part_oioo.desktop %%DATADIR%%/stencils/Jigsaw/part_oioo.odg %%DATADIR%%/stencils/Jigsaw/part_oioo.png %%DATADIR%%/stencils/Jigsaw/part_ooii.desktop %%DATADIR%%/stencils/Jigsaw/part_ooii.odg %%DATADIR%%/stencils/Jigsaw/part_ooii.png %%DATADIR%%/stencils/Jigsaw/part_ooio.desktop %%DATADIR%%/stencils/Jigsaw/part_ooio.odg %%DATADIR%%/stencils/Jigsaw/part_ooio.png %%DATADIR%%/stencils/Jigsaw/part_oooi.desktop %%DATADIR%%/stencils/Jigsaw/part_oooi.odg %%DATADIR%%/stencils/Jigsaw/part_oooi.png %%DATADIR%%/stencils/Jigsaw/part_oooo.desktop %%DATADIR%%/stencils/Jigsaw/part_oooo.odg %%DATADIR%%/stencils/Jigsaw/part_oooo.png %%DATADIR%%/stencils/LST/associator_subsystem.desktop %%DATADIR%%/stencils/LST/associator_subsystem.odg %%DATADIR%%/stencils/LST/associator_subsystem.png %%DATADIR%%/stencils/LST/boundary.png %%DATADIR%%/stencils/LST/cn_subsystem.desktop %%DATADIR%%/stencils/LST/cn_subsystem.odg %%DATADIR%%/stencils/LST/cn_subsystem.png %%DATADIR%%/stencils/LST/collection.desktop %%DATADIR%%/stencils/LST/convert_subsystem.desktop %%DATADIR%%/stencils/LST/convert_subsystem.odg %%DATADIR%%/stencils/LST/convert_subsystem.png %%DATADIR%%/stencils/LST/converter.png %%DATADIR%%/stencils/LST/decider_subsystem.desktop %%DATADIR%%/stencils/LST/decider_subsystem.odg %%DATADIR%%/stencils/LST/decider_subsystem.png %%DATADIR%%/stencils/LST/decode_subsystem.desktop %%DATADIR%%/stencils/LST/decode_subsystem.odg %%DATADIR%%/stencils/LST/decode_subsystem.png %%DATADIR%%/stencils/LST/decoder.desktop %%DATADIR%%/stencils/LST/decoder.odg %%DATADIR%%/stencils/LST/decoder.png %%DATADIR%%/stencils/LST/distributor_subsystem.desktop %%DATADIR%%/stencils/LST/distributor_subsystem.odg %%DATADIR%%/stencils/LST/distributor_subsystem.png %%DATADIR%%/stencils/LST/encode_subsystem.desktop %%DATADIR%%/stencils/LST/encode_subsystem.odg %%DATADIR%%/stencils/LST/encode_subsystem.png %%DATADIR%%/stencils/LST/encoder.desktop %%DATADIR%%/stencils/LST/encoder.odg %%DATADIR%%/stencils/LST/encoder.png %%DATADIR%%/stencils/LST/extruder.desktop %%DATADIR%%/stencils/LST/extruder.odg %%DATADIR%%/stencils/LST/extruder.png %%DATADIR%%/stencils/LST/ingestor.png %%DATADIR%%/stencils/LST/ingestor_subsystem.desktop %%DATADIR%%/stencils/LST/ingestor_subsystem.odg %%DATADIR%%/stencils/LST/ingestor_subsystem.png %%DATADIR%%/stencils/LST/internal_subsystem.desktop %%DATADIR%%/stencils/LST/internal_subsystem.odg %%DATADIR%%/stencils/LST/internal_subsystem.png %%DATADIR%%/stencils/LST/it_subsystem.desktop %%DATADIR%%/stencils/LST/it_subsystem.odg %%DATADIR%%/stencils/LST/it_subsystem.png %%DATADIR%%/stencils/LST/memory_subsystem.desktop %%DATADIR%%/stencils/LST/memory_subsystem.odg %%DATADIR%%/stencils/LST/memory_subsystem.png %%DATADIR%%/stencils/LST/mestorage.desktop %%DATADIR%%/stencils/LST/mestorage.odg %%DATADIR%%/stencils/LST/mestorage.png %%DATADIR%%/stencils/LST/motor.desktop %%DATADIR%%/stencils/LST/motor.odg %%DATADIR%%/stencils/LST/motor.png %%DATADIR%%/stencils/LST/ot_subsystem.desktop %%DATADIR%%/stencils/LST/ot_subsystem.odg %%DATADIR%%/stencils/LST/ot_subsystem.png %%DATADIR%%/stencils/LST/producer.desktop %%DATADIR%%/stencils/LST/producer.odg %%DATADIR%%/stencils/LST/producer.png %%DATADIR%%/stencils/LST/reproducer_subsystem.desktop %%DATADIR%%/stencils/LST/reproducer_subsystem.odg %%DATADIR%%/stencils/LST/reproducer_subsystem.png %%DATADIR%%/stencils/LST/supporter_subsystem.desktop %%DATADIR%%/stencils/LST/supporter_subsystem.odg %%DATADIR%%/stencils/LST/supporter_subsystem.png %%DATADIR%%/stencils/LST/timer.desktop %%DATADIR%%/stencils/LST/timer.odg %%DATADIR%%/stencils/LST/timer.png %%DATADIR%%/stencils/Lights/ACL.desktop %%DATADIR%%/stencils/Lights/ACL.odg %%DATADIR%%/stencils/Lights/ACL.png %%DATADIR%%/stencils/Lights/Blacklight.desktop %%DATADIR%%/stencils/Lights/Blacklight.odg %%DATADIR%%/stencils/Lights/Blacklight.png %%DATADIR%%/stencils/Lights/Blinders.desktop %%DATADIR%%/stencils/Lights/Blinders.odg %%DATADIR%%/stencils/Lights/Blinders.png %%DATADIR%%/stencils/Lights/ERS.desktop %%DATADIR%%/stencils/Lights/ERS.odg %%DATADIR%%/stencils/Lights/ERS.png %%DATADIR%%/stencils/Lights/Fresnel.desktop %%DATADIR%%/stencils/Lights/Fresnel.odg %%DATADIR%%/stencils/Lights/Fresnel.png %%DATADIR%%/stencils/Lights/Moving_head.desktop %%DATADIR%%/stencils/Lights/Moving_head.odg %%DATADIR%%/stencils/Lights/Moving_head.png %%DATADIR%%/stencils/Lights/PAR.desktop %%DATADIR%%/stencils/Lights/PAR.odg %%DATADIR%%/stencils/Lights/PAR.png %%DATADIR%%/stencils/Lights/PAR_floor.desktop %%DATADIR%%/stencils/Lights/PAR_floor.odg %%DATADIR%%/stencils/Lights/PAR_floor.png %%DATADIR%%/stencils/Lights/PC.desktop %%DATADIR%%/stencils/Lights/PC.odg %%DATADIR%%/stencils/Lights/PC.png %%DATADIR%%/stencils/Lights/Scanner.desktop %%DATADIR%%/stencils/Lights/Scanner.odg %%DATADIR%%/stencils/Lights/Scanner.png %%DATADIR%%/stencils/Lights/Striplight.desktop %%DATADIR%%/stencils/Lights/Striplight.odg %%DATADIR%%/stencils/Lights/Striplight.png %%DATADIR%%/stencils/Lights/Stroboscope.desktop %%DATADIR%%/stencils/Lights/Stroboscope.odg %%DATADIR%%/stencils/Lights/Stroboscope.png %%DATADIR%%/stencils/Lights/Structure.desktop %%DATADIR%%/stencils/Lights/Structure.odg %%DATADIR%%/stencils/Lights/Structure.png %%DATADIR%%/stencils/Lights/collection.desktop %%DATADIR%%/stencils/Logic/and.desktop %%DATADIR%%/stencils/Logic/and.odg %%DATADIR%%/stencils/Logic/and.png %%DATADIR%%/stencils/Logic/buffer.desktop %%DATADIR%%/stencils/Logic/buffer.odg %%DATADIR%%/stencils/Logic/buffer.png %%DATADIR%%/stencils/Logic/collection.desktop %%DATADIR%%/stencils/Logic/connector.desktop %%DATADIR%%/stencils/Logic/connector.odg %%DATADIR%%/stencils/Logic/connector.png %%DATADIR%%/stencils/Logic/inverter.desktop %%DATADIR%%/stencils/Logic/inverter.odg %%DATADIR%%/stencils/Logic/inverter.png %%DATADIR%%/stencils/Logic/nand.desktop %%DATADIR%%/stencils/Logic/nand.odg %%DATADIR%%/stencils/Logic/nand.png %%DATADIR%%/stencils/Logic/nor.desktop %%DATADIR%%/stencils/Logic/nor.odg %%DATADIR%%/stencils/Logic/nor.png %%DATADIR%%/stencils/Logic/not.desktop %%DATADIR%%/stencils/Logic/not.odg %%DATADIR%%/stencils/Logic/not.png %%DATADIR%%/stencils/Logic/or.desktop %%DATADIR%%/stencils/Logic/or.odg %%DATADIR%%/stencils/Logic/or.png %%DATADIR%%/stencils/Logic/xor.desktop %%DATADIR%%/stencils/Logic/xor.odg %%DATADIR%%/stencils/Logic/xor.png %%DATADIR%%/stencils/MSE/collection.desktop %%DATADIR%%/stencils/MSE/demultiplexer.desktop %%DATADIR%%/stencils/MSE/demultiplexer.odg %%DATADIR%%/stencils/MSE/demultiplexer.png %%DATADIR%%/stencils/MSE/large_extension_node.desktop %%DATADIR%%/stencils/MSE/large_extension_node.odg %%DATADIR%%/stencils/MSE/large_extension_node.png %%DATADIR%%/stencils/MSE/multiplexer.desktop %%DATADIR%%/stencils/MSE/multiplexer.odg %%DATADIR%%/stencils/MSE/multiplexer.png %%DATADIR%%/stencils/MSE/node_center.desktop %%DATADIR%%/stencils/MSE/node_center.odg %%DATADIR%%/stencils/MSE/node_center.png %%DATADIR%%/stencils/MSE/small_extension_node.desktop %%DATADIR%%/stencils/MSE/small_extension_node.odg %%DATADIR%%/stencils/MSE/small_extension_node.png %%DATADIR%%/stencils/MSE/tacsat.desktop %%DATADIR%%/stencils/MSE/tacsat.odg %%DATADIR%%/stencils/MSE/tacsat.png %%DATADIR%%/stencils/Map/Block1.desktop %%DATADIR%%/stencils/Map/Block1.odg %%DATADIR%%/stencils/Map/Block1.png %%DATADIR%%/stencils/Map/Block2.desktop %%DATADIR%%/stencils/Map/Block2.odg %%DATADIR%%/stencils/Map/Block2.png %%DATADIR%%/stencils/Map/Block3.desktop %%DATADIR%%/stencils/Map/Block3.odg %%DATADIR%%/stencils/Map/Block3.png %%DATADIR%%/stencils/Map/Block4.desktop %%DATADIR%%/stencils/Map/Block4.odg %%DATADIR%%/stencils/Map/Block4.png %%DATADIR%%/stencils/Map/Block5.desktop %%DATADIR%%/stencils/Map/Block5.odg %%DATADIR%%/stencils/Map/Block5.png %%DATADIR%%/stencils/Map/Block6.desktop %%DATADIR%%/stencils/Map/Block6.odg %%DATADIR%%/stencils/Map/Block6.png %%DATADIR%%/stencils/Map/Block7.desktop %%DATADIR%%/stencils/Map/Block7.odg %%DATADIR%%/stencils/Map/Block7.png %%DATADIR%%/stencils/Map/Car1.desktop %%DATADIR%%/stencils/Map/Car1.odg %%DATADIR%%/stencils/Map/Car1.png %%DATADIR%%/stencils/Map/Car2.desktop %%DATADIR%%/stencils/Map/Car2.odg %%DATADIR%%/stencils/Map/Car2.png %%DATADIR%%/stencils/Map/Corner1.desktop %%DATADIR%%/stencils/Map/Corner1.odg %%DATADIR%%/stencils/Map/Corner1.png %%DATADIR%%/stencils/Map/Corner2.desktop %%DATADIR%%/stencils/Map/Corner2.odg %%DATADIR%%/stencils/Map/Corner2.png %%DATADIR%%/stencils/Map/Crossroads.desktop %%DATADIR%%/stencils/Map/Crossroads.odg %%DATADIR%%/stencils/Map/Crossroads.png %%DATADIR%%/stencils/Map/Elevated.desktop %%DATADIR%%/stencils/Map/Elevated.odg %%DATADIR%%/stencils/Map/Elevated.png %%DATADIR%%/stencils/Map/Factory.desktop %%DATADIR%%/stencils/Map/Factory.odg %%DATADIR%%/stencils/Map/Factory.png %%DATADIR%%/stencils/Map/FootBridge.desktop %%DATADIR%%/stencils/Map/FootBridge.odg %%DATADIR%%/stencils/Map/FootBridge.png %%DATADIR%%/stencils/Map/OneWay.desktop %%DATADIR%%/stencils/Map/OneWay.odg %%DATADIR%%/stencils/Map/OneWay.png %%DATADIR%%/stencils/Map/RedCar.desktop %%DATADIR%%/stencils/Map/RedCar.odg %%DATADIR%%/stencils/Map/RedCar.png %%DATADIR%%/stencils/Map/River.desktop %%DATADIR%%/stencils/Map/River.odg %%DATADIR%%/stencils/Map/River.png %%DATADIR%%/stencils/Map/Road1.desktop %%DATADIR%%/stencils/Map/Road1.odg %%DATADIR%%/stencils/Map/Road1.png %%DATADIR%%/stencils/Map/Roof1.desktop %%DATADIR%%/stencils/Map/Roof1.odg %%DATADIR%%/stencils/Map/Roof1.png %%DATADIR%%/stencils/Map/StraightRoad1.desktop %%DATADIR%%/stencils/Map/StraightRoad1.odg %%DATADIR%%/stencils/Map/StraightRoad1.png %%DATADIR%%/stencils/Map/T-Junction.desktop %%DATADIR%%/stencils/Map/T-Junction.odg %%DATADIR%%/stencils/Map/T-Junction.png %%DATADIR%%/stencils/Map/Train1.desktop %%DATADIR%%/stencils/Map/Train1.odg %%DATADIR%%/stencils/Map/Train1.png %%DATADIR%%/stencils/Map/Train2.desktop %%DATADIR%%/stencils/Map/Train2.odg %%DATADIR%%/stencils/Map/Train2.png %%DATADIR%%/stencils/Map/Tree1.desktop %%DATADIR%%/stencils/Map/Tree1.odg %%DATADIR%%/stencils/Map/Tree1.png %%DATADIR%%/stencils/Map/collection.desktop %%DATADIR%%/stencils/Misc/collection.desktop %%DATADIR%%/stencils/Misc/expended-node.desktop %%DATADIR%%/stencils/Misc/expended-node.odg %%DATADIR%%/stencils/Misc/expended-node.png %%DATADIR%%/stencils/Misc/expensible-node.desktop %%DATADIR%%/stencils/Misc/expensible-node.odg %%DATADIR%%/stencils/Misc/expensible-node.png %%DATADIR%%/stencils/Misc/file.desktop %%DATADIR%%/stencils/Misc/file.odg %%DATADIR%%/stencils/Misc/file.png %%DATADIR%%/stencils/Misc/folder.desktop %%DATADIR%%/stencils/Misc/folder.odg %%DATADIR%%/stencils/Misc/folder.png %%DATADIR%%/stencils/Network/antenna.desktop %%DATADIR%%/stencils/Network/antenna.odg %%DATADIR%%/stencils/Network/antenna.png %%DATADIR%%/stencils/Network/collection.desktop %%DATADIR%%/stencils/Network/computer.desktop %%DATADIR%%/stencils/Network/computer.odg %%DATADIR%%/stencils/Network/computer.png %%DATADIR%%/stencils/Network/dat_external.desktop %%DATADIR%%/stencils/Network/dat_external.odg %%DATADIR%%/stencils/Network/dat_external.png %%DATADIR%%/stencils/Network/digitizing_board.desktop %%DATADIR%%/stencils/Network/digitizing_board.odg %%DATADIR%%/stencils/Network/digitizing_board.png %%DATADIR%%/stencils/Network/disc.desktop %%DATADIR%%/stencils/Network/disc.odg %%DATADIR%%/stencils/Network/disc.png %%DATADIR%%/stencils/Network/diskette.desktop %%DATADIR%%/stencils/Network/diskette.odg %%DATADIR%%/stencils/Network/diskette.png %%DATADIR%%/stencils/Network/firewall.desktop %%DATADIR%%/stencils/Network/firewall.odg %%DATADIR%%/stencils/Network/firewall.png %%DATADIR%%/stencils/Network/flash.desktop %%DATADIR%%/stencils/Network/flash.odg %%DATADIR%%/stencils/Network/flash.png %%DATADIR%%/stencils/Network/genmonitor.desktop %%DATADIR%%/stencils/Network/genmonitor.odg %%DATADIR%%/stencils/Network/genmonitor.png %%DATADIR%%/stencils/Network/hub.desktop %%DATADIR%%/stencils/Network/hub.odg %%DATADIR%%/stencils/Network/hub.png %%DATADIR%%/stencils/Network/mobile_phone.desktop %%DATADIR%%/stencils/Network/mobile_phone.odg %%DATADIR%%/stencils/Network/mobile_phone.png %%DATADIR%%/stencils/Network/modem.desktop %%DATADIR%%/stencils/Network/modem.odg %%DATADIR%%/stencils/Network/modem.png %%DATADIR%%/stencils/Network/modularswitch.desktop %%DATADIR%%/stencils/Network/modularswitch.odg %%DATADIR%%/stencils/Network/modularswitch.png %%DATADIR%%/stencils/Network/monitor.desktop %%DATADIR%%/stencils/Network/monitor.odg %%DATADIR%%/stencils/Network/monitor.png %%DATADIR%%/stencils/Network/nwcloud.desktop %%DATADIR%%/stencils/Network/nwcloud.odg %%DATADIR%%/stencils/Network/nwcloud.png %%DATADIR%%/stencils/Network/patch-panel.desktop %%DATADIR%%/stencils/Network/patch-panel.odg %%DATADIR%%/stencils/Network/patch-panel.png %%DATADIR%%/stencils/Network/pc_bigtower.desktop %%DATADIR%%/stencils/Network/pc_bigtower.odg %%DATADIR%%/stencils/Network/pc_bigtower.png %%DATADIR%%/stencils/Network/pc_desktop.desktop %%DATADIR%%/stencils/Network/pc_desktop.odg %%DATADIR%%/stencils/Network/pc_desktop.png %%DATADIR%%/stencils/Network/pc_miditower.desktop %%DATADIR%%/stencils/Network/pc_miditower.odg %%DATADIR%%/stencils/Network/pc_miditower.png %%DATADIR%%/stencils/Network/pc_minitower.desktop %%DATADIR%%/stencils/Network/pc_minitower.odg %%DATADIR%%/stencils/Network/pc_minitower.png %%DATADIR%%/stencils/Network/plotter.desktop %%DATADIR%%/stencils/Network/plotter.odg %%DATADIR%%/stencils/Network/plotter.png %%DATADIR%%/stencils/Network/printer.desktop %%DATADIR%%/stencils/Network/printer.odg %%DATADIR%%/stencils/Network/printer.png %%DATADIR%%/stencils/Network/rj45plug.desktop %%DATADIR%%/stencils/Network/rj45plug.odg %%DATADIR%%/stencils/Network/rj45plug.png %%DATADIR%%/stencils/Network/router-symbol.desktop %%DATADIR%%/stencils/Network/router-symbol.odg %%DATADIR%%/stencils/Network/router-symbol.png %%DATADIR%%/stencils/Network/sceadplug.desktop %%DATADIR%%/stencils/Network/sceadplug.odg %%DATADIR%%/stencils/Network/sceadplug.png %%DATADIR%%/stencils/Network/speaker.desktop %%DATADIR%%/stencils/Network/speaker.odg %%DATADIR%%/stencils/Network/speaker.png %%DATADIR%%/stencils/Network/speaker_amp.desktop %%DATADIR%%/stencils/Network/speaker_amp.odg %%DATADIR%%/stencils/Network/speaker_amp.png %%DATADIR%%/stencils/Network/switch-atm-symbol.desktop %%DATADIR%%/stencils/Network/switch-atm-symbol.odg %%DATADIR%%/stencils/Network/switch-atm-symbol.png %%DATADIR%%/stencils/Network/switch-symbol.desktop %%DATADIR%%/stencils/Network/switch-symbol.odg %%DATADIR%%/stencils/Network/switch-symbol.png %%DATADIR%%/stencils/Network/telephone.desktop %%DATADIR%%/stencils/Network/telephone.odg %%DATADIR%%/stencils/Network/telephone.png %%DATADIR%%/stencils/Network/workstation.desktop %%DATADIR%%/stencils/Network/workstation.odg %%DATADIR%%/stencils/Network/workstation.png %%DATADIR%%/stencils/Network/zip-disk.desktop %%DATADIR%%/stencils/Network/zip-disk.odg %%DATADIR%%/stencils/Network/zip-disk.png %%DATADIR%%/stencils/Optics/atten.desktop %%DATADIR%%/stencils/Optics/atten.odg %%DATADIR%%/stencils/Optics/atten.png %%DATADIR%%/stencils/Optics/beam.desktop %%DATADIR%%/stencils/Optics/beam.odg %%DATADIR%%/stencils/Optics/beam.png %%DATADIR%%/stencils/Optics/circulator.desktop %%DATADIR%%/stencils/Optics/circulator.odg %%DATADIR%%/stencils/Optics/circulator.png %%DATADIR%%/stencils/Optics/collection.desktop %%DATADIR%%/stencils/Optics/coupler.desktop %%DATADIR%%/stencils/Optics/coupler.odg %%DATADIR%%/stencils/Optics/coupler.png %%DATADIR%%/stencils/Optics/coupler_vert.desktop %%DATADIR%%/stencils/Optics/coupler_vert.odg %%DATADIR%%/stencils/Optics/coupler_vert.png %%DATADIR%%/stencils/Optics/detector.desktop %%DATADIR%%/stencils/Optics/detector.odg %%DATADIR%%/stencils/Optics/detector.png %%DATADIR%%/stencils/Optics/detector_vert.desktop %%DATADIR%%/stencils/Optics/detector_vert.odg %%DATADIR%%/stencils/Optics/detector_vert.png %%DATADIR%%/stencils/Optics/dfb_laser.desktop %%DATADIR%%/stencils/Optics/dfb_laser.odg %%DATADIR%%/stencils/Optics/dfb_laser.png %%DATADIR%%/stencils/Optics/dfb_laser_big.png %%DATADIR%%/stencils/Optics/dfb_laser_vert.desktop %%DATADIR%%/stencils/Optics/dfb_laser_vert.odg %%DATADIR%%/stencils/Optics/dfb_laser_vert.png %%DATADIR%%/stencils/Optics/edfa.desktop %%DATADIR%%/stencils/Optics/edfa.odg %%DATADIR%%/stencils/Optics/edfa.png %%DATADIR%%/stencils/Optics/edfa_vert.desktop %%DATADIR%%/stencils/Optics/edfa_vert.odg %%DATADIR%%/stencils/Optics/edfa_vert.png %%DATADIR%%/stencils/Optics/fibre.desktop %%DATADIR%%/stencils/Optics/fibre.odg %%DATADIR%%/stencils/Optics/fibre.png %%DATADIR%%/stencils/Optics/fibre_vert.desktop %%DATADIR%%/stencils/Optics/fibre_vert.odg %%DATADIR%%/stencils/Optics/fibre_vert.png %%DATADIR%%/stencils/Optics/isolator.desktop %%DATADIR%%/stencils/Optics/isolator.odg %%DATADIR%%/stencils/Optics/isolator.png %%DATADIR%%/stencils/Optics/isolator_vert.desktop %%DATADIR%%/stencils/Optics/isolator_vert.odg %%DATADIR%%/stencils/Optics/isolator_vert.png %%DATADIR%%/stencils/Optics/lpg.desktop %%DATADIR%%/stencils/Optics/lpg.odg %%DATADIR%%/stencils/Optics/lpg.png %%DATADIR%%/stencils/Optics/lpg_vert.desktop %%DATADIR%%/stencils/Optics/lpg_vert.odg %%DATADIR%%/stencils/Optics/lpg_vert.png %%DATADIR%%/stencils/Optics/mod.desktop %%DATADIR%%/stencils/Optics/mod.odg %%DATADIR%%/stencils/Optics/mod.png %%DATADIR%%/stencils/Optics/mod_vert.desktop %%DATADIR%%/stencils/Optics/mod_vert.odg %%DATADIR%%/stencils/Optics/mod_vert.png %%DATADIR%%/stencils/Optics/phasemod.desktop %%DATADIR%%/stencils/Optics/phasemod.odg %%DATADIR%%/stencils/Optics/phasemod.png %%DATADIR%%/stencils/Optics/phasemod_vert.desktop %%DATADIR%%/stencils/Optics/phasemod_vert.odg %%DATADIR%%/stencils/Optics/phasemod_vert.png %%DATADIR%%/stencils/Optics/polarisation_control.desktop %%DATADIR%%/stencils/Optics/polarisation_control.odg %%DATADIR%%/stencils/Optics/polarisation_control.png %%DATADIR%%/stencils/Optics/polarisation_control_vert.desktop %%DATADIR%%/stencils/Optics/polarisation_control_vert.odg %%DATADIR%%/stencils/Optics/polarisation_control_vert.png %%DATADIR%%/stencils/Optics/scope.desktop %%DATADIR%%/stencils/Optics/scope.odg %%DATADIR%%/stencils/Optics/scope.png %%DATADIR%%/stencils/Optics/sine.desktop %%DATADIR%%/stencils/Optics/sine.odg %%DATADIR%%/stencils/Optics/sine.png %%DATADIR%%/stencils/Optics/spectrum.desktop %%DATADIR%%/stencils/Optics/spectrum.odg %%DATADIR%%/stencils/Optics/spectrum.png %%DATADIR%%/stencils/Optics/square.desktop %%DATADIR%%/stencils/Optics/square.odg %%DATADIR%%/stencils/Optics/square.png %%DATADIR%%/stencils/Optics/tuneable.desktop %%DATADIR%%/stencils/Optics/tuneable.odg %%DATADIR%%/stencils/Optics/tuneable.png %%DATADIR%%/stencils/Optics/wave.desktop %%DATADIR%%/stencils/Optics/wave.odg %%DATADIR%%/stencils/Optics/wave.png %%DATADIR%%/stencils/Pneumatic/cnx.desktop %%DATADIR%%/stencils/Pneumatic/cnx.odg %%DATADIR%%/stencils/Pneumatic/cnx.png %%DATADIR%%/stencils/Pneumatic/collection.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.desktop %%DATADIR%%/stencils/Pneumatic/comelec1.odg %%DATADIR%%/stencils/Pneumatic/comelec1.png %%DATADIR%%/stencils/Pneumatic/comelec2.desktop %%DATADIR%%/stencils/Pneumatic/comelec2.odg %%DATADIR%%/stencils/Pneumatic/comelec2.png %%DATADIR%%/stencils/Pneumatic/commusc.desktop %%DATADIR%%/stencils/Pneumatic/commusc.odg %%DATADIR%%/stencils/Pneumatic/commusc.png %%DATADIR%%/stencils/Pneumatic/compb.desktop %%DATADIR%%/stencils/Pneumatic/compb.odg %%DATADIR%%/stencils/Pneumatic/compb.png %%DATADIR%%/stencils/Pneumatic/compilh.desktop %%DATADIR%%/stencils/Pneumatic/compilh.odg %%DATADIR%%/stencils/Pneumatic/compilh.png %%DATADIR%%/stencils/Pneumatic/compilp.desktop %%DATADIR%%/stencils/Pneumatic/compilp.odg %%DATADIR%%/stencils/Pneumatic/compilp.png %%DATADIR%%/stencils/Pneumatic/compush.desktop %%DATADIR%%/stencils/Pneumatic/compush.odg %%DATADIR%%/stencils/Pneumatic/compush.png %%DATADIR%%/stencils/Pneumatic/comspr.desktop %%DATADIR%%/stencils/Pneumatic/comspr.odg %%DATADIR%%/stencils/Pneumatic/comspr.png %%DATADIR%%/stencils/Pneumatic/dejack.desktop %%DATADIR%%/stencils/Pneumatic/dejack.odg %%DATADIR%%/stencils/Pneumatic/dejack.png %%DATADIR%%/stencils/Pneumatic/dist22.desktop %%DATADIR%%/stencils/Pneumatic/dist22.odg %%DATADIR%%/stencils/Pneumatic/dist22.png %%DATADIR%%/stencils/Pneumatic/dist32.desktop %%DATADIR%%/stencils/Pneumatic/dist32.odg %%DATADIR%%/stencils/Pneumatic/dist32.png %%DATADIR%%/stencils/Pneumatic/dist42.desktop %%DATADIR%%/stencils/Pneumatic/dist42.odg %%DATADIR%%/stencils/Pneumatic/dist42.png %%DATADIR%%/stencils/Pneumatic/dist52.desktop %%DATADIR%%/stencils/Pneumatic/dist52.odg %%DATADIR%%/stencils/Pneumatic/dist52.png %%DATADIR%%/stencils/Pneumatic/drain.desktop %%DATADIR%%/stencils/Pneumatic/drain.odg %%DATADIR%%/stencils/Pneumatic/drain.png %%DATADIR%%/stencils/Pneumatic/press.desktop %%DATADIR%%/stencils/Pneumatic/press.odg %%DATADIR%%/stencils/Pneumatic/press.png %%DATADIR%%/stencils/Pneumatic/presshy.desktop %%DATADIR%%/stencils/Pneumatic/presshy.odg %%DATADIR%%/stencils/Pneumatic/presshy.png %%DATADIR%%/stencils/Pneumatic/presspn.desktop %%DATADIR%%/stencils/Pneumatic/presspn.odg %%DATADIR%%/stencils/Pneumatic/presspn.png %%DATADIR%%/stencils/Pneumatic/seijack.desktop %%DATADIR%%/stencils/Pneumatic/seijack.odg %%DATADIR%%/stencils/Pneumatic/seijack.png %%DATADIR%%/stencils/Pneumatic/seojack.desktop %%DATADIR%%/stencils/Pneumatic/seojack.odg %%DATADIR%%/stencils/Pneumatic/seojack.png %%DATADIR%%/stencils/RDP/collection.desktop %%DATADIR%%/stencils/RDP/place.desktop %%DATADIR%%/stencils/RDP/place.odg %%DATADIR%%/stencils/RDP/place.png %%DATADIR%%/stencils/RDP/place_marquee.desktop %%DATADIR%%/stencils/RDP/place_marquee.odg %%DATADIR%%/stencils/RDP/place_marquee.png %%DATADIR%%/stencils/RDP/t_transition.desktop %%DATADIR%%/stencils/RDP/t_transition.odg %%DATADIR%%/stencils/RDP/t_transition.png %%DATADIR%%/stencils/RDP/transition.desktop %%DATADIR%%/stencils/RDP/transition.odg %%DATADIR%%/stencils/RDP/transition.png %%DATADIR%%/stencils/Racks/collection.desktop %%DATADIR%%/stencils/Racks/equipment_10u.desktop %%DATADIR%%/stencils/Racks/equipment_10u.odg %%DATADIR%%/stencils/Racks/equipment_10u.png %%DATADIR%%/stencils/Racks/equipment_11u.desktop %%DATADIR%%/stencils/Racks/equipment_11u.odg %%DATADIR%%/stencils/Racks/equipment_11u.png %%DATADIR%%/stencils/Racks/equipment_12u.desktop %%DATADIR%%/stencils/Racks/equipment_12u.odg %%DATADIR%%/stencils/Racks/equipment_12u.png %%DATADIR%%/stencils/Racks/equipment_1u.desktop %%DATADIR%%/stencils/Racks/equipment_1u.odg %%DATADIR%%/stencils/Racks/equipment_1u.png %%DATADIR%%/stencils/Racks/equipment_2u.desktop %%DATADIR%%/stencils/Racks/equipment_2u.odg %%DATADIR%%/stencils/Racks/equipment_2u.png %%DATADIR%%/stencils/Racks/equipment_3u.desktop %%DATADIR%%/stencils/Racks/equipment_3u.odg %%DATADIR%%/stencils/Racks/equipment_3u.png %%DATADIR%%/stencils/Racks/equipment_4u.desktop %%DATADIR%%/stencils/Racks/equipment_4u.odg %%DATADIR%%/stencils/Racks/equipment_4u.png %%DATADIR%%/stencils/Racks/equipment_5u.desktop %%DATADIR%%/stencils/Racks/equipment_5u.odg %%DATADIR%%/stencils/Racks/equipment_5u.png %%DATADIR%%/stencils/Racks/equipment_6u.desktop %%DATADIR%%/stencils/Racks/equipment_6u.odg %%DATADIR%%/stencils/Racks/equipment_6u.png %%DATADIR%%/stencils/Racks/equipment_7u.desktop %%DATADIR%%/stencils/Racks/equipment_7u.odg %%DATADIR%%/stencils/Racks/equipment_7u.png %%DATADIR%%/stencils/Racks/equipment_8u.desktop %%DATADIR%%/stencils/Racks/equipment_8u.odg %%DATADIR%%/stencils/Racks/equipment_8u.png %%DATADIR%%/stencils/Racks/equipment_9u.desktop %%DATADIR%%/stencils/Racks/equipment_9u.odg %%DATADIR%%/stencils/Racks/equipment_9u.png %%DATADIR%%/stencils/Racks/power_strip_bs.png %%DATADIR%%/stencils/Racks/power_strip_bs_7.desktop %%DATADIR%%/stencils/Racks/power_strip_bs_7.odg %%DATADIR%%/stencils/Racks/power_strip_schuko.png %%DATADIR%%/stencils/Racks/power_strip_schuko_8.desktop %%DATADIR%%/stencils/Racks/power_strip_schuko_8.odg %%DATADIR%%/stencils/Racks/power_strip_ute.png %%DATADIR%%/stencils/Racks/power_strip_ute_8.desktop %%DATADIR%%/stencils/Racks/power_strip_ute_8.odg %%DATADIR%%/stencils/Racks/rack_12u.desktop %%DATADIR%%/stencils/Racks/rack_12u.odg %%DATADIR%%/stencils/Racks/rack_12u.png %%DATADIR%%/stencils/Racks/rack_16u.desktop %%DATADIR%%/stencils/Racks/rack_16u.odg %%DATADIR%%/stencils/Racks/rack_16u.png %%DATADIR%%/stencils/Racks/rack_20u.desktop %%DATADIR%%/stencils/Racks/rack_20u.odg %%DATADIR%%/stencils/Racks/rack_20u.png %%DATADIR%%/stencils/Racks/rack_38u.desktop %%DATADIR%%/stencils/Racks/rack_38u.odg %%DATADIR%%/stencils/Racks/rack_38u.png %%DATADIR%%/stencils/Racks/rack_42u.desktop %%DATADIR%%/stencils/Racks/rack_42u.odg %%DATADIR%%/stencils/Racks/rack_42u.png %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.desktop %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.odg %%DATADIR%%/stencils/Racks/rack_label_anchors_42u.png %%DATADIR%%/stencils/Renewable_Energy/collection.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.desktop %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.odg %%DATADIR%%/stencils/Renewable_Energy/cup_anemometer.png %%DATADIR%%/stencils/Renewable_Energy/data_logger.desktop %%DATADIR%%/stencils/Renewable_Energy/data_logger.odg %%DATADIR%%/stencils/Renewable_Energy/data_logger.png %%DATADIR%%/stencils/Renewable_Energy/meas_tower.desktop %%DATADIR%%/stencils/Renewable_Energy/meas_tower.odg %%DATADIR%%/stencils/Renewable_Energy/meas_tower.png %%DATADIR%%/stencils/Renewable_Energy/solar_module.desktop %%DATADIR%%/stencils/Renewable_Energy/solar_module.odg %%DATADIR%%/stencils/Renewable_Energy/solar_module.png %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.desktop %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.odg %%DATADIR%%/stencils/Renewable_Energy/temp_humi_sensor.png %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.odg %%DATADIR%%/stencils/Renewable_Energy/wind_turbine.png %%DATADIR%%/stencils/Renewable_Energy/wind_vane.desktop %%DATADIR%%/stencils/Renewable_Energy/wind_vane.odg %%DATADIR%%/stencils/Renewable_Energy/wind_vane.png %%DATADIR%%/stencils/SDL/block.desktop %%DATADIR%%/stencils/SDL/block.odg %%DATADIR%%/stencils/SDL/block.png %%DATADIR%%/stencils/SDL/collection.desktop %%DATADIR%%/stencils/SDL/comment.desktop %%DATADIR%%/stencils/SDL/comment.odg %%DATADIR%%/stencils/SDL/comment.png %%DATADIR%%/stencils/SDL/decision.desktop %%DATADIR%%/stencils/SDL/decision.odg %%DATADIR%%/stencils/SDL/decision.png %%DATADIR%%/stencils/SDL/function.desktop %%DATADIR%%/stencils/SDL/function.odg %%DATADIR%%/stencils/SDL/function.png %%DATADIR%%/stencils/SDL/header.desktop %%DATADIR%%/stencils/SDL/header.odg %%DATADIR%%/stencils/SDL/header.png %%DATADIR%%/stencils/SDL/inout.desktop %%DATADIR%%/stencils/SDL/inout.odg %%DATADIR%%/stencils/SDL/inout.png %%DATADIR%%/stencils/SDL/macro.desktop %%DATADIR%%/stencils/SDL/macro.odg %%DATADIR%%/stencils/SDL/macro.png %%DATADIR%%/stencils/SDL/note.desktop %%DATADIR%%/stencils/SDL/note.odg %%DATADIR%%/stencils/SDL/note.png %%DATADIR%%/stencils/SDL/process.desktop %%DATADIR%%/stencils/SDL/process.odg %%DATADIR%%/stencils/SDL/process.png %%DATADIR%%/stencils/SDL/receive.desktop %%DATADIR%%/stencils/SDL/receive.odg %%DATADIR%%/stencils/SDL/receive.png %%DATADIR%%/stencils/SDL/return.desktop %%DATADIR%%/stencils/SDL/return.odg %%DATADIR%%/stencils/SDL/return.png %%DATADIR%%/stencils/SDL/save.desktop %%DATADIR%%/stencils/SDL/save.odg %%DATADIR%%/stencils/SDL/save.png %%DATADIR%%/stencils/SDL/send.desktop %%DATADIR%%/stencils/SDL/send.odg %%DATADIR%%/stencils/SDL/send.png %%DATADIR%%/stencils/SDL/service.desktop %%DATADIR%%/stencils/SDL/service.odg %%DATADIR%%/stencils/SDL/service.png %%DATADIR%%/stencils/SDL/state.desktop %%DATADIR%%/stencils/SDL/state.odg %%DATADIR%%/stencils/SDL/state.png %%DATADIR%%/stencils/SDL/stop.desktop %%DATADIR%%/stencils/SDL/stop.odg %%DATADIR%%/stencils/SDL/stop.png %%DATADIR%%/stencils/SDL/task.desktop %%DATADIR%%/stencils/SDL/task.odg %%DATADIR%%/stencils/SDL/task.png %%DATADIR%%/stencils/Scenegraph/appearance.desktop %%DATADIR%%/stencils/Scenegraph/appearance.odg %%DATADIR%%/stencils/Scenegraph/appearance.png %%DATADIR%%/stencils/Scenegraph/callback.desktop %%DATADIR%%/stencils/Scenegraph/callback.odg %%DATADIR%%/stencils/Scenegraph/callback.png %%DATADIR%%/stencils/Scenegraph/camera.desktop %%DATADIR%%/stencils/Scenegraph/camera.odg %%DATADIR%%/stencils/Scenegraph/camera.png %%DATADIR%%/stencils/Scenegraph/collection.desktop %%DATADIR%%/stencils/Scenegraph/component.desktop %%DATADIR%%/stencils/Scenegraph/component.odg %%DATADIR%%/stencils/Scenegraph/component.png %%DATADIR%%/stencils/Scenegraph/engine.desktop %%DATADIR%%/stencils/Scenegraph/engine.odg %%DATADIR%%/stencils/Scenegraph/engine.png %%DATADIR%%/stencils/Scenegraph/field.desktop %%DATADIR%%/stencils/Scenegraph/field.odg %%DATADIR%%/stencils/Scenegraph/field.png %%DATADIR%%/stencils/Scenegraph/group.desktop %%DATADIR%%/stencils/Scenegraph/group.odg %%DATADIR%%/stencils/Scenegraph/group.png %%DATADIR%%/stencils/Scenegraph/light.desktop %%DATADIR%%/stencils/Scenegraph/light.odg %%DATADIR%%/stencils/Scenegraph/light.png %%DATADIR%%/stencils/Scenegraph/manipulator.desktop %%DATADIR%%/stencils/Scenegraph/manipulator.odg %%DATADIR%%/stencils/Scenegraph/manipulator.png %%DATADIR%%/stencils/Scenegraph/metric.desktop %%DATADIR%%/stencils/Scenegraph/metric.odg %%DATADIR%%/stencils/Scenegraph/metric.png %%DATADIR%%/stencils/Scenegraph/nodekit.desktop %%DATADIR%%/stencils/Scenegraph/nodekit.odg %%DATADIR%%/stencils/Scenegraph/nodekit.png %%DATADIR%%/stencils/Scenegraph/property.desktop %%DATADIR%%/stencils/Scenegraph/property.odg %%DATADIR%%/stencils/Scenegraph/property.png %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.desktop %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.odg %%DATADIR%%/stencils/Scenegraph/realtimeglobalfield.png %%DATADIR%%/stencils/Scenegraph/separator.desktop %%DATADIR%%/stencils/Scenegraph/separator.odg %%DATADIR%%/stencils/Scenegraph/separator.png %%DATADIR%%/stencils/Scenegraph/shape.desktop %%DATADIR%%/stencils/Scenegraph/shape.odg %%DATADIR%%/stencils/Scenegraph/shape.png %%DATADIR%%/stencils/Scenegraph/soselection.desktop %%DATADIR%%/stencils/Scenegraph/soselection.odg %%DATADIR%%/stencils/Scenegraph/soselection.png %%DATADIR%%/stencils/Scenegraph/subgraph.desktop %%DATADIR%%/stencils/Scenegraph/subgraph.odg %%DATADIR%%/stencils/Scenegraph/subgraph.png %%DATADIR%%/stencils/Scenegraph/switch.desktop %%DATADIR%%/stencils/Scenegraph/switch.odg %%DATADIR%%/stencils/Scenegraph/switch.png %%DATADIR%%/stencils/Scenegraph/transform.desktop %%DATADIR%%/stencils/Scenegraph/transform.odg %%DATADIR%%/stencils/Scenegraph/transform.png %%DATADIR%%/stencils/Sybase/client.desktop %%DATADIR%%/stencils/Sybase/client.odg %%DATADIR%%/stencils/Sybase/client.png %%DATADIR%%/stencils/Sybase/collection.desktop %%DATADIR%%/stencils/Sybase/dataserver.desktop %%DATADIR%%/stencils/Sybase/dataserver.odg %%DATADIR%%/stencils/Sybase/dataserver.png %%DATADIR%%/stencils/Sybase/ltm.desktop %%DATADIR%%/stencils/Sybase/ltm.odg %%DATADIR%%/stencils/Sybase/ltm.png %%DATADIR%%/stencils/Sybase/repserver.desktop %%DATADIR%%/stencils/Sybase/repserver.odg %%DATADIR%%/stencils/Sybase/repserver.png %%DATADIR%%/stencils/Sybase/rsm.desktop %%DATADIR%%/stencils/Sybase/rsm.odg %%DATADIR%%/stencils/Sybase/rsm.png %%DATADIR%%/stencils/Sybase/stableq.desktop %%DATADIR%%/stencils/Sybase/stableq.odg %%DATADIR%%/stencils/Sybase/stableq.png %%DATADIR%%/stencils/Value_Stream_Mapping/collection.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.desktop %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.odg %%DATADIR%%/stencils/Value_Stream_Mapping/happy_face.png %%DATADIR%%/styles/markers.xml %%DATADIR%%/thesaurus/thesaurus.txt share/calligra_shape_music/fonts/Emmentaler-14.ttf share/calligrasheets/CellToolOptionWidgets.xml share/calligrasheets/dtd/kspread.dtd share/calligrasheets/functions/bitops.xml share/calligrasheets/functions/conversion.xml share/calligrasheets/functions/database.xml share/calligrasheets/functions/datetime.xml share/calligrasheets/functions/engineering.xml share/calligrasheets/functions/financial.xml share/calligrasheets/functions/information.xml share/calligrasheets/functions/logic.xml share/calligrasheets/functions/math.xml share/calligrasheets/functions/reference.xml share/calligrasheets/functions/statistical.xml share/calligrasheets/functions/text.xml share/calligrasheets/functions/trig.xml share/calligrasheets/icons/hicolor/16x16/actions/adjustcol.png share/calligrasheets/icons/hicolor/16x16/actions/adjustrow.png share/calligrasheets/icons/hicolor/16x16/actions/black_sum.png share/calligrasheets/icons/hicolor/16x16/actions/cell_edit.png share/calligrasheets/icons/hicolor/16x16/actions/cell_layout.png share/calligrasheets/icons/hicolor/16x16/actions/delete-comment.png share/calligrasheets/icons/hicolor/16x16/actions/delete_table.png share/calligrasheets/icons/hicolor/16x16/actions/deletecell.png share/calligrasheets/icons/hicolor/16x16/actions/dissociatecell.png share/calligrasheets/icons/hicolor/16x16/actions/edit-comment.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-bottom.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-center.png share/calligrasheets/icons/hicolor/16x16/actions/format-align-vertical-top.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/16x16/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/16x16/actions/format-currency.png share/calligrasheets/icons/hicolor/16x16/actions/format-number-percent.png share/calligrasheets/icons/hicolor/16x16/actions/format-precision-less.png share/calligrasheets/icons/hicolor/16x16/actions/format-precision-more.png share/calligrasheets/icons/hicolor/16x16/actions/format-text-capitalize.png share/calligrasheets/icons/hicolor/16x16/actions/format-text-direction-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/hide_table_column.png share/calligrasheets/icons/hicolor/16x16/actions/hide_table_row.png share/calligrasheets/icons/hicolor/16x16/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/16x16/actions/insertcell.png share/calligrasheets/icons/hicolor/16x16/actions/insertcellcopy.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell-horizontal.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell-vertical.png share/calligrasheets/icons/hicolor/16x16/actions/mergecell.png share/calligrasheets/icons/hicolor/16x16/actions/multirow.png share/calligrasheets/icons/hicolor/16x16/actions/removecell.png share/calligrasheets/icons/hicolor/16x16/actions/resizecol.png share/calligrasheets/icons/hicolor/16x16/actions/resizerow.png share/calligrasheets/icons/hicolor/16x16/actions/selection.png share/calligrasheets/icons/hicolor/16x16/actions/series.png share/calligrasheets/icons/hicolor/16x16/actions/show_table_column.png share/calligrasheets/icons/hicolor/16x16/actions/show_table_row.png share/calligrasheets/icons/hicolor/16x16/actions/special_paste.png share/calligrasheets/icons/hicolor/22x22/actions/black_sum.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-bottom.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-center.png share/calligrasheets/icons/hicolor/22x22/actions/format-align-vertical-top.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/22x22/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/22x22/actions/format-currency.png share/calligrasheets/icons/hicolor/22x22/actions/format-number-percent.png share/calligrasheets/icons/hicolor/22x22/actions/format-precision-less.png share/calligrasheets/icons/hicolor/22x22/actions/format-precision-more.png share/calligrasheets/icons/hicolor/22x22/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell-horizontal.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell-vertical.png share/calligrasheets/icons/hicolor/22x22/actions/mergecell.png share/calligrasheets/icons/hicolor/22x22/actions/multirow.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-all.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-bottom.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-diagonal-bl-tr.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-diagonal-tl-br.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-external.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal-horizontal.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal-vertical.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-internal.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-left.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-none.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-right.png share/calligrasheets/icons/hicolor/32x32/actions/format-border-set-top.png share/calligrasheets/icons/hicolor/32x32/actions/format-number-percent.png share/calligrasheets/icons/hicolor/32x32/actions/format-precision-less.png share/calligrasheets/icons/hicolor/32x32/actions/format-precision-more.png share/calligrasheets/icons/hicolor/32x32/actions/insert-math-expression.png share/calligrasheets/icons/hicolor/48x48/actions/template_balancesheet.png share/calligrasheets/icons/hicolor/48x48/actions/template_bmi.png share/calligrasheets/icons/hicolor/48x48/actions/template_creditcardtracker.png share/calligrasheets/icons/hicolor/48x48/actions/template_expensereport.png share/calligrasheets/icons/hicolor/48x48/actions/template_invoice.png share/calligrasheets/icons/hicolor/48x48/actions/template_menuplan.png share/calligrasheets/icons/hicolor/48x48/actions/template_packingslip.png share/calligrasheets/icons/hicolor/48x48/actions/template_pricequotation.png share/calligrasheets/icons/hicolor/48x48/actions/template_studentidcard.png share/calligrasheets/icons/hicolor/48x48/actions/template_vacationchecklist.png share/calligrasheets/icons/hicolor/48x48/actions/template_worksheet.png share/calligrasheets/icons/hicolor/scalable/actions/template_balancesheet.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_bmi.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_creditcardtracker.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_expensereport.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_invoice.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_menuplan.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_packingslip.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_pricequotation.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_studentidcard.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_vacationchecklist.svgz share/calligrasheets/icons/hicolor/scalable/actions/template_worksheet.svgz share/calligrasheets/sheetstyles/standard1.ksts share/calligrasheets/sheetstyles/standard1.png share/calligrasheets/sheetstyles/standard1.xml share/calligrasheets/sheetstyles/standard2.ksts share/calligrasheets/sheetstyles/standard2.png share/calligrasheets/sheetstyles/standard2.xml share/calligrasheets/templates/Business/.directory share/calligrasheets/templates/Business/.source/BalanceSheet.kst share/calligrasheets/templates/Business/.source/ExpenseReport.kst share/calligrasheets/templates/Business/.source/Invoice.kst share/calligrasheets/templates/Business/.source/PackingSlip.kst share/calligrasheets/templates/Business/.source/PriceQuotation.kst share/calligrasheets/templates/Business/BalanceSheet.desktop share/calligrasheets/templates/Business/ExpenseReport.desktop share/calligrasheets/templates/Business/Invoice.desktop share/calligrasheets/templates/Business/PackingSlip.desktop share/calligrasheets/templates/Business/PriceQuotation.desktop share/calligrasheets/templates/General/.directory share/calligrasheets/templates/General/.source/StudentIDCard.kst share/calligrasheets/templates/General/.source/Worksheet.kst share/calligrasheets/templates/General/StudentIDCard.desktop share/calligrasheets/templates/General/Worksheet.desktop share/calligrasheets/templates/HomeFamily/.directory share/calligrasheets/templates/HomeFamily/.source/BMI.kst share/calligrasheets/templates/HomeFamily/.source/CreditCardTracker.kst share/calligrasheets/templates/HomeFamily/.source/MenuPlan.kst share/calligrasheets/templates/HomeFamily/.source/VacationChecklist.kst share/calligrasheets/templates/HomeFamily/BMI.desktop share/calligrasheets/templates/HomeFamily/CreditCardTracker.desktop share/calligrasheets/templates/HomeFamily/MenuPlan.desktop share/calligrasheets/templates/HomeFamily/VacationChecklist.desktop share/calligrasheets/viewplugins/solver.rc share/calligrastage/animations/animations.xml share/calligrastage/cursors/pen.png share/calligrastage/icons/hicolor/16x16/actions/highlight-pointer-spot.png share/calligrastage/icons/hicolor/16x16/actions/pause-to-black-screen.png share/calligrastage/icons/hicolor/32x32/actions/after_previous.png share/calligrastage/icons/hicolor/32x32/actions/edit_animation.png share/calligrastage/icons/hicolor/32x32/actions/onclick.png share/calligrastage/icons/hicolor/32x32/actions/unrecognized_animation.png share/calligrastage/icons/hicolor/32x32/actions/with_previous.png share/calligrastage/icons/hicolor/48x48/actions/template_emptylandscape.png share/calligrastage/icons/hicolor/64x64/actions/appear_animation.png share/calligrastage/icons/hicolor/64x64/actions/blue_orange_vector.png share/calligrastage/icons/hicolor/64x64/actions/bounce_animation.png share/calligrastage/icons/hicolor/64x64/actions/burning_desire.png share/calligrastage/icons/hicolor/64x64/actions/business.png share/calligrastage/icons/hicolor/64x64/actions/collapse_animation.png share/calligrastage/icons/hicolor/64x64/actions/crawl_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/curious_penguin.png share/calligrastage/icons/hicolor/64x64/actions/custom_animations.png share/calligrastage/icons/hicolor/64x64/actions/disappear_animation.png share/calligrastage/icons/hicolor/64x64/actions/emphasis_animations.png share/calligrastage/icons/hicolor/64x64/actions/entrance_animations.png share/calligrastage/icons/hicolor/64x64/actions/exit_animations.png share/calligrastage/icons/hicolor/64x64/actions/falling_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/flash_once_animation.png share/calligrastage/icons/hicolor/64x64/actions/flood_light.png share/calligrastage/icons/hicolor/64x64/actions/fly_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/fly_in_slow_animation.png share/calligrastage/icons/hicolor/64x64/actions/fly_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/horizontal_animations.png share/calligrastage/icons/hicolor/64x64/actions/in_animations.png share/calligrastage/icons/hicolor/64x64/actions/kde_events.png share/calligrastage/icons/hicolor/64x64/actions/motion_path_animations.png share/calligrastage/icons/hicolor/64x64/actions/movie_credits_animation.png share/calligrastage/icons/hicolor/64x64/actions/out_animations.png share/calligrastage/icons/hicolor/64x64/actions/rounded_square.png share/calligrastage/icons/hicolor/64x64/actions/simple_waves.png share/calligrastage/icons/hicolor/64x64/actions/skyline_monotone.png share/calligrastage/icons/hicolor/64x64/actions/skyline_monotone_wide.png share/calligrastage/icons/hicolor/64x64/actions/skyline_morning.png share/calligrastage/icons/hicolor/64x64/actions/skyline_morning_wide.png share/calligrastage/icons/hicolor/64x64/actions/skyline_night.png share/calligrastage/icons/hicolor/64x64/actions/skyline_night_wide.png share/calligrastage/icons/hicolor/64x64/actions/spiral_in_animation.png share/calligrastage/icons/hicolor/64x64/actions/spiral_out_animation.png share/calligrastage/icons/hicolor/64x64/actions/strange_far_hills.png share/calligrastage/icons/hicolor/64x64/actions/stretchy_animation.png share/calligrastage/icons/hicolor/64x64/actions/swish_animation.png share/calligrastage/icons/hicolor/64x64/actions/swivel_animation.png share/calligrastage/icons/hicolor/64x64/actions/thread_animation.png share/calligrastage/icons/hicolor/64x64/actions/vertical_animations.png share/calligrastage/icons/hicolor/64x64/actions/zoom_animation.png share/calligrastage/icons/hicolor/scalable/actions/cohere-blue.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-gold.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-magenta.svgz share/calligrastage/icons/hicolor/scalable/actions/cohere-red.svgz share/calligrastage/icons/hicolor/scalable/actions/template_emptylandscape.svgz share/calligrastage/pics/layout-elements.svg share/calligrastage/styles/defaultstyles.xml share/calligrastage/templates/Screen/.directory share/calligrastage/templates/Screen/.source/emptyLandscape.otp share/calligrastage/templates/Screen/.source/emptyLandscapeWide.otp share/calligrastage/templates/Screen/emptyLandscape.desktop share/calligrastage/templates/Screen/emptyLandscapeWide.desktop share/calligrastage/templates/exportHTML/slides.html share/calligrastage/templates/exportHTML/templates/stage.zip share/calligrastage/templates/exportHTML/toc.html share/calligrastage/templates/odf/.directory share/calligrastage/templates/odf/.source/blue_orange_vector.otp share/calligrastage/templates/odf/.source/burning_desire.otp share/calligrastage/templates/odf/.source/business.otp share/calligrastage/templates/odf/.source/cohere-blue.otp share/calligrastage/templates/odf/.source/cohere-gold.otp share/calligrastage/templates/odf/.source/cohere-magenta.otp share/calligrastage/templates/odf/.source/cohere-red.otp share/calligrastage/templates/odf/.source/curious_penguin.otp share/calligrastage/templates/odf/.source/flood_light.otp share/calligrastage/templates/odf/.source/kde_events.otp share/calligrastage/templates/odf/.source/rounded_square.otp share/calligrastage/templates/odf/.source/simple_waves.otp share/calligrastage/templates/odf/.source/skyline_monotone.otp share/calligrastage/templates/odf/.source/skyline_monotone_wide.otp share/calligrastage/templates/odf/.source/skyline_morning.otp share/calligrastage/templates/odf/.source/skyline_morning_wide.otp share/calligrastage/templates/odf/.source/skyline_night.otp share/calligrastage/templates/odf/.source/skyline_night_wide.otp share/calligrastage/templates/odf/.source/strange_far_hills.otp share/calligrastage/templates/odf/.thumbnail/blue_orange_vector.png share/calligrastage/templates/odf/.thumbnail/burning_desire.png share/calligrastage/templates/odf/.thumbnail/business.png share/calligrastage/templates/odf/.thumbnail/cohere-blue.png share/calligrastage/templates/odf/.thumbnail/cohere-gold.png share/calligrastage/templates/odf/.thumbnail/cohere-magenta.png share/calligrastage/templates/odf/.thumbnail/cohere-red.png share/calligrastage/templates/odf/.thumbnail/curious_penguin.png share/calligrastage/templates/odf/.thumbnail/flood_light.png share/calligrastage/templates/odf/.thumbnail/kde_events.png share/calligrastage/templates/odf/.thumbnail/rounded_square.png share/calligrastage/templates/odf/.thumbnail/simple_waves.png share/calligrastage/templates/odf/.thumbnail/skyline_monotone.png share/calligrastage/templates/odf/.thumbnail/skyline_monotone_wide.png share/calligrastage/templates/odf/.thumbnail/skyline_morning.png share/calligrastage/templates/odf/.thumbnail/skyline_morning_wide.png share/calligrastage/templates/odf/.thumbnail/skyline_night.png share/calligrastage/templates/odf/.thumbnail/skyline_night_wide.png share/calligrastage/templates/odf/.thumbnail/strange_far_hills.png share/calligrastage/templates/odf/blue_orange_vector.desktop share/calligrastage/templates/odf/burning_desire.desktop share/calligrastage/templates/odf/business.desktop share/calligrastage/templates/odf/cohere-blue.desktop share/calligrastage/templates/odf/cohere-gold.desktop share/calligrastage/templates/odf/cohere-magenta.desktop share/calligrastage/templates/odf/cohere-red.desktop share/calligrastage/templates/odf/curious_penguin.desktop share/calligrastage/templates/odf/flood_light.desktop share/calligrastage/templates/odf/kde_events.desktop share/calligrastage/templates/odf/rounded_square.desktop share/calligrastage/templates/odf/simple_waves.desktop share/calligrastage/templates/odf/skyline_monotone.desktop share/calligrastage/templates/odf/skyline_monotone_wide.desktop share/calligrastage/templates/odf/skyline_morning.desktop share/calligrastage/templates/odf/skyline_morning_wide.desktop share/calligrastage/templates/odf/skyline_night.desktop share/calligrastage/templates/odf/skyline_night_wide.desktop share/calligrastage/templates/odf/strange_far_hills.desktop share/calligrawords/icons/hicolor/128x128/actions/template_a4.png share/calligrawords/icons/hicolor/128x128/actions/template_colorful.png share/calligrawords/icons/hicolor/128x128/actions/template_fax.png share/calligrawords/icons/hicolor/128x128/actions/template_letter.png share/calligrawords/icons/hicolor/22x22/actions/tool_pagelayout.png share/calligrawords/icons/hicolor/48x48/actions/template_a4.png share/calligrawords/icons/hicolor/48x48/actions/template_colorful.png share/calligrawords/icons/hicolor/48x48/actions/template_fax.png share/calligrawords/icons/hicolor/48x48/actions/template_letter.png share/calligrawords/icons/hicolor/48x48/actions/template_plaintext.png share/calligrawords/icons/hicolor/scalable/actions/template_a4.svgz share/calligrawords/icons/hicolor/scalable/actions/template_fax.svgz share/calligrawords/icons/hicolor/scalable/actions/template_letter.svgz share/calligrawords/styles/defaultstyles.xml share/calligrawords/templates/Normal/.directory share/calligrawords/templates/Normal/.source/A4.odt share/calligrawords/templates/Normal/.source/ColorfulLetter.odt share/calligrawords/templates/Normal/.source/FaxLetter.odt share/calligrawords/templates/Normal/.source/ProfessionalLetter.odt share/calligrawords/templates/Normal/.thumbnail/a4.png share/calligrawords/templates/Normal/.thumbnail/colorful.png share/calligrawords/templates/Normal/.thumbnail/fax.png share/calligrawords/templates/Normal/.thumbnail/professional.png share/calligrawords/templates/Normal/A4.desktop share/calligrawords/templates/Normal/ColorfulLetter.desktop share/calligrawords/templates/Normal/FaxLetter.desktop share/calligrawords/templates/Normal/ProfessionalLetter.desktop share/config.kcfg/calligrasheets.kcfg share/doc/HTML/ca/calligra/index.cache.bz2 share/doc/HTML/ca/calligra/index.docbook share/doc/HTML/ca/sheets/advanced.docbook share/doc/HTML/ca/sheets/basics.docbook share/doc/HTML/ca/sheets/commands.docbook share/doc/HTML/ca/sheets/config.docbook share/doc/HTML/ca/sheets/configdialog.docbook share/doc/HTML/ca/sheets/format.docbook share/doc/HTML/ca/sheets/functions.docbook share/doc/HTML/ca/sheets/index.cache.bz2 share/doc/HTML/ca/sheets/index.docbook share/doc/HTML/ca/stage/great-presentations.docbook share/doc/HTML/ca/stage/guides.docbook share/doc/HTML/ca/stage/index.cache.bz2 share/doc/HTML/ca/stage/index.docbook share/doc/HTML/ca/stage/menus.docbook share/doc/HTML/ca/stage/options.docbook share/doc/HTML/ca/stage/tutorial.docbook share/doc/HTML/de/calligra/index.cache.bz2 share/doc/HTML/de/calligra/index.docbook share/doc/HTML/de/stage/great-presentations.docbook share/doc/HTML/de/stage/guides.docbook share/doc/HTML/de/stage/index.cache.bz2 share/doc/HTML/de/stage/index.docbook share/doc/HTML/de/stage/menus.docbook share/doc/HTML/de/stage/options.docbook share/doc/HTML/de/stage/tutorial.docbook share/doc/HTML/en/calligra/index.cache.bz2 share/doc/HTML/en/calligra/index.docbook -share/doc/HTML/en/calligrasheets/advanced.docbook -share/doc/HTML/en/calligrasheets/basics.docbook -share/doc/HTML/en/calligrasheets/cellformat0.png -share/doc/HTML/en/calligrasheets/cellformat1.png -share/doc/HTML/en/calligrasheets/cellformat2.png -share/doc/HTML/en/calligrasheets/cellformat3.png -share/doc/HTML/en/calligrasheets/cellformat4.png -share/doc/HTML/en/calligrasheets/cellformat5.png -share/doc/HTML/en/calligrasheets/cellformat6.png -share/doc/HTML/en/calligrasheets/cellprotection1.png -share/doc/HTML/en/calligrasheets/cellprotection2.png -share/doc/HTML/en/calligrasheets/chart1.png -share/doc/HTML/en/calligrasheets/commands.docbook -share/doc/HTML/en/calligrasheets/config.docbook -share/doc/HTML/en/calligrasheets/configdialog.docbook -share/doc/HTML/en/calligrasheets/configure2.png -share/doc/HTML/en/calligrasheets/configure3.png -share/doc/HTML/en/calligrasheets/configure4.png -share/doc/HTML/en/calligrasheets/configure5.png -share/doc/HTML/en/calligrasheets/configure6.png -share/doc/HTML/en/calligrasheets/copy1.png -share/doc/HTML/en/calligrasheets/decreasedecimal.png -share/doc/HTML/en/calligrasheets/format.docbook -share/doc/HTML/en/calligrasheets/functions.docbook -share/doc/HTML/en/calligrasheets/hi22-action-money.png -share/doc/HTML/en/calligrasheets/hideformula1.png -share/doc/HTML/en/calligrasheets/hideformula2.png -share/doc/HTML/en/calligrasheets/hideformula3.png -share/doc/HTML/en/calligrasheets/hideformula4.png -share/doc/HTML/en/calligrasheets/hideformula5.png -share/doc/HTML/en/calligrasheets/increasedecimal.png -share/doc/HTML/en/calligrasheets/index.cache.bz2 -share/doc/HTML/en/calligrasheets/index.docbook -share/doc/HTML/en/calligrasheets/newdocument.png -share/doc/HTML/en/calligrasheets/percent.png -share/doc/HTML/en/calligrasheets/pivot1.png -share/doc/HTML/en/calligrasheets/pivot2.png -share/doc/HTML/en/calligrasheets/pivot3.png -share/doc/HTML/en/calligrasheets/pivot4.png -share/doc/HTML/en/calligrasheets/sheetproperties.png -share/doc/HTML/en/calligrasheets/shortcut1.png -share/doc/HTML/en/calligrasheets/sort1.png -share/doc/HTML/en/calligrasheets/starting1.png -share/doc/HTML/en/calligrastage/22x22-actions-format-text-color.png -share/doc/HTML/en/calligrastage/barstyle1.png -share/doc/HTML/en/calligrastage/break.png -share/doc/HTML/en/calligrastage/configure-author.png -share/doc/HTML/en/calligrastage/configure-document.png -share/doc/HTML/en/calligrastage/configure-grid.png -share/doc/HTML/en/calligrastage/configure-misc.png -share/doc/HTML/en/calligrastage/great-presentations.docbook -share/doc/HTML/en/calligrastage/guides.docbook -share/doc/HTML/en/calligrastage/htmlshow3.png -share/doc/HTML/en/calligrastage/htmlshow9.png -share/doc/HTML/en/calligrastage/index.cache.bz2 -share/doc/HTML/en/calligrastage/index.docbook -share/doc/HTML/en/calligrastage/link.png -share/doc/HTML/en/calligrastage/menus.docbook -share/doc/HTML/en/calligrastage/options.docbook -share/doc/HTML/en/calligrastage/settings03.png -share/doc/HTML/en/calligrastage/settings04.png -share/doc/HTML/en/calligrastage/template03.png -share/doc/HTML/en/calligrastage/template04.png -share/doc/HTML/en/calligrastage/tut01.png -share/doc/HTML/en/calligrastage/tut03.png -share/doc/HTML/en/calligrastage/tut04.png -share/doc/HTML/en/calligrastage/tut07.png -share/doc/HTML/en/calligrastage/tut09.png -share/doc/HTML/en/calligrastage/tut10.png -share/doc/HTML/en/calligrastage/tut13.png -share/doc/HTML/en/calligrastage/tut19.png -share/doc/HTML/en/calligrastage/tut20.png -share/doc/HTML/en/calligrastage/tut21.png -share/doc/HTML/en/calligrastage/tut25.png -share/doc/HTML/en/calligrastage/tut26.png -share/doc/HTML/en/calligrastage/tutorial.docbook +share/doc/HTML/en/sheets/advanced.docbook +share/doc/HTML/en/sheets/basics.docbook +share/doc/HTML/en/sheets/cellformat0.png +share/doc/HTML/en/sheets/cellformat1.png +share/doc/HTML/en/sheets/cellformat2.png +share/doc/HTML/en/sheets/cellformat3.png +share/doc/HTML/en/sheets/cellformat4.png +share/doc/HTML/en/sheets/cellformat5.png +share/doc/HTML/en/sheets/cellformat6.png +share/doc/HTML/en/sheets/cellprotection1.png +share/doc/HTML/en/sheets/cellprotection2.png +share/doc/HTML/en/sheets/chart1.png +share/doc/HTML/en/sheets/commands.docbook +share/doc/HTML/en/sheets/config.docbook +share/doc/HTML/en/sheets/configdialog.docbook +share/doc/HTML/en/sheets/configure2.png +share/doc/HTML/en/sheets/configure3.png +share/doc/HTML/en/sheets/configure4.png +share/doc/HTML/en/sheets/configure5.png +share/doc/HTML/en/sheets/configure6.png +share/doc/HTML/en/sheets/copy1.png +share/doc/HTML/en/sheets/decreasedecimal.png +share/doc/HTML/en/sheets/format.docbook +share/doc/HTML/en/sheets/functions.docbook +share/doc/HTML/en/sheets/hi22-action-money.png +share/doc/HTML/en/sheets/hideformula1.png +share/doc/HTML/en/sheets/hideformula2.png +share/doc/HTML/en/sheets/hideformula3.png +share/doc/HTML/en/sheets/hideformula4.png +share/doc/HTML/en/sheets/hideformula5.png +share/doc/HTML/en/sheets/increasedecimal.png +share/doc/HTML/en/sheets/index.cache.bz2 +share/doc/HTML/en/sheets/index.docbook +share/doc/HTML/en/sheets/newdocument.png +share/doc/HTML/en/sheets/percent.png +share/doc/HTML/en/sheets/pivot1.png +share/doc/HTML/en/sheets/pivot2.png +share/doc/HTML/en/sheets/pivot3.png +share/doc/HTML/en/sheets/pivot4.png +share/doc/HTML/en/sheets/sheetproperties.png +share/doc/HTML/en/sheets/shortcut1.png +share/doc/HTML/en/sheets/sort1.png +share/doc/HTML/en/sheets/starting1.png +share/doc/HTML/en/stage/22x22-actions-format-text-color.png +share/doc/HTML/en/stage/barstyle1.png +share/doc/HTML/en/stage/break.png +share/doc/HTML/en/stage/configure-author.png +share/doc/HTML/en/stage/configure-document.png +share/doc/HTML/en/stage/configure-grid.png +share/doc/HTML/en/stage/configure-misc.png +share/doc/HTML/en/stage/great-presentations.docbook +share/doc/HTML/en/stage/guides.docbook +share/doc/HTML/en/stage/htmlshow3.png +share/doc/HTML/en/stage/htmlshow9.png +share/doc/HTML/en/stage/index.cache.bz2 +share/doc/HTML/en/stage/index.docbook +share/doc/HTML/en/stage/link.png +share/doc/HTML/en/stage/menus.docbook +share/doc/HTML/en/stage/options.docbook +share/doc/HTML/en/stage/settings03.png +share/doc/HTML/en/stage/settings04.png +share/doc/HTML/en/stage/template03.png +share/doc/HTML/en/stage/template04.png +share/doc/HTML/en/stage/tut%%KDE_APPLICATIONS_VERSION_SHORT%%.png +share/doc/HTML/en/stage/tut01.png +share/doc/HTML/en/stage/tut03.png +share/doc/HTML/en/stage/tut04.png +share/doc/HTML/en/stage/tut07.png +share/doc/HTML/en/stage/tut09.png +share/doc/HTML/en/stage/tut10.png +share/doc/HTML/en/stage/tut13.png +share/doc/HTML/en/stage/tut19.png +share/doc/HTML/en/stage/tut20.png +share/doc/HTML/en/stage/tut21.png +share/doc/HTML/en/stage/tut26.png +share/doc/HTML/en/stage/tutorial.docbook share/doc/HTML/es/calligra/index.cache.bz2 share/doc/HTML/es/calligra/index.docbook share/doc/HTML/es/sheets/advanced.docbook share/doc/HTML/es/sheets/basics.docbook share/doc/HTML/es/sheets/cellformat0.png share/doc/HTML/es/sheets/cellformat1.png share/doc/HTML/es/sheets/cellformat2.png share/doc/HTML/es/sheets/cellformat3.png share/doc/HTML/es/sheets/cellformat4.png share/doc/HTML/es/sheets/cellformat5.png share/doc/HTML/es/sheets/cellformat6.png share/doc/HTML/es/sheets/cellprotection1.png share/doc/HTML/es/sheets/cellprotection2.png share/doc/HTML/es/sheets/chart1.png share/doc/HTML/es/sheets/commands.docbook share/doc/HTML/es/sheets/config.docbook share/doc/HTML/es/sheets/configdialog.docbook share/doc/HTML/es/sheets/configure2.png share/doc/HTML/es/sheets/configure3.png share/doc/HTML/es/sheets/copy1.png share/doc/HTML/es/sheets/decreasedecimal.png share/doc/HTML/es/sheets/format.docbook share/doc/HTML/es/sheets/functions.docbook share/doc/HTML/es/sheets/hideformula1.png share/doc/HTML/es/sheets/hideformula2.png share/doc/HTML/es/sheets/hideformula3.png share/doc/HTML/es/sheets/hideformula4.png share/doc/HTML/es/sheets/hideformula5.png share/doc/HTML/es/sheets/increasedecimal.png share/doc/HTML/es/sheets/index.cache.bz2 share/doc/HTML/es/sheets/index.docbook share/doc/HTML/es/sheets/newdocument.png share/doc/HTML/es/sheets/percent.png share/doc/HTML/es/sheets/sheetproperties.png share/doc/HTML/es/sheets/shortcut1.png share/doc/HTML/es/sheets/sort1.png share/doc/HTML/es/sheets/starting1.png share/doc/HTML/es/stage/great-presentations.docbook share/doc/HTML/es/stage/guides.docbook share/doc/HTML/es/stage/index.cache.bz2 share/doc/HTML/es/stage/index.docbook share/doc/HTML/es/stage/menus.docbook share/doc/HTML/es/stage/options.docbook share/doc/HTML/es/stage/tutorial.docbook share/doc/HTML/et/calligra/index.cache.bz2 share/doc/HTML/et/calligra/index.docbook share/doc/HTML/fr/calligra/index.cache.bz2 share/doc/HTML/fr/calligra/index.docbook share/doc/HTML/fr/sheets/advanced.docbook share/doc/HTML/fr/sheets/basics.docbook share/doc/HTML/fr/sheets/cellformat0.png share/doc/HTML/fr/sheets/cellformat1.png share/doc/HTML/fr/sheets/cellformat2.png share/doc/HTML/fr/sheets/cellformat3.png share/doc/HTML/fr/sheets/cellformat4.png share/doc/HTML/fr/sheets/cellformat5.png share/doc/HTML/fr/sheets/chart1.png share/doc/HTML/fr/sheets/commands.docbook share/doc/HTML/fr/sheets/config.docbook share/doc/HTML/fr/sheets/configdialog.docbook share/doc/HTML/fr/sheets/copy1.png share/doc/HTML/fr/sheets/format.docbook share/doc/HTML/fr/sheets/functions.docbook share/doc/HTML/fr/sheets/index.cache.bz2 share/doc/HTML/fr/sheets/index.docbook share/doc/HTML/fr/sheets/shortcut1.png share/doc/HTML/fr/sheets/shortcut2.png share/doc/HTML/fr/sheets/shortcut3.png share/doc/HTML/fr/sheets/sort1.png share/doc/HTML/fr/sheets/starting1.png share/doc/HTML/id/calligra/index.cache.bz2 share/doc/HTML/id/calligra/index.docbook share/doc/HTML/it/calligra/index.cache.bz2 share/doc/HTML/it/calligra/index.docbook share/doc/HTML/it/sheets/advanced.docbook share/doc/HTML/it/sheets/basics.docbook share/doc/HTML/it/sheets/cellformat0.png share/doc/HTML/it/sheets/cellformat1.png share/doc/HTML/it/sheets/cellformat2.png share/doc/HTML/it/sheets/cellformat3.png share/doc/HTML/it/sheets/cellformat4.png share/doc/HTML/it/sheets/cellformat5.png share/doc/HTML/it/sheets/cellformat6.png share/doc/HTML/it/sheets/cellprotection1.png share/doc/HTML/it/sheets/cellprotection2.png share/doc/HTML/it/sheets/chart1.png share/doc/HTML/it/sheets/commands.docbook share/doc/HTML/it/sheets/config.docbook share/doc/HTML/it/sheets/configdialog.docbook share/doc/HTML/it/sheets/configure2.png share/doc/HTML/it/sheets/configure3.png share/doc/HTML/it/sheets/configure4.png share/doc/HTML/it/sheets/configure5.png share/doc/HTML/it/sheets/configure6.png share/doc/HTML/it/sheets/copy1.png share/doc/HTML/it/sheets/format.docbook share/doc/HTML/it/sheets/functions.docbook share/doc/HTML/it/sheets/hideformula1.png share/doc/HTML/it/sheets/hideformula2.png share/doc/HTML/it/sheets/hideformula3.png share/doc/HTML/it/sheets/hideformula4.png share/doc/HTML/it/sheets/hideformula5.png share/doc/HTML/it/sheets/index.cache.bz2 share/doc/HTML/it/sheets/index.docbook share/doc/HTML/it/sheets/newdocument.png share/doc/HTML/it/sheets/pivot1.png share/doc/HTML/it/sheets/pivot2.png share/doc/HTML/it/sheets/pivot3.png share/doc/HTML/it/sheets/pivot4.png share/doc/HTML/it/sheets/sheetproperties.png share/doc/HTML/it/sheets/shortcut1.png share/doc/HTML/it/sheets/sort1.png share/doc/HTML/it/sheets/starting1.png share/doc/HTML/it/stage/barstyle1.png share/doc/HTML/it/stage/configure-author.png share/doc/HTML/it/stage/configure-document.png share/doc/HTML/it/stage/configure-grid.png share/doc/HTML/it/stage/configure-misc.png share/doc/HTML/it/stage/great-presentations.docbook share/doc/HTML/it/stage/guides.docbook share/doc/HTML/it/stage/htmlshow3.png share/doc/HTML/it/stage/htmlshow9.png share/doc/HTML/it/stage/index.cache.bz2 share/doc/HTML/it/stage/index.docbook share/doc/HTML/it/stage/menus.docbook share/doc/HTML/it/stage/options.docbook share/doc/HTML/it/stage/settings03.png share/doc/HTML/it/stage/settings04.png share/doc/HTML/it/stage/template03.png share/doc/HTML/it/stage/template04.png share/doc/HTML/it/stage/tut01.png share/doc/HTML/it/stage/tut03.png share/doc/HTML/it/stage/tut04.png share/doc/HTML/it/stage/tut07.png share/doc/HTML/it/stage/tut09.png share/doc/HTML/it/stage/tut10.png share/doc/HTML/it/stage/tut13.png share/doc/HTML/it/stage/tut19.png share/doc/HTML/it/stage/tut20.png share/doc/HTML/it/stage/tut21.png share/doc/HTML/it/stage/tut25.png share/doc/HTML/it/stage/tut26.png share/doc/HTML/it/stage/tutorial.docbook share/doc/HTML/nl/calligra/index.cache.bz2 share/doc/HTML/nl/calligra/index.docbook share/doc/HTML/nl/sheets/advanced.docbook share/doc/HTML/nl/sheets/basics.docbook share/doc/HTML/nl/sheets/celformat0.png share/doc/HTML/nl/sheets/celformat1.png share/doc/HTML/nl/sheets/celformat2.png share/doc/HTML/nl/sheets/celformat3.png share/doc/HTML/nl/sheets/celformat4.png share/doc/HTML/nl/sheets/celformat5.png share/doc/HTML/nl/sheets/chart1.png share/doc/HTML/nl/sheets/commands.docbook share/doc/HTML/nl/sheets/config.docbook share/doc/HTML/nl/sheets/configdialog.docbook share/doc/HTML/nl/sheets/copy1.png share/doc/HTML/nl/sheets/format.docbook share/doc/HTML/nl/sheets/functions.docbook share/doc/HTML/nl/sheets/index.cache.bz2 share/doc/HTML/nl/sheets/index.docbook share/doc/HTML/nl/sheets/shortcut1.png share/doc/HTML/nl/sheets/shortcut2.png share/doc/HTML/nl/sheets/shortcut3.png share/doc/HTML/nl/sheets/sort1.png share/doc/HTML/nl/sheets/starting1.png share/doc/HTML/nl/stage/barstyle1.png share/doc/HTML/nl/stage/barstyle2.png share/doc/HTML/nl/stage/barstyle3.png share/doc/HTML/nl/stage/barstyle4.png share/doc/HTML/nl/stage/barstyle5.png share/doc/HTML/nl/stage/barstyle6.png share/doc/HTML/nl/stage/barstyle7.png share/doc/HTML/nl/stage/great-presentations.docbook share/doc/HTML/nl/stage/guides.docbook share/doc/HTML/nl/stage/htmlshow00.png share/doc/HTML/nl/stage/htmlshow01.png share/doc/HTML/nl/stage/htmlshow02.png share/doc/HTML/nl/stage/htmlshow02a.png share/doc/HTML/nl/stage/htmlshow03.png share/doc/HTML/nl/stage/htmlshow04.png share/doc/HTML/nl/stage/htmlshow05.png share/doc/HTML/nl/stage/htmlshow07.png share/doc/HTML/nl/stage/index.cache.bz2 share/doc/HTML/nl/stage/index.docbook share/doc/HTML/nl/stage/menus.docbook share/doc/HTML/nl/stage/msexport1.png share/doc/HTML/nl/stage/msexport2.png share/doc/HTML/nl/stage/msexport3.png share/doc/HTML/nl/stage/msexport4.png share/doc/HTML/nl/stage/options.docbook share/doc/HTML/nl/stage/settings01.png share/doc/HTML/nl/stage/settings03.png share/doc/HTML/nl/stage/settings04.png share/doc/HTML/nl/stage/settings05.png share/doc/HTML/nl/stage/settings06.png share/doc/HTML/nl/stage/template02.png share/doc/HTML/nl/stage/template03.png share/doc/HTML/nl/stage/template04.png share/doc/HTML/nl/stage/template05.png share/doc/HTML/nl/stage/template06.png share/doc/HTML/nl/stage/template07.png share/doc/HTML/nl/stage/textmenu01.png share/doc/HTML/nl/stage/textmenu02.png share/doc/HTML/nl/stage/textmenu03.png share/doc/HTML/nl/stage/textmenu03a.png share/doc/HTML/nl/stage/textmenu04.png share/doc/HTML/nl/stage/toolsmenu01.png share/doc/HTML/nl/stage/tut01.png share/doc/HTML/nl/stage/tut02.png share/doc/HTML/nl/stage/tut03.png share/doc/HTML/nl/stage/tut04.png share/doc/HTML/nl/stage/tut05.png share/doc/HTML/nl/stage/tut06.png share/doc/HTML/nl/stage/tut07.png share/doc/HTML/nl/stage/tut08.png share/doc/HTML/nl/stage/tut09.png share/doc/HTML/nl/stage/tut10.png share/doc/HTML/nl/stage/tut11.png share/doc/HTML/nl/stage/tut12.png share/doc/HTML/nl/stage/tut13.png share/doc/HTML/nl/stage/tut14.png share/doc/HTML/nl/stage/tut15.png share/doc/HTML/nl/stage/tut16.png share/doc/HTML/nl/stage/tut17.png share/doc/HTML/nl/stage/tut18.png share/doc/HTML/nl/stage/tut19.png share/doc/HTML/nl/stage/tut20.png share/doc/HTML/nl/stage/tut21.png share/doc/HTML/nl/stage/tut22.png share/doc/HTML/nl/stage/tut23.png share/doc/HTML/nl/stage/tutorial.docbook share/doc/HTML/pt/calligra/index.cache.bz2 share/doc/HTML/pt/calligra/index.docbook share/doc/HTML/pt/stage/great-presentations.docbook share/doc/HTML/pt/stage/guides.docbook share/doc/HTML/pt/stage/index.cache.bz2 share/doc/HTML/pt/stage/index.docbook share/doc/HTML/pt/stage/menus.docbook share/doc/HTML/pt/stage/options.docbook share/doc/HTML/pt/stage/tutorial.docbook share/doc/HTML/pt_BR/calligra/index.cache.bz2 share/doc/HTML/pt_BR/calligra/index.docbook share/doc/HTML/pt_BR/sheets/advanced.docbook share/doc/HTML/pt_BR/sheets/basics.docbook share/doc/HTML/pt_BR/sheets/commands.docbook share/doc/HTML/pt_BR/sheets/config.docbook share/doc/HTML/pt_BR/sheets/configdialog.docbook share/doc/HTML/pt_BR/sheets/format.docbook share/doc/HTML/pt_BR/sheets/functions.docbook share/doc/HTML/pt_BR/sheets/index.cache.bz2 share/doc/HTML/pt_BR/sheets/index.docbook share/doc/HTML/pt_BR/stage/great-presentations.docbook share/doc/HTML/pt_BR/stage/guides.docbook share/doc/HTML/pt_BR/stage/index.cache.bz2 share/doc/HTML/pt_BR/stage/index.docbook share/doc/HTML/pt_BR/stage/menus.docbook share/doc/HTML/pt_BR/stage/options.docbook share/doc/HTML/pt_BR/stage/tutorial.docbook share/doc/HTML/ru/calligra/index.cache.bz2 share/doc/HTML/ru/calligra/index.docbook share/doc/HTML/sl/calligra/index.cache.bz2 share/doc/HTML/sl/calligra/index.docbook share/doc/HTML/sl/stage/great-presentations.docbook share/doc/HTML/sl/stage/guides.docbook share/doc/HTML/sl/stage/index.cache.bz2 share/doc/HTML/sl/stage/index.docbook share/doc/HTML/sl/stage/menus.docbook share/doc/HTML/sl/stage/options.docbook share/doc/HTML/sl/stage/tutorial.docbook share/doc/HTML/sv/calligra/index.cache.bz2 share/doc/HTML/sv/calligra/index.docbook share/doc/HTML/sv/sheets/advanced.docbook share/doc/HTML/sv/sheets/basics.docbook share/doc/HTML/sv/sheets/cellformat0.png share/doc/HTML/sv/sheets/cellformat1.png share/doc/HTML/sv/sheets/cellformat2.png share/doc/HTML/sv/sheets/cellformat3.png share/doc/HTML/sv/sheets/cellformat4.png share/doc/HTML/sv/sheets/cellformat5.png share/doc/HTML/sv/sheets/cellformat6.png share/doc/HTML/sv/sheets/cellformat7.png share/doc/HTML/sv/sheets/cellprotection1.png share/doc/HTML/sv/sheets/cellprotection2.png share/doc/HTML/sv/sheets/chart1.png share/doc/HTML/sv/sheets/commands.docbook share/doc/HTML/sv/sheets/config.docbook share/doc/HTML/sv/sheets/configdialog.docbook share/doc/HTML/sv/sheets/configure1.png share/doc/HTML/sv/sheets/configure2.png share/doc/HTML/sv/sheets/configure3.png share/doc/HTML/sv/sheets/configure4.png share/doc/HTML/sv/sheets/configure5.png share/doc/HTML/sv/sheets/configure6.png share/doc/HTML/sv/sheets/copy1.png share/doc/HTML/sv/sheets/format.docbook share/doc/HTML/sv/sheets/functions.docbook share/doc/HTML/sv/sheets/hideformula1.png share/doc/HTML/sv/sheets/hideformula2.png share/doc/HTML/sv/sheets/hideformula3.png share/doc/HTML/sv/sheets/hideformula4.png share/doc/HTML/sv/sheets/hideformula5.png share/doc/HTML/sv/sheets/index.cache.bz2 share/doc/HTML/sv/sheets/index.docbook share/doc/HTML/sv/sheets/kbd-focus-ext.png share/doc/HTML/sv/sheets/mousenav.png share/doc/HTML/sv/sheets/newdocument.png share/doc/HTML/sv/sheets/sheetproperties.png share/doc/HTML/sv/sheets/shortcut1.png share/doc/HTML/sv/sheets/shortcut2.png share/doc/HTML/sv/sheets/shortcut3.png share/doc/HTML/sv/sheets/sort1.png share/doc/HTML/sv/sheets/starting1.png share/doc/HTML/sv/sheets/tts.png share/doc/HTML/sv/stage/autocorrection1.png share/doc/HTML/sv/stage/autocorrection2.png share/doc/HTML/sv/stage/autocorrection3.png share/doc/HTML/sv/stage/autocorrection4.png share/doc/HTML/sv/stage/barstyle1.png share/doc/HTML/sv/stage/barstyle3.png share/doc/HTML/sv/stage/barstyle4.png share/doc/HTML/sv/stage/barstyle5.png share/doc/HTML/sv/stage/barstyle6.png share/doc/HTML/sv/stage/barstyle7.png share/doc/HTML/sv/stage/changeformat.png share/doc/HTML/sv/stage/completion.png share/doc/HTML/sv/stage/configure1.png share/doc/HTML/sv/stage/configure2.png share/doc/HTML/sv/stage/configure3.png share/doc/HTML/sv/stage/configure4.png share/doc/HTML/sv/stage/configure5.png share/doc/HTML/sv/stage/configure6.png share/doc/HTML/sv/stage/configure6b.png share/doc/HTML/sv/stage/configure6c.png share/doc/HTML/sv/stage/configure6d.png share/doc/HTML/sv/stage/configure6e.png share/doc/HTML/sv/stage/configure7.png share/doc/HTML/sv/stage/great-presentations.docbook share/doc/HTML/sv/stage/guides.docbook share/doc/HTML/sv/stage/htmlshow1.png share/doc/HTML/sv/stage/htmlshow2.png share/doc/HTML/sv/stage/htmlshow3.png share/doc/HTML/sv/stage/htmlshow4.png share/doc/HTML/sv/stage/htmlshow5.png share/doc/HTML/sv/stage/htmlshow6.png share/doc/HTML/sv/stage/htmlshow7.png share/doc/HTML/sv/stage/htmlshow8.png share/doc/HTML/sv/stage/index.cache.bz2 share/doc/HTML/sv/stage/index.docbook share/doc/HTML/sv/stage/kbd-focus-ext.png share/doc/HTML/sv/stage/menus.docbook share/doc/HTML/sv/stage/mousenav.png share/doc/HTML/sv/stage/msexport1.png share/doc/HTML/sv/stage/msexport2.png share/doc/HTML/sv/stage/msexport2b.png share/doc/HTML/sv/stage/msexport3.png share/doc/HTML/sv/stage/options.docbook share/doc/HTML/sv/stage/properties.png share/doc/HTML/sv/stage/settings01.png share/doc/HTML/sv/stage/settings03.png share/doc/HTML/sv/stage/settings04.png share/doc/HTML/sv/stage/template02.png share/doc/HTML/sv/stage/template03.png share/doc/HTML/sv/stage/template04.png share/doc/HTML/sv/stage/template05.png share/doc/HTML/sv/stage/template06.png share/doc/HTML/sv/stage/template07.png share/doc/HTML/sv/stage/textmenu1.png share/doc/HTML/sv/stage/textmenu2.png share/doc/HTML/sv/stage/toolsmenu01.png share/doc/HTML/sv/stage/tts.png share/doc/HTML/sv/stage/tut24.png share/doc/HTML/sv/stage/tut01.png share/doc/HTML/sv/stage/tut02.png share/doc/HTML/sv/stage/tut03.png share/doc/HTML/sv/stage/tut04.png share/doc/HTML/sv/stage/tut05.png share/doc/HTML/sv/stage/tut06.png share/doc/HTML/sv/stage/tut07.png share/doc/HTML/sv/stage/tut08.png share/doc/HTML/sv/stage/tut09.png share/doc/HTML/sv/stage/tut10.png share/doc/HTML/sv/stage/tut11.png share/doc/HTML/sv/stage/tut12.png share/doc/HTML/sv/stage/tut13.png share/doc/HTML/sv/stage/tut14.png share/doc/HTML/sv/stage/tut15.png share/doc/HTML/sv/stage/tut16.png share/doc/HTML/sv/stage/tut17.png share/doc/HTML/sv/stage/tut18.png share/doc/HTML/sv/stage/tut19.png share/doc/HTML/sv/stage/tut20.png share/doc/HTML/sv/stage/tut21.png share/doc/HTML/sv/stage/tut22.png share/doc/HTML/sv/stage/tut23.png share/doc/HTML/sv/stage/tut26.png share/doc/HTML/sv/stage/tutorial.docbook share/doc/HTML/uk/sheets/advanced.docbook share/doc/HTML/uk/sheets/basics.docbook share/doc/HTML/uk/sheets/cellformat0.png share/doc/HTML/uk/sheets/cellformat1.png share/doc/HTML/uk/sheets/cellformat2.png share/doc/HTML/uk/sheets/cellformat3.png share/doc/HTML/uk/sheets/cellformat4.png share/doc/HTML/uk/sheets/cellformat5.png share/doc/HTML/uk/sheets/cellformat6.png share/doc/HTML/uk/sheets/cellprotection1.png share/doc/HTML/uk/sheets/cellprotection2.png share/doc/HTML/uk/sheets/chart1.png share/doc/HTML/uk/sheets/commands.docbook share/doc/HTML/uk/sheets/config.docbook share/doc/HTML/uk/sheets/configdialog.docbook share/doc/HTML/uk/sheets/configure2.png share/doc/HTML/uk/sheets/configure3.png share/doc/HTML/uk/sheets/configure4.png share/doc/HTML/uk/sheets/configure5.png share/doc/HTML/uk/sheets/configure6.png share/doc/HTML/uk/sheets/copy1.png share/doc/HTML/uk/sheets/format.docbook share/doc/HTML/uk/sheets/functions.docbook share/doc/HTML/uk/sheets/hideformula1.png share/doc/HTML/uk/sheets/index.cache.bz2 share/doc/HTML/uk/sheets/index.docbook share/doc/HTML/uk/sheets/newdocument.png share/doc/HTML/uk/sheets/pivot1.png share/doc/HTML/uk/sheets/pivot2.png share/doc/HTML/uk/sheets/pivot3.png share/doc/HTML/uk/sheets/pivot4.png share/doc/HTML/uk/sheets/sheetproperties.png share/doc/HTML/uk/sheets/shortcut1.png share/doc/HTML/uk/sheets/sort1.png share/doc/HTML/uk/sheets/starting1.png share/doc/HTML/uk/stage/barstyle1.png share/doc/HTML/uk/stage/configure-document.png share/doc/HTML/uk/stage/configure-grid.png share/doc/HTML/uk/stage/configure-misc.png share/doc/HTML/uk/stage/great-presentations.docbook share/doc/HTML/uk/stage/guides.docbook share/doc/HTML/uk/stage/htmlshow3.png share/doc/HTML/uk/stage/htmlshow9.png share/doc/HTML/uk/stage/index.cache.bz2 share/doc/HTML/uk/stage/index.docbook share/doc/HTML/uk/stage/menus.docbook share/doc/HTML/uk/stage/options.docbook share/doc/HTML/uk/stage/settings03.png share/doc/HTML/uk/stage/settings04.png share/doc/HTML/uk/stage/template03.png share/doc/HTML/uk/stage/template04.png share/doc/HTML/uk/stage/tut01.png share/doc/HTML/uk/stage/tut03.png share/doc/HTML/uk/stage/tut04.png share/doc/HTML/uk/stage/tut07.png share/doc/HTML/uk/stage/tut09.png share/doc/HTML/uk/stage/tut10.png share/doc/HTML/uk/stage/tut13.png share/doc/HTML/uk/stage/tut19.png share/doc/HTML/uk/stage/tut20.png share/doc/HTML/uk/stage/tut21.png share/doc/HTML/uk/stage/tut25.png share/doc/HTML/uk/stage/tut26.png share/doc/HTML/uk/stage/tutorial.docbook share/icons/hicolor/1024x1024/apps/calligrakarbon.png share/icons/hicolor/1024x1024/apps/calligrasheets.png share/icons/hicolor/1024x1024/apps/calligrastage.png share/icons/hicolor/1024x1024/apps/calligrawords.png share/icons/hicolor/128x128/apps/calligrakarbon.png share/icons/hicolor/128x128/apps/calligrasheets.png share/icons/hicolor/128x128/apps/calligrastage.png share/icons/hicolor/128x128/apps/calligrawords.png share/icons/hicolor/16x16/apps/calligrakarbon.png share/icons/hicolor/16x16/apps/calligrasheets.png share/icons/hicolor/16x16/apps/calligrastage.png share/icons/hicolor/16x16/apps/calligrawords.png share/icons/hicolor/22x22/apps/calligrakarbon.png share/icons/hicolor/22x22/apps/calligrasheets.png share/icons/hicolor/22x22/apps/calligrastage.png share/icons/hicolor/22x22/apps/calligrawords.png share/icons/hicolor/256x256/apps/calligrakarbon.png share/icons/hicolor/256x256/apps/calligrasheets.png share/icons/hicolor/256x256/apps/calligrastage.png share/icons/hicolor/256x256/apps/calligrawords.png share/icons/hicolor/32x32/apps/calligrakarbon.png share/icons/hicolor/32x32/apps/calligrasheets.png share/icons/hicolor/32x32/apps/calligrastage.png share/icons/hicolor/32x32/apps/calligrawords.png share/icons/hicolor/48x48/apps/calligrakarbon.png share/icons/hicolor/48x48/apps/calligrasheets.png share/icons/hicolor/48x48/apps/calligrastage.png share/icons/hicolor/48x48/apps/calligrawords.png share/icons/hicolor/512x512/apps/calligrakarbon.png share/icons/hicolor/512x512/apps/calligrasheets.png share/icons/hicolor/512x512/apps/calligrastage.png share/icons/hicolor/512x512/apps/calligrawords.png share/icons/hicolor/64x64/apps/calligrakarbon.png share/icons/hicolor/64x64/apps/calligrasheets.png share/icons/hicolor/64x64/apps/calligrastage.png share/icons/hicolor/64x64/apps/calligrawords.png share/icons/hicolor/scalable/actions/office-chart-stock-candlestick.svg share/icons/hicolor/scalable/actions/office-chart-stock-hlc.svg share/icons/hicolor/scalable/actions/office-chart-stock-ohlc.svg share/icons/hicolor/scalable/apps/calligrakarbon.svgz share/icons/hicolor/scalable/apps/calligrasheets.svgz share/icons/hicolor/scalable/apps/calligrastage.svgz share/icons/hicolor/scalable/apps/calligrawords.svgz share/icons/hicolor/scalable/apps/org.kde.calligra.karbon.svg share/icons/hicolor/scalable/apps/org.kde.calligra.sheets.svg share/icons/hicolor/scalable/apps/org.kde.calligra.stage.svg share/icons/hicolor/scalable/apps/org.kde.calligra.words.svg share/karbon/gradients/allcolors.kgr share/karbon/gradients/simple.kgr share/karbon/icons/hicolor/22x22/actions/effect_flatten.png share/karbon/icons/hicolor/22x22/actions/effect_refine.png share/karbon/icons/hicolor/22x22/actions/effect_roundcorners.png share/karbon/icons/hicolor/22x22/actions/effect_whirl.png share/karbon/icons/hicolor/48x48/actions/template_empty.png share/karbon/palettes/svg-colors.gpl share/karbon/plugins/FlattenPathPlugin.rc share/karbon/plugins/RefinePathPlugin.rc share/karbon/plugins/RoundCornersPlugin.rc share/karbon/plugins/WhirlPinchPlugin.rc share/karbon/templates/Basic/.directory share/karbon/templates/Basic/.source/empty.odg share/karbon/templates/Basic/empty.desktop share/kio/servicemenus/karbon_print.desktop share/kio/servicemenus/sheets_print.desktop share/kio/servicemenus/stage_print.desktop share/kio/servicemenus/words_print.desktop share/kxmlgui5/calligrasheets/calligrasheets.rc share/kxmlgui5/calligrasheets/calligrasheets_readonly.rc share/kxmlgui5/calligrastage/calligrastage.rc share/kxmlgui5/calligrastage/calligrastage_readonly.rc share/kxmlgui5/calligrawords/calligrawords.rc share/kxmlgui5/calligrawords/calligrawords_readonly.rc share/kxmlgui5/karbon/karbon.rc share/kxmlgui5/karbon/karbon_readonly.rc share/locale/af/LC_MESSAGES/KarbonFilterEffects.mo share/locale/af/LC_MESSAGES/KarbonTools.mo share/locale/af/LC_MESSAGES/calligra.mo share/locale/af/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/af/LC_MESSAGES/calligrafilters.mo share/locale/af/LC_MESSAGES/calligrasheets.mo share/locale/af/LC_MESSAGES/calligrastage.mo share/locale/af/LC_MESSAGES/calligrawords.mo share/locale/af/LC_MESSAGES/karbon.mo share/locale/af/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ar/LC_MESSAGES/KarbonTools.mo share/locale/ar/LC_MESSAGES/braindump.mo share/locale/ar/LC_MESSAGES/calligra-defaulttools.mo share/locale/ar/LC_MESSAGES/calligra-dockers.mo share/locale/ar/LC_MESSAGES/calligra-opener.mo share/locale/ar/LC_MESSAGES/calligra.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ar/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ar/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ar/LC_MESSAGES/calligra_shape_chart.mo share/locale/ar/LC_MESSAGES/calligra_shape_comment.mo share/locale/ar/LC_MESSAGES/calligra_shape_formula.mo share/locale/ar/LC_MESSAGES/calligra_shape_music.mo share/locale/ar/LC_MESSAGES/calligra_shape_paths.mo share/locale/ar/LC_MESSAGES/calligra_shape_picture.mo share/locale/ar/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ar/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ar/LC_MESSAGES/calligra_shape_template.mo share/locale/ar/LC_MESSAGES/calligra_shape_text.mo share/locale/ar/LC_MESSAGES/calligra_shape_threed.mo share/locale/ar/LC_MESSAGES/calligra_shape_vector.mo share/locale/ar/LC_MESSAGES/calligra_shape_video.mo share/locale/ar/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ar/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ar/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ar/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ar/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ar/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ar/LC_MESSAGES/calligrafilters.mo share/locale/ar/LC_MESSAGES/calligralauncher.mo share/locale/ar/LC_MESSAGES/calligrasheets.mo share/locale/ar/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ar/LC_MESSAGES/calligrasheets_solver.mo share/locale/ar/LC_MESSAGES/calligrastage.mo share/locale/ar/LC_MESSAGES/calligrawords.mo share/locale/ar/LC_MESSAGES/karbon.mo share/locale/ar/LC_MESSAGES/kocolorspaces.mo share/locale/ar/LC_MESSAGES/koconverter.mo share/locale/ar/LC_MESSAGES/okularGenerator_odp.mo share/locale/ar/LC_MESSAGES/okularGenerator_odt.mo share/locale/be/LC_MESSAGES/KarbonFilterEffects.mo share/locale/be/LC_MESSAGES/KarbonTools.mo share/locale/be/LC_MESSAGES/calligra-dockers.mo share/locale/be/LC_MESSAGES/calligra.mo share/locale/be/LC_MESSAGES/calligra_shape_music.mo share/locale/be/LC_MESSAGES/calligra_shape_paths.mo share/locale/be/LC_MESSAGES/calligra_shape_picture.mo share/locale/be/LC_MESSAGES/calligra_shape_text.mo share/locale/be/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/be/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/be/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/be/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/be/LC_MESSAGES/calligrafilters.mo share/locale/be/LC_MESSAGES/calligrasheets.mo share/locale/be/LC_MESSAGES/calligrasheets_calendar.mo share/locale/be/LC_MESSAGES/calligrasheets_solver.mo share/locale/be/LC_MESSAGES/calligrastage.mo share/locale/be/LC_MESSAGES/calligrawords.mo share/locale/be/LC_MESSAGES/karbon.mo share/locale/be/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bg/LC_MESSAGES/KarbonTools.mo share/locale/bg/LC_MESSAGES/braindump.mo share/locale/bg/LC_MESSAGES/calligra-defaulttools.mo share/locale/bg/LC_MESSAGES/calligra-dockers.mo share/locale/bg/LC_MESSAGES/calligra-opener.mo share/locale/bg/LC_MESSAGES/calligra.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bg/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bg/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bg/LC_MESSAGES/calligra_shape_chart.mo share/locale/bg/LC_MESSAGES/calligra_shape_comment.mo share/locale/bg/LC_MESSAGES/calligra_shape_formula.mo share/locale/bg/LC_MESSAGES/calligra_shape_music.mo share/locale/bg/LC_MESSAGES/calligra_shape_paths.mo share/locale/bg/LC_MESSAGES/calligra_shape_picture.mo share/locale/bg/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bg/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bg/LC_MESSAGES/calligra_shape_template.mo share/locale/bg/LC_MESSAGES/calligra_shape_text.mo share/locale/bg/LC_MESSAGES/calligra_shape_threed.mo share/locale/bg/LC_MESSAGES/calligra_shape_vector.mo share/locale/bg/LC_MESSAGES/calligra_shape_video.mo share/locale/bg/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bg/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bg/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bg/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bg/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bg/LC_MESSAGES/calligrafilters.mo share/locale/bg/LC_MESSAGES/calligrasheets.mo share/locale/bg/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bg/LC_MESSAGES/calligrasheets_solver.mo share/locale/bg/LC_MESSAGES/calligrastage.mo share/locale/bg/LC_MESSAGES/calligrawords.mo share/locale/bg/LC_MESSAGES/karbon.mo share/locale/bg/LC_MESSAGES/kocolorspaces.mo share/locale/bg/LC_MESSAGES/koconverter.mo share/locale/bg/LC_MESSAGES/okularGenerator_odp.mo share/locale/bg/LC_MESSAGES/okularGenerator_odt.mo share/locale/br/LC_MESSAGES/KarbonFilterEffects.mo share/locale/br/LC_MESSAGES/KarbonTools.mo share/locale/br/LC_MESSAGES/calligra.mo share/locale/br/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/br/LC_MESSAGES/calligrafilters.mo share/locale/br/LC_MESSAGES/calligrasheets.mo share/locale/br/LC_MESSAGES/calligrasheets_calendar.mo share/locale/br/LC_MESSAGES/calligrastage.mo share/locale/br/LC_MESSAGES/calligrawords.mo share/locale/br/LC_MESSAGES/karbon.mo share/locale/br/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/bs/LC_MESSAGES/KarbonTools.mo share/locale/bs/LC_MESSAGES/braindump.mo share/locale/bs/LC_MESSAGES/calligra-defaulttools.mo share/locale/bs/LC_MESSAGES/calligra-dockers.mo share/locale/bs/LC_MESSAGES/calligra-opener.mo share/locale/bs/LC_MESSAGES/calligra.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/bs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/bs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/bs/LC_MESSAGES/calligra_shape_chart.mo share/locale/bs/LC_MESSAGES/calligra_shape_comment.mo share/locale/bs/LC_MESSAGES/calligra_shape_formula.mo share/locale/bs/LC_MESSAGES/calligra_shape_music.mo share/locale/bs/LC_MESSAGES/calligra_shape_paths.mo share/locale/bs/LC_MESSAGES/calligra_shape_picture.mo share/locale/bs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/bs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/bs/LC_MESSAGES/calligra_shape_template.mo share/locale/bs/LC_MESSAGES/calligra_shape_text.mo share/locale/bs/LC_MESSAGES/calligra_shape_threed.mo share/locale/bs/LC_MESSAGES/calligra_shape_vector.mo share/locale/bs/LC_MESSAGES/calligra_shape_video.mo share/locale/bs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/bs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/bs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/bs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/bs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/bs/LC_MESSAGES/calligrafilters.mo share/locale/bs/LC_MESSAGES/calligrasheets.mo share/locale/bs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/bs/LC_MESSAGES/calligrasheets_solver.mo share/locale/bs/LC_MESSAGES/calligrastage.mo share/locale/bs/LC_MESSAGES/calligrawords.mo share/locale/bs/LC_MESSAGES/karbon.mo share/locale/bs/LC_MESSAGES/kocolorspaces.mo share/locale/bs/LC_MESSAGES/koconverter.mo share/locale/bs/LC_MESSAGES/okularGenerator_odp.mo share/locale/bs/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca/LC_MESSAGES/KarbonTools.mo share/locale/ca/LC_MESSAGES/braindump.mo share/locale/ca/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca/LC_MESSAGES/calligra-dockers.mo share/locale/ca/LC_MESSAGES/calligra-opener.mo share/locale/ca/LC_MESSAGES/calligra.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca/LC_MESSAGES/calligra_shape_music.mo share/locale/ca/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca/LC_MESSAGES/calligra_shape_template.mo share/locale/ca/LC_MESSAGES/calligra_shape_text.mo share/locale/ca/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca/LC_MESSAGES/calligra_shape_video.mo share/locale/ca/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca/LC_MESSAGES/calligrafilters.mo share/locale/ca/LC_MESSAGES/calligralauncher.mo share/locale/ca/LC_MESSAGES/calligrasheets.mo share/locale/ca/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca/LC_MESSAGES/calligrastage.mo share/locale/ca/LC_MESSAGES/calligrawords.mo share/locale/ca/LC_MESSAGES/karbon.mo share/locale/ca/LC_MESSAGES/kocolorspaces.mo share/locale/ca/LC_MESSAGES/koconverter.mo share/locale/ca/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca/LC_MESSAGES/okularGenerator_odt.mo share/locale/ca@valencia/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ca@valencia/LC_MESSAGES/KarbonTools.mo share/locale/ca@valencia/LC_MESSAGES/braindump.mo share/locale/ca@valencia/LC_MESSAGES/calligra-defaulttools.mo share/locale/ca@valencia/LC_MESSAGES/calligra-dockers.mo share/locale/ca@valencia/LC_MESSAGES/calligra-opener.mo share/locale/ca@valencia/LC_MESSAGES/calligra.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ca@valencia/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_chart.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_comment.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_formula.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_music.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_paths.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_picture.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_template.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_text.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_threed.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_vector.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_video.mo share/locale/ca@valencia/LC_MESSAGES/calligra_shape_webshape.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ca@valencia/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ca@valencia/LC_MESSAGES/calligrafilters.mo share/locale/ca@valencia/LC_MESSAGES/calligralauncher.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ca@valencia/LC_MESSAGES/calligrasheets_solver.mo share/locale/ca@valencia/LC_MESSAGES/calligrastage.mo share/locale/ca@valencia/LC_MESSAGES/calligrawords.mo share/locale/ca@valencia/LC_MESSAGES/karbon.mo share/locale/ca@valencia/LC_MESSAGES/kocolorspaces.mo share/locale/ca@valencia/LC_MESSAGES/koconverter.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odp.mo share/locale/ca@valencia/LC_MESSAGES/okularGenerator_odt.mo share/locale/cs/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cs/LC_MESSAGES/KarbonTools.mo share/locale/cs/LC_MESSAGES/braindump.mo share/locale/cs/LC_MESSAGES/calligra-defaulttools.mo share/locale/cs/LC_MESSAGES/calligra-dockers.mo share/locale/cs/LC_MESSAGES/calligra-opener.mo share/locale/cs/LC_MESSAGES/calligra.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/cs/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/cs/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/cs/LC_MESSAGES/calligra_shape_chart.mo share/locale/cs/LC_MESSAGES/calligra_shape_comment.mo share/locale/cs/LC_MESSAGES/calligra_shape_formula.mo share/locale/cs/LC_MESSAGES/calligra_shape_music.mo share/locale/cs/LC_MESSAGES/calligra_shape_paths.mo share/locale/cs/LC_MESSAGES/calligra_shape_picture.mo share/locale/cs/LC_MESSAGES/calligra_shape_plugin.mo share/locale/cs/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/cs/LC_MESSAGES/calligra_shape_template.mo share/locale/cs/LC_MESSAGES/calligra_shape_text.mo share/locale/cs/LC_MESSAGES/calligra_shape_threed.mo share/locale/cs/LC_MESSAGES/calligra_shape_vector.mo share/locale/cs/LC_MESSAGES/calligra_shape_video.mo share/locale/cs/LC_MESSAGES/calligra_shape_webshape.mo share/locale/cs/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/cs/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/cs/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/cs/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cs/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/cs/LC_MESSAGES/calligrafilters.mo share/locale/cs/LC_MESSAGES/calligralauncher.mo share/locale/cs/LC_MESSAGES/calligrasheets.mo share/locale/cs/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cs/LC_MESSAGES/calligrasheets_solver.mo share/locale/cs/LC_MESSAGES/calligrastage.mo share/locale/cs/LC_MESSAGES/calligrawords.mo share/locale/cs/LC_MESSAGES/karbon.mo share/locale/cs/LC_MESSAGES/kocolorspaces.mo share/locale/cs/LC_MESSAGES/koconverter.mo share/locale/cs/LC_MESSAGES/okularGenerator_odp.mo share/locale/cs/LC_MESSAGES/okularGenerator_odt.mo share/locale/cy/LC_MESSAGES/KarbonFilterEffects.mo share/locale/cy/LC_MESSAGES/KarbonTools.mo share/locale/cy/LC_MESSAGES/calligra.mo share/locale/cy/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/cy/LC_MESSAGES/calligrafilters.mo share/locale/cy/LC_MESSAGES/calligrasheets.mo share/locale/cy/LC_MESSAGES/calligrasheets_calendar.mo share/locale/cy/LC_MESSAGES/calligrastage.mo share/locale/cy/LC_MESSAGES/calligrawords.mo share/locale/cy/LC_MESSAGES/karbon.mo share/locale/cy/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/KarbonFilterEffects.mo share/locale/da/LC_MESSAGES/KarbonTools.mo share/locale/da/LC_MESSAGES/braindump.mo share/locale/da/LC_MESSAGES/calligra-defaulttools.mo share/locale/da/LC_MESSAGES/calligra-dockers.mo share/locale/da/LC_MESSAGES/calligra-opener.mo share/locale/da/LC_MESSAGES/calligra.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/da/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/da/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/da/LC_MESSAGES/calligra_shape_chart.mo share/locale/da/LC_MESSAGES/calligra_shape_comment.mo share/locale/da/LC_MESSAGES/calligra_shape_formula.mo share/locale/da/LC_MESSAGES/calligra_shape_music.mo share/locale/da/LC_MESSAGES/calligra_shape_paths.mo share/locale/da/LC_MESSAGES/calligra_shape_picture.mo share/locale/da/LC_MESSAGES/calligra_shape_plugin.mo share/locale/da/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/da/LC_MESSAGES/calligra_shape_template.mo share/locale/da/LC_MESSAGES/calligra_shape_text.mo share/locale/da/LC_MESSAGES/calligra_shape_threed.mo share/locale/da/LC_MESSAGES/calligra_shape_vector.mo share/locale/da/LC_MESSAGES/calligra_shape_video.mo share/locale/da/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/da/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/da/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/da/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/da/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/da/LC_MESSAGES/calligrafilters.mo share/locale/da/LC_MESSAGES/calligrasheets.mo share/locale/da/LC_MESSAGES/calligrasheets_calendar.mo share/locale/da/LC_MESSAGES/calligrasheets_solver.mo share/locale/da/LC_MESSAGES/calligrastage.mo share/locale/da/LC_MESSAGES/calligrawords.mo share/locale/da/LC_MESSAGES/karbon.mo share/locale/da/LC_MESSAGES/kocolorspaces.mo share/locale/da/LC_MESSAGES/koconverter.mo share/locale/da/LC_MESSAGES/okularGenerator_odp.mo share/locale/da/LC_MESSAGES/okularGenerator_odt.mo share/locale/de/LC_MESSAGES/KarbonFilterEffects.mo share/locale/de/LC_MESSAGES/KarbonTools.mo share/locale/de/LC_MESSAGES/braindump.mo share/locale/de/LC_MESSAGES/calligra-defaulttools.mo share/locale/de/LC_MESSAGES/calligra-dockers.mo share/locale/de/LC_MESSAGES/calligra-opener.mo share/locale/de/LC_MESSAGES/calligra.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/de/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/de/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/de/LC_MESSAGES/calligra_shape_chart.mo share/locale/de/LC_MESSAGES/calligra_shape_comment.mo share/locale/de/LC_MESSAGES/calligra_shape_formula.mo share/locale/de/LC_MESSAGES/calligra_shape_music.mo share/locale/de/LC_MESSAGES/calligra_shape_paths.mo share/locale/de/LC_MESSAGES/calligra_shape_picture.mo share/locale/de/LC_MESSAGES/calligra_shape_plugin.mo share/locale/de/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/de/LC_MESSAGES/calligra_shape_template.mo share/locale/de/LC_MESSAGES/calligra_shape_text.mo share/locale/de/LC_MESSAGES/calligra_shape_threed.mo share/locale/de/LC_MESSAGES/calligra_shape_vector.mo share/locale/de/LC_MESSAGES/calligra_shape_video.mo share/locale/de/LC_MESSAGES/calligra_shape_webshape.mo share/locale/de/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/de/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/de/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/de/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/de/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/de/LC_MESSAGES/calligrafilters.mo share/locale/de/LC_MESSAGES/calligralauncher.mo share/locale/de/LC_MESSAGES/calligrasheets.mo share/locale/de/LC_MESSAGES/calligrasheets_calendar.mo share/locale/de/LC_MESSAGES/calligrasheets_solver.mo share/locale/de/LC_MESSAGES/calligrastage.mo share/locale/de/LC_MESSAGES/calligrawords.mo share/locale/de/LC_MESSAGES/karbon.mo share/locale/de/LC_MESSAGES/kocolorspaces.mo share/locale/de/LC_MESSAGES/koconverter.mo share/locale/de/LC_MESSAGES/okularGenerator_odp.mo share/locale/de/LC_MESSAGES/okularGenerator_odt.mo share/locale/el/LC_MESSAGES/KarbonFilterEffects.mo share/locale/el/LC_MESSAGES/KarbonTools.mo share/locale/el/LC_MESSAGES/braindump.mo share/locale/el/LC_MESSAGES/calligra-defaulttools.mo share/locale/el/LC_MESSAGES/calligra-dockers.mo share/locale/el/LC_MESSAGES/calligra-opener.mo share/locale/el/LC_MESSAGES/calligra.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/el/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/el/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/el/LC_MESSAGES/calligra_shape_chart.mo share/locale/el/LC_MESSAGES/calligra_shape_comment.mo share/locale/el/LC_MESSAGES/calligra_shape_formula.mo share/locale/el/LC_MESSAGES/calligra_shape_music.mo share/locale/el/LC_MESSAGES/calligra_shape_paths.mo share/locale/el/LC_MESSAGES/calligra_shape_picture.mo share/locale/el/LC_MESSAGES/calligra_shape_plugin.mo share/locale/el/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/el/LC_MESSAGES/calligra_shape_template.mo share/locale/el/LC_MESSAGES/calligra_shape_text.mo share/locale/el/LC_MESSAGES/calligra_shape_threed.mo share/locale/el/LC_MESSAGES/calligra_shape_vector.mo share/locale/el/LC_MESSAGES/calligra_shape_video.mo share/locale/el/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/el/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/el/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/el/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/el/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/el/LC_MESSAGES/calligrafilters.mo share/locale/el/LC_MESSAGES/calligrasheets.mo share/locale/el/LC_MESSAGES/calligrasheets_calendar.mo share/locale/el/LC_MESSAGES/calligrasheets_solver.mo share/locale/el/LC_MESSAGES/calligrastage.mo share/locale/el/LC_MESSAGES/calligrawords.mo share/locale/el/LC_MESSAGES/karbon.mo share/locale/el/LC_MESSAGES/kocolorspaces.mo share/locale/el/LC_MESSAGES/koconverter.mo share/locale/el/LC_MESSAGES/okularGenerator_odp.mo share/locale/el/LC_MESSAGES/okularGenerator_odt.mo share/locale/en_GB/LC_MESSAGES/KarbonFilterEffects.mo share/locale/en_GB/LC_MESSAGES/KarbonTools.mo share/locale/en_GB/LC_MESSAGES/braindump.mo share/locale/en_GB/LC_MESSAGES/calligra-defaulttools.mo share/locale/en_GB/LC_MESSAGES/calligra-dockers.mo share/locale/en_GB/LC_MESSAGES/calligra-opener.mo share/locale/en_GB/LC_MESSAGES/calligra.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/en_GB/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_chart.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_comment.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_formula.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_music.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_paths.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_picture.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_plugin.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_template.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_text.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_threed.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_vector.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_video.mo share/locale/en_GB/LC_MESSAGES/calligra_shape_webshape.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/en_GB/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/en_GB/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/en_GB/LC_MESSAGES/calligrafilters.mo share/locale/en_GB/LC_MESSAGES/calligralauncher.mo share/locale/en_GB/LC_MESSAGES/calligrasheets.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_calendar.mo share/locale/en_GB/LC_MESSAGES/calligrasheets_solver.mo share/locale/en_GB/LC_MESSAGES/calligrastage.mo share/locale/en_GB/LC_MESSAGES/calligrawords.mo share/locale/en_GB/LC_MESSAGES/karbon.mo share/locale/en_GB/LC_MESSAGES/kocolorspaces.mo share/locale/en_GB/LC_MESSAGES/koconverter.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odp.mo share/locale/en_GB/LC_MESSAGES/okularGenerator_odt.mo share/locale/eo/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eo/LC_MESSAGES/KarbonTools.mo share/locale/eo/LC_MESSAGES/braindump.mo share/locale/eo/LC_MESSAGES/calligra-defaulttools.mo share/locale/eo/LC_MESSAGES/calligra-dockers.mo share/locale/eo/LC_MESSAGES/calligra-opener.mo share/locale/eo/LC_MESSAGES/calligra.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eo/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eo/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eo/LC_MESSAGES/calligra_shape_chart.mo share/locale/eo/LC_MESSAGES/calligra_shape_comment.mo share/locale/eo/LC_MESSAGES/calligra_shape_formula.mo share/locale/eo/LC_MESSAGES/calligra_shape_music.mo share/locale/eo/LC_MESSAGES/calligra_shape_paths.mo share/locale/eo/LC_MESSAGES/calligra_shape_picture.mo share/locale/eo/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eo/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eo/LC_MESSAGES/calligra_shape_template.mo share/locale/eo/LC_MESSAGES/calligra_shape_text.mo share/locale/eo/LC_MESSAGES/calligra_shape_threed.mo share/locale/eo/LC_MESSAGES/calligra_shape_vector.mo share/locale/eo/LC_MESSAGES/calligra_shape_video.mo share/locale/eo/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eo/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eo/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eo/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eo/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eo/LC_MESSAGES/calligrafilters.mo share/locale/eo/LC_MESSAGES/calligrasheets.mo share/locale/eo/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eo/LC_MESSAGES/calligrasheets_solver.mo share/locale/eo/LC_MESSAGES/calligrastage.mo share/locale/eo/LC_MESSAGES/calligrawords.mo share/locale/eo/LC_MESSAGES/karbon.mo share/locale/eo/LC_MESSAGES/kocolorspaces.mo share/locale/eo/LC_MESSAGES/koconverter.mo share/locale/eo/LC_MESSAGES/okularGenerator_odp.mo share/locale/eo/LC_MESSAGES/okularGenerator_odt.mo share/locale/es/LC_MESSAGES/KarbonFilterEffects.mo share/locale/es/LC_MESSAGES/KarbonTools.mo share/locale/es/LC_MESSAGES/braindump.mo share/locale/es/LC_MESSAGES/calligra-defaulttools.mo share/locale/es/LC_MESSAGES/calligra-dockers.mo share/locale/es/LC_MESSAGES/calligra-opener.mo share/locale/es/LC_MESSAGES/calligra.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/es/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/es/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/es/LC_MESSAGES/calligra_shape_chart.mo share/locale/es/LC_MESSAGES/calligra_shape_comment.mo share/locale/es/LC_MESSAGES/calligra_shape_formula.mo share/locale/es/LC_MESSAGES/calligra_shape_music.mo share/locale/es/LC_MESSAGES/calligra_shape_paths.mo share/locale/es/LC_MESSAGES/calligra_shape_picture.mo share/locale/es/LC_MESSAGES/calligra_shape_plugin.mo share/locale/es/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/es/LC_MESSAGES/calligra_shape_template.mo share/locale/es/LC_MESSAGES/calligra_shape_text.mo share/locale/es/LC_MESSAGES/calligra_shape_threed.mo share/locale/es/LC_MESSAGES/calligra_shape_vector.mo share/locale/es/LC_MESSAGES/calligra_shape_video.mo share/locale/es/LC_MESSAGES/calligra_shape_webshape.mo share/locale/es/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/es/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/es/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/es/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/es/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/es/LC_MESSAGES/calligrafilters.mo share/locale/es/LC_MESSAGES/calligralauncher.mo share/locale/es/LC_MESSAGES/calligrasheets.mo share/locale/es/LC_MESSAGES/calligrasheets_calendar.mo share/locale/es/LC_MESSAGES/calligrasheets_solver.mo share/locale/es/LC_MESSAGES/calligrastage.mo share/locale/es/LC_MESSAGES/calligrawords.mo share/locale/es/LC_MESSAGES/karbon.mo share/locale/es/LC_MESSAGES/kocolorspaces.mo share/locale/es/LC_MESSAGES/koconverter.mo share/locale/es/LC_MESSAGES/okularGenerator_odp.mo share/locale/es/LC_MESSAGES/okularGenerator_odt.mo share/locale/et/LC_MESSAGES/KarbonFilterEffects.mo share/locale/et/LC_MESSAGES/KarbonTools.mo share/locale/et/LC_MESSAGES/braindump.mo share/locale/et/LC_MESSAGES/calligra-defaulttools.mo share/locale/et/LC_MESSAGES/calligra-dockers.mo share/locale/et/LC_MESSAGES/calligra-opener.mo share/locale/et/LC_MESSAGES/calligra.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/et/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/et/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/et/LC_MESSAGES/calligra_shape_chart.mo share/locale/et/LC_MESSAGES/calligra_shape_comment.mo share/locale/et/LC_MESSAGES/calligra_shape_formula.mo share/locale/et/LC_MESSAGES/calligra_shape_music.mo share/locale/et/LC_MESSAGES/calligra_shape_paths.mo share/locale/et/LC_MESSAGES/calligra_shape_picture.mo share/locale/et/LC_MESSAGES/calligra_shape_plugin.mo share/locale/et/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/et/LC_MESSAGES/calligra_shape_template.mo share/locale/et/LC_MESSAGES/calligra_shape_text.mo share/locale/et/LC_MESSAGES/calligra_shape_threed.mo share/locale/et/LC_MESSAGES/calligra_shape_vector.mo share/locale/et/LC_MESSAGES/calligra_shape_video.mo share/locale/et/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/et/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/et/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/et/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/et/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/et/LC_MESSAGES/calligrafilters.mo share/locale/et/LC_MESSAGES/calligrasheets.mo share/locale/et/LC_MESSAGES/calligrasheets_calendar.mo share/locale/et/LC_MESSAGES/calligrasheets_solver.mo share/locale/et/LC_MESSAGES/calligrastage.mo share/locale/et/LC_MESSAGES/calligrawords.mo share/locale/et/LC_MESSAGES/karbon.mo share/locale/et/LC_MESSAGES/kocolorspaces.mo share/locale/et/LC_MESSAGES/koconverter.mo share/locale/et/LC_MESSAGES/okularGenerator_odp.mo share/locale/et/LC_MESSAGES/okularGenerator_odt.mo share/locale/eu/LC_MESSAGES/KarbonFilterEffects.mo share/locale/eu/LC_MESSAGES/KarbonTools.mo share/locale/eu/LC_MESSAGES/braindump.mo share/locale/eu/LC_MESSAGES/calligra-defaulttools.mo share/locale/eu/LC_MESSAGES/calligra-dockers.mo share/locale/eu/LC_MESSAGES/calligra-opener.mo share/locale/eu/LC_MESSAGES/calligra.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/eu/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/eu/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/eu/LC_MESSAGES/calligra_shape_chart.mo share/locale/eu/LC_MESSAGES/calligra_shape_comment.mo share/locale/eu/LC_MESSAGES/calligra_shape_formula.mo share/locale/eu/LC_MESSAGES/calligra_shape_music.mo share/locale/eu/LC_MESSAGES/calligra_shape_paths.mo share/locale/eu/LC_MESSAGES/calligra_shape_picture.mo share/locale/eu/LC_MESSAGES/calligra_shape_plugin.mo share/locale/eu/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/eu/LC_MESSAGES/calligra_shape_template.mo share/locale/eu/LC_MESSAGES/calligra_shape_text.mo share/locale/eu/LC_MESSAGES/calligra_shape_threed.mo share/locale/eu/LC_MESSAGES/calligra_shape_vector.mo share/locale/eu/LC_MESSAGES/calligra_shape_video.mo share/locale/eu/LC_MESSAGES/calligra_shape_webshape.mo share/locale/eu/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/eu/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/eu/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/eu/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/eu/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/eu/LC_MESSAGES/calligrafilters.mo share/locale/eu/LC_MESSAGES/calligralauncher.mo share/locale/eu/LC_MESSAGES/calligrasheets.mo share/locale/eu/LC_MESSAGES/calligrasheets_calendar.mo share/locale/eu/LC_MESSAGES/calligrasheets_solver.mo share/locale/eu/LC_MESSAGES/calligrastage.mo share/locale/eu/LC_MESSAGES/calligrawords.mo share/locale/eu/LC_MESSAGES/karbon.mo share/locale/eu/LC_MESSAGES/kocolorspaces.mo share/locale/eu/LC_MESSAGES/koconverter.mo share/locale/eu/LC_MESSAGES/okularGenerator_odp.mo share/locale/eu/LC_MESSAGES/okularGenerator_odt.mo share/locale/fa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fa/LC_MESSAGES/KarbonTools.mo share/locale/fa/LC_MESSAGES/calligra.mo share/locale/fa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/fa/LC_MESSAGES/calligrafilters.mo share/locale/fa/LC_MESSAGES/calligrasheets.mo share/locale/fa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/fa/LC_MESSAGES/calligrastage.mo share/locale/fa/LC_MESSAGES/calligrawords.mo share/locale/fa/LC_MESSAGES/karbon.mo share/locale/fa/LC_MESSAGES/koconverter.mo share/locale/fi/LC_MESSAGES/KarbonFilterEffects.mo share/locale/fi/LC_MESSAGES/KarbonTools.mo share/locale/fi/LC_MESSAGES/braindump.mo share/locale/fi/LC_MESSAGES/calligra-defaulttools.mo share/locale/fi/LC_MESSAGES/calligra-dockers.mo share/locale/fi/LC_MESSAGES/calligra-opener.mo share/locale/fi/LC_MESSAGES/calligra.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/fi/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/fi/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/fi/LC_MESSAGES/calligra_shape_chart.mo share/locale/fi/LC_MESSAGES/calligra_shape_comment.mo share/locale/fi/LC_MESSAGES/calligra_shape_formula.mo share/locale/fi/LC_MESSAGES/calligra_shape_music.mo share/locale/fi/LC_MESSAGES/calligra_shape_paths.mo share/locale/fi/LC_MESSAGES/calligra_shape_picture.mo share/locale/fi/LC_MESSAGES/calligra_shape_plugin.mo share/locale/fi/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/fi/LC_MESSAGES/calligra_shape_template.mo share/locale/fi/LC_MESSAGES/calligra_shape_text.mo share/locale/fi/LC_MESSAGES/calligra_shape_threed.mo share/locale/fi/LC_MESSAGES/calligra_shape_vector.mo share/locale/fi/LC_MESSAGES/calligra_shape_video.mo +share/locale/fi/LC_MESSAGES/calligra_shape_webshape.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_semanticitem_contact.mo share/locale/ga/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ga/LC_MESSAGES/calligra_semanticitem_location.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_shape_webshape.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/calligralauncher.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/ga/LC_MESSAGES/okularGenerator_odt.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_shape_webshape.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/calligralauncher.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_shape_webshape.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/calligralauncher.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_shape_webshape.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/calligralauncher.mo share/locale/lt/LC_MESSAGES/calligrasheets.mo share/locale/lt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lt/LC_MESSAGES/calligrasheets_solver.mo share/locale/lt/LC_MESSAGES/calligrastage.mo share/locale/lt/LC_MESSAGES/calligrawords.mo share/locale/lt/LC_MESSAGES/karbon.mo share/locale/lt/LC_MESSAGES/kocolorspaces.mo share/locale/lt/LC_MESSAGES/koconverter.mo share/locale/lt/LC_MESSAGES/okularGenerator_odp.mo share/locale/lt/LC_MESSAGES/okularGenerator_odt.mo share/locale/lv/LC_MESSAGES/KarbonFilterEffects.mo share/locale/lv/LC_MESSAGES/KarbonTools.mo share/locale/lv/LC_MESSAGES/braindump.mo share/locale/lv/LC_MESSAGES/calligra-defaulttools.mo share/locale/lv/LC_MESSAGES/calligra-dockers.mo share/locale/lv/LC_MESSAGES/calligra-opener.mo share/locale/lv/LC_MESSAGES/calligra.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/lv/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/lv/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/lv/LC_MESSAGES/calligra_shape_chart.mo share/locale/lv/LC_MESSAGES/calligra_shape_comment.mo share/locale/lv/LC_MESSAGES/calligra_shape_formula.mo share/locale/lv/LC_MESSAGES/calligra_shape_music.mo share/locale/lv/LC_MESSAGES/calligra_shape_paths.mo share/locale/lv/LC_MESSAGES/calligra_shape_picture.mo share/locale/lv/LC_MESSAGES/calligra_shape_plugin.mo share/locale/lv/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/lv/LC_MESSAGES/calligra_shape_template.mo share/locale/lv/LC_MESSAGES/calligra_shape_text.mo share/locale/lv/LC_MESSAGES/calligra_shape_threed.mo share/locale/lv/LC_MESSAGES/calligra_shape_vector.mo share/locale/lv/LC_MESSAGES/calligra_shape_video.mo share/locale/lv/LC_MESSAGES/calligra_shape_webshape.mo share/locale/lv/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/lv/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/lv/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/lv/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/lv/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/lv/LC_MESSAGES/calligrafilters.mo share/locale/lv/LC_MESSAGES/calligralauncher.mo share/locale/lv/LC_MESSAGES/calligrasheets.mo share/locale/lv/LC_MESSAGES/calligrasheets_calendar.mo share/locale/lv/LC_MESSAGES/calligrasheets_solver.mo share/locale/lv/LC_MESSAGES/calligrastage.mo share/locale/lv/LC_MESSAGES/calligrawords.mo share/locale/lv/LC_MESSAGES/karbon.mo share/locale/lv/LC_MESSAGES/kocolorspaces.mo share/locale/lv/LC_MESSAGES/koconverter.mo share/locale/lv/LC_MESSAGES/okularGenerator_odp.mo share/locale/lv/LC_MESSAGES/okularGenerator_odt.mo share/locale/mai/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mai/LC_MESSAGES/KarbonTools.mo share/locale/mai/LC_MESSAGES/calligra-defaulttools.mo share/locale/mai/LC_MESSAGES/calligra-dockers.mo share/locale/mai/LC_MESSAGES/calligra.mo share/locale/mai/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mai/LC_MESSAGES/calligra_shape_chart.mo share/locale/mai/LC_MESSAGES/calligra_shape_formula.mo share/locale/mai/LC_MESSAGES/calligra_shape_music.mo share/locale/mai/LC_MESSAGES/calligra_shape_paths.mo share/locale/mai/LC_MESSAGES/calligra_shape_picture.mo share/locale/mai/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mai/LC_MESSAGES/calligra_shape_text.mo share/locale/mai/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mai/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mai/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mai/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mai/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mai/LC_MESSAGES/calligrafilters.mo share/locale/mai/LC_MESSAGES/calligrasheets.mo share/locale/mai/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mai/LC_MESSAGES/calligrasheets_solver.mo share/locale/mai/LC_MESSAGES/calligrastage.mo share/locale/mai/LC_MESSAGES/calligrawords.mo share/locale/mai/LC_MESSAGES/karbon.mo share/locale/mai/LC_MESSAGES/kocolorspaces.mo share/locale/mai/LC_MESSAGES/koconverter.mo share/locale/mk/LC_MESSAGES/calligra.mo share/locale/mk/LC_MESSAGES/calligrasheets.mo share/locale/mk/LC_MESSAGES/calligrawords.mo share/locale/ml/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/mr/LC_MESSAGES/KarbonTools.mo share/locale/mr/LC_MESSAGES/braindump.mo share/locale/mr/LC_MESSAGES/calligra-defaulttools.mo share/locale/mr/LC_MESSAGES/calligra-dockers.mo share/locale/mr/LC_MESSAGES/calligra-opener.mo share/locale/mr/LC_MESSAGES/calligra.mo share/locale/mr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/mr/LC_MESSAGES/calligra_shape_chart.mo share/locale/mr/LC_MESSAGES/calligra_shape_comment.mo share/locale/mr/LC_MESSAGES/calligra_shape_formula.mo share/locale/mr/LC_MESSAGES/calligra_shape_music.mo share/locale/mr/LC_MESSAGES/calligra_shape_paths.mo share/locale/mr/LC_MESSAGES/calligra_shape_picture.mo share/locale/mr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/mr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/mr/LC_MESSAGES/calligra_shape_template.mo share/locale/mr/LC_MESSAGES/calligra_shape_text.mo share/locale/mr/LC_MESSAGES/calligra_shape_threed.mo share/locale/mr/LC_MESSAGES/calligra_shape_vector.mo share/locale/mr/LC_MESSAGES/calligra_shape_video.mo share/locale/mr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/mr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/mr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/mr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/mr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/mr/LC_MESSAGES/calligrafilters.mo share/locale/mr/LC_MESSAGES/calligrasheets.mo share/locale/mr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/mr/LC_MESSAGES/calligrasheets_solver.mo share/locale/mr/LC_MESSAGES/calligrastage.mo share/locale/mr/LC_MESSAGES/calligrawords.mo share/locale/mr/LC_MESSAGES/karbon.mo share/locale/mr/LC_MESSAGES/kocolorspaces.mo share/locale/mr/LC_MESSAGES/koconverter.mo share/locale/mr/LC_MESSAGES/okularGenerator_odp.mo share/locale/ms/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ms/LC_MESSAGES/KarbonTools.mo share/locale/ms/LC_MESSAGES/braindump.mo share/locale/ms/LC_MESSAGES/calligra-defaulttools.mo share/locale/ms/LC_MESSAGES/calligra-dockers.mo share/locale/ms/LC_MESSAGES/calligra-opener.mo share/locale/ms/LC_MESSAGES/calligra.mo share/locale/ms/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ms/LC_MESSAGES/calligra_shape_chart.mo share/locale/ms/LC_MESSAGES/calligra_shape_comment.mo share/locale/ms/LC_MESSAGES/calligra_shape_formula.mo share/locale/ms/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ms/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ms/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ms/LC_MESSAGES/calligrafilters.mo share/locale/ms/LC_MESSAGES/calligrasheets.mo share/locale/ms/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ms/LC_MESSAGES/calligrastage.mo share/locale/ms/LC_MESSAGES/calligrawords.mo share/locale/ms/LC_MESSAGES/karbon.mo share/locale/ms/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nb/LC_MESSAGES/KarbonTools.mo share/locale/nb/LC_MESSAGES/braindump.mo share/locale/nb/LC_MESSAGES/calligra-defaulttools.mo share/locale/nb/LC_MESSAGES/calligra-dockers.mo share/locale/nb/LC_MESSAGES/calligra-opener.mo share/locale/nb/LC_MESSAGES/calligra.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nb/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nb/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nb/LC_MESSAGES/calligra_shape_chart.mo share/locale/nb/LC_MESSAGES/calligra_shape_comment.mo share/locale/nb/LC_MESSAGES/calligra_shape_formula.mo share/locale/nb/LC_MESSAGES/calligra_shape_music.mo share/locale/nb/LC_MESSAGES/calligra_shape_paths.mo share/locale/nb/LC_MESSAGES/calligra_shape_picture.mo share/locale/nb/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nb/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nb/LC_MESSAGES/calligra_shape_template.mo share/locale/nb/LC_MESSAGES/calligra_shape_text.mo share/locale/nb/LC_MESSAGES/calligra_shape_threed.mo share/locale/nb/LC_MESSAGES/calligra_shape_vector.mo share/locale/nb/LC_MESSAGES/calligra_shape_video.mo share/locale/nb/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nb/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nb/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nb/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nb/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nb/LC_MESSAGES/calligrafilters.mo share/locale/nb/LC_MESSAGES/calligrasheets.mo share/locale/nb/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nb/LC_MESSAGES/calligrasheets_solver.mo share/locale/nb/LC_MESSAGES/calligrastage.mo share/locale/nb/LC_MESSAGES/calligrawords.mo share/locale/nb/LC_MESSAGES/karbon.mo share/locale/nb/LC_MESSAGES/kocolorspaces.mo share/locale/nb/LC_MESSAGES/koconverter.mo share/locale/nb/LC_MESSAGES/okularGenerator_odp.mo share/locale/nds/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nds/LC_MESSAGES/KarbonTools.mo share/locale/nds/LC_MESSAGES/braindump.mo share/locale/nds/LC_MESSAGES/calligra-defaulttools.mo share/locale/nds/LC_MESSAGES/calligra-dockers.mo share/locale/nds/LC_MESSAGES/calligra-opener.mo share/locale/nds/LC_MESSAGES/calligra.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nds/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nds/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nds/LC_MESSAGES/calligra_shape_chart.mo share/locale/nds/LC_MESSAGES/calligra_shape_comment.mo share/locale/nds/LC_MESSAGES/calligra_shape_formula.mo share/locale/nds/LC_MESSAGES/calligra_shape_music.mo share/locale/nds/LC_MESSAGES/calligra_shape_paths.mo share/locale/nds/LC_MESSAGES/calligra_shape_picture.mo share/locale/nds/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nds/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nds/LC_MESSAGES/calligra_shape_template.mo share/locale/nds/LC_MESSAGES/calligra_shape_text.mo share/locale/nds/LC_MESSAGES/calligra_shape_threed.mo share/locale/nds/LC_MESSAGES/calligra_shape_vector.mo share/locale/nds/LC_MESSAGES/calligra_shape_video.mo share/locale/nds/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nds/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nds/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nds/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nds/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nds/LC_MESSAGES/calligrafilters.mo share/locale/nds/LC_MESSAGES/calligrasheets.mo share/locale/nds/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nds/LC_MESSAGES/calligrasheets_solver.mo share/locale/nds/LC_MESSAGES/calligrastage.mo share/locale/nds/LC_MESSAGES/calligrawords.mo share/locale/nds/LC_MESSAGES/karbon.mo share/locale/nds/LC_MESSAGES/kocolorspaces.mo share/locale/nds/LC_MESSAGES/koconverter.mo share/locale/nds/LC_MESSAGES/okularGenerator_odp.mo share/locale/ne/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ne/LC_MESSAGES/KarbonTools.mo share/locale/ne/LC_MESSAGES/calligra.mo share/locale/ne/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ne/LC_MESSAGES/calligrafilters.mo share/locale/ne/LC_MESSAGES/calligrasheets.mo share/locale/ne/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ne/LC_MESSAGES/calligrastage.mo share/locale/ne/LC_MESSAGES/calligrawords.mo share/locale/ne/LC_MESSAGES/karbon.mo share/locale/ne/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nl/LC_MESSAGES/KarbonTools.mo share/locale/nl/LC_MESSAGES/braindump.mo share/locale/nl/LC_MESSAGES/calligra-defaulttools.mo share/locale/nl/LC_MESSAGES/calligra-dockers.mo share/locale/nl/LC_MESSAGES/calligra-opener.mo share/locale/nl/LC_MESSAGES/calligra.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/nl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/nl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nl/LC_MESSAGES/calligra_shape_chart.mo share/locale/nl/LC_MESSAGES/calligra_shape_comment.mo share/locale/nl/LC_MESSAGES/calligra_shape_formula.mo share/locale/nl/LC_MESSAGES/calligra_shape_music.mo share/locale/nl/LC_MESSAGES/calligra_shape_paths.mo share/locale/nl/LC_MESSAGES/calligra_shape_picture.mo share/locale/nl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/nl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nl/LC_MESSAGES/calligra_shape_template.mo share/locale/nl/LC_MESSAGES/calligra_shape_text.mo share/locale/nl/LC_MESSAGES/calligra_shape_threed.mo share/locale/nl/LC_MESSAGES/calligra_shape_vector.mo share/locale/nl/LC_MESSAGES/calligra_shape_video.mo share/locale/nl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/nl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nl/LC_MESSAGES/calligrafilters.mo share/locale/nl/LC_MESSAGES/calligralauncher.mo share/locale/nl/LC_MESSAGES/calligrasheets.mo share/locale/nl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nl/LC_MESSAGES/calligrasheets_solver.mo share/locale/nl/LC_MESSAGES/calligrastage.mo share/locale/nl/LC_MESSAGES/calligrawords.mo share/locale/nl/LC_MESSAGES/karbon.mo share/locale/nl/LC_MESSAGES/kocolorspaces.mo share/locale/nl/LC_MESSAGES/koconverter.mo share/locale/nl/LC_MESSAGES/okularGenerator_odp.mo share/locale/nl/LC_MESSAGES/okularGenerator_odt.mo share/locale/nn/LC_MESSAGES/KarbonFilterEffects.mo share/locale/nn/LC_MESSAGES/KarbonTools.mo share/locale/nn/LC_MESSAGES/calligra-defaulttools.mo share/locale/nn/LC_MESSAGES/calligra-dockers.mo share/locale/nn/LC_MESSAGES/calligra.mo share/locale/nn/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/nn/LC_MESSAGES/calligra_shape_chart.mo share/locale/nn/LC_MESSAGES/calligra_shape_formula.mo share/locale/nn/LC_MESSAGES/calligra_shape_music.mo share/locale/nn/LC_MESSAGES/calligra_shape_paths.mo share/locale/nn/LC_MESSAGES/calligra_shape_picture.mo share/locale/nn/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/nn/LC_MESSAGES/calligra_shape_text.mo share/locale/nn/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/nn/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/nn/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/nn/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/nn/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/nn/LC_MESSAGES/calligrafilters.mo share/locale/nn/LC_MESSAGES/calligrasheets.mo share/locale/nn/LC_MESSAGES/calligrasheets_calendar.mo share/locale/nn/LC_MESSAGES/calligrasheets_solver.mo share/locale/nn/LC_MESSAGES/calligrastage.mo share/locale/nn/LC_MESSAGES/calligrawords.mo share/locale/nn/LC_MESSAGES/karbon.mo share/locale/nn/LC_MESSAGES/kocolorspaces.mo share/locale/nn/LC_MESSAGES/koconverter.mo share/locale/nn/LC_MESSAGES/okularGenerator_odp.mo share/locale/nn/LC_MESSAGES/okularGenerator_odt.mo share/locale/oc/LC_MESSAGES/KarbonFilterEffects.mo share/locale/oc/LC_MESSAGES/KarbonTools.mo share/locale/oc/LC_MESSAGES/calligra-dockers.mo share/locale/oc/LC_MESSAGES/calligra.mo share/locale/oc/LC_MESSAGES/calligra_shape_music.mo share/locale/oc/LC_MESSAGES/calligra_shape_paths.mo share/locale/oc/LC_MESSAGES/calligra_shape_picture.mo share/locale/oc/LC_MESSAGES/calligra_shape_text.mo share/locale/oc/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/oc/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/oc/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/oc/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/oc/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/oc/LC_MESSAGES/calligrafilters.mo share/locale/oc/LC_MESSAGES/calligrasheets.mo share/locale/oc/LC_MESSAGES/calligrasheets_calendar.mo share/locale/oc/LC_MESSAGES/calligrasheets_solver.mo share/locale/oc/LC_MESSAGES/calligrastage.mo share/locale/oc/LC_MESSAGES/calligrawords.mo share/locale/oc/LC_MESSAGES/karbon.mo share/locale/oc/LC_MESSAGES/koconverter.mo share/locale/pa/LC_MESSAGES/calligra.mo share/locale/pa/LC_MESSAGES/calligrasheets.mo share/locale/pa/LC_MESSAGES/calligrastage.mo share/locale/pa/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pl/LC_MESSAGES/KarbonTools.mo share/locale/pl/LC_MESSAGES/braindump.mo share/locale/pl/LC_MESSAGES/calligra-defaulttools.mo share/locale/pl/LC_MESSAGES/calligra-dockers.mo share/locale/pl/LC_MESSAGES/calligra-opener.mo share/locale/pl/LC_MESSAGES/calligra.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pl/LC_MESSAGES/calligra_shape_chart.mo share/locale/pl/LC_MESSAGES/calligra_shape_comment.mo share/locale/pl/LC_MESSAGES/calligra_shape_formula.mo share/locale/pl/LC_MESSAGES/calligra_shape_music.mo share/locale/pl/LC_MESSAGES/calligra_shape_paths.mo share/locale/pl/LC_MESSAGES/calligra_shape_picture.mo share/locale/pl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pl/LC_MESSAGES/calligra_shape_template.mo share/locale/pl/LC_MESSAGES/calligra_shape_text.mo share/locale/pl/LC_MESSAGES/calligra_shape_threed.mo share/locale/pl/LC_MESSAGES/calligra_shape_vector.mo share/locale/pl/LC_MESSAGES/calligra_shape_video.mo share/locale/pl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/pl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pl/LC_MESSAGES/calligrafilters.mo share/locale/pl/LC_MESSAGES/calligralauncher.mo share/locale/pl/LC_MESSAGES/calligrasheets.mo share/locale/pl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pl/LC_MESSAGES/calligrasheets_solver.mo share/locale/pl/LC_MESSAGES/calligrastage.mo share/locale/pl/LC_MESSAGES/calligrawords.mo share/locale/pl/LC_MESSAGES/karbon.mo share/locale/pl/LC_MESSAGES/kocolorspaces.mo share/locale/pl/LC_MESSAGES/koconverter.mo share/locale/pl/LC_MESSAGES/okularGenerator_odp.mo share/locale/pl/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt/LC_MESSAGES/KarbonTools.mo share/locale/pt/LC_MESSAGES/braindump.mo share/locale/pt/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt/LC_MESSAGES/calligra-dockers.mo share/locale/pt/LC_MESSAGES/calligra-opener.mo share/locale/pt/LC_MESSAGES/calligra.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt/LC_MESSAGES/calligra_shape_music.mo share/locale/pt/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt/LC_MESSAGES/calligra_shape_template.mo share/locale/pt/LC_MESSAGES/calligra_shape_text.mo share/locale/pt/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt/LC_MESSAGES/calligra_shape_video.mo share/locale/pt/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pt/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pt/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pt/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pt/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pt/LC_MESSAGES/calligrafilters.mo share/locale/pt/LC_MESSAGES/calligrasheets.mo share/locale/pt/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pt/LC_MESSAGES/calligrasheets_solver.mo share/locale/pt/LC_MESSAGES/calligrastage.mo share/locale/pt/LC_MESSAGES/calligrawords.mo share/locale/pt/LC_MESSAGES/karbon.mo share/locale/pt/LC_MESSAGES/kocolorspaces.mo share/locale/pt/LC_MESSAGES/koconverter.mo share/locale/pt/LC_MESSAGES/okularGenerator_odp.mo share/locale/pt/LC_MESSAGES/okularGenerator_odt.mo share/locale/pt_BR/LC_MESSAGES/KarbonFilterEffects.mo share/locale/pt_BR/LC_MESSAGES/KarbonTools.mo share/locale/pt_BR/LC_MESSAGES/braindump.mo share/locale/pt_BR/LC_MESSAGES/calligra-defaulttools.mo share/locale/pt_BR/LC_MESSAGES/calligra-dockers.mo share/locale/pt_BR/LC_MESSAGES/calligra-opener.mo share/locale/pt_BR/LC_MESSAGES/calligra.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/pt_BR/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_chart.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_comment.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_formula.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_music.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_paths.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_picture.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_plugin.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_template.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_text.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_threed.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_vector.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_video.mo share/locale/pt_BR/LC_MESSAGES/calligra_shape_webshape.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/pt_BR/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/pt_BR/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/pt_BR/LC_MESSAGES/calligrafilters.mo share/locale/pt_BR/LC_MESSAGES/calligralauncher.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets_calendar.mo share/locale/pt_BR/LC_MESSAGES/calligrasheets_solver.mo share/locale/pt_BR/LC_MESSAGES/calligrastage.mo share/locale/pt_BR/LC_MESSAGES/calligrawords.mo share/locale/pt_BR/LC_MESSAGES/karbon.mo share/locale/pt_BR/LC_MESSAGES/kocolorspaces.mo share/locale/pt_BR/LC_MESSAGES/koconverter.mo share/locale/pt_BR/LC_MESSAGES/okularGenerator_odp.mo share/locale/pt_BR/LC_MESSAGES/okularGenerator_odt.mo share/locale/ro/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ro/LC_MESSAGES/KarbonTools.mo share/locale/ro/LC_MESSAGES/calligra-dockers.mo share/locale/ro/LC_MESSAGES/calligra.mo share/locale/ro/LC_MESSAGES/calligra_shape_music.mo share/locale/ro/LC_MESSAGES/calligra_shape_paths.mo share/locale/ro/LC_MESSAGES/calligra_shape_picture.mo share/locale/ro/LC_MESSAGES/calligra_shape_text.mo share/locale/ro/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ro/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ro/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ro/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ro/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ro/LC_MESSAGES/calligrafilters.mo share/locale/ro/LC_MESSAGES/calligrasheets.mo share/locale/ro/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ro/LC_MESSAGES/calligrasheets_solver.mo share/locale/ro/LC_MESSAGES/calligrastage.mo share/locale/ro/LC_MESSAGES/calligrawords.mo share/locale/ro/LC_MESSAGES/karbon.mo share/locale/ro/LC_MESSAGES/koconverter.mo share/locale/ru/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ru/LC_MESSAGES/KarbonTools.mo share/locale/ru/LC_MESSAGES/braindump.mo share/locale/ru/LC_MESSAGES/calligra-defaulttools.mo share/locale/ru/LC_MESSAGES/calligra-dockers.mo share/locale/ru/LC_MESSAGES/calligra-opener.mo share/locale/ru/LC_MESSAGES/calligra.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/ru/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/ru/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ru/LC_MESSAGES/calligra_shape_chart.mo share/locale/ru/LC_MESSAGES/calligra_shape_comment.mo share/locale/ru/LC_MESSAGES/calligra_shape_formula.mo share/locale/ru/LC_MESSAGES/calligra_shape_music.mo share/locale/ru/LC_MESSAGES/calligra_shape_paths.mo share/locale/ru/LC_MESSAGES/calligra_shape_picture.mo share/locale/ru/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ru/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ru/LC_MESSAGES/calligra_shape_template.mo share/locale/ru/LC_MESSAGES/calligra_shape_text.mo share/locale/ru/LC_MESSAGES/calligra_shape_threed.mo share/locale/ru/LC_MESSAGES/calligra_shape_vector.mo share/locale/ru/LC_MESSAGES/calligra_shape_video.mo share/locale/ru/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ru/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ru/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ru/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ru/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ru/LC_MESSAGES/calligrafilters.mo share/locale/ru/LC_MESSAGES/calligrasheets.mo share/locale/ru/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ru/LC_MESSAGES/calligrasheets_solver.mo share/locale/ru/LC_MESSAGES/calligrastage.mo share/locale/ru/LC_MESSAGES/calligrawords.mo share/locale/ru/LC_MESSAGES/karbon.mo share/locale/ru/LC_MESSAGES/kocolorspaces.mo share/locale/ru/LC_MESSAGES/koconverter.mo share/locale/ru/LC_MESSAGES/okularGenerator_odp.mo share/locale/ru/LC_MESSAGES/okularGenerator_odt.mo share/locale/sa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sa/LC_MESSAGES/KarbonTools.mo share/locale/sa/LC_MESSAGES/braindump.mo share/locale/sa/LC_MESSAGES/calligra-defaulttools.mo share/locale/sa/LC_MESSAGES/calligra-dockers.mo share/locale/sa/LC_MESSAGES/calligra-opener.mo share/locale/sa/LC_MESSAGES/calligra.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sa/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sa/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sa/LC_MESSAGES/calligra_shape_chart.mo share/locale/sa/LC_MESSAGES/calligra_shape_comment.mo share/locale/sa/LC_MESSAGES/calligra_shape_formula.mo share/locale/sa/LC_MESSAGES/calligra_shape_music.mo share/locale/sa/LC_MESSAGES/calligra_shape_paths.mo share/locale/sa/LC_MESSAGES/calligra_shape_picture.mo share/locale/sa/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sa/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sa/LC_MESSAGES/calligra_shape_template.mo share/locale/sa/LC_MESSAGES/calligra_shape_text.mo share/locale/sa/LC_MESSAGES/calligra_shape_threed.mo share/locale/sa/LC_MESSAGES/calligra_shape_vector.mo share/locale/sa/LC_MESSAGES/calligra_shape_video.mo share/locale/sa/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sa/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sa/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sa/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sa/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sa/LC_MESSAGES/calligrafilters.mo share/locale/sa/LC_MESSAGES/calligralauncher.mo share/locale/sa/LC_MESSAGES/calligrasheets.mo share/locale/sa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sa/LC_MESSAGES/calligrasheets_solver.mo share/locale/sa/LC_MESSAGES/calligrastage.mo share/locale/sa/LC_MESSAGES/calligrawords.mo share/locale/sa/LC_MESSAGES/karbon.mo share/locale/sa/LC_MESSAGES/kocolorspaces.mo share/locale/sa/LC_MESSAGES/koconverter.mo share/locale/sa/LC_MESSAGES/okularGenerator_odp.mo share/locale/sa/LC_MESSAGES/okularGenerator_odt.mo share/locale/se/LC_MESSAGES/KarbonFilterEffects.mo share/locale/se/LC_MESSAGES/KarbonTools.mo share/locale/se/LC_MESSAGES/calligra.mo share/locale/se/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/se/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/se/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/se/LC_MESSAGES/calligrafilters.mo share/locale/se/LC_MESSAGES/calligrasheets.mo share/locale/se/LC_MESSAGES/calligrasheets_calendar.mo share/locale/se/LC_MESSAGES/calligrastage.mo share/locale/se/LC_MESSAGES/calligrawords.mo share/locale/se/LC_MESSAGES/karbon.mo share/locale/se/LC_MESSAGES/koconverter.mo share/locale/sk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sk/LC_MESSAGES/KarbonTools.mo share/locale/sk/LC_MESSAGES/braindump.mo share/locale/sk/LC_MESSAGES/calligra-defaulttools.mo share/locale/sk/LC_MESSAGES/calligra-dockers.mo share/locale/sk/LC_MESSAGES/calligra-opener.mo share/locale/sk/LC_MESSAGES/calligra.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sk/LC_MESSAGES/calligra_shape_chart.mo share/locale/sk/LC_MESSAGES/calligra_shape_comment.mo share/locale/sk/LC_MESSAGES/calligra_shape_formula.mo share/locale/sk/LC_MESSAGES/calligra_shape_music.mo share/locale/sk/LC_MESSAGES/calligra_shape_paths.mo share/locale/sk/LC_MESSAGES/calligra_shape_picture.mo share/locale/sk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sk/LC_MESSAGES/calligra_shape_template.mo share/locale/sk/LC_MESSAGES/calligra_shape_text.mo share/locale/sk/LC_MESSAGES/calligra_shape_threed.mo share/locale/sk/LC_MESSAGES/calligra_shape_vector.mo share/locale/sk/LC_MESSAGES/calligra_shape_video.mo share/locale/sk/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sk/LC_MESSAGES/calligrafilters.mo share/locale/sk/LC_MESSAGES/calligralauncher.mo share/locale/sk/LC_MESSAGES/calligrasheets.mo share/locale/sk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sk/LC_MESSAGES/calligrasheets_solver.mo share/locale/sk/LC_MESSAGES/calligrastage.mo share/locale/sk/LC_MESSAGES/calligrawords.mo share/locale/sk/LC_MESSAGES/karbon.mo share/locale/sk/LC_MESSAGES/kocolorspaces.mo share/locale/sk/LC_MESSAGES/koconverter.mo share/locale/sk/LC_MESSAGES/okularGenerator_odp.mo share/locale/sk/LC_MESSAGES/okularGenerator_odt.mo share/locale/sl/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sl/LC_MESSAGES/KarbonTools.mo share/locale/sl/LC_MESSAGES/braindump.mo share/locale/sl/LC_MESSAGES/calligra-defaulttools.mo share/locale/sl/LC_MESSAGES/calligra-dockers.mo share/locale/sl/LC_MESSAGES/calligra-opener.mo share/locale/sl/LC_MESSAGES/calligra.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sl/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sl/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sl/LC_MESSAGES/calligra_shape_chart.mo share/locale/sl/LC_MESSAGES/calligra_shape_comment.mo share/locale/sl/LC_MESSAGES/calligra_shape_formula.mo share/locale/sl/LC_MESSAGES/calligra_shape_music.mo share/locale/sl/LC_MESSAGES/calligra_shape_paths.mo share/locale/sl/LC_MESSAGES/calligra_shape_picture.mo share/locale/sl/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sl/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sl/LC_MESSAGES/calligra_shape_template.mo share/locale/sl/LC_MESSAGES/calligra_shape_text.mo share/locale/sl/LC_MESSAGES/calligra_shape_threed.mo share/locale/sl/LC_MESSAGES/calligra_shape_vector.mo share/locale/sl/LC_MESSAGES/calligra_shape_video.mo share/locale/sl/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sl/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sl/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sl/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sl/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sl/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sl/LC_MESSAGES/calligrafilters.mo share/locale/sl/LC_MESSAGES/calligralauncher.mo share/locale/sl/LC_MESSAGES/calligrasheets.mo share/locale/sl/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sl/LC_MESSAGES/calligrasheets_solver.mo share/locale/sl/LC_MESSAGES/calligrastage.mo share/locale/sl/LC_MESSAGES/calligrawords.mo share/locale/sl/LC_MESSAGES/karbon.mo share/locale/sl/LC_MESSAGES/kocolorspaces.mo share/locale/sl/LC_MESSAGES/koconverter.mo share/locale/sl/LC_MESSAGES/okularGenerator_odp.mo share/locale/sl/LC_MESSAGES/okularGenerator_odt.mo share/locale/sq/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sq/LC_MESSAGES/calligra_shape_picture.mo share/locale/sq/LC_MESSAGES/calligra_shape_video.mo share/locale/sq/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sq/LC_MESSAGES/karbon.mo share/locale/sq/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/KarbonFilterEffects.mo share/locale/sv/LC_MESSAGES/KarbonTools.mo share/locale/sv/LC_MESSAGES/braindump.mo share/locale/sv/LC_MESSAGES/calligra-defaulttools.mo share/locale/sv/LC_MESSAGES/calligra-dockers.mo share/locale/sv/LC_MESSAGES/calligra-opener.mo share/locale/sv/LC_MESSAGES/calligra.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/sv/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/sv/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/sv/LC_MESSAGES/calligra_shape_chart.mo share/locale/sv/LC_MESSAGES/calligra_shape_comment.mo share/locale/sv/LC_MESSAGES/calligra_shape_formula.mo share/locale/sv/LC_MESSAGES/calligra_shape_music.mo share/locale/sv/LC_MESSAGES/calligra_shape_paths.mo share/locale/sv/LC_MESSAGES/calligra_shape_picture.mo share/locale/sv/LC_MESSAGES/calligra_shape_plugin.mo share/locale/sv/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/sv/LC_MESSAGES/calligra_shape_template.mo share/locale/sv/LC_MESSAGES/calligra_shape_text.mo share/locale/sv/LC_MESSAGES/calligra_shape_threed.mo share/locale/sv/LC_MESSAGES/calligra_shape_vector.mo share/locale/sv/LC_MESSAGES/calligra_shape_video.mo share/locale/sv/LC_MESSAGES/calligra_shape_webshape.mo share/locale/sv/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/sv/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/sv/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/sv/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/sv/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/sv/LC_MESSAGES/calligrafilters.mo share/locale/sv/LC_MESSAGES/calligralauncher.mo share/locale/sv/LC_MESSAGES/calligrasheets.mo share/locale/sv/LC_MESSAGES/calligrasheets_calendar.mo share/locale/sv/LC_MESSAGES/calligrasheets_solver.mo share/locale/sv/LC_MESSAGES/calligrastage.mo share/locale/sv/LC_MESSAGES/calligrawords.mo share/locale/sv/LC_MESSAGES/karbon.mo share/locale/sv/LC_MESSAGES/kocolorspaces.mo share/locale/sv/LC_MESSAGES/koconverter.mo share/locale/sv/LC_MESSAGES/okularGenerator_odp.mo share/locale/sv/LC_MESSAGES/okularGenerator_odt.mo share/locale/ta/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ta/LC_MESSAGES/KarbonTools.mo share/locale/ta/LC_MESSAGES/calligra.mo share/locale/ta/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ta/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ta/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ta/LC_MESSAGES/calligrafilters.mo share/locale/ta/LC_MESSAGES/calligrasheets.mo share/locale/ta/LC_MESSAGES/calligrastage.mo share/locale/ta/LC_MESSAGES/calligrawords.mo share/locale/ta/LC_MESSAGES/karbon.mo share/locale/ta/LC_MESSAGES/koconverter.mo share/locale/tg/LC_MESSAGES/KarbonFilterEffects.mo share/locale/tg/LC_MESSAGES/KarbonTools.mo share/locale/tg/LC_MESSAGES/calligra.mo share/locale/tg/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/tg/LC_MESSAGES/calligrafilters.mo share/locale/tg/LC_MESSAGES/calligrasheets.mo share/locale/tg/LC_MESSAGES/calligrasheets_calendar.mo share/locale/tg/LC_MESSAGES/calligrastage.mo share/locale/tg/LC_MESSAGES/calligrawords.mo share/locale/tg/LC_MESSAGES/karbon.mo share/locale/tg/LC_MESSAGES/koconverter.mo share/locale/th/LC_MESSAGES/KarbonFilterEffects.mo share/locale/th/LC_MESSAGES/KarbonTools.mo share/locale/th/LC_MESSAGES/calligra.mo share/locale/th/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/th/LC_MESSAGES/calligrafilters.mo share/locale/th/LC_MESSAGES/calligrasheets.mo share/locale/th/LC_MESSAGES/calligrastage.mo share/locale/th/LC_MESSAGES/calligrawords.mo share/locale/th/LC_MESSAGES/karbon.mo share/locale/th/LC_MESSAGES/koconverter.mo share/locale/tr/LC_MESSAGES/KarbonFilterEffects.mo share/locale/tr/LC_MESSAGES/KarbonTools.mo share/locale/tr/LC_MESSAGES/braindump.mo share/locale/tr/LC_MESSAGES/calligra-defaulttools.mo share/locale/tr/LC_MESSAGES/calligra-dockers.mo share/locale/tr/LC_MESSAGES/calligra-opener.mo share/locale/tr/LC_MESSAGES/calligra.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/tr/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/tr/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/tr/LC_MESSAGES/calligra_shape_chart.mo share/locale/tr/LC_MESSAGES/calligra_shape_comment.mo share/locale/tr/LC_MESSAGES/calligra_shape_formula.mo share/locale/tr/LC_MESSAGES/calligra_shape_music.mo share/locale/tr/LC_MESSAGES/calligra_shape_paths.mo share/locale/tr/LC_MESSAGES/calligra_shape_picture.mo share/locale/tr/LC_MESSAGES/calligra_shape_plugin.mo share/locale/tr/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/tr/LC_MESSAGES/calligra_shape_template.mo share/locale/tr/LC_MESSAGES/calligra_shape_text.mo share/locale/tr/LC_MESSAGES/calligra_shape_threed.mo share/locale/tr/LC_MESSAGES/calligra_shape_vector.mo share/locale/tr/LC_MESSAGES/calligra_shape_video.mo share/locale/tr/LC_MESSAGES/calligra_shape_webshape.mo share/locale/tr/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/tr/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/tr/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/tr/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/tr/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/tr/LC_MESSAGES/calligrafilters.mo share/locale/tr/LC_MESSAGES/calligralauncher.mo share/locale/tr/LC_MESSAGES/calligrasheets.mo share/locale/tr/LC_MESSAGES/calligrasheets_calendar.mo share/locale/tr/LC_MESSAGES/calligrasheets_solver.mo share/locale/tr/LC_MESSAGES/calligrastage.mo share/locale/tr/LC_MESSAGES/calligrawords.mo share/locale/tr/LC_MESSAGES/karbon.mo share/locale/tr/LC_MESSAGES/kocolorspaces.mo share/locale/tr/LC_MESSAGES/koconverter.mo share/locale/tr/LC_MESSAGES/okularGenerator_odp.mo share/locale/tr/LC_MESSAGES/okularGenerator_odt.mo share/locale/ug/LC_MESSAGES/KarbonFilterEffects.mo share/locale/ug/LC_MESSAGES/KarbonTools.mo share/locale/ug/LC_MESSAGES/braindump.mo share/locale/ug/LC_MESSAGES/calligra-defaulttools.mo share/locale/ug/LC_MESSAGES/calligra-dockers.mo share/locale/ug/LC_MESSAGES/calligra-opener.mo share/locale/ug/LC_MESSAGES/calligra.mo share/locale/ug/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/ug/LC_MESSAGES/calligra_shape_chart.mo share/locale/ug/LC_MESSAGES/calligra_shape_comment.mo share/locale/ug/LC_MESSAGES/calligra_shape_formula.mo share/locale/ug/LC_MESSAGES/calligra_shape_music.mo share/locale/ug/LC_MESSAGES/calligra_shape_paths.mo share/locale/ug/LC_MESSAGES/calligra_shape_picture.mo share/locale/ug/LC_MESSAGES/calligra_shape_plugin.mo share/locale/ug/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/ug/LC_MESSAGES/calligra_shape_template.mo share/locale/ug/LC_MESSAGES/calligra_shape_text.mo share/locale/ug/LC_MESSAGES/calligra_shape_threed.mo share/locale/ug/LC_MESSAGES/calligra_shape_vector.mo share/locale/ug/LC_MESSAGES/calligra_shape_video.mo share/locale/ug/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/ug/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/ug/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/ug/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/ug/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/ug/LC_MESSAGES/calligrafilters.mo share/locale/ug/LC_MESSAGES/calligrasheets.mo share/locale/ug/LC_MESSAGES/calligrasheets_calendar.mo share/locale/ug/LC_MESSAGES/calligrasheets_solver.mo share/locale/ug/LC_MESSAGES/calligrastage.mo share/locale/ug/LC_MESSAGES/calligrawords.mo share/locale/ug/LC_MESSAGES/karbon.mo share/locale/ug/LC_MESSAGES/kocolorspaces.mo share/locale/ug/LC_MESSAGES/koconverter.mo share/locale/ug/LC_MESSAGES/okularGenerator_odp.mo share/locale/uk/LC_MESSAGES/KarbonFilterEffects.mo share/locale/uk/LC_MESSAGES/KarbonTools.mo share/locale/uk/LC_MESSAGES/braindump.mo share/locale/uk/LC_MESSAGES/calligra-defaulttools.mo share/locale/uk/LC_MESSAGES/calligra-dockers.mo share/locale/uk/LC_MESSAGES/calligra-opener.mo share/locale/uk/LC_MESSAGES/calligra.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/uk/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/uk/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/uk/LC_MESSAGES/calligra_shape_chart.mo share/locale/uk/LC_MESSAGES/calligra_shape_comment.mo share/locale/uk/LC_MESSAGES/calligra_shape_formula.mo share/locale/uk/LC_MESSAGES/calligra_shape_music.mo share/locale/uk/LC_MESSAGES/calligra_shape_paths.mo share/locale/uk/LC_MESSAGES/calligra_shape_picture.mo share/locale/uk/LC_MESSAGES/calligra_shape_plugin.mo share/locale/uk/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/uk/LC_MESSAGES/calligra_shape_template.mo share/locale/uk/LC_MESSAGES/calligra_shape_text.mo share/locale/uk/LC_MESSAGES/calligra_shape_threed.mo share/locale/uk/LC_MESSAGES/calligra_shape_vector.mo share/locale/uk/LC_MESSAGES/calligra_shape_video.mo share/locale/uk/LC_MESSAGES/calligra_shape_webshape.mo share/locale/uk/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/uk/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/uk/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/uk/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/uk/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/uk/LC_MESSAGES/calligrafilters.mo share/locale/uk/LC_MESSAGES/calligralauncher.mo share/locale/uk/LC_MESSAGES/calligrasheets.mo share/locale/uk/LC_MESSAGES/calligrasheets_calendar.mo share/locale/uk/LC_MESSAGES/calligrasheets_solver.mo share/locale/uk/LC_MESSAGES/calligrastage.mo share/locale/uk/LC_MESSAGES/calligrawords.mo share/locale/uk/LC_MESSAGES/karbon.mo share/locale/uk/LC_MESSAGES/kocolorspaces.mo share/locale/uk/LC_MESSAGES/koconverter.mo share/locale/uk/LC_MESSAGES/okularGenerator_odp.mo share/locale/uk/LC_MESSAGES/okularGenerator_odt.mo share/locale/uz/LC_MESSAGES/KarbonFilterEffects.mo share/locale/uz/LC_MESSAGES/KarbonTools.mo share/locale/uz/LC_MESSAGES/calligra.mo share/locale/uz/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/uz/LC_MESSAGES/calligrafilters.mo share/locale/uz/LC_MESSAGES/calligrasheets.mo share/locale/uz/LC_MESSAGES/calligrastage.mo share/locale/uz/LC_MESSAGES/calligrawords.mo share/locale/uz/LC_MESSAGES/karbon.mo share/locale/uz/LC_MESSAGES/koconverter.mo share/locale/uz@cyrillic/LC_MESSAGES/calligra.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrafilters.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrasheets.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrastage.mo share/locale/uz@cyrillic/LC_MESSAGES/calligrawords.mo share/locale/vi/LC_MESSAGES/calligra.mo share/locale/vi/LC_MESSAGES/calligrafilters.mo share/locale/vi/LC_MESSAGES/calligrastage.mo share/locale/vi/LC_MESSAGES/calligrawords.mo share/locale/wa/LC_MESSAGES/KarbonFilterEffects.mo share/locale/wa/LC_MESSAGES/KarbonTools.mo share/locale/wa/LC_MESSAGES/calligra-defaulttools.mo share/locale/wa/LC_MESSAGES/calligra-dockers.mo share/locale/wa/LC_MESSAGES/calligra.mo share/locale/wa/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/wa/LC_MESSAGES/calligra_shape_chart.mo share/locale/wa/LC_MESSAGES/calligra_shape_comment.mo share/locale/wa/LC_MESSAGES/calligra_shape_formula.mo share/locale/wa/LC_MESSAGES/calligra_shape_music.mo share/locale/wa/LC_MESSAGES/calligra_shape_paths.mo share/locale/wa/LC_MESSAGES/calligra_shape_picture.mo share/locale/wa/LC_MESSAGES/calligra_shape_plugin.mo share/locale/wa/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/wa/LC_MESSAGES/calligra_shape_text.mo share/locale/wa/LC_MESSAGES/calligra_shape_vector.mo share/locale/wa/LC_MESSAGES/calligra_shape_video.mo share/locale/wa/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/wa/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/wa/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/wa/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/wa/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/wa/LC_MESSAGES/calligrafilters.mo share/locale/wa/LC_MESSAGES/calligrasheets.mo share/locale/wa/LC_MESSAGES/calligrasheets_calendar.mo share/locale/wa/LC_MESSAGES/calligrasheets_solver.mo share/locale/wa/LC_MESSAGES/calligrastage.mo share/locale/wa/LC_MESSAGES/calligrawords.mo share/locale/wa/LC_MESSAGES/karbon.mo share/locale/wa/LC_MESSAGES/kocolorspaces.mo share/locale/wa/LC_MESSAGES/koconverter.mo share/locale/xh/LC_MESSAGES/KarbonFilterEffects.mo share/locale/xh/LC_MESSAGES/KarbonTools.mo share/locale/xh/LC_MESSAGES/calligra.mo share/locale/xh/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/xh/LC_MESSAGES/calligrafilters.mo share/locale/xh/LC_MESSAGES/calligrasheets.mo share/locale/xh/LC_MESSAGES/calligrastage.mo share/locale/xh/LC_MESSAGES/calligrawords.mo share/locale/xh/LC_MESSAGES/karbon.mo share/locale/xh/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/KarbonFilterEffects.mo share/locale/zh_CN/LC_MESSAGES/KarbonTools.mo share/locale/zh_CN/LC_MESSAGES/braindump.mo share/locale/zh_CN/LC_MESSAGES/calligra-defaulttools.mo share/locale/zh_CN/LC_MESSAGES/calligra-dockers.mo share/locale/zh_CN/LC_MESSAGES/calligra-opener.mo share/locale/zh_CN/LC_MESSAGES/calligra.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/zh_CN/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_chart.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_comment.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_formula.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_music.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_paths.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_picture.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_plugin.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_template.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_text.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_threed.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_vector.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_video.mo share/locale/zh_CN/LC_MESSAGES/calligra_shape_webshape.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/zh_CN/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/zh_CN/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/zh_CN/LC_MESSAGES/calligrafilters.mo share/locale/zh_CN/LC_MESSAGES/calligralauncher.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets_calendar.mo share/locale/zh_CN/LC_MESSAGES/calligrasheets_solver.mo share/locale/zh_CN/LC_MESSAGES/calligrastage.mo share/locale/zh_CN/LC_MESSAGES/calligrawords.mo share/locale/zh_CN/LC_MESSAGES/karbon.mo share/locale/zh_CN/LC_MESSAGES/kocolorspaces.mo share/locale/zh_CN/LC_MESSAGES/koconverter.mo share/locale/zh_CN/LC_MESSAGES/okularGenerator_odp.mo share/locale/zh_CN/LC_MESSAGES/okularGenerator_odt.mo share/locale/zh_TW/LC_MESSAGES/KarbonFilterEffects.mo share/locale/zh_TW/LC_MESSAGES/KarbonTools.mo share/locale/zh_TW/LC_MESSAGES/braindump.mo share/locale/zh_TW/LC_MESSAGES/calligra-defaulttools.mo share/locale/zh_TW/LC_MESSAGES/calligra-dockers.mo share/locale/zh_TW/LC_MESSAGES/calligra-opener.mo share/locale/zh_TW/LC_MESSAGES/calligra.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_contact.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_event.mo share/locale/zh_TW/LC_MESSAGES/calligra_semanticitem_location.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_artistictext.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_chart.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_comment.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_formula.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_music.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_paths.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_picture.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_plugin.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_spreadsheet.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_template.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_text.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_threed.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_vector.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_video.mo share/locale/zh_TW/LC_MESSAGES/calligra_shape_webshape.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_autocorrect.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_changecase.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_spellcheck.mo share/locale/zh_TW/LC_MESSAGES/calligra_textediting_thesaurus.mo share/locale/zh_TW/LC_MESSAGES/calligra_textinlineobject_variables.mo share/locale/zh_TW/LC_MESSAGES/calligrafilters.mo share/locale/zh_TW/LC_MESSAGES/calligralauncher.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets_calendar.mo share/locale/zh_TW/LC_MESSAGES/calligrasheets_solver.mo share/locale/zh_TW/LC_MESSAGES/calligrastage.mo share/locale/zh_TW/LC_MESSAGES/calligrawords.mo share/locale/zh_TW/LC_MESSAGES/karbon.mo share/locale/zh_TW/LC_MESSAGES/kocolorspaces.mo share/locale/zh_TW/LC_MESSAGES/koconverter.mo share/locale/zh_TW/LC_MESSAGES/okularGenerator_odp.mo share/locale/zh_TW/LC_MESSAGES/okularGenerator_odt.mo share/metainfo/org.kde.calligra.karbon.metainfo.xml share/metainfo/org.kde.calligra.metainfo.xml share/metainfo/org.kde.calligra.sheets.metainfo.xml share/metainfo/org.kde.calligra.stage.metainfo.xml share/metainfo/org.kde.calligra.words.metainfo.xml share/mime/packages/calligra_svm.xml share/mime/packages/wiki-format.xml share/templates/.source/Illustration.odg share/templates/.source/Presentation.odp share/templates/.source/SpreadSheet.ods share/templates/.source/TextDocument.odt share/templates/Illustration.desktop share/templates/Presentation.desktop share/templates/SpreadSheet.desktop share/templates/TextDocument.desktop diff --git a/editors/ghostwriter/distinfo b/editors/ghostwriter/distinfo index f7e33779a0ee..02334b2251af 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570643 -SHA256 (KDE/release-service/25.12.2/ghostwriter-25.12.2.tar.xz) = 365fdea7669152f224271ede68c7c50f5b220cce26e4310482fed7e8c420de95 -SIZE (KDE/release-service/25.12.2/ghostwriter-25.12.2.tar.xz) = 2735676 +TIMESTAMP = 1772541877 +SHA256 (KDE/release-service/25.12.3/ghostwriter-25.12.3.tar.xz) = b70127c420e1d8f72379cee4c70c809104b581f63c9da7c83ff344497934d796 +SIZE (KDE/release-service/25.12.3/ghostwriter-25.12.3.tar.xz) = 2736152 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 7872e0efb2d6..7991fe22c579 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570645 -SHA256 (KDE/release-service/25.12.2/kate-25.12.2.tar.xz) = 084d7d75c70326438f4a34fecb3576d9968808650c1852c44726472f9267062a -SIZE (KDE/release-service/25.12.2/kate-25.12.2.tar.xz) = 8534324 +TIMESTAMP = 1772541878 +SHA256 (KDE/release-service/25.12.3/kate-25.12.3.tar.xz) = d761d976c19922843617211d9069ded08d6eb43891e28e56eb9385b626ce90ab +SIZE (KDE/release-service/25.12.3/kate-25.12.3.tar.xz) = 8561744 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 8e06db1b7fb2..005a65a81300 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1829 +1,1842 @@ bin/exec_inspect.sh bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kf6/kio/kio_kateexec.so %%QT_PLUGINDIR%%/kf6/ktexteditor/bookmarksplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/kf6/ktexteditor/eslintplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/formatplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kategpgplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/keyboardmacrosplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/openlinkplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/kf6/ktexteditor/rbqlplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/templateplugin.so %%QT_PLUGINDIR%%/kf6/ktexteditor/textfilterplugin.so share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/150x150/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/256x256/apps/kwrite.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/310x310/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/44x44/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/512x512/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svg share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/locale/af/LC_MESSAGES/kate.mo share/locale/af/LC_MESSAGES/katetextfilter.mo share/locale/af/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/formatplugin.mo share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebookmarksplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ar/LC_MESSAGES/katecompilerexplorer.mo share/locale/ar/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/kategitblameplugin.mo share/locale/ar/LC_MESSAGES/kategpgplugin.mo share/locale/ar/LC_MESSAGES/katekeyboardmacros.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ar/LC_MESSAGES/lspclient.mo share/locale/ar/LC_MESSAGES/rainbowparens.mo share/locale/ar/LC_MESSAGES/rbqlplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo share/locale/ast/LC_MESSAGES/formatplugin.mo share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ast/LC_MESSAGES/kate.mo share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ast/LC_MESSAGES/katebuild-plugin.mo share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ast/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ast/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.mo share/locale/ast/LC_MESSAGES/kategitblameplugin.mo share/locale/ast/LC_MESSAGES/katekeyboardmacros.mo share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo share/locale/ast/LC_MESSAGES/kateproject.mo share/locale/ast/LC_MESSAGES/katesearch.mo share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo share/locale/ast/LC_MESSAGES/katesql.mo share/locale/ast/LC_MESSAGES/katesymbolviewer.mo share/locale/ast/LC_MESSAGES/katetextfilter.mo share/locale/ast/LC_MESSAGES/katexmlcheck.mo share/locale/ast/LC_MESSAGES/katexmltools.mo share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ast/LC_MESSAGES/lspclient.mo share/locale/ast/LC_MESSAGES/rainbowparens.mo share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo share/locale/az/LC_MESSAGES/kate.mo share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/az/LC_MESSAGES/katebuild-plugin.mo share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo share/locale/az/LC_MESSAGES/katefiletree.mo share/locale/az/LC_MESSAGES/kategdbplugin.mo share/locale/az/LC_MESSAGES/kategitblameplugin.mo share/locale/az/LC_MESSAGES/katekeyboardmacros.mo share/locale/az/LC_MESSAGES/katekonsoleplugin.mo share/locale/az/LC_MESSAGES/kateproject.mo share/locale/az/LC_MESSAGES/katesearch.mo share/locale/az/LC_MESSAGES/katesnippetsplugin.mo share/locale/az/LC_MESSAGES/katesql.mo share/locale/az/LC_MESSAGES/katesymbolviewer.mo share/locale/az/LC_MESSAGES/katetextfilter.mo share/locale/az/LC_MESSAGES/katexmlcheck.mo share/locale/az/LC_MESSAGES/katexmltools.mo share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/az/LC_MESSAGES/lspclient.mo share/locale/az/LC_MESSAGES/tabswitcherplugin.mo share/locale/be/LC_MESSAGES/kate.mo share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo share/locale/be/LC_MESSAGES/katekonsoleplugin.mo share/locale/be/LC_MESSAGES/katesymbolviewer.mo share/locale/be/LC_MESSAGES/katetextfilter.mo share/locale/be/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/formatplugin.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bg/LC_MESSAGES/katebookmarksplugin.mo share/locale/bg/LC_MESSAGES/katebuild-plugin.mo share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo share/locale/bg/LC_MESSAGES/katecompilerexplorer.mo share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katefiletree.mo share/locale/bg/LC_MESSAGES/kategdbplugin.mo share/locale/bg/LC_MESSAGES/kategitblameplugin.mo share/locale/bg/LC_MESSAGES/katekeyboardmacros.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/katetextfilter.mo share/locale/bg/LC_MESSAGES/katexmlcheck.mo share/locale/bg/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/lspclient.mo share/locale/bg/LC_MESSAGES/rainbowparens.mo share/locale/bg/LC_MESSAGES/rbqlplugin.mo share/locale/bg/LC_MESSAGES/tabswitcherplugin.mo share/locale/br/LC_MESSAGES/kate.mo share/locale/br/LC_MESSAGES/katesymbolviewer.mo share/locale/br/LC_MESSAGES/katetextfilter.mo share/locale/br/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca/LC_MESSAGES/formatplugin.mo share/locale/ca/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca/LC_MESSAGES/kate.mo share/locale/ca/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca/LC_MESSAGES/katebookmarksplugin.mo share/locale/ca/LC_MESSAGES/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca/LC_MESSAGES/katecompilerexplorer.mo share/locale/ca/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca/LC_MESSAGES/katefiletree.mo share/locale/ca/LC_MESSAGES/kategdbplugin.mo share/locale/ca/LC_MESSAGES/kategitblameplugin.mo share/locale/ca/LC_MESSAGES/kategpgplugin.mo share/locale/ca/LC_MESSAGES/katekeyboardmacros.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/rainbowparens.mo share/locale/ca/LC_MESSAGES/rbqlplugin.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.mo share/locale/ca@valencia/LC_MESSAGES/formatplugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ca@valencia/LC_MESSAGES/kate.mo share/locale/ca@valencia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebookmarksplugin.mo share/locale/ca@valencia/LC_MESSAGES/katebuild-plugin.mo share/locale/ca@valencia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ca@valencia/LC_MESSAGES/katecompilerexplorer.mo share/locale/ca@valencia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ca@valencia/LC_MESSAGES/katefiletree.mo share/locale/ca@valencia/LC_MESSAGES/kategdbplugin.mo share/locale/ca@valencia/LC_MESSAGES/kategitblameplugin.mo share/locale/ca@valencia/LC_MESSAGES/kategpgplugin.mo share/locale/ca@valencia/LC_MESSAGES/katekeyboardmacros.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/rainbowparens.mo share/locale/ca@valencia/LC_MESSAGES/rbqlplugin.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/formatplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/katecompilerexplorer.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/kategitblameplugin.mo share/locale/cs/LC_MESSAGES/katekeyboardmacros.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/rainbowparens.mo share/locale/cs/LC_MESSAGES/rbqlplugin.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo share/locale/csb/LC_MESSAGES/kate.mo share/locale/cy/LC_MESSAGES/kate.mo share/locale/cy/LC_MESSAGES/katesymbolviewer.mo share/locale/cy/LC_MESSAGES/katetextfilter.mo share/locale/cy/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.mo share/locale/de/LC_MESSAGES/formatplugin.mo share/locale/de/LC_MESSAGES/kate-ctags-plugin.mo share/locale/de/LC_MESSAGES/kate-replicode-plugin.mo share/locale/de/LC_MESSAGES/kate.mo share/locale/de/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/de/LC_MESSAGES/katebookmarksplugin.mo share/locale/de/LC_MESSAGES/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katecolorpickerplugin.mo share/locale/de/LC_MESSAGES/katecompilerexplorer.mo share/locale/de/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/de/LC_MESSAGES/katefilebrowserplugin.mo share/locale/de/LC_MESSAGES/katefiletree.mo share/locale/de/LC_MESSAGES/kategdbplugin.mo share/locale/de/LC_MESSAGES/kategitblameplugin.mo share/locale/de/LC_MESSAGES/kategpgplugin.mo share/locale/de/LC_MESSAGES/katekeyboardmacros.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/rainbowparens.mo share/locale/de/LC_MESSAGES/rbqlplugin.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katecolorpickerplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/kategitblameplugin.mo share/locale/el/LC_MESSAGES/katekeyboardmacros.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.mo share/locale/en_GB/LC_MESSAGES/formatplugin.mo share/locale/en_GB/LC_MESSAGES/kate-ctags-plugin.mo share/locale/en_GB/LC_MESSAGES/kate-replicode-plugin.mo share/locale/en_GB/LC_MESSAGES/kate.mo share/locale/en_GB/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katebuild-plugin.mo share/locale/en_GB/LC_MESSAGES/katecloseexceptplugin.mo share/locale/en_GB/LC_MESSAGES/katecolorpickerplugin.mo share/locale/en_GB/LC_MESSAGES/katecompilerexplorer.mo share/locale/en_GB/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/en_GB/LC_MESSAGES/katefilebrowserplugin.mo share/locale/en_GB/LC_MESSAGES/katefiletree.mo share/locale/en_GB/LC_MESSAGES/kategdbplugin.mo share/locale/en_GB/LC_MESSAGES/kategitblameplugin.mo share/locale/en_GB/LC_MESSAGES/katekeyboardmacros.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/rainbowparens.mo share/locale/en_GB/LC_MESSAGES/rbqlplugin.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/formatplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eo/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eo/LC_MESSAGES/katecompilerexplorer.mo share/locale/eo/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katefiletree.mo share/locale/eo/LC_MESSAGES/kategdbplugin.mo share/locale/eo/LC_MESSAGES/kategitblameplugin.mo share/locale/eo/LC_MESSAGES/katekeyboardmacros.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/kateproject.mo share/locale/eo/LC_MESSAGES/katesearch.mo share/locale/eo/LC_MESSAGES/katesnippetsplugin.mo share/locale/eo/LC_MESSAGES/katesql.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmlcheck.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eo/LC_MESSAGES/lspclient.mo share/locale/eo/LC_MESSAGES/rainbowparens.mo share/locale/eo/LC_MESSAGES/rbqlplugin.mo share/locale/eo/LC_MESSAGES/tabswitcherplugin.mo share/locale/es/LC_MESSAGES/formatplugin.mo share/locale/es/LC_MESSAGES/kate-ctags-plugin.mo share/locale/es/LC_MESSAGES/kate-replicode-plugin.mo share/locale/es/LC_MESSAGES/kate.mo share/locale/es/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/es/LC_MESSAGES/katebookmarksplugin.mo share/locale/es/LC_MESSAGES/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katecolorpickerplugin.mo share/locale/es/LC_MESSAGES/katecompilerexplorer.mo share/locale/es/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/es/LC_MESSAGES/katefilebrowserplugin.mo share/locale/es/LC_MESSAGES/katefiletree.mo share/locale/es/LC_MESSAGES/kategdbplugin.mo share/locale/es/LC_MESSAGES/kategitblameplugin.mo share/locale/es/LC_MESSAGES/kategpgplugin.mo share/locale/es/LC_MESSAGES/katekeyboardmacros.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/rainbowparens.mo share/locale/es/LC_MESSAGES/rbqlplugin.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/formatplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebookmarksplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eu/LC_MESSAGES/katecompilerexplorer.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/kategitblameplugin.mo share/locale/eu/LC_MESSAGES/kategpgplugin.mo share/locale/eu/LC_MESSAGES/katekeyboardmacros.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/rainbowparens.mo share/locale/eu/LC_MESSAGES/rbqlplugin.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/formatplugin.mo share/locale/fi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fi/LC_MESSAGES/kate.mo share/locale/fi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fi/LC_MESSAGES/katebookmarksplugin.mo share/locale/fi/LC_MESSAGES/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fi/LC_MESSAGES/katecompilerexplorer.mo share/locale/fi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fi/LC_MESSAGES/katefiletree.mo share/locale/fi/LC_MESSAGES/kategdbplugin.mo share/locale/fi/LC_MESSAGES/kategitblameplugin.mo share/locale/fi/LC_MESSAGES/kategpgplugin.mo share/locale/fi/LC_MESSAGES/katekeyboardmacros.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/rainbowparens.mo share/locale/fi/LC_MESSAGES/rbqlplugin.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.mo share/locale/fr/LC_MESSAGES/formatplugin.mo share/locale/fr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/fr/LC_MESSAGES/kate.mo share/locale/fr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fr/LC_MESSAGES/katebookmarksplugin.mo share/locale/fr/LC_MESSAGES/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/fr/LC_MESSAGES/katecompilerexplorer.mo share/locale/fr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/fr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fr/LC_MESSAGES/katefiletree.mo share/locale/fr/LC_MESSAGES/kategdbplugin.mo share/locale/fr/LC_MESSAGES/kategitblameplugin.mo share/locale/fr/LC_MESSAGES/kategpgplugin.mo share/locale/fr/LC_MESSAGES/katekeyboardmacros.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/rainbowparens.mo share/locale/fr/LC_MESSAGES/rbqlplugin.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/fy/LC_MESSAGES/kate.mo share/locale/fy/LC_MESSAGES/katesymbolviewer.mo share/locale/fy/LC_MESSAGES/katetextfilter.mo share/locale/fy/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/formatplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebookmarksplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ga/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ga/LC_MESSAGES/katecompilerexplorer.mo share/locale/ga/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/katefiletree.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/kategitblameplugin.mo share/locale/ga/LC_MESSAGES/kategpgplugin.mo share/locale/ga/LC_MESSAGES/katekeyboardmacros.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmlcheck.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ga/LC_MESSAGES/lspclient.mo share/locale/ga/LC_MESSAGES/rainbowparens.mo share/locale/ga/LC_MESSAGES/rbqlplugin.mo share/locale/ga/LC_MESSAGES/tabswitcherplugin.mo share/locale/gl/LC_MESSAGES/formatplugin.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/gl/LC_MESSAGES/katecompilerexplorer.mo share/locale/gl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/kategitblameplugin.mo share/locale/gl/LC_MESSAGES/katekeyboardmacros.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/rainbowparens.mo share/locale/gl/LC_MESSAGES/rbqlplugin.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/formatplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebookmarksplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katecolorpickerplugin.mo share/locale/he/LC_MESSAGES/katecompilerexplorer.mo share/locale/he/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katefiletree.mo share/locale/he/LC_MESSAGES/kategdbplugin.mo share/locale/he/LC_MESSAGES/kategitblameplugin.mo share/locale/he/LC_MESSAGES/kategpgplugin.mo share/locale/he/LC_MESSAGES/katekeyboardmacros.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesnippetsplugin.mo share/locale/he/LC_MESSAGES/katesql.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmlcheck.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/he/LC_MESSAGES/lspclient.mo share/locale/he/LC_MESSAGES/rainbowparens.mo share/locale/he/LC_MESSAGES/rbqlplugin.mo share/locale/he/LC_MESSAGES/tabswitcherplugin.mo share/locale/hi/LC_MESSAGES/formatplugin.mo share/locale/hi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hi/LC_MESSAGES/katebuild-plugin.mo share/locale/hi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hi/LC_MESSAGES/katecompilerexplorer.mo share/locale/hi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katefiletree.mo share/locale/hi/LC_MESSAGES/kategdbplugin.mo share/locale/hi/LC_MESSAGES/kategitblameplugin.mo share/locale/hi/LC_MESSAGES/katekeyboardmacros.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/kateproject.mo share/locale/hi/LC_MESSAGES/katesearch.mo share/locale/hi/LC_MESSAGES/katesnippetsplugin.mo share/locale/hi/LC_MESSAGES/katesql.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmlcheck.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hi/LC_MESSAGES/lspclient.mo share/locale/hi/LC_MESSAGES/rainbowparens.mo share/locale/hi/LC_MESSAGES/rbqlplugin.mo share/locale/hi/LC_MESSAGES/tabswitcherplugin.mo share/locale/hne/LC_MESSAGES/kate.mo share/locale/hne/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hne/LC_MESSAGES/katekonsoleplugin.mo share/locale/hne/LC_MESSAGES/katesymbolviewer.mo share/locale/hne/LC_MESSAGES/katetextfilter.mo share/locale/hne/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo share/locale/hsb/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/formatplugin.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/kategitblameplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmlcheck.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hu/LC_MESSAGES/lspclient.mo share/locale/hu/LC_MESSAGES/rainbowparens.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.mo share/locale/ia/LC_MESSAGES/formatplugin.mo share/locale/ia/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ia/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ia/LC_MESSAGES/kate.mo share/locale/ia/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ia/LC_MESSAGES/katebookmarksplugin.mo share/locale/ia/LC_MESSAGES/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ia/LC_MESSAGES/katecompilerexplorer.mo share/locale/ia/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ia/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ia/LC_MESSAGES/katefiletree.mo share/locale/ia/LC_MESSAGES/kategdbplugin.mo share/locale/ia/LC_MESSAGES/kategitblameplugin.mo share/locale/ia/LC_MESSAGES/kategpgplugin.mo share/locale/ia/LC_MESSAGES/katekeyboardmacros.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/rainbowparens.mo share/locale/ia/LC_MESSAGES/rbqlplugin.mo share/locale/ia/LC_MESSAGES/tabswitcherplugin.mo share/locale/id/LC_MESSAGES/kate-ctags-plugin.mo share/locale/id/LC_MESSAGES/kate-replicode-plugin.mo share/locale/id/LC_MESSAGES/kate.mo share/locale/id/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/id/LC_MESSAGES/katebuild-plugin.mo share/locale/id/LC_MESSAGES/katecloseexceptplugin.mo share/locale/id/LC_MESSAGES/katecolorpickerplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/kategitblameplugin.mo share/locale/id/LC_MESSAGES/katekeyboardmacros.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo share/locale/ie/LC_MESSAGES/kate.mo share/locale/ie/LC_MESSAGES/katefiletree.mo share/locale/ie/LC_MESSAGES/kategitblameplugin.mo share/locale/ie/LC_MESSAGES/katesnippetsplugin.mo share/locale/ie/LC_MESSAGES/katesymbolviewer.mo share/locale/ie/LC_MESSAGES/katetextfilter.mo share/locale/ie/LC_MESSAGES/katexmlcheck.mo share/locale/ie/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/formatplugin.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/rainbowparens.mo share/locale/it/LC_MESSAGES/formatplugin.mo share/locale/it/LC_MESSAGES/kate-ctags-plugin.mo share/locale/it/LC_MESSAGES/kate-replicode-plugin.mo share/locale/it/LC_MESSAGES/kate.mo share/locale/it/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/it/LC_MESSAGES/katebookmarksplugin.mo share/locale/it/LC_MESSAGES/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katecolorpickerplugin.mo share/locale/it/LC_MESSAGES/katecompilerexplorer.mo share/locale/it/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/it/LC_MESSAGES/katefilebrowserplugin.mo share/locale/it/LC_MESSAGES/katefiletree.mo share/locale/it/LC_MESSAGES/kategdbplugin.mo share/locale/it/LC_MESSAGES/kategitblameplugin.mo share/locale/it/LC_MESSAGES/kategpgplugin.mo share/locale/it/LC_MESSAGES/katekeyboardmacros.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/rainbowparens.mo share/locale/it/LC_MESSAGES/rbqlplugin.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.mo share/locale/ja/LC_MESSAGES/formatplugin.mo share/locale/ja/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ja/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ja/LC_MESSAGES/kate.mo share/locale/ja/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ja/LC_MESSAGES/katebuild-plugin.mo share/locale/ja/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ja/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ja/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ja/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ja/LC_MESSAGES/katefiletree.mo share/locale/ja/LC_MESSAGES/kategdbplugin.mo share/locale/ja/LC_MESSAGES/kategitblameplugin.mo share/locale/ja/LC_MESSAGES/katekeyboardmacros.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/rainbowparens.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo share/locale/ka/LC_MESSAGES/formatplugin.mo share/locale/ka/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ka/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ka/LC_MESSAGES/kate.mo share/locale/ka/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ka/LC_MESSAGES/katebookmarksplugin.mo share/locale/ka/LC_MESSAGES/katebuild-plugin.mo share/locale/ka/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ka/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ka/LC_MESSAGES/katecompilerexplorer.mo share/locale/ka/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ka/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ka/LC_MESSAGES/katefiletree.mo share/locale/ka/LC_MESSAGES/kategdbplugin.mo share/locale/ka/LC_MESSAGES/kategitblameplugin.mo share/locale/ka/LC_MESSAGES/kategpgplugin.mo share/locale/ka/LC_MESSAGES/katekeyboardmacros.mo share/locale/ka/LC_MESSAGES/katekonsoleplugin.mo share/locale/ka/LC_MESSAGES/kateproject.mo share/locale/ka/LC_MESSAGES/katesearch.mo share/locale/ka/LC_MESSAGES/katesnippetsplugin.mo share/locale/ka/LC_MESSAGES/katesql.mo share/locale/ka/LC_MESSAGES/katesymbolviewer.mo share/locale/ka/LC_MESSAGES/katetextfilter.mo share/locale/ka/LC_MESSAGES/katexmlcheck.mo share/locale/ka/LC_MESSAGES/katexmltools.mo share/locale/ka/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ka/LC_MESSAGES/lspclient.mo share/locale/ka/LC_MESSAGES/rainbowparens.mo share/locale/ka/LC_MESSAGES/rbqlplugin.mo share/locale/ka/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/formatplugin.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebookmarksplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ko/LC_MESSAGES/katecompilerexplorer.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/kategitblameplugin.mo share/locale/ko/LC_MESSAGES/katekeyboardmacros.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/rainbowparens.mo share/locale/ko/LC_MESSAGES/rbqlplugin.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/ku/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/formatplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebookmarksplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/lt/LC_MESSAGES/katecompilerexplorer.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/kategitblameplugin.mo share/locale/lt/LC_MESSAGES/katekeyboardmacros.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/rainbowparens.mo share/locale/lt/LC_MESSAGES/rbqlplugin.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/formatplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/lv/LC_MESSAGES/katecompilerexplorer.mo share/locale/lv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/katefiletree.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/kategitblameplugin.mo share/locale/lv/LC_MESSAGES/katekeyboardmacros.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/kateproject.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesnippetsplugin.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmlcheck.mo share/locale/lv/LC_MESSAGES/katexmltools.mo share/locale/lv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lv/LC_MESSAGES/lspclient.mo share/locale/lv/LC_MESSAGES/rainbowparens.mo share/locale/lv/LC_MESSAGES/rbqlplugin.mo share/locale/lv/LC_MESSAGES/tabswitcherplugin.mo share/locale/mai/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mai/LC_MESSAGES/kate.mo share/locale/mai/LC_MESSAGES/katesql.mo share/locale/mai/LC_MESSAGES/katesymbolviewer.mo share/locale/mk/LC_MESSAGES/kate.mo share/locale/mk/LC_MESSAGES/katetextfilter.mo share/locale/mk/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo share/locale/ms/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ms/LC_MESSAGES/kate.mo share/locale/ms/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ms/LC_MESSAGES/katebuild-plugin.mo share/locale/ms/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ms/LC_MESSAGES/kategdbplugin.mo share/locale/ms/LC_MESSAGES/katekonsoleplugin.mo share/locale/ms/LC_MESSAGES/katesymbolviewer.mo share/locale/ms/LC_MESSAGES/katetextfilter.mo share/locale/ms/LC_MESSAGES/katexmltools.mo share/locale/my/LC_MESSAGES/kate-ctags-plugin.mo share/locale/my/LC_MESSAGES/kate-replicode-plugin.mo share/locale/my/LC_MESSAGES/kate.mo share/locale/my/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/my/LC_MESSAGES/katebuild-plugin.mo share/locale/my/LC_MESSAGES/katecloseexceptplugin.mo share/locale/my/LC_MESSAGES/katecolorpickerplugin.mo share/locale/my/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/my/LC_MESSAGES/katefilebrowserplugin.mo share/locale/my/LC_MESSAGES/katefiletree.mo share/locale/my/LC_MESSAGES/kategdbplugin.mo share/locale/my/LC_MESSAGES/kategitblameplugin.mo share/locale/my/LC_MESSAGES/katekonsoleplugin.mo share/locale/my/LC_MESSAGES/kateproject.mo share/locale/my/LC_MESSAGES/katesearch.mo share/locale/my/LC_MESSAGES/katesnippetsplugin.mo share/locale/my/LC_MESSAGES/katesql.mo share/locale/my/LC_MESSAGES/katesymbolviewer.mo share/locale/my/LC_MESSAGES/katetextfilter.mo share/locale/my/LC_MESSAGES/katexmlcheck.mo share/locale/my/LC_MESSAGES/katexmltools.mo share/locale/my/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/my/LC_MESSAGES/lspclient.mo share/locale/my/LC_MESSAGES/tabswitcherplugin.mo +share/locale/nb/LC_MESSAGES/formatplugin.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/nb/LC_MESSAGES/katebookmarksplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/nb/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/nb/LC_MESSAGES/katecompilerexplorer.mo +share/locale/nb/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo +share/locale/nb/LC_MESSAGES/kategitblameplugin.mo +share/locale/nb/LC_MESSAGES/kategpgplugin.mo +share/locale/nb/LC_MESSAGES/katekeyboardmacros.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo +share/locale/nb/LC_MESSAGES/katexmlcheck.mo share/locale/nb/LC_MESSAGES/katexmltools.mo +share/locale/nb/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/nb/LC_MESSAGES/lspclient.mo +share/locale/nb/LC_MESSAGES/rainbowparens.mo +share/locale/nb/LC_MESSAGES/rbqlplugin.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo share/locale/ne/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/formatplugin.mo share/locale/nl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nl/LC_MESSAGES/kate.mo share/locale/nl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nl/LC_MESSAGES/katebookmarksplugin.mo share/locale/nl/LC_MESSAGES/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nl/LC_MESSAGES/katecompilerexplorer.mo share/locale/nl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nl/LC_MESSAGES/katefiletree.mo share/locale/nl/LC_MESSAGES/kategdbplugin.mo share/locale/nl/LC_MESSAGES/kategitblameplugin.mo share/locale/nl/LC_MESSAGES/kategpgplugin.mo share/locale/nl/LC_MESSAGES/katekeyboardmacros.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/rainbowparens.mo share/locale/nl/LC_MESSAGES/rbqlplugin.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/katecompilerexplorer.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/kategitblameplugin.mo share/locale/nn/LC_MESSAGES/katekeyboardmacros.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo share/locale/oc/LC_MESSAGES/kate.mo share/locale/oc/LC_MESSAGES/katefilebrowserplugin.mo share/locale/oc/LC_MESSAGES/katekonsoleplugin.mo share/locale/oc/LC_MESSAGES/katesymbolviewer.mo share/locale/oc/LC_MESSAGES/katetextfilter.mo share/locale/oc/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.mo share/locale/pl/LC_MESSAGES/formatplugin.mo share/locale/pl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pl/LC_MESSAGES/kate.mo share/locale/pl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pl/LC_MESSAGES/katebookmarksplugin.mo share/locale/pl/LC_MESSAGES/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pl/LC_MESSAGES/katecompilerexplorer.mo share/locale/pl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pl/LC_MESSAGES/katefiletree.mo share/locale/pl/LC_MESSAGES/kategdbplugin.mo share/locale/pl/LC_MESSAGES/kategitblameplugin.mo share/locale/pl/LC_MESSAGES/katekeyboardmacros.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/rainbowparens.mo share/locale/pl/LC_MESSAGES/rbqlplugin.mo share/locale/pl/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt/LC_MESSAGES/kate.mo share/locale/pt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt/LC_MESSAGES/katebuild-plugin.mo share/locale/pt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt/LC_MESSAGES/katefiletree.mo share/locale/pt/LC_MESSAGES/kategdbplugin.mo share/locale/pt/LC_MESSAGES/kategitblameplugin.mo share/locale/pt/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.mo share/locale/pt_BR/LC_MESSAGES/formatplugin.mo share/locale/pt_BR/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate-replicode-plugin.mo share/locale/pt_BR/LC_MESSAGES/kate.mo share/locale/pt_BR/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katebookmarksplugin.mo share/locale/pt_BR/LC_MESSAGES/katebuild-plugin.mo share/locale/pt_BR/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pt_BR/LC_MESSAGES/katecolorpickerplugin.mo share/locale/pt_BR/LC_MESSAGES/katecompilerexplorer.mo share/locale/pt_BR/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pt_BR/LC_MESSAGES/katefiletree.mo share/locale/pt_BR/LC_MESSAGES/kategdbplugin.mo share/locale/pt_BR/LC_MESSAGES/kategitblameplugin.mo share/locale/pt_BR/LC_MESSAGES/kategpgplugin.mo share/locale/pt_BR/LC_MESSAGES/katekeyboardmacros.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/rainbowparens.mo share/locale/pt_BR/LC_MESSAGES/rbqlplugin.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebookmarksplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.mo share/locale/ru/LC_MESSAGES/formatplugin.mo share/locale/ru/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ru/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ru/LC_MESSAGES/kate.mo share/locale/ru/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ru/LC_MESSAGES/katebuild-plugin.mo share/locale/ru/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ru/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ru/LC_MESSAGES/katecompilerexplorer.mo share/locale/ru/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ru/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ru/LC_MESSAGES/katefiletree.mo share/locale/ru/LC_MESSAGES/kategdbplugin.mo share/locale/ru/LC_MESSAGES/kategitblameplugin.mo share/locale/ru/LC_MESSAGES/katekeyboardmacros.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/rainbowparens.mo share/locale/ru/LC_MESSAGES/rbqlplugin.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/sa/LC_MESSAGES/formatplugin.mo share/locale/sa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sa/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sa/LC_MESSAGES/kate.mo share/locale/sa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sa/LC_MESSAGES/katebuild-plugin.mo share/locale/sa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sa/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sa/LC_MESSAGES/katecompilerexplorer.mo share/locale/sa/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sa/LC_MESSAGES/katefiletree.mo share/locale/sa/LC_MESSAGES/kategdbplugin.mo share/locale/sa/LC_MESSAGES/kategitblameplugin.mo share/locale/sa/LC_MESSAGES/katekeyboardmacros.mo share/locale/sa/LC_MESSAGES/katekonsoleplugin.mo share/locale/sa/LC_MESSAGES/kateproject.mo share/locale/sa/LC_MESSAGES/katesearch.mo share/locale/sa/LC_MESSAGES/katesnippetsplugin.mo share/locale/sa/LC_MESSAGES/katesql.mo share/locale/sa/LC_MESSAGES/katesymbolviewer.mo share/locale/sa/LC_MESSAGES/katetextfilter.mo share/locale/sa/LC_MESSAGES/katexmlcheck.mo share/locale/sa/LC_MESSAGES/katexmltools.mo share/locale/sa/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sa/LC_MESSAGES/lspclient.mo share/locale/sa/LC_MESSAGES/rainbowparens.mo share/locale/sa/LC_MESSAGES/rbqlplugin.mo share/locale/sa/LC_MESSAGES/tabswitcherplugin.mo share/locale/se/LC_MESSAGES/kate.mo share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo share/locale/se/LC_MESSAGES/katefiletree.mo share/locale/se/LC_MESSAGES/katekonsoleplugin.mo share/locale/se/LC_MESSAGES/katesymbolviewer.mo share/locale/se/LC_MESSAGES/katetextfilter.mo share/locale/se/LC_MESSAGES/katexmltools.mo share/locale/si/LC_MESSAGES/kate.mo share/locale/si/LC_MESSAGES/katebuild-plugin.mo share/locale/si/LC_MESSAGES/katefilebrowserplugin.mo share/locale/si/LC_MESSAGES/katekonsoleplugin.mo share/locale/si/LC_MESSAGES/katesearch.mo share/locale/si/LC_MESSAGES/katesql.mo share/locale/si/LC_MESSAGES/katesymbolviewer.mo share/locale/si/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/formatplugin.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/katecompilerexplorer.mo share/locale/sk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sk/LC_MESSAGES/katefiletree.mo share/locale/sk/LC_MESSAGES/kategdbplugin.mo share/locale/sk/LC_MESSAGES/kategitblameplugin.mo share/locale/sk/LC_MESSAGES/katekeyboardmacros.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/rainbowparens.mo share/locale/sk/LC_MESSAGES/rbqlplugin.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.mo share/locale/sl/LC_MESSAGES/formatplugin.mo share/locale/sl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sl/LC_MESSAGES/kate.mo share/locale/sl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sl/LC_MESSAGES/katebookmarksplugin.mo share/locale/sl/LC_MESSAGES/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sl/LC_MESSAGES/katecompilerexplorer.mo share/locale/sl/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sl/LC_MESSAGES/katefiletree.mo share/locale/sl/LC_MESSAGES/kategdbplugin.mo share/locale/sl/LC_MESSAGES/kategitblameplugin.mo share/locale/sl/LC_MESSAGES/kategpgplugin.mo share/locale/sl/LC_MESSAGES/katekeyboardmacros.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/rainbowparens.mo share/locale/sl/LC_MESSAGES/rbqlplugin.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sq/LC_MESSAGES/kate.mo share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sq/LC_MESSAGES/katebuild-plugin.mo share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo share/locale/sq/LC_MESSAGES/katesymbolviewer.mo share/locale/sq/LC_MESSAGES/katetextfilter.mo share/locale/sq/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kate.mo share/locale/sr@ijekavian/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavian/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavian/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavian/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/katesql.mo share/locale/sr@ijekavian/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavian/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavian/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavian/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katefiletree.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kateproject.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesearch.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesql.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katetextfilter.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmltools.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sr@latin/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr@latin/LC_MESSAGES/kate.mo share/locale/sr@latin/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katebuild-plugin.mo share/locale/sr@latin/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr@latin/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr@latin/LC_MESSAGES/katefiletree.mo share/locale/sr@latin/LC_MESSAGES/kategdbplugin.mo share/locale/sr@latin/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr@latin/LC_MESSAGES/kateproject.mo share/locale/sr@latin/LC_MESSAGES/katesearch.mo share/locale/sr@latin/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr@latin/LC_MESSAGES/katesql.mo share/locale/sr@latin/LC_MESSAGES/katesymbolviewer.mo share/locale/sr@latin/LC_MESSAGES/katetextfilter.mo share/locale/sr@latin/LC_MESSAGES/katexmlcheck.mo share/locale/sr@latin/LC_MESSAGES/katexmltools.mo share/locale/sr@latin/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sr@latin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/formatplugin.mo share/locale/sv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sv/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sv/LC_MESSAGES/kate.mo share/locale/sv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sv/LC_MESSAGES/katebookmarksplugin.mo share/locale/sv/LC_MESSAGES/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sv/LC_MESSAGES/katecompilerexplorer.mo share/locale/sv/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/sv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sv/LC_MESSAGES/katefiletree.mo share/locale/sv/LC_MESSAGES/kategdbplugin.mo share/locale/sv/LC_MESSAGES/kategitblameplugin.mo share/locale/sv/LC_MESSAGES/katekeyboardmacros.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/rainbowparens.mo share/locale/sv/LC_MESSAGES/rbqlplugin.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/formatplugin.mo share/locale/ta/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ta/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ta/LC_MESSAGES/katebuild-plugin.mo share/locale/ta/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ta/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ta/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ta/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ta/LC_MESSAGES/katefiletree.mo share/locale/ta/LC_MESSAGES/kategdbplugin.mo share/locale/ta/LC_MESSAGES/kategitblameplugin.mo share/locale/ta/LC_MESSAGES/katekeyboardmacros.mo share/locale/ta/LC_MESSAGES/katekonsoleplugin.mo share/locale/ta/LC_MESSAGES/kateproject.mo share/locale/ta/LC_MESSAGES/katesearch.mo share/locale/ta/LC_MESSAGES/katesnippetsplugin.mo share/locale/ta/LC_MESSAGES/katesql.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmlcheck.mo share/locale/ta/LC_MESSAGES/katexmltools.mo share/locale/ta/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ta/LC_MESSAGES/lspclient.mo share/locale/ta/LC_MESSAGES/rainbowparens.mo share/locale/ta/LC_MESSAGES/tabswitcherplugin.mo share/locale/te/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmltools.mo share/locale/th/LC_MESSAGES/kate.mo share/locale/th/LC_MESSAGES/katebuild-plugin.mo share/locale/th/LC_MESSAGES/katefilebrowserplugin.mo share/locale/th/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/formatplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebookmarksplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/katecompilerexplorer.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo share/locale/tr/LC_MESSAGES/kategpgplugin.mo share/locale/tr/LC_MESSAGES/katekeyboardmacros.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/lspclient.mo share/locale/tr/LC_MESSAGES/rainbowparens.mo share/locale/tr/LC_MESSAGES/rbqlplugin.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/formatplugin.mo share/locale/uk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/uk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/uk/LC_MESSAGES/kate.mo share/locale/uk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/uk/LC_MESSAGES/katebookmarksplugin.mo share/locale/uk/LC_MESSAGES/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/uk/LC_MESSAGES/katecompilerexplorer.mo share/locale/uk/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/uk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/uk/LC_MESSAGES/katefiletree.mo share/locale/uk/LC_MESSAGES/kategdbplugin.mo share/locale/uk/LC_MESSAGES/kategitblameplugin.mo share/locale/uk/LC_MESSAGES/kategpgplugin.mo share/locale/uk/LC_MESSAGES/katekeyboardmacros.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/rainbowparens.mo share/locale/uk/LC_MESSAGES/rbqlplugin.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo share/locale/uz/LC_MESSAGES/kate.mo share/locale/uz/LC_MESSAGES/katetextfilter.mo share/locale/uz@cyrillic/LC_MESSAGES/kate.mo share/locale/uz@cyrillic/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/vi/LC_MESSAGES/kate.mo share/locale/vi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/vi/LC_MESSAGES/katebuild-plugin.mo share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/vi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/vi/LC_MESSAGES/katefiletree.mo share/locale/vi/LC_MESSAGES/kategdbplugin.mo share/locale/vi/LC_MESSAGES/kategitblameplugin.mo share/locale/vi/LC_MESSAGES/katekeyboardmacros.mo share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo share/locale/vi/LC_MESSAGES/kateproject.mo share/locale/vi/LC_MESSAGES/katesearch.mo share/locale/vi/LC_MESSAGES/katesnippetsplugin.mo share/locale/vi/LC_MESSAGES/katesql.mo share/locale/vi/LC_MESSAGES/katesymbolviewer.mo share/locale/vi/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/katexmlcheck.mo share/locale/vi/LC_MESSAGES/katexmltools.mo share/locale/vi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/vi/LC_MESSAGES/lspclient.mo share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/xh/LC_MESSAGES/kate.mo share/locale/xh/LC_MESSAGES/katetextfilter.mo share/locale/xh/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/formatplugin.mo share/locale/zh_CN/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_CN/LC_MESSAGES/kate.mo share/locale/zh_CN/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katebookmarksplugin.mo share/locale/zh_CN/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_CN/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_CN/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_CN/LC_MESSAGES/katecompilerexplorer.mo share/locale/zh_CN/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_CN/LC_MESSAGES/katefiletree.mo share/locale/zh_CN/LC_MESSAGES/kategdbplugin.mo share/locale/zh_CN/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_CN/LC_MESSAGES/kategpgplugin.mo share/locale/zh_CN/LC_MESSAGES/katekeyboardmacros.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/rainbowparens.mo share/locale/zh_CN/LC_MESSAGES/rbqlplugin.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.mo share/locale/zh_TW/LC_MESSAGES/formatplugin.mo share/locale/zh_TW/LC_MESSAGES/kate-ctags-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate-replicode-plugin.mo share/locale/zh_TW/LC_MESSAGES/kate.mo share/locale/zh_TW/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katebookmarksplugin.mo share/locale/zh_TW/LC_MESSAGES/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.mo share/locale/zh_TW/LC_MESSAGES/katecolorpickerplugin.mo share/locale/zh_TW/LC_MESSAGES/katecompilerexplorer.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_TW/LC_MESSAGES/kategpgplugin.mo share/locale/zh_TW/LC_MESSAGES/katekeyboardmacros.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/rainbowparens.mo share/locale/zh_TW/LC_MESSAGES/rbqlplugin.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/man/ca/man1/kate.1.gz share/man/de/man1/kate.1.gz share/man/eo/man1/kate.1.gz share/man/es/man1/kate.1.gz share/man/fr/man1/kate.1.gz share/man/it/man1/kate.1.gz share/man/man1/kate.1.gz share/man/nl/man1/kate.1.gz share/man/pt/man1/kate.1.gz share/man/pt_BR/man1/kate.1.gz share/man/ru/man1/kate.1.gz share/man/sv/man1/kate.1.gz share/man/tr/man1/kate.1.gz share/man/uk/man1/kate.1.gz share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml diff --git a/games/blinken/distinfo b/games/blinken/distinfo index f27e18f0ae09..e9d852347fdf 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570647 -SHA256 (KDE/release-service/25.12.2/blinken-25.12.2.tar.xz) = b8ec9aa974e2c8ccbd31a9c5ba5fd676c77eb71ce3dfe40e5e6297ee326df5aa -SIZE (KDE/release-service/25.12.2/blinken-25.12.2.tar.xz) = 2715252 +TIMESTAMP = 1772541880 +SHA256 (KDE/release-service/25.12.3/blinken-25.12.3.tar.xz) = b744aadafc3afaa10e602c57122c350a12280aa158c1559f925a639a439a7e37 +SIZE (KDE/release-service/25.12.3/blinken-25.12.3.tar.xz) = 2715280 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 005d51d9334c..144b295bca6e 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570649 -SHA256 (KDE/release-service/25.12.2/bomber-25.12.2.tar.xz) = a4f8d574e94b5038ec19d5407e8f44bc0b1c698d033458b03148ac711ffd5f25 -SIZE (KDE/release-service/25.12.2/bomber-25.12.2.tar.xz) = 840856 +TIMESTAMP = 1772541883 +SHA256 (KDE/release-service/25.12.3/bomber-25.12.3.tar.xz) = 5150d3038c6d09453d2792219476894b719d51a1b8ed6e5eefdc2086f7e39370 +SIZE (KDE/release-service/25.12.3/bomber-25.12.3.tar.xz) = 840500 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 67e2062d4343..faa5be4b0537 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570651 -SHA256 (KDE/release-service/25.12.2/bovo-25.12.2.tar.xz) = 2b1d932091e972105538aa975bf2e6f7797bb58acfe94c70bec3d0ed91ed2216 -SIZE (KDE/release-service/25.12.2/bovo-25.12.2.tar.xz) = 221856 +TIMESTAMP = 1772541885 +SHA256 (KDE/release-service/25.12.3/bovo-25.12.3.tar.xz) = b5ab38158518353360ce95de017236d3a235afe499fe9fd95a692afead80ae15 +SIZE (KDE/release-service/25.12.3/bovo-25.12.3.tar.xz) = 221608 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 77ff7eb3866a..ac7f3bc5d497 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570653 -SHA256 (KDE/release-service/25.12.2/granatier-25.12.2.tar.xz) = ec297925cf44e5ed47440cae5e10405d0ccb0b5d473372d0fa399dd79e5a4a10 -SIZE (KDE/release-service/25.12.2/granatier-25.12.2.tar.xz) = 2017440 +TIMESTAMP = 1772541886 +SHA256 (KDE/release-service/25.12.3/granatier-25.12.3.tar.xz) = c5b8814ed4acad3e84edcddfaa9c7fdc380347e50e738c9116de42be07145c95 +SIZE (KDE/release-service/25.12.3/granatier-25.12.3.tar.xz) = 2017120 diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 8a075c70ba5c..2335dc1f97e1 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570662 -SHA256 (KDE/release-service/25.12.2/kajongg-25.12.2.tar.xz) = 05fa67455c626b01fd327114538009facbbd381f637e77144e7b81c285789e31 -SIZE (KDE/release-service/25.12.2/kajongg-25.12.2.tar.xz) = 4638068 +TIMESTAMP = 1772541888 +SHA256 (KDE/release-service/25.12.3/kajongg-25.12.3.tar.xz) = b24ebbc30e68f5fd52d180cd2cc2734d481b3d793f084dd6bfc4a19ac3264b99 +SIZE (KDE/release-service/25.12.3/kajongg-25.12.3.tar.xz) = 4637628 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 022d9677e7f3..c2855997c2a1 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570664 -SHA256 (KDE/release-service/25.12.2/kanagram-25.12.2.tar.xz) = 5b21d1e9ebf3421409615eb6af17b8bebe35520eac4a372408208d3a1f802b05 -SIZE (KDE/release-service/25.12.2/kanagram-25.12.2.tar.xz) = 7785820 +TIMESTAMP = 1772541889 +SHA256 (KDE/release-service/25.12.3/kanagram-25.12.3.tar.xz) = a7dfcaa7593058cde334bc5d15a29ed63567563fca25ab1d3e23ef62f354ed56 +SIZE (KDE/release-service/25.12.3/kanagram-25.12.3.tar.xz) = 7786360 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index bbec2a2fd08e..00f298d40a24 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570666 -SHA256 (KDE/release-service/25.12.2/kapman-25.12.2.tar.xz) = be5f2ff3bd033c700cf8cef0e2f71b4738996c4d536a88aaa0ee3d7f4fe7dadc -SIZE (KDE/release-service/25.12.2/kapman-25.12.2.tar.xz) = 2150076 +TIMESTAMP = 1772541891 +SHA256 (KDE/release-service/25.12.3/kapman-25.12.3.tar.xz) = 7059b1341d4ff142388ed502f903256262722c2fbe4f73c1b288e4d713c8d261 +SIZE (KDE/release-service/25.12.3/kapman-25.12.3.tar.xz) = 2150088 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 3760f982f233..fca4e653724e 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570668 -SHA256 (KDE/release-service/25.12.2/katomic-25.12.2.tar.xz) = 4f1a26b30b97805ecffd59c96bc900c31715b7b3160e52aefb0929632339a281 -SIZE (KDE/release-service/25.12.2/katomic-25.12.2.tar.xz) = 1450316 +TIMESTAMP = 1772541892 +SHA256 (KDE/release-service/25.12.3/katomic-25.12.3.tar.xz) = b2fb1bf379c345f8754e7e284e65c8ac174099fb63a5130134d164e922af624f +SIZE (KDE/release-service/25.12.3/katomic-25.12.3.tar.xz) = 1450312 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 57751c7c70ca..aba224109611 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570670 -SHA256 (KDE/release-service/25.12.2/kblackbox-25.12.2.tar.xz) = 092044d1823982c41e1d092d442dee01b8da6cf8a857528a725ef234ef22ef21 -SIZE (KDE/release-service/25.12.2/kblackbox-25.12.2.tar.xz) = 556088 +TIMESTAMP = 1772541894 +SHA256 (KDE/release-service/25.12.3/kblackbox-25.12.3.tar.xz) = 143e0e45e48fa3de16952c60cbb436e8386c76b48a5445af61e36dd8eedab4a8 +SIZE (KDE/release-service/25.12.3/kblackbox-25.12.3.tar.xz) = 555628 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index ef83e08c3ca5..7085199ce028 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570672 -SHA256 (KDE/release-service/25.12.2/kblocks-25.12.2.tar.xz) = bc42b5f42dff6ca9eeb84de162ef5dc4df1bcf2c4a26a51af8519e9c01354407 -SIZE (KDE/release-service/25.12.2/kblocks-25.12.2.tar.xz) = 2104928 +TIMESTAMP = 1772541895 +SHA256 (KDE/release-service/25.12.3/kblocks-25.12.3.tar.xz) = 23ffac3c3bfcd8064df9e2487cca03af685cd42ec6b8403d26ba8baeb14f6a47 +SIZE (KDE/release-service/25.12.3/kblocks-25.12.3.tar.xz) = 2104700 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 4f00b53fc987..d5d045e790d4 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570674 -SHA256 (KDE/release-service/25.12.2/kbounce-25.12.2.tar.xz) = d5d4336b7eb62d9496a431983fc39ce2b12e7e21066f5fc7c28cfda3434d3b20 -SIZE (KDE/release-service/25.12.2/kbounce-25.12.2.tar.xz) = 3324584 +TIMESTAMP = 1772541897 +SHA256 (KDE/release-service/25.12.3/kbounce-25.12.3.tar.xz) = 6d4c9eabc8cc39c3402076dfd0c5a6566a130a81824db106a44da433ee6cae08 +SIZE (KDE/release-service/25.12.3/kbounce-25.12.3.tar.xz) = 3324464 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 8e5a9c8c97fd..4755aa89cb19 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570676 -SHA256 (KDE/release-service/25.12.2/kbreakout-25.12.2.tar.xz) = d5d4c746c5055bb77d6ba63a551e9e585da89e7df856e41b1df92379904ac9c7 -SIZE (KDE/release-service/25.12.2/kbreakout-25.12.2.tar.xz) = 2558696 +TIMESTAMP = 1772541898 +SHA256 (KDE/release-service/25.12.3/kbreakout-25.12.3.tar.xz) = dc9346e793d521e830245b0be339d28ee9fbe75763e1918565070bb335534029 +SIZE (KDE/release-service/25.12.3/kbreakout-25.12.3.tar.xz) = 2558556 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 538fda56ee63..b93fcae9ecae 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570678 -SHA256 (KDE/release-service/25.12.2/kdiamond-25.12.2.tar.xz) = e11917053c822226762dc51462d233c9d30eace39c4e2b9606a3063cb9af47c2 -SIZE (KDE/release-service/25.12.2/kdiamond-25.12.2.tar.xz) = 4675280 +TIMESTAMP = 1772541899 +SHA256 (KDE/release-service/25.12.3/kdiamond-25.12.3.tar.xz) = 8c546b013c173200e08f953da74efd374324ffa15ab2cf0a22ce707a028b5121 +SIZE (KDE/release-service/25.12.3/kdiamond-25.12.3.tar.xz) = 4674992 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index b88ffda76292..b26ce1026dc4 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570680 -SHA256 (KDE/release-service/25.12.2/kfourinline-25.12.2.tar.xz) = 77f3c22ba202ddc665cf6cbec22509e7b2c1bbaf33212a08f6abd59158733026 -SIZE (KDE/release-service/25.12.2/kfourinline-25.12.2.tar.xz) = 749176 +TIMESTAMP = 1772541901 +SHA256 (KDE/release-service/25.12.3/kfourinline-25.12.3.tar.xz) = 104c73e8c98b107f249f1e7a81cada2563cf1b748ffd9190333705143d95b3de +SIZE (KDE/release-service/25.12.3/kfourinline-25.12.3.tar.xz) = 748672 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 078bf2b1de51..08262d03ace4 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570682 -SHA256 (KDE/release-service/25.12.2/kgoldrunner-25.12.2.tar.xz) = b51bd69bf0caf0c3186b3874175acad5df066434798b771f17182e7a72470bbc -SIZE (KDE/release-service/25.12.2/kgoldrunner-25.12.2.tar.xz) = 4466408 +TIMESTAMP = 1772541902 +SHA256 (KDE/release-service/25.12.3/kgoldrunner-25.12.3.tar.xz) = 851ca9d6e95399737c77c367015ab8465e339b4ec00491b665ecedcd287d537c +SIZE (KDE/release-service/25.12.3/kgoldrunner-25.12.3.tar.xz) = 4464452 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 5a67c9b98179..2e85e5414f6e 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570684 -SHA256 (KDE/release-service/25.12.2/khangman-25.12.2.tar.xz) = cb2ab2be6ef69e26abfc62d6cc89fbfa8a08d547b40ff345c8885b263013b771 -SIZE (KDE/release-service/25.12.2/khangman-25.12.2.tar.xz) = 7031500 +TIMESTAMP = 1772541904 +SHA256 (KDE/release-service/25.12.3/khangman-25.12.3.tar.xz) = 9d76254b3fbeff70113d50700ad1c14a4313ace4ab030fb0017d885b679996b1 +SIZE (KDE/release-service/25.12.3/khangman-25.12.3.tar.xz) = 7034448 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 1d5e5acb04d6..10a0a433dd3f 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570686 -SHA256 (KDE/release-service/25.12.2/kigo-25.12.2.tar.xz) = 509a4b74684911e3e4b324609fefe99a5a41c8660db617c36006cf7a1d83d35f -SIZE (KDE/release-service/25.12.2/kigo-25.12.2.tar.xz) = 4838864 +TIMESTAMP = 1772541905 +SHA256 (KDE/release-service/25.12.3/kigo-25.12.3.tar.xz) = ca00c01a636d0a636dd11926dd6a8a018b2018c3877b445eec3cc1617b7f0a69 +SIZE (KDE/release-service/25.12.3/kigo-25.12.3.tar.xz) = 4838208 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 62f9f79c4e85..dcf4b21367bf 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570688 -SHA256 (KDE/release-service/25.12.2/killbots-25.12.2.tar.xz) = 2106091fc82bc2e0b88cbb875137436588f599d2c37ef639959d713a531066d8 -SIZE (KDE/release-service/25.12.2/killbots-25.12.2.tar.xz) = 1177672 +TIMESTAMP = 1772541907 +SHA256 (KDE/release-service/25.12.3/killbots-25.12.3.tar.xz) = 02636d7f178a3dba76a45920165b306666631753dd3772f4d34d7e46ecd50b57 +SIZE (KDE/release-service/25.12.3/killbots-25.12.3.tar.xz) = 1177428 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index b8955f6c0e4f..3196e8de003a 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570690 -SHA256 (KDE/release-service/25.12.2/kiriki-25.12.2.tar.xz) = 263e53c858dc53df9570f66b3506874dec8453c842956473f07d532a2a914284 -SIZE (KDE/release-service/25.12.2/kiriki-25.12.2.tar.xz) = 376280 +TIMESTAMP = 1772541908 +SHA256 (KDE/release-service/25.12.3/kiriki-25.12.3.tar.xz) = c5d768313baa3325a9bc64b6a8a9d7075861c052bc72235bf9aa6c96158ce16a +SIZE (KDE/release-service/25.12.3/kiriki-25.12.3.tar.xz) = 376044 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index bb84f5e55721..e7e58f1f59d9 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570692 -SHA256 (KDE/release-service/25.12.2/kjumpingcube-25.12.2.tar.xz) = 4089ea34da83a69a480c5d6764c8589804dd99b8d6155ef80c8657fff6013d5e -SIZE (KDE/release-service/25.12.2/kjumpingcube-25.12.2.tar.xz) = 351320 +TIMESTAMP = 1772541910 +SHA256 (KDE/release-service/25.12.3/kjumpingcube-25.12.3.tar.xz) = 519f68570fa0152470645caca846c888a348dd2bdefde1c07715ba91ddcb1490 +SIZE (KDE/release-service/25.12.3/kjumpingcube-25.12.3.tar.xz) = 351116 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 401d9c642294..843cabfcedca 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570694 -SHA256 (KDE/release-service/25.12.2/klickety-25.12.2.tar.xz) = 719ef9518ed49ae24610d9f70f8baaa76ff8eefcd7aef629174fefbadf52d885 -SIZE (KDE/release-service/25.12.2/klickety-25.12.2.tar.xz) = 1390128 +TIMESTAMP = 1772541911 +SHA256 (KDE/release-service/25.12.3/klickety-25.12.3.tar.xz) = c9f59671ef1f026f9780699e4e1572ee038494caebbf73cab05ee0bf15736faa +SIZE (KDE/release-service/25.12.3/klickety-25.12.3.tar.xz) = 1389980 diff --git a/games/klines/distinfo b/games/klines/distinfo index 8dd133a6de10..a564491afa8e 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570696 -SHA256 (KDE/release-service/25.12.2/klines-25.12.2.tar.xz) = ffd5196abcb0665133b8d07ca82d69c6300ff815dab7564ace7df76a553e8103 -SIZE (KDE/release-service/25.12.2/klines-25.12.2.tar.xz) = 1675832 +TIMESTAMP = 1772541913 +SHA256 (KDE/release-service/25.12.3/klines-25.12.3.tar.xz) = 5e42f87474452d128f8091715f6b0582afa45da7dd7266b0bc20108f860d0c99 +SIZE (KDE/release-service/25.12.3/klines-25.12.3.tar.xz) = 1675196 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index af434443ff7c..1f4ab2609e4b 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570698 -SHA256 (KDE/release-service/25.12.2/kmahjongg-25.12.2.tar.xz) = cd9fd48b1efe7c214688ecab1d5deceed95ef90a9da1938c75f7d9832a3d14f1 -SIZE (KDE/release-service/25.12.2/kmahjongg-25.12.2.tar.xz) = 3725704 +TIMESTAMP = 1772541914 +SHA256 (KDE/release-service/25.12.3/kmahjongg-25.12.3.tar.xz) = 769798d2e03b9a8de4675b8bcf932a9e0c63229d4712e73074fc4bea75f2793e +SIZE (KDE/release-service/25.12.3/kmahjongg-25.12.3.tar.xz) = 3724884 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 7b15bdfaad26..06fdc676b3a6 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570700 -SHA256 (KDE/release-service/25.12.2/kmines-25.12.2.tar.xz) = f12b07dc849d1c90d4369b9a098eba2da094f11af7059ce9eb54a04021c591a8 -SIZE (KDE/release-service/25.12.2/kmines-25.12.2.tar.xz) = 950536 +TIMESTAMP = 1772541916 +SHA256 (KDE/release-service/25.12.3/kmines-25.12.3.tar.xz) = 4bb6fe8eb7a5f5d4aa5d5604258dc907aba491ca9c67066771a55190ec1d751a +SIZE (KDE/release-service/25.12.3/kmines-25.12.3.tar.xz) = 950152 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 7c4809e88342..71be09f2a998 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570702 -SHA256 (KDE/release-service/25.12.2/knavalbattle-25.12.2.tar.xz) = 2458f963c81ef0fe3d2e36c27d0fe03bd4916ae59139602f194fa2907a33eab3 -SIZE (KDE/release-service/25.12.2/knavalbattle-25.12.2.tar.xz) = 1051368 +TIMESTAMP = 1772541917 +SHA256 (KDE/release-service/25.12.3/knavalbattle-25.12.3.tar.xz) = 3836446f6c797ee8e664877383aa1f7bd001e2938b107a9bea82e7d9f96d78e5 +SIZE (KDE/release-service/25.12.3/knavalbattle-25.12.3.tar.xz) = 1050028 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 402c9a384f5c..568e9a6c9301 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570704 -SHA256 (KDE/release-service/25.12.2/knetwalk-25.12.2.tar.xz) = 55cfac5753e8b9bd866bb611e781405f17b9c175918a86dacce446c1ba61bafa -SIZE (KDE/release-service/25.12.2/knetwalk-25.12.2.tar.xz) = 1011916 +TIMESTAMP = 1772541919 +SHA256 (KDE/release-service/25.12.3/knetwalk-25.12.3.tar.xz) = 50c693f6d1e1778b24d235f4322314f80becb4044c38e71c5999efb356096ee2 +SIZE (KDE/release-service/25.12.3/knetwalk-25.12.3.tar.xz) = 1012232 diff --git a/games/knights/distinfo b/games/knights/distinfo index 03eb339ef202..c9ffb81ac22e 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570706 -SHA256 (KDE/release-service/25.12.2/knights-25.12.2.tar.xz) = 7792e5eca826e8fb6229a62292d1b609028c5d3bc610e2105500d7fed87b746f -SIZE (KDE/release-service/25.12.2/knights-25.12.2.tar.xz) = 2502000 +TIMESTAMP = 1772541920 +SHA256 (KDE/release-service/25.12.3/knights-25.12.3.tar.xz) = a4ce42235f47bd5a90c87c9fb51c43de40bd325c7ba046634a36499bbd16dff3 +SIZE (KDE/release-service/25.12.3/knights-25.12.3.tar.xz) = 2499936 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index cfec38ba2555..6445ff7d1b45 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570708 -SHA256 (KDE/release-service/25.12.2/kolf-25.12.2.tar.xz) = e3e9b0807fd316073895d525407c17f1cd624b1525f642523e306c2726800942 -SIZE (KDE/release-service/25.12.2/kolf-25.12.2.tar.xz) = 1085276 +TIMESTAMP = 1772541922 +SHA256 (KDE/release-service/25.12.3/kolf-25.12.3.tar.xz) = 6d9359bafd035027516e9c50f64ac25d2718fb4a81141f469d80c7454dc895e8 +SIZE (KDE/release-service/25.12.3/kolf-25.12.3.tar.xz) = 1085460 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 56b40ca1378a..f2daddb6fcea 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570710 -SHA256 (KDE/release-service/25.12.2/kollision-25.12.2.tar.xz) = 23251416df575d8cfd5e33ff863bb1e3ccaab1a968a9054fa35d2d0458798612 -SIZE (KDE/release-service/25.12.2/kollision-25.12.2.tar.xz) = 313680 +TIMESTAMP = 1772541923 +SHA256 (KDE/release-service/25.12.3/kollision-25.12.3.tar.xz) = 298a0a940235f4fa592d92373ffb1dd9679c5bfa44910e7bcfe014603db90ebb +SIZE (KDE/release-service/25.12.3/kollision-25.12.3.tar.xz) = 313616 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 5ac69d569d42..ea39f3e9d341 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570712 -SHA256 (KDE/release-service/25.12.2/konquest-25.12.2.tar.xz) = f383621ec063931d9b19fc85a30b4339292615103dc73c60a77438d9532a5829 -SIZE (KDE/release-service/25.12.2/konquest-25.12.2.tar.xz) = 863960 +TIMESTAMP = 1772541925 +SHA256 (KDE/release-service/25.12.3/konquest-25.12.3.tar.xz) = 93a91e75b93af3d528ded66327cbba137db7150b0b71cfbbc455bc59962975b7 +SIZE (KDE/release-service/25.12.3/konquest-25.12.3.tar.xz) = 863352 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 7e980203273c..607c40d64600 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570714 -SHA256 (KDE/release-service/25.12.2/kpat-25.12.2.tar.xz) = 640a953d22639b080547a51ee02e7d37a9d01c7381c2dd77d205119094612953 -SIZE (KDE/release-service/25.12.2/kpat-25.12.2.tar.xz) = 3743528 +TIMESTAMP = 1772541926 +SHA256 (KDE/release-service/25.12.3/kpat-25.12.3.tar.xz) = 67e5fefd247edc9d3a22ceaa3fc9d5c0c72d49d0c05f02ab48f2f7bba0c4b997 +SIZE (KDE/release-service/25.12.3/kpat-25.12.3.tar.xz) = 3743516 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 4e3c02bc95aa..a5a07e2d1f91 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570716 -SHA256 (KDE/release-service/25.12.2/kreversi-25.12.2.tar.xz) = 9adfc953a858f39b9335b1e00af4c2114e6e6422212a40d16a1813168a2c8074 -SIZE (KDE/release-service/25.12.2/kreversi-25.12.2.tar.xz) = 1037760 +TIMESTAMP = 1772541928 +SHA256 (KDE/release-service/25.12.3/kreversi-25.12.3.tar.xz) = 2dbb1e9b0e6aed1632a6499e75396f3eac9a0c1030e8175f1b71af19bdf87687 +SIZE (KDE/release-service/25.12.3/kreversi-25.12.3.tar.xz) = 1037084 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 900342ddea21..c8c671920599 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570718 -SHA256 (KDE/release-service/25.12.2/kshisen-25.12.2.tar.xz) = 3b3e219abff344656945b967f798f9a0598a88ebfc455702bb8e7eaa7915d78d -SIZE (KDE/release-service/25.12.2/kshisen-25.12.2.tar.xz) = 976576 +TIMESTAMP = 1772541929 +SHA256 (KDE/release-service/25.12.3/kshisen-25.12.3.tar.xz) = eb84a40a83d7c2392f0100e91ca14547ab7ec2eebe15f02a08ce4a60358e3629 +SIZE (KDE/release-service/25.12.3/kshisen-25.12.3.tar.xz) = 976416 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 5d02b3d1c369..bd97f2b99e5c 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570720 -SHA256 (KDE/release-service/25.12.2/ksirk-25.12.2.tar.xz) = 86cff8a90cd826f0521b2739a3f22158e1a7365f5fade9ece29cba06eb1fe5d3 -SIZE (KDE/release-service/25.12.2/ksirk-25.12.2.tar.xz) = 6720776 +TIMESTAMP = 1772541930 +SHA256 (KDE/release-service/25.12.3/ksirk-25.12.3.tar.xz) = 9c3ad4febe1a92bbec5ad6e2770dc968b810fdafcd08e300c6f8a9fcd510bca3 +SIZE (KDE/release-service/25.12.3/ksirk-25.12.3.tar.xz) = 6719056 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index be3e51b00f26..ae4decb3cb30 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570722 -SHA256 (KDE/release-service/25.12.2/ksnakeduel-25.12.2.tar.xz) = ff3a3eb9e4a27874227f769c9d22ba67ab925e2e36f4b42b27dad2001e6838b0 -SIZE (KDE/release-service/25.12.2/ksnakeduel-25.12.2.tar.xz) = 580504 +TIMESTAMP = 1772541932 +SHA256 (KDE/release-service/25.12.3/ksnakeduel-25.12.3.tar.xz) = fa57895556535388a011f596a816f8565850c4ec5ff9d95ea11abf813c2a1fb1 +SIZE (KDE/release-service/25.12.3/ksnakeduel-25.12.3.tar.xz) = 580416 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 03c3bfbec2be..2abeaf104d3d 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570724 -SHA256 (KDE/release-service/25.12.2/kspaceduel-25.12.2.tar.xz) = b747efb9e6076ca60248d3d4ce2302365e78704d828baa5bf12104e8c44a230b -SIZE (KDE/release-service/25.12.2/kspaceduel-25.12.2.tar.xz) = 637308 +TIMESTAMP = 1772541933 +SHA256 (KDE/release-service/25.12.3/kspaceduel-25.12.3.tar.xz) = a319f2a55dfd3fb5b87d68312bd2689ef892e9aa0456345e5ac66130cbf2a291 +SIZE (KDE/release-service/25.12.3/kspaceduel-25.12.3.tar.xz) = 637048 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index af247997e036..0c0d7d66c17f 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570726 -SHA256 (KDE/release-service/25.12.2/ksquares-25.12.2.tar.xz) = 83abc861ee5c293c2fafe13ac0678e655e731c6795a56f5844bd2720b159d10f -SIZE (KDE/release-service/25.12.2/ksquares-25.12.2.tar.xz) = 324516 +TIMESTAMP = 1772541935 +SHA256 (KDE/release-service/25.12.3/ksquares-25.12.3.tar.xz) = 0c5f2fdf2cae5b1eb6a693f4d19c22c025746707e9e964fa23a5fc4e7a510a31 +SIZE (KDE/release-service/25.12.3/ksquares-25.12.3.tar.xz) = 324200 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 2b7ba41d9644..14ebe01dc700 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570728 -SHA256 (KDE/release-service/25.12.2/ksudoku-25.12.2.tar.xz) = fb3e4d7550ce5e7749c031e67585ff5e0f27f497ee358457dae38f6e973f4ee7 -SIZE (KDE/release-service/25.12.2/ksudoku-25.12.2.tar.xz) = 1751996 +TIMESTAMP = 1772541936 +SHA256 (KDE/release-service/25.12.3/ksudoku-25.12.3.tar.xz) = 9bbcfa9353f106350b4e9d9782d4b93ce5353106ff97fc5a929292c8ba9a4ff3 +SIZE (KDE/release-service/25.12.3/ksudoku-25.12.3.tar.xz) = 1751024 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index bc336590cd50..b13b939fa5b2 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570732 -SHA256 (KDE/release-service/25.12.2/ktuberling-25.12.2.tar.xz) = e47ce8f10c12117cea28bf4f6a92962df8ef9715310f90c250d396dee5f95229 -SIZE (KDE/release-service/25.12.2/ktuberling-25.12.2.tar.xz) = 71568532 +TIMESTAMP = 1772541938 +SHA256 (KDE/release-service/25.12.3/ktuberling-25.12.3.tar.xz) = 0d2962a37c51b7317c9c5cf2b49c7977c3ddfc7e598556ebcd17e06c44587c53 +SIZE (KDE/release-service/25.12.3/ktuberling-25.12.3.tar.xz) = 71573988 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index f6dd9ccff964..b32ddc83aaa1 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570734 -SHA256 (KDE/release-service/25.12.2/kubrick-25.12.2.tar.xz) = 1843e588359d78ea558fe4b06201fd4839e4bc7dd613b8ecd367e16b0b63f26b -SIZE (KDE/release-service/25.12.2/kubrick-25.12.2.tar.xz) = 385572 +TIMESTAMP = 1772541940 +SHA256 (KDE/release-service/25.12.3/kubrick-25.12.3.tar.xz) = 156efe2cd2e0e3dc5e31ecaf9fcc422973a13d2d77dd5f7cd2ab0f2e5651843c +SIZE (KDE/release-service/25.12.3/kubrick-25.12.3.tar.xz) = 384964 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 33402bf7fb35..c5fe3351a96d 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570736 -SHA256 (KDE/release-service/25.12.2/libkdegames-25.12.2.tar.xz) = b258933b52987aefd8133edcdea373a7f7df2983084a642d7763a20862fd8c72 -SIZE (KDE/release-service/25.12.2/libkdegames-25.12.2.tar.xz) = 5974744 +TIMESTAMP = 1772541941 +SHA256 (KDE/release-service/25.12.3/libkdegames-25.12.3.tar.xz) = 64605a58b087a57dc504d8e7fa4d637b4d59fb91ba1b4ed60f96fc78568f141c +SIZE (KDE/release-service/25.12.3/libkdegames-25.12.3.tar.xz) = 5975236 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index f3904df1dac2..549fcefab0e6 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570738 -SHA256 (KDE/release-service/25.12.2/libkmahjongg-25.12.2.tar.xz) = a1eb553c38bf2c236777e1ef60e546fe83ab3ec3de3c169062a10d9b801dce04 -SIZE (KDE/release-service/25.12.2/libkmahjongg-25.12.2.tar.xz) = 1695048 +TIMESTAMP = 1772541943 +SHA256 (KDE/release-service/25.12.3/libkmahjongg-25.12.3.tar.xz) = ac5feb1f49db0ee47ac9b1e607ac6ec4582316aed761d9f0b4625ebd25bd97ab +SIZE (KDE/release-service/25.12.3/libkmahjongg-25.12.3.tar.xz) = 1693416 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 9dbfbae97d86..3d00d0ece94c 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570740 -SHA256 (KDE/release-service/25.12.2/lskat-25.12.2.tar.xz) = b6984e0818fa071c54aaa9e6f7cb60116f6f02505f98dc707183f67dc0a7c45e -SIZE (KDE/release-service/25.12.2/lskat-25.12.2.tar.xz) = 1229536 +TIMESTAMP = 1772541944 +SHA256 (KDE/release-service/25.12.3/lskat-25.12.3.tar.xz) = 211188dceb5d84d39af70cd66d43ec26908834d1ebc682c0902492fd9481cfcf +SIZE (KDE/release-service/25.12.3/lskat-25.12.3.tar.xz) = 1229268 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index b39e2c50ea3f..478200c8b377 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570742 -SHA256 (KDE/release-service/25.12.2/palapeli-25.12.2.tar.xz) = e29ecba82924d242af0b1592a545a72255ef2053d868d1cde945d3d6d3146518 -SIZE (KDE/release-service/25.12.2/palapeli-25.12.2.tar.xz) = 2135180 +TIMESTAMP = 1772541945 +SHA256 (KDE/release-service/25.12.3/palapeli-25.12.3.tar.xz) = 5a8f5cd6ae8fa8f29dada3808417a51c355e4e3077b1063152324d9406cd25e5 +SIZE (KDE/release-service/25.12.3/palapeli-25.12.3.tar.xz) = 2134420 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 3893d6f0237d..6caf12bb92a4 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570744 -SHA256 (KDE/release-service/25.12.2/picmi-25.12.2.tar.xz) = 7b264d6dfb6f4efa93032ae09d87631c32062b2071887e3f372f2393158aef6c -SIZE (KDE/release-service/25.12.2/picmi-25.12.2.tar.xz) = 1524016 +TIMESTAMP = 1772541947 +SHA256 (KDE/release-service/25.12.3/picmi-25.12.3.tar.xz) = 0ade2dc87a68fd091c550b0e971f02c1642d4f702819e3302d2ae6aab9c6b7b5 +SIZE (KDE/release-service/25.12.3/picmi-25.12.3.tar.xz) = 1523780 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index a2c0cfb4e953..fb57df2650ab 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570745 -SHA256 (KDE/release-service/25.12.2/skladnik-25.12.2.tar.xz) = 3bdd47b7608966a1ee51cb24aea07ba1d3e1eb582ce6eb8e0dcf0eeb59e44a4a -SIZE (KDE/release-service/25.12.2/skladnik-25.12.2.tar.xz) = 420236 +TIMESTAMP = 1772541948 +SHA256 (KDE/release-service/25.12.3/skladnik-25.12.3.tar.xz) = ed41b3eced568c82a1f6d1bdb6e8c5c7dbe7264b718da506e8cd52e52b9b175a +SIZE (KDE/release-service/25.12.3/skladnik-25.12.3.tar.xz) = 419988 diff --git a/graphics/colord-kde/distinfo b/graphics/colord-kde/distinfo index 8479b24737a3..7183d4b20e56 100644 --- a/graphics/colord-kde/distinfo +++ b/graphics/colord-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570746 -SHA256 (KDE/release-service/25.12.2/colord-kde-25.12.2.tar.xz) = 6fc242bff78ad0c567f7c182cc2ebddcf517bf25ef39b27e11e39370430cffff -SIZE (KDE/release-service/25.12.2/colord-kde-25.12.2.tar.xz) = 121428 +TIMESTAMP = 1772541949 +SHA256 (KDE/release-service/25.12.3/colord-kde-25.12.3.tar.xz) = a9ceeea73efa2c9d11de6cbf81a42c4d627aba99790c1b4872deca873d299f47 +SIZE (KDE/release-service/25.12.3/colord-kde-25.12.3.tar.xz) = 121116 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index aad4c3d29ad3..a4a4c5270779 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570748 -SHA256 (KDE/release-service/25.12.2/gwenview-25.12.2.tar.xz) = 0e63d7054168e9acf366961582d0f5121e1af6bc58c58b9a22065aa65de683fb -SIZE (KDE/release-service/25.12.2/gwenview-25.12.2.tar.xz) = 6539592 +TIMESTAMP = 1772541950 +SHA256 (KDE/release-service/25.12.3/gwenview-25.12.3.tar.xz) = 06ea32a51d8e9efebc4a4e63eb3ef8b23b68a5af5ab38045a7e2837a4fd193b4 +SIZE (KDE/release-service/25.12.3/gwenview-25.12.3.tar.xz) = 6538216 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 8a0d4910fc48..b44bc9770ebe 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570750 -SHA256 (KDE/release-service/25.12.2/kamera-25.12.2.tar.xz) = bf97d4af5fdc115e67e69a26fd1a05a99f7a84df2a8b7d18451385aaba3d7c39 -SIZE (KDE/release-service/25.12.2/kamera-25.12.2.tar.xz) = 132956 +TIMESTAMP = 1772541952 +SHA256 (KDE/release-service/25.12.3/kamera-25.12.3.tar.xz) = fdeff4611a2ee78b4b43152256232dc23208c72bec49938c0f742742ff998063 +SIZE (KDE/release-service/25.12.3/kamera-25.12.3.tar.xz) = 132968 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index b883a9b57784..80e952c4f884 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570752 -SHA256 (KDE/release-service/25.12.2/kcolorchooser-25.12.2.tar.xz) = f22e124177d365a2a5ac70e4935d1fa7c42c3decb9b4bc14bdc69e1bd83ab421 -SIZE (KDE/release-service/25.12.2/kcolorchooser-25.12.2.tar.xz) = 36568 +TIMESTAMP = 1772541953 +SHA256 (KDE/release-service/25.12.3/kcolorchooser-25.12.3.tar.xz) = 088b44471b0fec80fb5099c69bc737b67a4e68a08a3d52f901821417defdc865 +SIZE (KDE/release-service/25.12.3/kcolorchooser-25.12.3.tar.xz) = 36532 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 5122aee1a137..3a9d74afed74 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570754 -SHA256 (KDE/release-service/25.12.2/kdegraphics-mobipocket-25.12.2.tar.xz) = f0f5aa2ec442c8c1225a90aa41a19bc754cab48beee380221ba4993367803ac4 -SIZE (KDE/release-service/25.12.2/kdegraphics-mobipocket-25.12.2.tar.xz) = 20396 +TIMESTAMP = 1772541955 +SHA256 (KDE/release-service/25.12.3/kdegraphics-mobipocket-25.12.3.tar.xz) = fbe6c0a2a15c124fa8f6052ec44329d3de2850018f4c25edbef8c163626b1e56 +SIZE (KDE/release-service/25.12.3/kdegraphics-mobipocket-25.12.3.tar.xz) = 20396 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 4545f633db9d..c39f029dc91e 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570756 -SHA256 (KDE/release-service/25.12.2/svgpart-25.12.2.tar.xz) = e7bb52b3334e6e1e11e38e54eda4511d1357b28dd6d93dd475fa90b9f22369f5 -SIZE (KDE/release-service/25.12.2/svgpart-25.12.2.tar.xz) = 30276 +TIMESTAMP = 1772541956 +SHA256 (KDE/release-service/25.12.3/svgpart-25.12.3.tar.xz) = 09df6252c0335278b95b341d60a7e9f09ebc9ac613103c2f497e7fba9ae94718 +SIZE (KDE/release-service/25.12.3/svgpart-25.12.3.tar.xz) = 30232 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 134ab0bca795..fb35df641a3d 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570758 -SHA256 (KDE/release-service/25.12.2/kdegraphics-thumbnailers-25.12.2.tar.xz) = 1feab9e5ad1aa2d8abcedd7a33b537644bf1c3f3427ffd6a55c8b83368f86ed3 -SIZE (KDE/release-service/25.12.2/kdegraphics-thumbnailers-25.12.2.tar.xz) = 128340 +TIMESTAMP = 1772541958 +SHA256 (KDE/release-service/25.12.3/kdegraphics-thumbnailers-25.12.3.tar.xz) = 05eb9e268c161d25c6899f1affdb99acaf8ec506a11083fea807e335a5de18f9 +SIZE (KDE/release-service/25.12.3/kdegraphics-thumbnailers-25.12.3.tar.xz) = 128588 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index b156dfc2ed9f..2133459097f1 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570760 -SHA256 (KDE/release-service/25.12.2/kgraphviewer-25.12.2.tar.xz) = b49f399aeaafe595d53c80af2089e1313d10700999a6b4e00d2c022adaffae86 -SIZE (KDE/release-service/25.12.2/kgraphviewer-25.12.2.tar.xz) = 1606904 +TIMESTAMP = 1772541959 +SHA256 (KDE/release-service/25.12.3/kgraphviewer-25.12.3.tar.xz) = 634d92f9bedb09e5e491e7c8ceb1c4a6607ccb8ef87f8c8b1c8a9f52e3f8c0c6 +SIZE (KDE/release-service/25.12.3/kgraphviewer-25.12.3.tar.xz) = 1608376 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 0ea3d6599908..6a10b94f8024 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570762 -SHA256 (KDE/release-service/25.12.2/kimagemapeditor-25.12.2.tar.xz) = eb10a72de40b04cd00f7ab7c7525b12bede2dbbe485f0a2ca3ec33957065964f -SIZE (KDE/release-service/25.12.2/kimagemapeditor-25.12.2.tar.xz) = 1077356 +TIMESTAMP = 1772541960 +SHA256 (KDE/release-service/25.12.3/kimagemapeditor-25.12.3.tar.xz) = 313786289a31324b79bd94e94c2a59b51b325edd6f3f63d69c84709ca3addf66 +SIZE (KDE/release-service/25.12.3/kimagemapeditor-25.12.3.tar.xz) = 1077048 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index e39e6a1c1e64..110d6f39ffaf 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570764 -SHA256 (KDE/release-service/25.12.2/kolourpaint-25.12.2.tar.xz) = 526b630af7797a79fdec0eba7948236ed2975e2d3a66f53a92cfa6787d5acf86 -SIZE (KDE/release-service/25.12.2/kolourpaint-25.12.2.tar.xz) = 5318128 +TIMESTAMP = 1772541962 +SHA256 (KDE/release-service/25.12.3/kolourpaint-25.12.3.tar.xz) = ecbd48b7a13eb46bad63b0afe638c6c87f1b661b79740320902c890861543568 +SIZE (KDE/release-service/25.12.3/kolourpaint-25.12.3.tar.xz) = 5318288 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index e6b51348c66c..f55c3c85b810 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570766 -SHA256 (KDE/release-service/25.12.2/kontrast-25.12.2.tar.xz) = 51271dc8ea3bfe7f54cd5262b0ae1c4f2a458b5906f06f40f6991f74ef78e137 -SIZE (KDE/release-service/25.12.2/kontrast-25.12.2.tar.xz) = 222336 +TIMESTAMP = 1772541963 +SHA256 (KDE/release-service/25.12.3/kontrast-25.12.3.tar.xz) = 0c740050bce4ee870db0aa22b27dfeba268ec95e48d57407ca533b6eda6f9108 +SIZE (KDE/release-service/25.12.3/kontrast-25.12.3.tar.xz) = 222372 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 02c816be9721..c73cd52fd565 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570768 -SHA256 (KDE/release-service/25.12.2/kqtquickcharts-25.12.2.tar.xz) = bc7a5868c97309147cffa665606043af8f76c71b4000446f41d7f5ed5c10447c -SIZE (KDE/release-service/25.12.2/kqtquickcharts-25.12.2.tar.xz) = 30840 +TIMESTAMP = 1772541965 +SHA256 (KDE/release-service/25.12.3/kqtquickcharts-25.12.3.tar.xz) = 6c590488698efca35d0db93b1b03264cc5da1e7c726d19f62272255a7469dc4b +SIZE (KDE/release-service/25.12.3/kqtquickcharts-25.12.3.tar.xz) = 30840 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index f0eb3cf6d956..e4d6fe666c6b 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570769 -SHA256 (KDE/release-service/25.12.2/ksanecore-25.12.2.tar.xz) = 847cc01511bc28986781e36c66f75f57ecd7e36d2fa42b7b80b74dfe0edeba09 -SIZE (KDE/release-service/25.12.2/ksanecore-25.12.2.tar.xz) = 54328 +TIMESTAMP = 1772541966 +SHA256 (KDE/release-service/25.12.3/ksanecore-25.12.3.tar.xz) = 60476b5e7ad764142cf69af1f827e9f7af8883eae3cbd3faa6d1a42d635ee282 +SIZE (KDE/release-service/25.12.3/ksanecore-25.12.3.tar.xz) = 54328 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index cea81a850ac3..65bd50285c37 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570771 -SHA256 (KDE/release-service/25.12.2/libkdcraw-25.12.2.tar.xz) = f2f6fcd61d8f0f0cc256f7b163bbc9986af5559f010e43dcbc0a83ebce243797 -SIZE (KDE/release-service/25.12.2/libkdcraw-25.12.2.tar.xz) = 37448 +TIMESTAMP = 1772541968 +SHA256 (KDE/release-service/25.12.3/libkdcraw-25.12.3.tar.xz) = 23b220f14bbaa21858b6f8e18169499389835b6693e73a877f8e0d788f4499af +SIZE (KDE/release-service/25.12.3/libkdcraw-25.12.3.tar.xz) = 37448 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index e3f2acd1c600..e1b7491bce69 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570773 -SHA256 (KDE/release-service/25.12.2/libkexiv2-25.12.2.tar.xz) = b8d914d03ca96b4e2d3a1707af424980a7f0685b109220b25efb76ed7e7778b6 -SIZE (KDE/release-service/25.12.2/libkexiv2-25.12.2.tar.xz) = 60096 +TIMESTAMP = 1772541969 +SHA256 (KDE/release-service/25.12.3/libkexiv2-25.12.3.tar.xz) = 8ed6de46cdd084a834dd0f2049d6490977a8eedc50a2e59f715fb1cecf6653ec +SIZE (KDE/release-service/25.12.3/libkexiv2-25.12.3.tar.xz) = 60116 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index bf1a61388f59..ee285b6a26af 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570775 -SHA256 (KDE/release-service/25.12.2/libksane-25.12.2.tar.xz) = 80e1ed564935e5c741497ad9100dcfa91ade0d52296cf4f0f7c4d0803f9058c8 -SIZE (KDE/release-service/25.12.2/libksane-25.12.2.tar.xz) = 156676 +TIMESTAMP = 1772541971 +SHA256 (KDE/release-service/25.12.3/libksane-25.12.3.tar.xz) = ca6e7e776f2f6932b68bb48bf58f0c4c300453ed233b2f5c5a761d3d857a9805 +SIZE (KDE/release-service/25.12.3/libksane-25.12.3.tar.xz) = 156136 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 4fd39f8473f4..7c61d2cde5f5 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570777 -SHA256 (KDE/release-service/25.12.2/okular-25.12.2.tar.xz) = 9c84a80fe2a3dd0990b56432912244b6f5761a1a6abda452f3da6e7e6a88937f -SIZE (KDE/release-service/25.12.2/okular-25.12.2.tar.xz) = 8233372 +TIMESTAMP = 1772541972 +SHA256 (KDE/release-service/25.12.3/okular-25.12.3.tar.xz) = 9d509a702aa00c82c075e5a60ed224fcf884bbcd983e5e988d2520ff2fb86276 +SIZE (KDE/release-service/25.12.3/okular-25.12.3.tar.xz) = 8231424 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 32222df28fd6..6ccb07691b58 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570779 -SHA256 (KDE/release-service/25.12.2/skanlite-25.12.2.tar.xz) = 86c35995a5c8550dd612f379361baee06e4fb218d3d788cc40cead1aeeba6406 -SIZE (KDE/release-service/25.12.2/skanlite-25.12.2.tar.xz) = 2392516 +TIMESTAMP = 1772541974 +SHA256 (KDE/release-service/25.12.3/skanlite-25.12.3.tar.xz) = e30dfc3601545291fc3d813ceaafcee91d0b850dcb54688be49a0f431779501f +SIZE (KDE/release-service/25.12.3/skanlite-25.12.3.tar.xz) = 2392496 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index d5ff10019903..3cfd35341112 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570781 -SHA256 (KDE/release-service/25.12.2/skanpage-25.12.2.tar.xz) = 7992e3f07564ba44700b26cefe03f057fcd9976bd1e641dab1351f515fb49182 -SIZE (KDE/release-service/25.12.2/skanpage-25.12.2.tar.xz) = 1367772 +TIMESTAMP = 1772541975 +SHA256 (KDE/release-service/25.12.3/skanpage-25.12.3.tar.xz) = 2133b783bafb2e7d8cae873b648f10bf2d6edd7baa31d34fcc6c4b0d6507a13d +SIZE (KDE/release-service/25.12.3/skanpage-25.12.3.tar.xz) = 1370004 diff --git a/graphics/skanpage/pkg-plist b/graphics/skanpage/pkg-plist index 3249aa3c8a5a..3ad42c443398 100644 --- a/graphics/skanpage/pkg-plist +++ b/graphics/skanpage/pkg-plist @@ -1,50 +1,51 @@ bin/skanpage share/applications/org.kde.skanpage.desktop share/icons/hicolor/48x48/apps/skanpage.png share/icons/hicolor/scalable/apps/skanpage.svg share/locale/ar/LC_MESSAGES/skanpage.mo share/locale/ast/LC_MESSAGES/skanpage.mo share/locale/az/LC_MESSAGES/skanpage.mo share/locale/be/LC_MESSAGES/skanpage.mo share/locale/bg/LC_MESSAGES/skanpage.mo share/locale/ca/LC_MESSAGES/skanpage.mo share/locale/ca@valencia/LC_MESSAGES/skanpage.mo share/locale/cs/LC_MESSAGES/skanpage.mo share/locale/de/LC_MESSAGES/skanpage.mo share/locale/el/LC_MESSAGES/skanpage.mo share/locale/en_GB/LC_MESSAGES/skanpage.mo share/locale/eo/LC_MESSAGES/skanpage.mo share/locale/es/LC_MESSAGES/skanpage.mo share/locale/eu/LC_MESSAGES/skanpage.mo share/locale/fi/LC_MESSAGES/skanpage.mo share/locale/fr/LC_MESSAGES/skanpage.mo share/locale/ga/LC_MESSAGES/skanpage.mo share/locale/gl/LC_MESSAGES/skanpage.mo share/locale/he/LC_MESSAGES/skanpage.mo share/locale/hi/LC_MESSAGES/skanpage.mo share/locale/hu/LC_MESSAGES/skanpage.mo share/locale/ia/LC_MESSAGES/skanpage.mo share/locale/id/LC_MESSAGES/skanpage.mo share/locale/is/LC_MESSAGES/skanpage.mo share/locale/it/LC_MESSAGES/skanpage.mo share/locale/ja/LC_MESSAGES/skanpage.mo share/locale/ka/LC_MESSAGES/skanpage.mo share/locale/ko/LC_MESSAGES/skanpage.mo share/locale/lt/LC_MESSAGES/skanpage.mo share/locale/lv/LC_MESSAGES/skanpage.mo share/locale/nl/LC_MESSAGES/skanpage.mo share/locale/pa/LC_MESSAGES/skanpage.mo share/locale/pl/LC_MESSAGES/skanpage.mo share/locale/pt/LC_MESSAGES/skanpage.mo share/locale/pt_BR/LC_MESSAGES/skanpage.mo +share/locale/ro/LC_MESSAGES/skanpage.mo share/locale/ru/LC_MESSAGES/skanpage.mo share/locale/sa/LC_MESSAGES/skanpage.mo share/locale/sk/LC_MESSAGES/skanpage.mo share/locale/sl/LC_MESSAGES/skanpage.mo share/locale/sv/LC_MESSAGES/skanpage.mo share/locale/tr/LC_MESSAGES/skanpage.mo share/locale/uk/LC_MESSAGES/skanpage.mo share/locale/zh_CN/LC_MESSAGES/skanpage.mo share/locale/zh_TW/LC_MESSAGES/skanpage.mo share/metainfo/org.kde.skanpage.appdata.xml share/qlogging-categories6/skanpage.categories diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 9f1dfd11a3dc..6d3cb4f4afa6 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570783 -SHA256 (KDE/release-service/25.12.2/konversation-25.12.2.tar.xz) = fe7f8e4e4be2e80d1f367c4339eb227852e69f533d2d4145d9d2005c0d7021f2 -SIZE (KDE/release-service/25.12.2/konversation-25.12.2.tar.xz) = 4501664 +TIMESTAMP = 1772541977 +SHA256 (KDE/release-service/25.12.3/konversation-25.12.3.tar.xz) = b859bcf527fec1d4fbb29a0ba4d1e18430cef58871994617881895e7867fb6f7 +SIZE (KDE/release-service/25.12.3/konversation-25.12.3.tar.xz) = 4500288 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index d58262a346ca..1e495b3e0b59 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570785 -SHA256 (KDE/release-service/25.12.2/kiten-25.12.2.tar.xz) = 7ef8327a99f7e706f551e3e68bf4cc9da36e5715af270e4e8957e461c1421ab0 -SIZE (KDE/release-service/25.12.2/kiten-25.12.2.tar.xz) = 11317808 +TIMESTAMP = 1772541978 +SHA256 (KDE/release-service/25.12.3/kiten-25.12.3.tar.xz) = 2a1e9cdc77fc63d7b7d845153dea099d58965dcf0d98ab821de13dbcffc5c0cb +SIZE (KDE/release-service/25.12.3/kiten-25.12.3.tar.xz) = 11319044 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 99ceb1d40ef7..a49e7bca2e6a 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570788 -SHA256 (KDE/release-service/25.12.2/kturtle-25.12.2.tar.xz) = de5018c719b19c02a35e1c2a488e6673bbbb3d63acf5d97dc069905344a72837 -SIZE (KDE/release-service/25.12.2/kturtle-25.12.2.tar.xz) = 2103088 +TIMESTAMP = 1772541980 +SHA256 (KDE/release-service/25.12.3/kturtle-25.12.3.tar.xz) = 7520152856ad0b8dac7d2212dc8bbb4d4fdc281205d9c0cc0de27d36de6e36dc +SIZE (KDE/release-service/25.12.3/kturtle-25.12.3.tar.xz) = 2102380 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 8d92939dc704..46be9c305306 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570790 -SHA256 (KDE/release-service/25.12.2/analitza-25.12.2.tar.xz) = 5918986927ad6820f9baa53b4d935b9450ddaf579d015fa5d449b9f3ef70c5ae -SIZE (KDE/release-service/25.12.2/analitza-25.12.2.tar.xz) = 369964 +TIMESTAMP = 1772541981 +SHA256 (KDE/release-service/25.12.3/analitza-25.12.3.tar.xz) = 4f0bc01116d61953d9759f91f943eb9da674f1f048a453d55035f4459c3bfdb7 +SIZE (KDE/release-service/25.12.3/analitza-25.12.3.tar.xz) = 369764 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index dbc660ff7d5e..2b1c080df2d5 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570792 -SHA256 (KDE/release-service/25.12.2/cantor-25.12.2.tar.xz) = d72152513ef5fcd93c520ff2dc1d4b6decbddf1e7be98cb811b465b57972b823 -SIZE (KDE/release-service/25.12.2/cantor-25.12.2.tar.xz) = 10919744 +TIMESTAMP = 1772541983 +SHA256 (KDE/release-service/25.12.3/cantor-25.12.3.tar.xz) = 08873503b24e77a2f0d334327d639fb88ca71a4a72f6a92453c0d47f43caae4b +SIZE (KDE/release-service/25.12.3/cantor-25.12.3.tar.xz) = 10917600 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 60651c7e349f..f75f2284818c 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570794 -SHA256 (KDE/release-service/25.12.2/kalgebra-25.12.2.tar.xz) = 695a68c1abd0f49ee3fbd777718d0d4112407b5b99a8b78796df339f2aa40840 -SIZE (KDE/release-service/25.12.2/kalgebra-25.12.2.tar.xz) = 953636 +TIMESTAMP = 1772541984 +SHA256 (KDE/release-service/25.12.3/kalgebra-25.12.3.tar.xz) = 75ad5abc971c50978fe88f157c3f35f37e6047ea5c9d626c9b74b3fd0ba29015 +SIZE (KDE/release-service/25.12.3/kalgebra-25.12.3.tar.xz) = 951764 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index 841573a76ce6..4968738c3147 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570794 -SHA256 (KDE/release-service/25.12.2/kalk-25.12.2.tar.xz) = 336acb717ddeb4d637139096d098b519cdf897b3e072133eb013dd6812f0be1d -SIZE (KDE/release-service/25.12.2/kalk-25.12.2.tar.xz) = 78144 +TIMESTAMP = 1772541985 +SHA256 (KDE/release-service/25.12.3/kalk-25.12.3.tar.xz) = 7ccac0e900b0da63bcd956057983a646fdf6f421005ce508c75f3ba77dc959c2 +SIZE (KDE/release-service/25.12.3/kalk-25.12.3.tar.xz) = 83344 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index ab510084689f..7ee229e638e6 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570797 -SHA256 (KDE/release-service/25.12.2/kbruch-25.12.2.tar.xz) = 85bf383d3a052ed8cbe8158ba57016d8f8bc95660d01508b8ee68aab82b39fc9 -SIZE (KDE/release-service/25.12.2/kbruch-25.12.2.tar.xz) = 5163568 +TIMESTAMP = 1772541986 +SHA256 (KDE/release-service/25.12.3/kbruch-25.12.3.tar.xz) = 2c9c0c4774108d8dc58ca4f14168cb9e53377e3fd2ff787c8e81d9dd3179b4fe +SIZE (KDE/release-service/25.12.3/kbruch-25.12.3.tar.xz) = 5162860 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index c098c607b395..24d861c09d6b 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570798 -SHA256 (KDE/release-service/25.12.2/kcalc-25.12.2.tar.xz) = ab363558023fac17cd7ebe2ee2de774e1ae7a2390d1f291a7c7316ec0df1a174 -SIZE (KDE/release-service/25.12.2/kcalc-25.12.2.tar.xz) = 485032 +TIMESTAMP = 1772541988 +SHA256 (KDE/release-service/25.12.3/kcalc-25.12.3.tar.xz) = c2382c232e06744b2b82ab96797f59d30fd4fe239b2aa0c07fbe7424cf10aafa +SIZE (KDE/release-service/25.12.3/kcalc-25.12.3.tar.xz) = 484396 diff --git a/math/kig/distinfo b/math/kig/distinfo index 6b30f067cc9e..8e734a66fb3a 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570801 -SHA256 (KDE/release-service/25.12.2/kig-25.12.2.tar.xz) = cc5d6224a6b504c4e9dc6321b2d7dde9bd89700752523aeaf665f83d54f40edd -SIZE (KDE/release-service/25.12.2/kig-25.12.2.tar.xz) = 3262980 +TIMESTAMP = 1772541989 +SHA256 (KDE/release-service/25.12.3/kig-25.12.3.tar.xz) = a181598f6a990c194c58e238b6807cae5491bdc47d35a1764b95d39bbca2d6ee +SIZE (KDE/release-service/25.12.3/kig-25.12.3.tar.xz) = 3262312 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index a974ada63cef..c226020ca948 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570803 -SHA256 (KDE/release-service/25.12.2/kmplot-25.12.2.tar.xz) = 5128daefe8215bc285d7632efb94eecde763b604545c5a079315235ba3e5ea3f -SIZE (KDE/release-service/25.12.2/kmplot-25.12.2.tar.xz) = 3032188 +TIMESTAMP = 1772541991 +SHA256 (KDE/release-service/25.12.3/kmplot-25.12.3.tar.xz) = 4d9bf8bc654ce1e4b477e156e5d4c1a117374e2220398c7e7baa818e214eb043 +SIZE (KDE/release-service/25.12.3/kmplot-25.12.3.tar.xz) = 3030952 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 8bbf38306f95..0ba7e456fbc3 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570805 -SHA256 (KDE/release-service/25.12.2/rocs-25.12.2.tar.xz) = 20ff83d0dd881c4ad167076b9de7976f85607d2c05eb914eb293bb752c7855a6 -SIZE (KDE/release-service/25.12.2/rocs-25.12.2.tar.xz) = 1580752 +TIMESTAMP = 1772541992 +SHA256 (KDE/release-service/25.12.3/rocs-25.12.3.tar.xz) = 39d2b3ce9a9185042a67da755fb669eb92c9f5b7618d99a42879d5951adc731f +SIZE (KDE/release-service/25.12.3/rocs-25.12.3.tar.xz) = 1578476 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 9eb5c03aad02..029f4314754c 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570807 -SHA256 (KDE/release-service/25.12.2/artikulate-25.12.2.tar.xz) = 68062fad038a8768d781f87e4a1e30ba997c78770dd297134b8092a6015e5620 -SIZE (KDE/release-service/25.12.2/artikulate-25.12.2.tar.xz) = 1059664 +TIMESTAMP = 1772541994 +SHA256 (KDE/release-service/25.12.3/artikulate-25.12.3.tar.xz) = d837d477075779ab2ac0501e2d1a8069a761fc1cfc43a68ec5bbc5d81c0c9ebc +SIZE (KDE/release-service/25.12.3/artikulate-25.12.3.tar.xz) = 1059816 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 418cdc4559fc..e38b6a6ac09c 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570807 -SHA256 (KDE/release-service/25.12.2/kdeedu-data-25.12.2.tar.xz) = c9eca746a7a2690502955d74342ffda22ed04dfed67eadea8f05730882c3b7de -SIZE (KDE/release-service/25.12.2/kdeedu-data-25.12.2.tar.xz) = 338780 +TIMESTAMP = 1772541994 +SHA256 (KDE/release-service/25.12.3/kdeedu-data-25.12.3.tar.xz) = ce32148f41a2776a02a593035ba5c3df573b7fa0123a8134b9255c9de3b27f04 +SIZE (KDE/release-service/25.12.3/kdeedu-data-25.12.3.tar.xz) = 338856 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 435dd28f334a..2ec0f1b8c672 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570810 -SHA256 (KDE/release-service/25.12.2/kgeography-25.12.2.tar.xz) = 3b45cccd2402102066d7ef162cc7aac9d7c063298cc3f419c0dd31fefadb490c -SIZE (KDE/release-service/25.12.2/kgeography-25.12.2.tar.xz) = 12490652 +TIMESTAMP = 1772541995 +SHA256 (KDE/release-service/25.12.3/kgeography-25.12.3.tar.xz) = a9ad85ed43881cf034f24e140b1fedeb32b3a6f5f08e5d6c081ffb3aa15ee02c +SIZE (KDE/release-service/25.12.3/kgeography-25.12.3.tar.xz) = 12468664 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index fe1c813c8b12..56b188267898 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570813 -SHA256 (KDE/release-service/25.12.2/klettres-25.12.2.tar.xz) = 835425075339486793cfe4f8eb210830d3d957429e41d8b1c20f0a2ef16b6e7a -SIZE (KDE/release-service/25.12.2/klettres-25.12.2.tar.xz) = 47187460 +TIMESTAMP = 1772541997 +SHA256 (KDE/release-service/25.12.3/klettres-25.12.3.tar.xz) = 1e164d8129778503687970a55f01fbdce03a31642b767f6d6157bf946fa0b5cc +SIZE (KDE/release-service/25.12.3/klettres-25.12.3.tar.xz) = 47189188 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 18d7de99d17e..2996d7f1b99e 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570814 -SHA256 (KDE/release-service/25.12.2/ktouch-25.12.2.tar.xz) = 9ea5e4b490f3a85fd0542cc43c277a1ee0323f1616b8dddff5147fb4db995c45 -SIZE (KDE/release-service/25.12.2/ktouch-25.12.2.tar.xz) = 4790128 +TIMESTAMP = 1772541997 +SHA256 (KDE/release-service/25.12.3/ktouch-25.12.3.tar.xz) = 88ed5ef0c492321be6c926bc3af3b573c4a7d2fba0b65568b5ad50b40a48c790 +SIZE (KDE/release-service/25.12.3/ktouch-25.12.3.tar.xz) = 4785972 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index a493f71d9540..75d49f7d5461 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570816 -SHA256 (KDE/release-service/25.12.2/kwordquiz-25.12.2.tar.xz) = e27a5aa2049bc37c6d9f5a011d9403e9f2151f3ee610436ac2ef3f1dbf1f2bc3 -SIZE (KDE/release-service/25.12.2/kwordquiz-25.12.2.tar.xz) = 3619016 +TIMESTAMP = 1772541999 +SHA256 (KDE/release-service/25.12.3/kwordquiz-25.12.3.tar.xz) = fb98383c0b921253a4e4c06c16b96019a0d629b413e6451db64d69889f52cf52 +SIZE (KDE/release-service/25.12.3/kwordquiz-25.12.3.tar.xz) = 3615112 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index d54f8f4a8dd8..42a5937e3117 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570818 -SHA256 (KDE/release-service/25.12.2/libkeduvocdocument-25.12.2.tar.xz) = c88631188a5b77b19d6b9887f2d9d6a2745a3339aa76d35555bc91b8f4366b1c -SIZE (KDE/release-service/25.12.2/libkeduvocdocument-25.12.2.tar.xz) = 229416 +TIMESTAMP = 1772542000 +SHA256 (KDE/release-service/25.12.3/libkeduvocdocument-25.12.3.tar.xz) = 92a680125c75bb9d419d36335bdce78510ff74d3b892b3573729a19cae18752d +SIZE (KDE/release-service/25.12.3/libkeduvocdocument-25.12.3.tar.xz) = 225628 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index 2a6763ed206d..faf92f77feb7 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570821 -SHA256 (KDE/release-service/25.12.2/minuet-25.12.2.tar.xz) = 0eea2271f8233beb666be379c924937a45cfa39783f633eb5718304202c2939f -SIZE (KDE/release-service/25.12.2/minuet-25.12.2.tar.xz) = 27697912 +TIMESTAMP = 1772542002 +SHA256 (KDE/release-service/25.12.3/minuet-25.12.3.tar.xz) = e0c9c852df80afb1738087efe6055d8402fff9e696422f186d0fec204b3cd0d3 +SIZE (KDE/release-service/25.12.3/minuet-25.12.3.tar.xz) = 27691564 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 1e0b8469a4c9..88896f25601c 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570822 -SHA256 (KDE/release-service/25.12.2/parley-25.12.2.tar.xz) = eaa1b77d45bd172fb3431005eb1402a5586681c40b43de8bd4222b94d45c6fa0 -SIZE (KDE/release-service/25.12.2/parley-25.12.2.tar.xz) = 8452812 +TIMESTAMP = 1772542002 +SHA256 (KDE/release-service/25.12.3/parley-25.12.3.tar.xz) = a8d5e35070a535f90af9e8faa9a9f933b7ae1ad3d04bfb8ebd03dc42ac2ede0c +SIZE (KDE/release-service/25.12.3/parley-25.12.3.tar.xz) = 8445388 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index be9c72071bd8..1673a5eb141d 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570824 -SHA256 (KDE/release-service/25.12.2/dragon-25.12.2.tar.xz) = 0558771a4ba544eb6159bd5d130e8e6044bab2956b417f67f6618242f3bda43b -SIZE (KDE/release-service/25.12.2/dragon-25.12.2.tar.xz) = 153456 +TIMESTAMP = 1772542004 +SHA256 (KDE/release-service/25.12.3/dragon-25.12.3.tar.xz) = 3af4f7ef4b848ab6ee9a4169721c6c59d6cf19acd876619d647001a86d7ae4ce +SIZE (KDE/release-service/25.12.3/dragon-25.12.3.tar.xz) = 152384 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index f52e62d8252b..104755a374c2 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570826 -SHA256 (KDE/release-service/25.12.2/kamoso-25.12.2.tar.xz) = a3c80edf315fcfd0ef49ad1808410202f8083ca935f3876eeba03681c2c063a7 -SIZE (KDE/release-service/25.12.2/kamoso-25.12.2.tar.xz) = 213004 +TIMESTAMP = 1772542005 +SHA256 (KDE/release-service/25.12.3/kamoso-25.12.3.tar.xz) = 781aa669979a0326994f90f71e8c2a391d89ec2e1fef066146773577fe8eb864 +SIZE (KDE/release-service/25.12.3/kamoso-25.12.3.tar.xz) = 212980 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index e65b40f0bc49..0688b6835d44 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570826 -SHA256 (KDE/release-service/25.12.2/kasts-25.12.2.tar.xz) = 374a85aaedfe33a3b9bd880b0faf541da15a7c5238c49112ee344295b3f93c21 -SIZE (KDE/release-service/25.12.2/kasts-25.12.2.tar.xz) = 648264 +TIMESTAMP = 1772542005 +SHA256 (KDE/release-service/25.12.3/kasts-25.12.3.tar.xz) = b5d19512a5887a1a763eb9de9530dd7f861d667631cd78a84a79a50e410c00d0 +SIZE (KDE/release-service/25.12.3/kasts-25.12.3.tar.xz) = 671936 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index cb31febac197..8eb69f14a07e 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570828 -SHA256 (KDE/release-service/25.12.2/ffmpegthumbs-25.12.2.tar.xz) = 18059809baa8d2525b20988f9176d010ae8758703917c6cafd8199be965bc446 -SIZE (KDE/release-service/25.12.2/ffmpegthumbs-25.12.2.tar.xz) = 35244 +TIMESTAMP = 1772542007 +SHA256 (KDE/release-service/25.12.3/ffmpegthumbs-25.12.3.tar.xz) = eeb38acc65a955c16532b83a20bca08fce3e484674dbb0ccaecae44277ef8de8 +SIZE (KDE/release-service/25.12.3/ffmpegthumbs-25.12.3.tar.xz) = 35228 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 423673772447..3a739ad40854 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570831 -SHA256 (KDE/release-service/25.12.2/kdenlive-25.12.2.tar.xz) = 5a1f2c159734a72ec8bf9330832c25175a7f037b1b1d1c7b7fab960250bf8154 -SIZE (KDE/release-service/25.12.2/kdenlive-25.12.2.tar.xz) = 14288384 +TIMESTAMP = 1772542008 +SHA256 (KDE/release-service/25.12.3/kdenlive-25.12.3.tar.xz) = 12ef075c6df73637948cdce7725bb8380ccd164b158157d495e6821804ce4a7f +SIZE (KDE/release-service/25.12.3/kdenlive-25.12.3.tar.xz) = 14297744 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index 3024f468d965..ebf13e2becfe 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570832 -SHA256 (KDE/release-service/25.12.2/plasmatube-25.12.2.tar.xz) = fea32d82f23bacbd6e58805f8a24231905949db700f56d4454fe83df198e86c9 -SIZE (KDE/release-service/25.12.2/plasmatube-25.12.2.tar.xz) = 227080 +TIMESTAMP = 1772542009 +SHA256 (KDE/release-service/25.12.3/plasmatube-25.12.3.tar.xz) = c5fe282148181865daa5423ee7595194b1cbfa0168ec722fdcac9ebb67cc52a4 +SIZE (KDE/release-service/25.12.3/plasmatube-25.12.3.tar.xz) = 227052 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 54b2cc4f3595..c48c485faf0e 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570834 -SHA256 (KDE/release-service/25.12.2/kaccounts-integration-25.12.2.tar.xz) = 6f3b3d5b630ad1150425982d1266718075c419580bb0f828824524a380c85aa5 -SIZE (KDE/release-service/25.12.2/kaccounts-integration-25.12.2.tar.xz) = 94564 +TIMESTAMP = 1772542010 +SHA256 (KDE/release-service/25.12.3/kaccounts-integration-25.12.3.tar.xz) = 71c20ae5ca1459f732cc3c92248885b2d1d84e251f2d1b0f462b00adda8fc3b6 +SIZE (KDE/release-service/25.12.3/kaccounts-integration-25.12.3.tar.xz) = 94600 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index ae9ac8825e7f..720a08736b0c 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570836 -SHA256 (KDE/release-service/25.12.2/kaccounts-providers-25.12.2.tar.xz) = f2cf056d6244c77e727256eb11bab2fe733cc7f41dc2ea986d4beef3672c3fcc -SIZE (KDE/release-service/25.12.2/kaccounts-providers-25.12.2.tar.xz) = 69036 +TIMESTAMP = 1772542012 +SHA256 (KDE/release-service/25.12.3/kaccounts-providers-25.12.3.tar.xz) = 0ce6455e601c122ad1179d3808a12d44c5d36377cf0ce5556520d0f8eee3e6bc +SIZE (KDE/release-service/25.12.3/kaccounts-providers-25.12.3.tar.xz) = 69040 diff --git a/net-im/neochat/Makefile b/net-im/neochat/Makefile index ee37a9d5c33d..a338dcfec889 100644 --- a/net-im/neochat/Makefile +++ b/net-im/neochat/Makefile @@ -1,43 +1,42 @@ PORTNAME= neochat DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Glossy Matrix IM client based on KDE technologies WWW= https://invent.kde.org/network/neochat LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-only.txt # Quotient is a static lib, doesn't need to be in RUN_DEPENDS BUILD_DEPENDS= libquotient>=0.9.3:net-im/libquotient \ kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor LIB_DEPENDS= libKUnifiedPush.so:devel/kunifiedpush \ libQCoro6Core.so:devel/qcoro \ libcmark.so:textproc/cmark \ libqt6keychain.so:security/qtkeychain@qt6 \ libdbus-1.so:devel/dbus \ libolm.so:security/olm RUN_DEPENDS= kquickimageeditor-qt6>=0.2.0:graphics/kquickimageeditor USES= cmake compiler:c++20-lang desktop-file-utils gettext kde:6 \ pkgconfig qt:6 tar:xz xorg USE_QT= base multimedia speech webview \ location:run positioning:run USE_KDE= auth codecs completion config configwidgets coreaddons \ dbusaddons i18n itemmodels jobwidgets kio kirigami-addons \ kirigami2 kquickcharts notifications purpose qqc2-desktop-style \ service solid sonnet statusnotifieritem syntaxhighlighting \ widgetsaddons windowsystem \ prison:run \ ecm:build USE_XORG= x11 .include .if ${ARCH:Mpowerpc*} USES+= llvm:min=16 .endif .include diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index c4d696acf7ce..b25792ac7b04 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570838 -SHA256 (KDE/release-service/25.12.2/neochat-25.12.2.tar.xz) = e97c89c39628eb77977135b42f774353c0c05f74759fd3b7eed17f042c4fb626 -SIZE (KDE/release-service/25.12.2/neochat-25.12.2.tar.xz) = 1270544 +TIMESTAMP = 1772542013 +SHA256 (KDE/release-service/25.12.3/neochat-25.12.3.tar.xz) = 58f7a58d577466277ed96be7ca10481c52645241400afafd49ba8dc46120a6d9 +SIZE (KDE/release-service/25.12.3/neochat-25.12.3.tar.xz) = 1295028 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index 681c847572be..583cef22cf9d 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570839 -SHA256 (KDE/release-service/25.12.2/tokodon-25.12.2.tar.xz) = c84b0abc9df333060a0b44a5eed92da220869d9e37af680015d6543542bfe7ae -SIZE (KDE/release-service/25.12.2/tokodon-25.12.2.tar.xz) = 821044 +TIMESTAMP = 1772542013 +SHA256 (KDE/release-service/25.12.3/tokodon-25.12.3.tar.xz) = f5197e65c8d7969f93deca601ac3d84493de22d3d2440bd50c5193af22defb28 +SIZE (KDE/release-service/25.12.3/tokodon-25.12.3.tar.xz) = 840588 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index c687c11681d0..c866d1ab32e3 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570841 -SHA256 (KDE/release-service/25.12.2/ktorrent-25.12.2.tar.xz) = 3b534a58facb1a259a87275aa8ec312957cd886ffcc23fd4ac08e022e87c51ae -SIZE (KDE/release-service/25.12.2/ktorrent-25.12.2.tar.xz) = 2237188 +TIMESTAMP = 1772542015 +SHA256 (KDE/release-service/25.12.3/ktorrent-25.12.3.tar.xz) = d7aeef6fd792ecffc0a836c2978cfb8754223d725db1a12397dfcc9787be98d2 +SIZE (KDE/release-service/25.12.3/ktorrent-25.12.3.tar.xz) = 2230652 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 4c21abbbff8c..ef7f8e43e513 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570843 -SHA256 (KDE/release-service/25.12.2/libktorrent-25.12.2.tar.xz) = 31ade6b88d30bbdf7062d76dcec1ea41fb2887de9a93f0175248199e13329c37 -SIZE (KDE/release-service/25.12.2/libktorrent-25.12.2.tar.xz) = 608440 +TIMESTAMP = 1772542016 +SHA256 (KDE/release-service/25.12.3/libktorrent-25.12.3.tar.xz) = e462cba899d4d122923aa4d0c6efd395ebc4ef9eb688e6b7a405234da6c8c302 +SIZE (KDE/release-service/25.12.3/libktorrent-25.12.3.tar.xz) = 596240 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index cd352482281a..382ccdab6ac2 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570845 -SHA256 (KDE/release-service/25.12.2/akonadi-calendar-25.12.2.tar.xz) = ec5a5440d9a8b200f5018e23b52c4329fa401ad35408812be4a0f4b45fb77a75 -SIZE (KDE/release-service/25.12.2/akonadi-calendar-25.12.2.tar.xz) = 545348 +TIMESTAMP = 1772542018 +SHA256 (KDE/release-service/25.12.3/akonadi-calendar-25.12.3.tar.xz) = ac606d2210ba581167b0f17bc81dc60ed4c0de66daf9adcd55fce25c73c60014 +SIZE (KDE/release-service/25.12.3/akonadi-calendar-25.12.3.tar.xz) = 546632 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 9c0657d84afb..ee5afb70934d 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570847 -SHA256 (KDE/release-service/25.12.2/akonadi-contacts-25.12.2.tar.xz) = fa4d6b95143478f7d44897c68c33ee0f030426f25d8567045b904c2a02eb3686 -SIZE (KDE/release-service/25.12.2/akonadi-contacts-25.12.2.tar.xz) = 445348 +TIMESTAMP = 1772542019 +SHA256 (KDE/release-service/25.12.3/akonadi-contacts-25.12.3.tar.xz) = 575bb419a6bfde2bb3eaceda9636878492f8601fe87c767721f9cea5c250898f +SIZE (KDE/release-service/25.12.3/akonadi-contacts-25.12.3.tar.xz) = 442032 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index d91c343765a6..506af061e1cd 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570848 -SHA256 (KDE/release-service/25.12.2/akonadi-mime-25.12.2.tar.xz) = ad7456cccdad965bc7586136f3f1220b83af0746b305a1880beb5714cbf6a389 -SIZE (KDE/release-service/25.12.2/akonadi-mime-25.12.2.tar.xz) = 182564 +TIMESTAMP = 1772542021 +SHA256 (KDE/release-service/25.12.3/akonadi-mime-25.12.3.tar.xz) = 15e4c7ff51fa3f3d9373b3f8fc9fb87a9ddddb260103161e08c249ce8dbfbfa0 +SIZE (KDE/release-service/25.12.3/akonadi-mime-25.12.3.tar.xz) = 182512 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 0e89adbd8cdc..0bfbb3482c4c 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570850 -SHA256 (KDE/release-service/25.12.2/akonadi-search-25.12.2.tar.xz) = 8328094f725ed4603e2309bf381d1a407baa38032e157f2e7421f3c53e2e21ce -SIZE (KDE/release-service/25.12.2/akonadi-search-25.12.2.tar.xz) = 115912 +TIMESTAMP = 1772542022 +SHA256 (KDE/release-service/25.12.3/akonadi-search-25.12.3.tar.xz) = 75eca6c38ab9db5882a6a72af0f2fe0f96d94864198b4a4cf89d774807121d09 +SIZE (KDE/release-service/25.12.3/akonadi-search-25.12.3.tar.xz) = 115956 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index ce94d6b8a70c..a4dfb58152e0 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570851 -SHA256 (KDE/release-service/25.12.2/alligator-25.12.2.tar.xz) = 431fba621eac88627495398a567b0f55907a3bd07309d2bc339c9d2053d4bda8 -SIZE (KDE/release-service/25.12.2/alligator-25.12.2.tar.xz) = 242908 +TIMESTAMP = 1772542022 +SHA256 (KDE/release-service/25.12.3/alligator-25.12.3.tar.xz) = dc3b82fd754b55ceef0042ed6232f3b4be734daca7092ec3542fcc0255c2769b +SIZE (KDE/release-service/25.12.3/alligator-25.12.3.tar.xz) = 246552 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index bf7a5d4ce7c5..0f5928c56fd3 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570853 -SHA256 (KDE/release-service/25.12.2/calendarsupport-25.12.2.tar.xz) = ca88695936e64d01acbf34476b7215f1796a366b96cc43890a3e3e1a3320b92d -SIZE (KDE/release-service/25.12.2/calendarsupport-25.12.2.tar.xz) = 990792 +TIMESTAMP = 1772542024 +SHA256 (KDE/release-service/25.12.3/calendarsupport-25.12.3.tar.xz) = 455785712a32f0dba7947a314eb99065d902ac6c432947e9e699a44ca18c70a1 +SIZE (KDE/release-service/25.12.3/calendarsupport-25.12.3.tar.xz) = 991136 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 2ef3eae182a9..0ab13d606276 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570855 -SHA256 (KDE/release-service/25.12.2/eventviews-25.12.2.tar.xz) = 0e4463e3d1117ec0fef6103613a988845363157adaec5463a7151d33375206ee -SIZE (KDE/release-service/25.12.2/eventviews-25.12.2.tar.xz) = 536548 +TIMESTAMP = 1772542025 +SHA256 (KDE/release-service/25.12.3/eventviews-25.12.3.tar.xz) = c2e776f55e485b346d256a9f21fd244af2b75e18c489ec811e334050cccbca6a +SIZE (KDE/release-service/25.12.3/eventviews-25.12.3.tar.xz) = 536512 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 6803e1778af9..4886c88027d2 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570857 -SHA256 (KDE/release-service/25.12.2/incidenceeditor-25.12.2.tar.xz) = ea0b17f76d393af08361f55c57f1eec866f56a8518faf1e0e3379557c15cc8c3 -SIZE (KDE/release-service/25.12.2/incidenceeditor-25.12.2.tar.xz) = 609588 +TIMESTAMP = 1772542027 +SHA256 (KDE/release-service/25.12.3/incidenceeditor-25.12.3.tar.xz) = c4ab1c0b44e68be4c3c287c2a5b0b41aaaf6ba746202694101ab4a50f5d8977a +SIZE (KDE/release-service/25.12.3/incidenceeditor-25.12.3.tar.xz) = 607884 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index d7c390bd268c..89ad70b2fdd4 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570859 -SHA256 (KDE/release-service/25.12.2/kcalutils-25.12.2.tar.xz) = fea4ea50a3fce967f26ad68aff0fa583ed552e62fa0512c3d4891597ea7cbe71 -SIZE (KDE/release-service/25.12.2/kcalutils-25.12.2.tar.xz) = 371568 +TIMESTAMP = 1772542028 +SHA256 (KDE/release-service/25.12.3/kcalutils-25.12.3.tar.xz) = 8d54dfef43b7929c9d9b52ba2b6234f94537923e4ff94984611bf7489502a234 +SIZE (KDE/release-service/25.12.3/kcalutils-25.12.3.tar.xz) = 368580 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index e14f2cc2379f..6edfb75ea41c 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570861 -SHA256 (KDE/release-service/25.12.2/kdenetwork-filesharing-25.12.2.tar.xz) = 69a4f7745d48a6b0cea19c4d987149e4e543c46b6eaa15d3d19c7857e4f0ae70 -SIZE (KDE/release-service/25.12.2/kdenetwork-filesharing-25.12.2.tar.xz) = 518532 +TIMESTAMP = 1772542030 +SHA256 (KDE/release-service/25.12.3/kdenetwork-filesharing-25.12.3.tar.xz) = 269de47fccf26ce1c989a4b66d432c4306913d1a814199c5ffce533c67305696 +SIZE (KDE/release-service/25.12.3/kdenetwork-filesharing-25.12.3.tar.xz) = 518428 diff --git a/net/kget/distinfo b/net/kget/distinfo index 155078713921..3da47cb5034a 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570863 -SHA256 (KDE/release-service/25.12.2/kget-25.12.2.tar.xz) = 02c3ab7583a5820fccd2ccd9bdfdf99f6bc651528384bfd412b3c0d46d7e8a60 -SIZE (KDE/release-service/25.12.2/kget-25.12.2.tar.xz) = 4854012 +TIMESTAMP = 1772542031 +SHA256 (KDE/release-service/25.12.3/kget-25.12.3.tar.xz) = a82873a7dffc52825c12c043e93b3be1326176c276e98c735d5831ff8ea1b0bb +SIZE (KDE/release-service/25.12.3/kget-25.12.3.tar.xz) = 4850572 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index a240abb2637e..ea7d5718c8cb 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570865 -SHA256 (KDE/release-service/25.12.2/kidentitymanagement-25.12.2.tar.xz) = 305cd01a360ce60386cae5c00d64368aaf3159a4fda54856df072c2d6c03cdb0 -SIZE (KDE/release-service/25.12.2/kidentitymanagement-25.12.2.tar.xz) = 200912 +TIMESTAMP = 1772542033 +SHA256 (KDE/release-service/25.12.3/kidentitymanagement-25.12.3.tar.xz) = 18b24c23bd6fdb5e617b0cd7c7b2ce1da6ffb566e309c796176691c633d49e87 +SIZE (KDE/release-service/25.12.3/kidentitymanagement-25.12.3.tar.xz) = 200688 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 58a25ca75bc8..7d7ebca484f1 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570867 -SHA256 (KDE/release-service/25.12.2/kimap-25.12.2.tar.xz) = 1e57a183501678c111b0274a70bf42555f7b23e1d5989a31f424543f016e478b -SIZE (KDE/release-service/25.12.2/kimap-25.12.2.tar.xz) = 136272 +TIMESTAMP = 1772542034 +SHA256 (KDE/release-service/25.12.3/kimap-25.12.3.tar.xz) = 96303168f2bf97905e68bfbc93f7efba9a93a9331eca53294557d3ef3f56678a +SIZE (KDE/release-service/25.12.3/kimap-25.12.3.tar.xz) = 136244 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index af86d3626c45..4626c0cc9e14 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570868 -SHA256 (KDE/release-service/25.12.2/kio-gdrive-25.12.2.tar.xz) = 3a6de9fb02d948f57f8fc5109ad854156fe26164e6c72b8d912cd5ba6465ad15 -SIZE (KDE/release-service/25.12.2/kio-gdrive-25.12.2.tar.xz) = 84172 +TIMESTAMP = 1772542035 +SHA256 (KDE/release-service/25.12.3/kio-gdrive-25.12.3.tar.xz) = d1035fa5abc0e9c46efce592863c147c86c3c41bdbbef02f38f5b801b37895d2 +SIZE (KDE/release-service/25.12.3/kio-gdrive-25.12.3.tar.xz) = 84168 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index 7058fc98732e..8dd3ae5c25a6 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570870 -SHA256 (KDE/release-service/25.12.2/kio-zeroconf-25.12.2.tar.xz) = bb2cbc11a8c6c563275eb561a3809315fda65680d08e285843fd65d809fd5017 -SIZE (KDE/release-service/25.12.2/kio-zeroconf-25.12.2.tar.xz) = 45576 +TIMESTAMP = 1772542036 +SHA256 (KDE/release-service/25.12.3/kio-zeroconf-25.12.3.tar.xz) = 0b21379d71ebc41cf454d56849feaf5b19e851d796cffbb0e2d9d4b362860a5a +SIZE (KDE/release-service/25.12.3/kio-zeroconf-25.12.3.tar.xz) = 45488 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 8e8cd62d3808..6ca3f872cb75 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570872 -SHA256 (KDE/release-service/25.12.2/kitinerary-25.12.2.tar.xz) = 6f5074ff8d4fd0640a7d0f37e9c14b3bb0316f121625c7d50513da706d439046 -SIZE (KDE/release-service/25.12.2/kitinerary-25.12.2.tar.xz) = 2177616 +TIMESTAMP = 1772542037 +SHA256 (KDE/release-service/25.12.3/kitinerary-25.12.3.tar.xz) = dd8374be2e4c488902f6c0b4b9fd12ad7f808de23b7df4561ef30b3f79b44d13 +SIZE (KDE/release-service/25.12.3/kitinerary-25.12.3.tar.xz) = 2177352 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index ce6cf15e0fac..ffe90a17db5b 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570874 -SHA256 (KDE/release-service/25.12.2/kldap-25.12.2.tar.xz) = ca13d0ec9e1cb4d19d654b9f55251ff5b36fcc649cab3add8c46cce1787fa80a -SIZE (KDE/release-service/25.12.2/kldap-25.12.2.tar.xz) = 194024 +TIMESTAMP = 1772542039 +SHA256 (KDE/release-service/25.12.3/kldap-25.12.3.tar.xz) = 496cabade483caaea19f77cfa63047c3c0a2ee4dfc9bfe2e810dcffcc08af155 +SIZE (KDE/release-service/25.12.3/kldap-25.12.3.tar.xz) = 193976 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 9abe1bb32339..13fc91e720d5 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570876 -SHA256 (KDE/release-service/25.12.2/kmailtransport-25.12.2.tar.xz) = f854379012009af74bbb95d76a2f903cddbba654a2c63535953bba9e1a6ceabc -SIZE (KDE/release-service/25.12.2/kmailtransport-25.12.2.tar.xz) = 194196 +TIMESTAMP = 1772542040 +SHA256 (KDE/release-service/25.12.3/kmailtransport-25.12.3.tar.xz) = f0c03316437f81f15a17ef31fe82884d816d2bace134a0aa45dc8bb0741eb501 +SIZE (KDE/release-service/25.12.3/kmailtransport-25.12.3.tar.xz) = 193592 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 4f84a17bc23c..d261aeabed4e 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570877 -SHA256 (KDE/release-service/25.12.2/kmbox-25.12.2.tar.xz) = c175d4cf3ece8cfd86a6769f48359dc55363973a22d0ce5c0ebaf4de533ce32e -SIZE (KDE/release-service/25.12.2/kmbox-25.12.2.tar.xz) = 31616 +TIMESTAMP = 1772542042 +SHA256 (KDE/release-service/25.12.3/kmbox-25.12.3.tar.xz) = 088e88b85686374da855215351e0e5248464921c8b546531d91b8dcef952ff93 +SIZE (KDE/release-service/25.12.3/kmbox-25.12.3.tar.xz) = 31600 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index e5a111488c42..8b56d526fa57 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570879 -SHA256 (KDE/release-service/25.12.2/kmime-25.12.2.tar.xz) = 8d81167adb67558e707f7c71f710d5f0b1a89d6b54301a4ac51518d1841baf62 -SIZE (KDE/release-service/25.12.2/kmime-25.12.2.tar.xz) = 167084 +TIMESTAMP = 1772542043 +SHA256 (KDE/release-service/25.12.3/kmime-25.12.3.tar.xz) = fce3c603cac3fec9a3f0e101c49785c32ace07b8f60b52739b638d329f43826d +SIZE (KDE/release-service/25.12.3/kmime-25.12.3.tar.xz) = 167076 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 9b6aa2ef895d..8dcabec301db 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570881 -SHA256 (KDE/release-service/25.12.2/kontactinterface-25.12.2.tar.xz) = 68731a6d3a82c85d3820eb8af94c9dd84f5ab0281767ad7f3506336fd42ef463 -SIZE (KDE/release-service/25.12.2/kontactinterface-25.12.2.tar.xz) = 43232 +TIMESTAMP = 1772542045 +SHA256 (KDE/release-service/25.12.3/kontactinterface-25.12.3.tar.xz) = 5e39b97021293811346a659926bbe8830d40fe8349d5cb7f9e8b63a180d78790 +SIZE (KDE/release-service/25.12.3/kontactinterface-25.12.3.tar.xz) = 43188 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index d2dc59091683..65816e07293a 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570883 -SHA256 (KDE/release-service/25.12.2/kpimtextedit-25.12.2.tar.xz) = 7efed3b92322f2ed7da80c15eec6b838662d8c4c9e4dd6c909bfccf1609a1e54 -SIZE (KDE/release-service/25.12.2/kpimtextedit-25.12.2.tar.xz) = 183360 +TIMESTAMP = 1772542046 +SHA256 (KDE/release-service/25.12.3/kpimtextedit-25.12.3.tar.xz) = 100f5dd703adea988f63f2975034a0eff3d4e7d55d088009b02031dc0e47b9c5 +SIZE (KDE/release-service/25.12.3/kpimtextedit-25.12.3.tar.xz) = 183396 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 61a144ec157c..e9d7781afcbd 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570885 -SHA256 (KDE/release-service/25.12.2/krdc-25.12.2.tar.xz) = 522596f8e6788a72056e6627088b4a3df1c586e59c98a41a3b7e46f7c0644c19 -SIZE (KDE/release-service/25.12.2/krdc-25.12.2.tar.xz) = 1599580 +TIMESTAMP = 1772542048 +SHA256 (KDE/release-service/25.12.3/krdc-25.12.3.tar.xz) = 1997463cd64cfb88a015d2b665cb7d5d451e8f54285af047d18f1bd838a4cd27 +SIZE (KDE/release-service/25.12.3/krdc-25.12.3.tar.xz) = 1597364 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 8dbf7c0cb211..645471617123 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570887 -SHA256 (KDE/release-service/25.12.2/krfb-25.12.2.tar.xz) = bcc86d33667f645f31e1c25c660da6111e8aae0f50527b9e1b0c40a043017025 -SIZE (KDE/release-service/25.12.2/krfb-25.12.2.tar.xz) = 1221252 +TIMESTAMP = 1772542049 +SHA256 (KDE/release-service/25.12.3/krfb-25.12.3.tar.xz) = 3dd46a3a0e6da3008a11407333453b5e7763057e739025d3525106301ed38c4a +SIZE (KDE/release-service/25.12.3/krfb-25.12.3.tar.xz) = 1218940 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 36d58521c2ce..7399e5bdd0c3 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570889 -SHA256 (KDE/release-service/25.12.2/ksmtp-25.12.2.tar.xz) = 331c237109d63c30a16293841cdfad263a0bdccb60f767831078a6ffe6489e41 -SIZE (KDE/release-service/25.12.2/ksmtp-25.12.2.tar.xz) = 55656 +TIMESTAMP = 1772542051 +SHA256 (KDE/release-service/25.12.3/ksmtp-25.12.3.tar.xz) = a4a76de3a2471d8828c086ea04633a3de2d9ba135b80c5c0ede7eb285ac45a9e +SIZE (KDE/release-service/25.12.3/ksmtp-25.12.3.tar.xz) = 55764 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 40cc263c13d9..81b507ad5955 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570891 -SHA256 (KDE/release-service/25.12.2/ktnef-25.12.2.tar.xz) = a6e6ecf31a0ca924e3041a4091d144b215fe27f31f8af57acbaafac78314e13b -SIZE (KDE/release-service/25.12.2/ktnef-25.12.2.tar.xz) = 316912 +TIMESTAMP = 1772542052 +SHA256 (KDE/release-service/25.12.3/ktnef-25.12.3.tar.xz) = f31a9008c62b380a615447669fd96b65aa25062ba4d314de42aadb267d1ec747 +SIZE (KDE/release-service/25.12.3/ktnef-25.12.3.tar.xz) = 317008 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 0f9d3b244289..206097ff6ebd 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570893 -SHA256 (KDE/release-service/25.12.2/libgravatar-25.12.2.tar.xz) = 086f3a32695442b49a2716daa354752630e2ac055f9810988a423be51ba5d037 -SIZE (KDE/release-service/25.12.2/libgravatar-25.12.2.tar.xz) = 41048 +TIMESTAMP = 1772542054 +SHA256 (KDE/release-service/25.12.3/libgravatar-25.12.3.tar.xz) = 3a7388ad15f0da3556e36be0b9ae604b3e5b1a6bb1424220122767bc0d3c88a6 +SIZE (KDE/release-service/25.12.3/libgravatar-25.12.3.tar.xz) = 41040 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 673bf903b3b5..2fcb2922dd99 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570895 -SHA256 (KDE/release-service/25.12.2/libkgapi-25.12.2.tar.xz) = 42086c3f5cec31be3c379b43ae80e32beb29055159d1670e00ad7f0892632c1c -SIZE (KDE/release-service/25.12.2/libkgapi-25.12.2.tar.xz) = 342244 +TIMESTAMP = 1772542055 +SHA256 (KDE/release-service/25.12.3/libkgapi-25.12.3.tar.xz) = 3d8f6dd6e0d4274102cbf7c3dff67d8cef074e25fbf34bb8e505fd38273656b1 +SIZE (KDE/release-service/25.12.3/libkgapi-25.12.3.tar.xz) = 342216 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 8459f9738a86..df9ab8859390 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570897 -SHA256 (KDE/release-service/25.12.2/libksieve-25.12.2.tar.xz) = e5ba2bb1d7a16cc9f45c5082293fe84bd1ac23e758da4265aeea65ff0c68b279 -SIZE (KDE/release-service/25.12.2/libksieve-25.12.2.tar.xz) = 634072 +TIMESTAMP = 1772542057 +SHA256 (KDE/release-service/25.12.3/libksieve-25.12.3.tar.xz) = 4dfde60dfa60f2c6c4c1235acc32f8bd6e2bbe65e419cdae71dd26fea5993e0d +SIZE (KDE/release-service/25.12.3/libksieve-25.12.3.tar.xz) = 634084 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 1c47a03142d2..f15f40df8d83 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570899 -SHA256 (KDE/release-service/25.12.2/mailcommon-25.12.2.tar.xz) = 9efcd7288f2b657df14f830ff81abcd0511c84658179c81a7d4dc1ffa37e0ac0 -SIZE (KDE/release-service/25.12.2/mailcommon-25.12.2.tar.xz) = 836392 +TIMESTAMP = 1772542058 +SHA256 (KDE/release-service/25.12.3/mailcommon-25.12.3.tar.xz) = 8ac657f8050b968b592e5ec24c7123a9f33bc2703c3c461c4a87531b5f15da59 +SIZE (KDE/release-service/25.12.3/mailcommon-25.12.3.tar.xz) = 836016 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index 292527d0c2d8..fa80e65c6815 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570901 -SHA256 (KDE/release-service/25.12.2/mailimporter-25.12.2.tar.xz) = c2c624351eeb0264b2c20cbff68f11c0202fa5f23e0d95fb9ec760946bc43645 -SIZE (KDE/release-service/25.12.2/mailimporter-25.12.2.tar.xz) = 603552 +TIMESTAMP = 1772542060 +SHA256 (KDE/release-service/25.12.3/mailimporter-25.12.3.tar.xz) = eb99de68d8f5febe3d9eef8e6a793f9bdf62f54ad016fabe78f564d90e7a2db4 +SIZE (KDE/release-service/25.12.3/mailimporter-25.12.3.tar.xz) = 603520 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index e5b42f225d4f..f8d504bd093c 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570903 -SHA256 (KDE/release-service/25.12.2/messagelib-25.12.2.tar.xz) = 1795687da8d01dc15ff3fcfa98a6a5d9eda91daff44d79ef35dd22544ca8129e -SIZE (KDE/release-service/25.12.2/messagelib-25.12.2.tar.xz) = 7409116 +TIMESTAMP = 1772542061 +SHA256 (KDE/release-service/25.12.3/messagelib-25.12.3.tar.xz) = d2d9e8e1eb6d053d82254f8962543ce81ce3d44b583d015f91c8e15ad284d6ba +SIZE (KDE/release-service/25.12.3/messagelib-25.12.3.tar.xz) = 7393232 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index 53e8ea5e4f76..6294d3d2eda9 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570905 -SHA256 (KDE/release-service/25.12.2/mimetreeparser-25.12.2.tar.xz) = bdd46f111fa707b2c2f2bd6621af436d0a29ebcc8b98ae5a4facb022161cd91e -SIZE (KDE/release-service/25.12.2/mimetreeparser-25.12.2.tar.xz) = 655720 +TIMESTAMP = 1772542063 +SHA256 (KDE/release-service/25.12.3/mimetreeparser-25.12.3.tar.xz) = e83b96782634c8d7dda443ffc005d1d2991620ecfb270c4bf16a67d5d3e949f5 +SIZE (KDE/release-service/25.12.3/mimetreeparser-25.12.3.tar.xz) = 655664 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index b0108caa200c..41c6a22f6c62 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570907 -SHA256 (KDE/release-service/25.12.2/pimcommon-25.12.2.tar.xz) = 7da324710ea6077fa247ec04db666c172352ba0e61f1df9aa07ab7109ac5290b -SIZE (KDE/release-service/25.12.2/pimcommon-25.12.2.tar.xz) = 379676 +TIMESTAMP = 1772542064 +SHA256 (KDE/release-service/25.12.3/pimcommon-25.12.3.tar.xz) = 6496e293294e23c6db8a19e4774313426bcdc8478defb2141ec4f6653f9f4b2f +SIZE (KDE/release-service/25.12.3/pimcommon-25.12.3.tar.xz) = 379664 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index bc6a547c2cc8..76bed92ad871 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570910 -SHA256 (KDE/release-service/25.12.2/kalzium-25.12.2.tar.xz) = b14db10280fd4253890f62dcbaaa2f339d96600bcd38b9c1d2b4a3013760a98d -SIZE (KDE/release-service/25.12.2/kalzium-25.12.2.tar.xz) = 22678772 +TIMESTAMP = 1772542066 +SHA256 (KDE/release-service/25.12.3/kalzium-25.12.3.tar.xz) = 59d8d5138f75f3979df62a18a4fc9ed12c1d2adfeb455aded8cb3acd41aee9cb +SIZE (KDE/release-service/25.12.3/kalzium-25.12.3.tar.xz) = 22674504 diff --git a/science/step/distinfo b/science/step/distinfo index 1b2a043223cf..106c2f6d6a50 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570912 -SHA256 (KDE/release-service/25.12.2/step-25.12.2.tar.xz) = 8dafda3bc41419be83898586a0463c22a4f3226d77aea816dfca146eba28201e -SIZE (KDE/release-service/25.12.2/step-25.12.2.tar.xz) = 1019808 +TIMESTAMP = 1772542067 +SHA256 (KDE/release-service/25.12.3/step-25.12.3.tar.xz) = 4e77b1d8b3ef586cd17fe23fea944fa2d88e368b29e1de2ed2d93c9ac41fde61 +SIZE (KDE/release-service/25.12.3/step-25.12.3.tar.xz) = 1020068 diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index c7c6a499e6b1..47fab15aaba0 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570913 -SHA256 (KDE/release-service/25.12.2/keysmith-25.12.2.tar.xz) = 1f4c03c080d632dc30ba0ee579e613706e8e7fd150a48dd2171d06a7c1ab1a37 -SIZE (KDE/release-service/25.12.2/keysmith-25.12.2.tar.xz) = 238952 +TIMESTAMP = 1772542068 +SHA256 (KDE/release-service/25.12.3/keysmith-25.12.3.tar.xz) = e1bcd577cabec0235ae08a693a94f71ae5de0df2271febc64f04ebc8319da2d4 +SIZE (KDE/release-service/25.12.3/keysmith-25.12.3.tar.xz) = 243484 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 54a1dc38c9e7..2584205ef654 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570915 -SHA256 (KDE/release-service/25.12.2/kgpg-25.12.2.tar.xz) = 7470c23193f7b04890f96739aec7f1772c5ddfc1722ad36a021de006a688c6d4 -SIZE (KDE/release-service/25.12.2/kgpg-25.12.2.tar.xz) = 3048960 +TIMESTAMP = 1772542069 +SHA256 (KDE/release-service/25.12.3/kgpg-25.12.3.tar.xz) = ba8a4056a1138b777178ef30510793b20a8dc2f60eadee0aac30989238928f8a +SIZE (KDE/release-service/25.12.3/kgpg-25.12.3.tar.xz) = 3046700 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index b76270b2959f..700bfc40396c 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570917 -SHA256 (KDE/release-service/25.12.2/kleopatra-25.12.2.tar.xz) = b9bed89fe400b47cc250900e30b2c4801a60cb5f19d19be82de3a0f09cf65f93 -SIZE (KDE/release-service/25.12.2/kleopatra-25.12.2.tar.xz) = 2886984 +TIMESTAMP = 1772542071 +SHA256 (KDE/release-service/25.12.3/kleopatra-25.12.3.tar.xz) = 2d5f02713e07594a8e8c693331776d957e91413ce48ac85c240be91fd670d9ab +SIZE (KDE/release-service/25.12.3/kleopatra-25.12.3.tar.xz) = 2886888 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index cec532ba6426..810f3fab5614 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570918 -SHA256 (KDE/release-service/25.12.2/kpkpass-25.12.2.tar.xz) = f0495112be1a61831fad16a75c3366f8b285df60c2933a05a414901c81d18c1d -SIZE (KDE/release-service/25.12.2/kpkpass-25.12.2.tar.xz) = 34556 +TIMESTAMP = 1772542072 +SHA256 (KDE/release-service/25.12.3/kpkpass-25.12.3.tar.xz) = f916bdc37c11740cc527ee76a1326d3457ed9bf153d609cdb5ea7bb581885df9 +SIZE (KDE/release-service/25.12.3/kpkpass-25.12.3.tar.xz) = 34556 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 5db592365e48..bc4dde2b72f5 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570920 -SHA256 (KDE/release-service/25.12.2/kwalletmanager-25.12.2.tar.xz) = d4a9666e84732b876f2acd41b91f41590c5b087faf1290e00bf153bd23207151 -SIZE (KDE/release-service/25.12.2/kwalletmanager-25.12.2.tar.xz) = 1051884 +TIMESTAMP = 1772542074 +SHA256 (KDE/release-service/25.12.3/kwalletmanager-25.12.3.tar.xz) = b74adfa977f5c3aaae9cb4e225c30acfb1999246820c6c485d45367f1da0ad89 +SIZE (KDE/release-service/25.12.3/kwalletmanager-25.12.3.tar.xz) = 1051424 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index c1326db3b252..3bbd5ba99c5a 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570922 -SHA256 (KDE/release-service/25.12.2/libkleo-25.12.2.tar.xz) = 6b055214ba7c5c6da75454b9f2f0cf90213511b73cc18a47964ff553407697f7 -SIZE (KDE/release-service/25.12.2/libkleo-25.12.2.tar.xz) = 678456 +TIMESTAMP = 1772542075 +SHA256 (KDE/release-service/25.12.3/libkleo-25.12.3.tar.xz) = 5fab807b445305cdc790a9a9c93804e809c897919576426f3ea8cd543a59de2c +SIZE (KDE/release-service/25.12.3/libkleo-25.12.3.tar.xz) = 676688 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 5af2ad92b83f..cdba38ff0fde 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570924 -SHA256 (KDE/release-service/25.12.2/baloo-widgets-25.12.2.tar.xz) = 606ad6246fabfd9b91a2d458c758c322973c46bf37d15a1b2da08568c3d2ab23 -SIZE (KDE/release-service/25.12.2/baloo-widgets-25.12.2.tar.xz) = 279368 +TIMESTAMP = 1772542077 +SHA256 (KDE/release-service/25.12.3/baloo-widgets-25.12.3.tar.xz) = 0b03fc0adfeda46deeb53fb5e22bb9108715ebc1d8f5b19ca4e5c2216332c711 +SIZE (KDE/release-service/25.12.3/baloo-widgets-25.12.3.tar.xz) = 278244 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index bcef6724081e..5f22a15a2695 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570926 -SHA256 (KDE/release-service/25.12.2/filelight-25.12.2.tar.xz) = e9c0ba3136caf4e048ddcadc1e60fccffd455876e89e753694bf0c90bf2f4ee0 -SIZE (KDE/release-service/25.12.2/filelight-25.12.2.tar.xz) = 691176 +TIMESTAMP = 1772542078 +SHA256 (KDE/release-service/25.12.3/filelight-25.12.3.tar.xz) = 914876f16e0a07da4c84fbac66b260a5b03ecebeb55c2ff3743781fe5039d3dc +SIZE (KDE/release-service/25.12.3/filelight-25.12.3.tar.xz) = 690920 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 19542a9e76ad..7cf9718d1e3a 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570928 -SHA256 (KDE/release-service/25.12.2/k3b-25.12.2.tar.xz) = 51bd81e998667a07c125030c865b6bdc8fc3156bc6b03945398c5f1083109634 -SIZE (KDE/release-service/25.12.2/k3b-25.12.2.tar.xz) = 10797680 +TIMESTAMP = 1772542080 +SHA256 (KDE/release-service/25.12.3/k3b-25.12.3.tar.xz) = 51792146c932b58174c475c6e40b47b7dfd6ccce85346b31f711db3c32592be8 +SIZE (KDE/release-service/25.12.3/k3b-25.12.3.tar.xz) = 10794224 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 53ce0d4f6842..f04980aab8d6 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570930 -SHA256 (KDE/release-service/25.12.2/kbackup-25.12.2.tar.xz) = 199a1a409b377c190395846f658d4711e23029417e7a3f0212af732c170a8bcd -SIZE (KDE/release-service/25.12.2/kbackup-25.12.2.tar.xz) = 402296 +TIMESTAMP = 1772542081 +SHA256 (KDE/release-service/25.12.3/kbackup-25.12.3.tar.xz) = 00c0ce7efdbfdb8db338fe78802ee8997199f305c61c37a5f58aa5986cb2940d +SIZE (KDE/release-service/25.12.3/kbackup-25.12.3.tar.xz) = 402288 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index bebd9fd5e8c2..99ba6938c8a4 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570932 -SHA256 (KDE/release-service/25.12.2/kcron-25.12.2.tar.xz) = 87a6c742d6061968fb0772333a5c3d47a03d65dad23b7e5224829cba83a349f2 -SIZE (KDE/release-service/25.12.2/kcron-25.12.2.tar.xz) = 900004 +TIMESTAMP = 1772542083 +SHA256 (KDE/release-service/25.12.3/kcron-25.12.3.tar.xz) = 0b3e9bdaf3a9f2766efb7007dff9bb1278d4753eaa05eca138f24231ac485de2 +SIZE (KDE/release-service/25.12.3/kcron-25.12.3.tar.xz) = 898292 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 302b9d46e1f6..d79f1f49eb77 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570934 -SHA256 (KDE/release-service/25.12.2/kdebugsettings-25.12.2.tar.xz) = 6a4879f2992e67febcd44dbfc0b766ddbf226f8c92862109c2acc87ea04fe769 -SIZE (KDE/release-service/25.12.2/kdebugsettings-25.12.2.tar.xz) = 123640 +TIMESTAMP = 1772542084 +SHA256 (KDE/release-service/25.12.3/kdebugsettings-25.12.3.tar.xz) = c2a258f9ce3b46eed5ab8878684ac5fdcf611285c58b5979042d152fc0d0adbe +SIZE (KDE/release-service/25.12.3/kdebugsettings-25.12.3.tar.xz) = 123656 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 18b80d88bf5f..21328dec2649 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570936 -SHA256 (KDE/release-service/25.12.2/kdf-25.12.2.tar.xz) = 3bde27de00bd188c7d2f7348d0d7e6228ecd4dcd104498163092d2a73e8412f0 -SIZE (KDE/release-service/25.12.2/kdf-25.12.2.tar.xz) = 481648 +TIMESTAMP = 1772542086 +SHA256 (KDE/release-service/25.12.3/kdf-25.12.3.tar.xz) = bbea67e19d3236724cfc1067f414f9bcf50364f1b4fd18e9478640288448b154 +SIZE (KDE/release-service/25.12.3/kdf-25.12.3.tar.xz) = 481300 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 7ac5a0543468..b8d623e22a27 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570938 -SHA256 (KDE/release-service/25.12.2/kdialog-25.12.2.tar.xz) = 1c52c9f91784a35edb184589fbe0350d48d93d38320fdb58b4dbea819ba80284 -SIZE (KDE/release-service/25.12.2/kdialog-25.12.2.tar.xz) = 149348 +TIMESTAMP = 1772542087 +SHA256 (KDE/release-service/25.12.3/kdialog-25.12.3.tar.xz) = fee5a3d52394916a7adca76eaea471cdd5137b0d27b2ef2936cf100981105ea1 +SIZE (KDE/release-service/25.12.3/kdialog-25.12.3.tar.xz) = 149236 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 7c4c35dbd555..067e6c4f633f 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570940 -SHA256 (KDE/release-service/25.12.2/khelpcenter-25.12.2.tar.xz) = c41a54773c2192515d4647bdd17002426a4bcf6ac7405c82c79170cb04e1da6c -SIZE (KDE/release-service/25.12.2/khelpcenter-25.12.2.tar.xz) = 4255284 +TIMESTAMP = 1772542089 +SHA256 (KDE/release-service/25.12.3/khelpcenter-25.12.3.tar.xz) = 53f4fd37ced3e882b197600439df43105cd18197124fcfb01e47d1b8ce68b1c1 +SIZE (KDE/release-service/25.12.3/khelpcenter-25.12.3.tar.xz) = 4254116 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 3edf9388c04b..879097561393 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570941 -SHA256 (KDE/release-service/25.12.2/kpmcore-25.12.2.tar.xz) = 3220fe4b3095b2df6d2381f8adf3dd2f50af085ebf3bdf8dee97f7c3db7b4933 -SIZE (KDE/release-service/25.12.2/kpmcore-25.12.2.tar.xz) = 670552 +TIMESTAMP = 1772542089 +SHA256 (KDE/release-service/25.12.3/kpmcore-25.12.3.tar.xz) = 2e6ff446448b6640e7290784519e19ad326d56f93f8e83cacd11d033197f3e62 +SIZE (KDE/release-service/25.12.3/kpmcore-25.12.3.tar.xz) = 670600 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index b349677d09f4..5d666e365ebb 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570943 -SHA256 (KDE/release-service/25.12.2/ksystemlog-25.12.2.tar.xz) = 2b8d555bda5da95ea3e665aff65d9c4aee96edfc105077fb5e758b4ce8506cd7 -SIZE (KDE/release-service/25.12.2/ksystemlog-25.12.2.tar.xz) = 1885752 +TIMESTAMP = 1772542090 +SHA256 (KDE/release-service/25.12.3/ksystemlog-25.12.3.tar.xz) = 70d7ae368b1522dcaced130dd3fa49e552a794c80c819c92700cb0776ab5d385 +SIZE (KDE/release-service/25.12.3/ksystemlog-25.12.3.tar.xz) = 1884724 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index b5d0baa2070b..e51b75388c47 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570945 -SHA256 (KDE/release-service/25.12.2/signon-kwallet-extension-25.12.2.tar.xz) = 12ca0e75ce8c7656920f9476796ee32a858785ed6b42108ae05f55e8953c5e8a -SIZE (KDE/release-service/25.12.2/signon-kwallet-extension-25.12.2.tar.xz) = 11268 +TIMESTAMP = 1772542092 +SHA256 (KDE/release-service/25.12.3/signon-kwallet-extension-25.12.3.tar.xz) = 4fc7566893bf8dd0d6e236d52e13319c809642b7e85f6680bcfbad47888a4836 +SIZE (KDE/release-service/25.12.3/signon-kwallet-extension-25.12.3.tar.xz) = 11264 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 28c9c5863af8..26aa9c8af441 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570947 -SHA256 (KDE/release-service/25.12.2/sweeper-25.12.2.tar.xz) = e3417cc74ca2e93dce5fbfa78abecafb7c23b52a1e433663bd66b1107bff1f8c -SIZE (KDE/release-service/25.12.2/sweeper-25.12.2.tar.xz) = 387448 +TIMESTAMP = 1772542093 +SHA256 (KDE/release-service/25.12.3/sweeper-25.12.3.tar.xz) = 18ad9dba43cb524458ad1f38097212fdaf5d01e3d5d71931b341026a48d3dcd0 +SIZE (KDE/release-service/25.12.3/sweeper-25.12.3.tar.xz) = 386804 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index c2052567e38f..2ceb78456f09 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570947 -SHA256 (KDE/release-service/25.12.2/arianna-25.12.2.tar.xz) = 5edc4b7ec556d1b640d145cb7c9539e32ecadd016836bc5b58fdd6692b182def -SIZE (KDE/release-service/25.12.2/arianna-25.12.2.tar.xz) = 1184336 +TIMESTAMP = 1772542094 +SHA256 (KDE/release-service/25.12.3/arianna-25.12.3.tar.xz) = 03369b86f259256300f280b8d883b25bd02e50cf9dc45096b2496d6302fe8308 +SIZE (KDE/release-service/25.12.3/arianna-25.12.3.tar.xz) = 1184444 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 77f6ae682e00..3bc878f428ab 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570949 -SHA256 (KDE/release-service/25.12.2/kompare-25.12.2.tar.xz) = af22e179d5c595b66ed32be9a49e4656feeb5af85f26a3a882a839d111fbcb89 -SIZE (KDE/release-service/25.12.2/kompare-25.12.2.tar.xz) = 964340 +TIMESTAMP = 1772542095 +SHA256 (KDE/release-service/25.12.3/kompare-25.12.3.tar.xz) = 97b01230aa06ba7e3bfff5e2c2ac4cc43b87ed18e4ae98851d5fb4a1314dc353 +SIZE (KDE/release-service/25.12.3/kompare-25.12.3.tar.xz) = 963412 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index 3773c5012d53..9de19ffab346 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570951 -SHA256 (KDE/release-service/25.12.2/libkomparediff2-25.12.2.tar.xz) = 2d3df40d4b96a00ce19dd5179b36447e6ec137db8656d5eb979c077fc19cb643 -SIZE (KDE/release-service/25.12.2/libkomparediff2-25.12.2.tar.xz) = 186436 +TIMESTAMP = 1772542097 +SHA256 (KDE/release-service/25.12.3/libkomparediff2-25.12.3.tar.xz) = b864e90f77c8bae73d3191b4a55e1a40441184c2251c68a664f89000d62472ac +SIZE (KDE/release-service/25.12.3/libkomparediff2-25.12.3.tar.xz) = 184788 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 58f51773904a..a80ac1e629eb 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570953 -SHA256 (KDE/release-service/25.12.2/markdownpart-25.12.2.tar.xz) = d361037c4fd7105358e7791d66560054075d8cb04b8fb48f1173c72c53eb7879 -SIZE (KDE/release-service/25.12.2/markdownpart-25.12.2.tar.xz) = 34768 +TIMESTAMP = 1772542098 +SHA256 (KDE/release-service/25.12.3/markdownpart-25.12.3.tar.xz) = d04cdc3c09c2be102a7199d73dd24c7f3cd709f95af7e51804f2668663422cfd +SIZE (KDE/release-service/25.12.3/markdownpart-25.12.3.tar.xz) = 34760 diff --git a/www/angelfish/distinfo b/www/angelfish/distinfo index 4b32f1be34fe..f464cee8651d 100644 --- a/www/angelfish/distinfo +++ b/www/angelfish/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570954 -SHA256 (KDE/release-service/25.12.2/angelfish-25.12.2.tar.xz) = dabbea6967ad7614afc9f92811be51c708564af46657e8fd5a07ba752c8f785e -SIZE (KDE/release-service/25.12.2/angelfish-25.12.2.tar.xz) = 300056 +TIMESTAMP = 1772542098 +SHA256 (KDE/release-service/25.12.3/angelfish-25.12.3.tar.xz) = 344138769158714d45c7bf2625c517b126afd375166c47ac2caa11d007352325 +SIZE (KDE/release-service/25.12.3/angelfish-25.12.3.tar.xz) = 306460 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 486c0727e101..11bc5d7d4306 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570954 -SHA256 (KDE/release-service/25.12.2/falkon-25.12.2.tar.xz) = fc84fd941b563fcc15f4827cc2a57249b549cf6a073df1925e85bd0fcedeca4c -SIZE (KDE/release-service/25.12.2/falkon-25.12.2.tar.xz) = 2708804 +TIMESTAMP = 1772542099 +SHA256 (KDE/release-service/25.12.3/falkon-25.12.3.tar.xz) = 25f90957335058fff8536b511135e36d96e74c49fab45690be89b994015777b5 +SIZE (KDE/release-service/25.12.3/falkon-25.12.3.tar.xz) = 2708692 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index e8cee321971a..235ec462e94f 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570956 -SHA256 (KDE/release-service/25.12.2/kteatime-25.12.2.tar.xz) = b25c32563633b0a11fdd833d2105c2b6a3ed11c23082ed8446c2ef1e130621cd -SIZE (KDE/release-service/25.12.2/kteatime-25.12.2.tar.xz) = 311892 +TIMESTAMP = 1772542100 +SHA256 (KDE/release-service/25.12.3/kteatime-25.12.3.tar.xz) = a83e1c8fc7a3f009c2ccdb0a1106b098aeaf9d5b3c2e2658e2ce2f8e6a0c70cd +SIZE (KDE/release-service/25.12.3/kteatime-25.12.3.tar.xz) = 311604 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index e64e53429e49..12372d6386c2 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570958 -SHA256 (KDE/release-service/25.12.2/ktimer-25.12.2.tar.xz) = 61d0a71ae6e4290a611b5609bf96c486977c3f7924fb6137338e9a57049a5341 -SIZE (KDE/release-service/25.12.2/ktimer-25.12.2.tar.xz) = 454752 +TIMESTAMP = 1772542102 +SHA256 (KDE/release-service/25.12.3/ktimer-25.12.3.tar.xz) = fe73cdeb8e984e81fc3db2c2c4f97bc419093b9544a6f3e824fa58bd9be5235c +SIZE (KDE/release-service/25.12.3/ktimer-25.12.3.tar.xz) = 454900 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index b727d536e7c8..bb936e9620d4 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570960 -SHA256 (KDE/release-service/25.12.2/dolphin-25.12.2.tar.xz) = 91c823de4d1c6c8fae5dda3d4e5cc03b6bac897fe0a07c57184dff675519c635 -SIZE (KDE/release-service/25.12.2/dolphin-25.12.2.tar.xz) = 5865232 +TIMESTAMP = 1772542103 +SHA256 (KDE/release-service/25.12.3/dolphin-25.12.3.tar.xz) = 9961de7cc076d9d7d598bb7f53afdebcfba20567093231f42ba72e031e089a3b +SIZE (KDE/release-service/25.12.3/dolphin-25.12.3.tar.xz) = 5865916 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 22cd26582828..d7a2d6be7547 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570962 -SHA256 (KDE/release-service/25.12.2/konqueror-25.12.2.tar.xz) = e8ce7fbbeab2e98ed9845633c4c130d00b919a075883a7d98ffb7b5cd42a3596 -SIZE (KDE/release-service/25.12.2/konqueror-25.12.2.tar.xz) = 9830712 +TIMESTAMP = 1772542105 +SHA256 (KDE/release-service/25.12.3/konqueror-25.12.3.tar.xz) = 8f383beada857b522a59b9259ae1f1f83554c5d25d3c39a39fb6f172ec0f889d +SIZE (KDE/release-service/25.12.3/konqueror-25.12.3.tar.xz) = 9799728 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 843328bbcad2..cf339a5d67ec 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570964 -SHA256 (KDE/release-service/25.12.2/konsole-25.12.2.tar.xz) = 8220069844051b584c553b7e7da4c3c1ec66f9a79f2f386baa1a9b91436f5046 -SIZE (KDE/release-service/25.12.2/konsole-25.12.2.tar.xz) = 1868308 +TIMESTAMP = 1772542106 +SHA256 (KDE/release-service/25.12.3/konsole-25.12.3.tar.xz) = c3e13be55cbe553ebd6ba5f04f9194c79a4ba15d1ed8f3d151ac7afae016f232 +SIZE (KDE/release-service/25.12.3/konsole-25.12.3.tar.xz) = 1865608 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 5bdb9b758fec..a9c26d8963de 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1770570966 -SHA256 (KDE/release-service/25.12.2/yakuake-25.12.2.tar.xz) = c2497891ccc2f59f2a1c73fc4e8b193a56b41ff82bf87baabaf1aa8684648fb2 -SIZE (KDE/release-service/25.12.2/yakuake-25.12.2.tar.xz) = 404824 +TIMESTAMP = 1772542108 +SHA256 (KDE/release-service/25.12.3/yakuake-25.12.3.tar.xz) = 362c9d376c4ff451d42777f8f8f9f21f2042cecb117f1b5cf2da77b10a43c9df +SIZE (KDE/release-service/25.12.3/yakuake-25.12.3.tar.xz) = 404568