diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 6daacb7e2eab..9f31bde8a111 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,1059 +1,1059 @@ # 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.5 KDE_PLASMA6_BRANCH?= stable # Legacy KDE frameworks (Qt5 based). KDE_FRAMEWORKS5_VERSION?= 5.116.0 KDE_FRAMEWORKS5_BRANCH?= stable # Current KDE Frameworks (Qt6 based). KDE_FRAMEWORKS6_VERSION?= 6.27.0 KDE_FRAMEWORKS6_BRANCH?= stable # Current KDE applications. # On major update: # - check and update if needed _${PORTNAME}_PROJECT_VERSION for the following ports: # audio/audiocd-kio, devel/kdevelop, games/libkdegames, games/libkmahjongg, graphics/kgraphviewer # - bump SHLIB_VER for editors/calligra. -KDE_APPLICATIONS6_VERSION?= 26.04.2 -KDE_APPLICATIONS6_SHLIB_VER?= 6.7.2 +KDE_APPLICATIONS6_VERSION?= 26.04.3 +KDE_APPLICATIONS6_SHLIB_VER?= 6.7.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 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_GEAR6_ALL= baloo-widgets kosm kpublictransport \ libkcddb 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-libkdcraw_PORT= graphics/libkdcraw kde-libkdcraw_LIB= libKDcrawQt6.so 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 51cbc6586eec..68d31a1f8ac0 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478296 -SHA256 (KDE/release-service/26.04.2/kmag-26.04.2.tar.xz) = c89c5eee844b7d471d477dfee553fc22d72843f8b4c452d9e322cce2abadcdfd -SIZE (KDE/release-service/26.04.2/kmag-26.04.2.tar.xz) = 680540 +TIMESTAMP = 1782826621 +SHA256 (KDE/release-service/26.04.3/kmag-26.04.3.tar.xz) = 42a0245819c671f3ef23f80b1d75666045c9830bb287114fc73b3bd702d085ec +SIZE (KDE/release-service/26.04.3/kmag-26.04.3.tar.xz) = 680556 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index 30fdba3295e3..fb2a7a142915 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478298 -SHA256 (KDE/release-service/26.04.2/kmousetool-26.04.2.tar.xz) = 7f128f25c053e677c8a8c69e73230be5d404fd7c732d715ff7b2eb083593c385 -SIZE (KDE/release-service/26.04.2/kmousetool-26.04.2.tar.xz) = 136044 +TIMESTAMP = 1782826623 +SHA256 (KDE/release-service/26.04.3/kmousetool-26.04.3.tar.xz) = b13a90eee91a91fb029966f128656f4e46126abf711b614e74080087e06d0fff +SIZE (KDE/release-service/26.04.3/kmousetool-26.04.3.tar.xz) = 136048 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 46843fea8b79..4aef3d466d67 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478299 -SHA256 (KDE/release-service/26.04.2/kmouth-26.04.2.tar.xz) = fb194aed5337c40a5bb9092666f656731d0e2b86b92aeff33a1060f9cac77c11 -SIZE (KDE/release-service/26.04.2/kmouth-26.04.2.tar.xz) = 1945712 +TIMESTAMP = 1782826625 +SHA256 (KDE/release-service/26.04.3/kmouth-26.04.3.tar.xz) = a608105dd8f519c53d81ffc8a9e6578b31e310b6c9333c42d369507b8d5fe1c1 +SIZE (KDE/release-service/26.04.3/kmouth-26.04.3.tar.xz) = 1945812 diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 2308bd2c0ead..b96f73e4ab0f 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478301 -SHA256 (KDE/release-service/26.04.2/ark-26.04.2.tar.xz) = b81c4055486c99f4f21ff228bf12485bc73e8e6b0064edee1043a11ad5d1e555 -SIZE (KDE/release-service/26.04.2/ark-26.04.2.tar.xz) = 3025104 +TIMESTAMP = 1782826626 +SHA256 (KDE/release-service/26.04.3/ark-26.04.3.tar.xz) = 8018fec69668aac35e5ab7ce4e51ce04de6ab7f56a3996322b016f41c31d5a01 +SIZE (KDE/release-service/26.04.3/ark-26.04.3.tar.xz) = 3024956 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index eda06077b7dc..9a4011d2fe60 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478302 -SHA256 (KDE/release-service/26.04.2/kosmindoormap-26.04.2.tar.xz) = 418143d92129b44213be6fe4846a75bab94cfbeb9ba6367667b2a2057d17f2e6 -SIZE (KDE/release-service/26.04.2/kosmindoormap-26.04.2.tar.xz) = 779624 +TIMESTAMP = 1782826628 +SHA256 (KDE/release-service/26.04.3/kosmindoormap-26.04.3.tar.xz) = 73a6a9326b25025d0282c5752bce223dd3292fd592f43d566c51286055cb668a +SIZE (KDE/release-service/26.04.3/kosmindoormap-26.04.3.tar.xz) = 779668 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 047fcd98e507..ec302e3bf520 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478304 -SHA256 (KDE/release-service/26.04.2/marble-26.04.2.tar.xz) = 8b1f4b1fba722c42852150427803bb28f800e5c217d9a2a8549b122646ef2d44 -SIZE (KDE/release-service/26.04.2/marble-26.04.2.tar.xz) = 53796800 +TIMESTAMP = 1782826630 +SHA256 (KDE/release-service/26.04.3/marble-26.04.3.tar.xz) = 75242b4019b2e873ab82d0e5d0149236779f4e9931782bf0cd5c6b67bcb69208 +SIZE (KDE/release-service/26.04.3/marble-26.04.3.tar.xz) = 53794136 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 3f3f0fff402c..462e087c8a49 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478306 -SHA256 (KDE/release-service/26.04.2/audiocd-kio-26.04.2.tar.xz) = 53a6084d7c4aaf125e372c0ca5be0947483bcbd75c352b97fbd24cede36dc2d6 -SIZE (KDE/release-service/26.04.2/audiocd-kio-26.04.2.tar.xz) = 584472 +TIMESTAMP = 1782826632 +SHA256 (KDE/release-service/26.04.3/audiocd-kio-26.04.3.tar.xz) = ba8a6f27311ca14f8d1e1c2135fa925e1075c43c6463ea2f641b1af3de670430 +SIZE (KDE/release-service/26.04.3/audiocd-kio-26.04.3.tar.xz) = 585308 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 2b3817c0bdee..691bb4bd432b 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478308 -SHA256 (KDE/release-service/26.04.2/elisa-26.04.2.tar.xz) = c59045647141c8f58e922067f03db1099567a8445d3a4c172241f63ba4e83582 -SIZE (KDE/release-service/26.04.2/elisa-26.04.2.tar.xz) = 1503704 +TIMESTAMP = 1782826634 +SHA256 (KDE/release-service/26.04.3/elisa-26.04.3.tar.xz) = 361e4f5bfe373f340e18e80fe35b8d7c1b6c8f65970b867a2e27e81103ce25d5 +SIZE (KDE/release-service/26.04.3/elisa-26.04.3.tar.xz) = 1503824 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index b1baae15efcf..1a1a3d74ba4e 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478309 -SHA256 (KDE/release-service/26.04.2/juk-26.04.2.tar.xz) = 0d321a0cc47b8d402449fbd701e2a324f32494ead7f5ca3753a4089dc6d6de20 -SIZE (KDE/release-service/26.04.2/juk-26.04.2.tar.xz) = 1942628 +TIMESTAMP = 1782826635 +SHA256 (KDE/release-service/26.04.3/juk-26.04.3.tar.xz) = 93963ec7511d854477f54bccfa6cc584cc6935b977a498851cfab66946e8b813 +SIZE (KDE/release-service/26.04.3/juk-26.04.3.tar.xz) = 1942512 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index 6e9d0f038f8a..2b0cf66689c9 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478311 -SHA256 (KDE/release-service/26.04.2/kmix-26.04.2.tar.xz) = 5f1d02398ec813c3505a783a28ff4eecf5b8050acfbe6cc3b41405fd8d3fe160 -SIZE (KDE/release-service/26.04.2/kmix-26.04.2.tar.xz) = 1180028 +TIMESTAMP = 1782826637 +SHA256 (KDE/release-service/26.04.3/kmix-26.04.3.tar.xz) = 6bcd3c7d9a093fa93c9d6cfaf1a13b691d73de91b9bceaf7de2f00dc4d5eb3ad +SIZE (KDE/release-service/26.04.3/kmix-26.04.3.tar.xz) = 1180120 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index c8040ecfe3e4..b0b66344487c 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478312 -SHA256 (KDE/release-service/26.04.2/kwave-26.04.2.tar.xz) = af565d40f409f4e092a4cf4e7169de7928421641686fd78e6ed2d93491dec3ed -SIZE (KDE/release-service/26.04.2/kwave-26.04.2.tar.xz) = 6553724 +TIMESTAMP = 1782826639 +SHA256 (KDE/release-service/26.04.3/kwave-26.04.3.tar.xz) = ec7800326d5a48780a58bbbb938f364efd50dfb4fa3e3d64656504a4c8be5742 +SIZE (KDE/release-service/26.04.3/kwave-26.04.3.tar.xz) = 6553844 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index f07ebbbe04b0..07901e9d0fae 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478314 -SHA256 (KDE/release-service/26.04.2/libkcddb-26.04.2.tar.xz) = d3b8d83bf5482cc5ed2d5830960940fb0397fe7fcfbbacf85c8c2b68f752a38b -SIZE (KDE/release-service/26.04.2/libkcddb-26.04.2.tar.xz) = 448192 +TIMESTAMP = 1782826641 +SHA256 (KDE/release-service/26.04.3/libkcddb-26.04.3.tar.xz) = c5af21abfc86438c576c84846f95d895c10e9be9d5f40bac5df45000b993c38d +SIZE (KDE/release-service/26.04.3/libkcddb-26.04.3.tar.xz) = 448268 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 4f9218e10139..4021b8e35b85 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478316 -SHA256 (KDE/release-service/26.04.2/akonadi-26.04.2.tar.xz) = cc666e4152cc82a3b0734bc34c9a70efbe173fe43a6582e9058b25a740afa866 -SIZE (KDE/release-service/26.04.2/akonadi-26.04.2.tar.xz) = 1783752 +TIMESTAMP = 1782826643 +SHA256 (KDE/release-service/26.04.3/akonadi-26.04.3.tar.xz) = 196c1c27c122d0ca4ec320c89ef835fec3ec73d042617a76f067e5c649cfe824 +SIZE (KDE/release-service/26.04.3/akonadi-26.04.3.tar.xz) = 1783956 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 6c4ebc643f0b..9e7ed3731216 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478317 -SHA256 (KDE/release-service/26.04.2/akonadi-calendar-tools-26.04.2.tar.xz) = 0d74c7f9cbd93ea4c465eaeaaea85fb196df7e1d692565bcdc9f9d840acc9d4e -SIZE (KDE/release-service/26.04.2/akonadi-calendar-tools-26.04.2.tar.xz) = 269972 +TIMESTAMP = 1782826644 +SHA256 (KDE/release-service/26.04.3/akonadi-calendar-tools-26.04.3.tar.xz) = ff69bb4c4b5d678423fcdb0baf16c1149daf2b803c2c4565d0999c176548927b +SIZE (KDE/release-service/26.04.3/akonadi-calendar-tools-26.04.3.tar.xz) = 270112 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index f73745ecb326..5606cd81bd62 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478319 -SHA256 (KDE/release-service/26.04.2/akonadi-import-wizard-26.04.2.tar.xz) = d87614861f9127443b4048a76de6f233af6dedc612f9f60b0483f47ddb7767ca -SIZE (KDE/release-service/26.04.2/akonadi-import-wizard-26.04.2.tar.xz) = 501276 +TIMESTAMP = 1782826646 +SHA256 (KDE/release-service/26.04.3/akonadi-import-wizard-26.04.3.tar.xz) = 834f6dcb0b1c06e26d812fa4f35c399d7847d8aa7ae74bfba6064fc8dd06c91b +SIZE (KDE/release-service/26.04.3/akonadi-import-wizard-26.04.3.tar.xz) = 501212 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 712e2b6b3679..3042b8a3f301 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478321 -SHA256 (KDE/release-service/26.04.2/akonadiconsole-26.04.2.tar.xz) = fa3d577c41feb3c6a889e5590b042d1383fd8072b8d7374b634b526e0eb790b0 -SIZE (KDE/release-service/26.04.2/akonadiconsole-26.04.2.tar.xz) = 335364 +TIMESTAMP = 1782826648 +SHA256 (KDE/release-service/26.04.3/akonadiconsole-26.04.3.tar.xz) = d27092a87af4da2d5e3a15eb5a73497081438f6545c2d86c2f2d7ff2db5364e5 +SIZE (KDE/release-service/26.04.3/akonadiconsole-26.04.3.tar.xz) = 335408 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 659878389317..054dac9ae4e0 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478322 -SHA256 (KDE/release-service/26.04.2/akregator-26.04.2.tar.xz) = 2b2b16ad2d8b12745ddc4a44b28250542b601e1e4113967a84253c9ff85a7e7a -SIZE (KDE/release-service/26.04.2/akregator-26.04.2.tar.xz) = 2146940 +TIMESTAMP = 1782826650 +SHA256 (KDE/release-service/26.04.3/akregator-26.04.3.tar.xz) = c59d7d6899e34b1a9c58089cd139838a7be22e358ff036532c8700871c182910 +SIZE (KDE/release-service/26.04.3/akregator-26.04.3.tar.xz) = 2147044 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 8216e59ccb65..96f7a0f2bb70 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478324 -SHA256 (KDE/release-service/26.04.2/grantlee-editor-26.04.2.tar.xz) = 12853619f2a8f43d4d66068ee58ada2bb69bfe444d55dac6a0b844870ac480fd -SIZE (KDE/release-service/26.04.2/grantlee-editor-26.04.2.tar.xz) = 133068 +TIMESTAMP = 1782826651 +SHA256 (KDE/release-service/26.04.3/grantlee-editor-26.04.3.tar.xz) = 1e1f3b086c4701f70ef6d733ec575eb4db386c152582a54e7e6fb3aeb41aeba4 +SIZE (KDE/release-service/26.04.3/grantlee-editor-26.04.3.tar.xz) = 133064 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 4618eea68d74..5160e9ccf43d 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478326 -SHA256 (KDE/release-service/26.04.2/grantleetheme-26.04.2.tar.xz) = a91830719a8b3e4d52cec695cd3fc28f0142983281dcf23fc964a238e1d312b7 -SIZE (KDE/release-service/26.04.2/grantleetheme-26.04.2.tar.xz) = 69804 +TIMESTAMP = 1782826653 +SHA256 (KDE/release-service/26.04.3/grantleetheme-26.04.3.tar.xz) = 28f9333b8a7327c65c513afbd9d9a411b799ff5883b4c9aaafc22ace79d94702 +SIZE (KDE/release-service/26.04.3/grantleetheme-26.04.3.tar.xz) = 69780 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 72dc1c68d84d..4638c28b13f6 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478327 -SHA256 (KDE/release-service/26.04.2/itinerary-26.04.2.tar.xz) = 2f49fd0aa810e1a5bfe3215182817e9f2420ac8cdb993808897768b74e082083 -SIZE (KDE/release-service/26.04.2/itinerary-26.04.2.tar.xz) = 989908 +TIMESTAMP = 1782826655 +SHA256 (KDE/release-service/26.04.3/itinerary-26.04.3.tar.xz) = 9ad5a9228cea5042e293e01a8bb61f643ea5efe6ea4dfdf7f3a62bf4f5b07293 +SIZE (KDE/release-service/26.04.3/itinerary-26.04.3.tar.xz) = 991228 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 6aececc4b2e0..0a98bdf621e3 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478329 -SHA256 (KDE/release-service/26.04.2/kaddressbook-26.04.2.tar.xz) = cfe623b74273f7c6ca576dcb6a59caa605aacacc100b3fc4e1ab5433fcf8ac78 -SIZE (KDE/release-service/26.04.2/kaddressbook-26.04.2.tar.xz) = 3459528 +TIMESTAMP = 1782826657 +SHA256 (KDE/release-service/26.04.3/kaddressbook-26.04.3.tar.xz) = 300e313205d6eb83ac9ba134f9d333741e96ed1518342cd63d06a0234ed3d9dc +SIZE (KDE/release-service/26.04.3/kaddressbook-26.04.3.tar.xz) = 3459588 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 76b5f7c84cf2..b3767126a8c1 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478330 -SHA256 (KDE/release-service/26.04.2/kalarm-26.04.2.tar.xz) = e1df450ae1436b63381b75766d23b2af01f2395e8ed6d45fbdfc160b15e92533 -SIZE (KDE/release-service/26.04.2/kalarm-26.04.2.tar.xz) = 2745872 +TIMESTAMP = 1782826658 +SHA256 (KDE/release-service/26.04.3/kalarm-26.04.3.tar.xz) = 6bbe92ac0e9a8ea43a46c850e3344b735dee60a86f5fb8cc666a10b0f123c480 +SIZE (KDE/release-service/26.04.3/kalarm-26.04.3.tar.xz) = 2746276 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index c2b04de99e8b..e4770df77732 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478332 -SHA256 (KDE/release-service/26.04.2/kcharselect-26.04.2.tar.xz) = 4e4e1037da17e3374a83615089cb9a51935675a2eb2409ff22ad98f7578fdd6e -SIZE (KDE/release-service/26.04.2/kcharselect-26.04.2.tar.xz) = 478420 +TIMESTAMP = 1782826660 +SHA256 (KDE/release-service/26.04.3/kcharselect-26.04.3.tar.xz) = 376a31bf03ea2d6a231fdc012c793f608f48c0172e3543b84a44e0e9b87a6651 +SIZE (KDE/release-service/26.04.3/kcharselect-26.04.3.tar.xz) = 478380 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index bab72ea1811d..2d1f959ff794 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478334 -SHA256 (KDE/release-service/26.04.2/kdeconnect-kde-26.04.2.tar.xz) = 45a197a2f2e7e400e6cf42f351cf92ca06807f1023f17378f128a3314c7fc176 -SIZE (KDE/release-service/26.04.2/kdeconnect-kde-26.04.2.tar.xz) = 690036 +TIMESTAMP = 1782826662 +SHA256 (KDE/release-service/26.04.3/kdeconnect-kde-26.04.3.tar.xz) = 505b58b52630a662a8f6a2c50c58eda1de66779762c31d5ea5247b48bba52561 +SIZE (KDE/release-service/26.04.3/kdeconnect-kde-26.04.3.tar.xz) = 691476 diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index d4e12ad15ccd..d4e8ecfbd857 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478335 -SHA256 (KDE/release-service/26.04.2/kdepim-addons-26.04.2.tar.xz) = ee69400cebd2ee4b2e19f5a571bbcaf1285e5717215756852154c0809c81c03e -SIZE (KDE/release-service/26.04.2/kdepim-addons-26.04.2.tar.xz) = 2674128 +TIMESTAMP = 1782826664 +SHA256 (KDE/release-service/26.04.3/kdepim-addons-26.04.3.tar.xz) = 03b2e37abb68337d92b194bcb0c72ef38041ce8726c0ac4f8a7c7ed115007546 +SIZE (KDE/release-service/26.04.3/kdepim-addons-26.04.3.tar.xz) = 2674544 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index 7f212beb921d..4a013e0d42bc 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1425 +1,1427 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/libKPim6AutoGenerateText.so.6 lib/libKPim6AutoGenerateText.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadidatasetools.so.6 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.6 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.6 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.6 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.6 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.6 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.6 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.6 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.6 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.6 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/autogeneratetext/toolplugins/kaichat_addressbookplugin.so %%QT_PLUGINDIR%%/autogeneratetext/toolplugins/kaichat_calendarplugin.so %%QT_PLUGINDIR%%/pim6/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim6/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim6/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim6/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim6/kcms/kleopatra/kcm_kmail_gnupgsystem.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_checkfoldersizeaccount.so %%QT_PLUGINDIR%%/pim6/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_aitooleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_askautogeneratetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_autogenerateanswerseditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim6/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim6/ldapactivities/kldapactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim6/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/pim6/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim6/mailtransportactivities/kmailtransportactivitiesplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim6/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim6/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/kf6/ktexttemplate/kitinerary_ktexttemplate_extension.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_aiplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim6/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim6/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim6/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim6/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/locale/af/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/af/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kaichat_addressbook.mo share/locale/ar/LC_MESSAGES/kaichat_calendar.mo share/locale/ar/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ast/LC_MESSAGES/cryptopageplugin.mo share/locale/ast/LC_MESSAGES/customtoolsplugin.mo share/locale/ast/LC_MESSAGES/importwizard_plugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ast/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ast/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ast/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ast/LC_MESSAGES/kmail_plugins.mo share/locale/ast/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ast/LC_MESSAGES/korganizer_plugins.mo share/locale/ast/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ast/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ast/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ast/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ast/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ast/LC_MESSAGES/messageviewerplugins.mo share/locale/ast/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ast/LC_MESSAGES/webengineurlinterceptor.mo share/locale/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/customtoolsplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kaddressbook_plugins.mo share/locale/az/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/az/LC_MESSAGES/kmail_editor_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo share/locale/az/LC_MESSAGES/kmailtransport_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo share/locale/az/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/az/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/az/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/az/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/az/LC_MESSAGES/messageviewerplugins.mo share/locale/az/LC_MESSAGES/sieveeditor_plugins.mo share/locale/az/LC_MESSAGES/webengineurlinterceptor.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/customtoolsplugin.mo share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo share/locale/bg/LC_MESSAGES/kaichat_addressbook.mo share/locale/bg/LC_MESSAGES/kaichat_calendar.mo share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/bg/LC_MESSAGES/kmail_plugins.mo share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/libpimautogeneratetext.mo share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/bg/LC_MESSAGES/messageviewerplugins.mo share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/br/LC_MESSAGES/korganizer_plugins.mo share/locale/br/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/br/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kaichat_addressbook.mo share/locale/ca/LC_MESSAGES/kaichat_calendar.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaichat_addressbook.mo share/locale/ca@valencia/LC_MESSAGES/kaichat_calendar.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kaichat_addressbook.mo share/locale/cs/LC_MESSAGES/kaichat_calendar.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/libpimautogeneratetext.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cy/LC_MESSAGES/korganizer_plugins.mo share/locale/cy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kaichat_addressbook.mo share/locale/de/LC_MESSAGES/kaichat_calendar.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/libpimautogeneratetext.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/customtoolsplugin.mo share/locale/eo/LC_MESSAGES/importwizard_plugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eo/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eo/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eo/LC_MESSAGES/kmail_plugins.mo share/locale/eo/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eo/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eo/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eo/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eo/LC_MESSAGES/messageviewerplugins.mo share/locale/eo/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eo/LC_MESSAGES/webengineurlinterceptor.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kaichat_addressbook.mo share/locale/es/LC_MESSAGES/kaichat_calendar.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/libpimautogeneratetext.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/cryptopageplugin.mo share/locale/eu/LC_MESSAGES/customtoolsplugin.mo share/locale/eu/LC_MESSAGES/importwizard_plugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/kaddressbook_plugins.mo share/locale/eu/LC_MESSAGES/kaichat_addressbook.mo share/locale/eu/LC_MESSAGES/kaichat_calendar.mo share/locale/eu/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editor_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/eu/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/eu/LC_MESSAGES/kmail_plugins.mo share/locale/eu/LC_MESSAGES/kmailtransport_plugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/libpimautogeneratetext.mo share/locale/eu/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/eu/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/eu/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eu/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/eu/LC_MESSAGES/messageviewerplugins.mo share/locale/eu/LC_MESSAGES/sieveeditor_plugins.mo share/locale/eu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kaichat_addressbook.mo share/locale/fi/LC_MESSAGES/kaichat_calendar.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/libpimautogeneratetext.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kaichat_addressbook.mo share/locale/fr/LC_MESSAGES/kaichat_calendar.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/libpimautogeneratetext.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fy/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fy/LC_MESSAGES/korganizer_plugins.mo share/locale/fy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fy/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/customtoolsplugin.mo share/locale/ga/LC_MESSAGES/importwizard_plugins.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ga/LC_MESSAGES/kaichat_addressbook.mo share/locale/ga/LC_MESSAGES/kaichat_calendar.mo share/locale/ga/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ga/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ga/LC_MESSAGES/kmail_plugins.mo share/locale/ga/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ga/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ga/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ga/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ga/LC_MESSAGES/messageviewerplugins.mo share/locale/ga/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ga/LC_MESSAGES/webengineurlinterceptor.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/cryptopageplugin.mo share/locale/he/LC_MESSAGES/customtoolsplugin.mo share/locale/he/LC_MESSAGES/importwizard_plugins.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/kaddressbook_plugins.mo share/locale/he/LC_MESSAGES/kaichat_addressbook.mo share/locale/he/LC_MESSAGES/kaichat_calendar.mo share/locale/he/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/he/LC_MESSAGES/kmail_editor_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/he/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/he/LC_MESSAGES/kmail_plugins.mo share/locale/he/LC_MESSAGES/kmailtransport_plugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/libpimautogeneratetext.mo share/locale/he/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/he/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/he/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/he/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/he/LC_MESSAGES/messageviewerplugins.mo share/locale/he/LC_MESSAGES/sieveeditor_plugins.mo share/locale/he/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hi/LC_MESSAGES/cryptopageplugin.mo share/locale/hi/LC_MESSAGES/customtoolsplugin.mo share/locale/hi/LC_MESSAGES/importwizard_plugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/hi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/hi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/hi/LC_MESSAGES/kmail_plugins.mo share/locale/hi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/hi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/hi/LC_MESSAGES/messageviewerplugins.mo share/locale/hi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/hi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/hne/LC_MESSAGES/korganizer_plugins.mo share/locale/hne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hsb/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/customtoolsplugin.mo share/locale/hu/LC_MESSAGES/importwizard_plugins.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kaichat_addressbook.mo share/locale/ia/LC_MESSAGES/kaichat_calendar.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kaichat_addressbook.mo share/locale/it/LC_MESSAGES/kaichat_calendar.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/libpimautogeneratetext.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ka/LC_MESSAGES/cryptopageplugin.mo share/locale/ka/LC_MESSAGES/customtoolsplugin.mo share/locale/ka/LC_MESSAGES/importwizard_plugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ka/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ka/LC_MESSAGES/kaichat_addressbook.mo share/locale/ka/LC_MESSAGES/kaichat_calendar.mo share/locale/ka/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ka/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ka/LC_MESSAGES/kmail_plugins.mo share/locale/ka/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ka/LC_MESSAGES/korganizer_plugins.mo share/locale/ka/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ka/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ka/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ka/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ka/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ka/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ka/LC_MESSAGES/messageviewerplugins.mo share/locale/ka/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ka/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/ko/LC_MESSAGES/kaichat_addressbook.mo +share/locale/ko/LC_MESSAGES/kaichat_calendar.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kaichat_addressbook.mo share/locale/lt/LC_MESSAGES/kaichat_calendar.mo share/locale/lt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/libpimautogeneratetext.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mai/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mai/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mk/LC_MESSAGES/korganizer_plugins.mo share/locale/mk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ms/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ms/LC_MESSAGES/korganizer_plugins.mo share/locale/ms/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ms/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ne/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ne/LC_MESSAGES/korganizer_plugins.mo share/locale/ne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kaichat_addressbook.mo share/locale/nl/LC_MESSAGES/kaichat_calendar.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kaichat_addressbook.mo share/locale/pl/LC_MESSAGES/kaichat_calendar.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaichat_addressbook.mo share/locale/pt_BR/LC_MESSAGES/kaichat_calendar.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/libpimautogeneratetext.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sa/LC_MESSAGES/cryptopageplugin.mo share/locale/sa/LC_MESSAGES/customtoolsplugin.mo share/locale/sa/LC_MESSAGES/importwizard_plugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sa/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sa/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sa/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sa/LC_MESSAGES/kmail_plugins.mo share/locale/sa/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sa/LC_MESSAGES/korganizer_plugins.mo share/locale/sa/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sa/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sa/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sa/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sa/LC_MESSAGES/messageviewerplugins.mo share/locale/sa/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sa/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kaichat_addressbook.mo share/locale/sk/LC_MESSAGES/kaichat_calendar.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/libpimautogeneratetext.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kaichat_addressbook.mo share/locale/sl/LC_MESSAGES/kaichat_calendar.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/libpimautogeneratetext.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavian/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavian/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sr@latin/LC_MESSAGES/cryptopageplugin.mo share/locale/sr@latin/LC_MESSAGES/customtoolsplugin.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr@latin/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmail_plugins.mo share/locale/sr@latin/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr@latin/LC_MESSAGES/korganizer_plugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr@latin/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr@latin/LC_MESSAGES/messageviewerplugins.mo share/locale/sr@latin/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr@latin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kaichat_addressbook.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/libpimautogeneratetext.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/cryptopageplugin.mo share/locale/ta/LC_MESSAGES/customtoolsplugin.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ta/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ta/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ta/LC_MESSAGES/kmail_plugins.mo share/locale/ta/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/libpimautogeneratetext.mo share/locale/ta/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ta/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ta/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ta/LC_MESSAGES/messageviewerplugins.mo share/locale/ta/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ta/LC_MESSAGES/webengineurlinterceptor.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/th/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/th/LC_MESSAGES/korganizer_plugins.mo share/locale/th/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/th/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kaichat_addressbook.mo share/locale/tr/LC_MESSAGES/kaichat_calendar.mo share/locale/tr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/libpimautogeneratetext.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/tr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/tr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kaichat_addressbook.mo share/locale/uk/LC_MESSAGES/kaichat_calendar.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/libpimautogeneratetext.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/uz/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz/LC_MESSAGES/korganizer_plugins.mo share/locale/uz/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uz@cyrillic/LC_MESSAGES/korganizer_plugins.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/xh/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/xh/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaichat_addressbook.mo share/locale/zh_CN/LC_MESSAGES/kaichat_calendar.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/libpimautogeneratetext.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaichat_addressbook.mo share/locale/zh_TW/LC_MESSAGES/kaichat_calendar.mo share/locale/zh_TW/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/libpimautogeneratetext.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories6/kdepim-addons.categories share/qlogging-categories6/kdepim-addons.renamecategories diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 1c0bb016b04a..c9b71831b8af 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478337 -SHA256 (KDE/release-service/26.04.2/kdepim-runtime-26.04.2.tar.xz) = 5e1a13b16579d25cb4a66245a9eadef3c8d77ed87669a54bb5215cd74a7b2617 -SIZE (KDE/release-service/26.04.2/kdepim-runtime-26.04.2.tar.xz) = 2327016 +TIMESTAMP = 1782826666 +SHA256 (KDE/release-service/26.04.3/kdepim-runtime-26.04.3.tar.xz) = 498744228f225176624fafbab283815b6872351f6d15bb935e2d02c1a644dd43 +SIZE (KDE/release-service/26.04.3/kdepim-runtime-26.04.3.tar.xz) = 2327200 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 629c7efbdee0..eee088492494 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478339 -SHA256 (KDE/release-service/26.04.2/keditbookmarks-26.04.2.tar.xz) = 5fef5835c0e7fdaae1e32dc342d37f2ed4385e0db50c9163953872b8daf79581 -SIZE (KDE/release-service/26.04.2/keditbookmarks-26.04.2.tar.xz) = 262344 +TIMESTAMP = 1782826667 +SHA256 (KDE/release-service/26.04.3/keditbookmarks-26.04.3.tar.xz) = 434d30601214b0645366448de9397e6f0e013bade3b49cb1af845f6a741c4dd0 +SIZE (KDE/release-service/26.04.3/keditbookmarks-26.04.3.tar.xz) = 262444 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index a315680840a1..48a1216847a4 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478340 -SHA256 (KDE/release-service/26.04.2/kfind-26.04.2.tar.xz) = 2902110890a9dd96a017e71fae9b0c28ae53c946b977f3ff5f53b30e8932b553 -SIZE (KDE/release-service/26.04.2/kfind-26.04.2.tar.xz) = 335952 +TIMESTAMP = 1782826669 +SHA256 (KDE/release-service/26.04.3/kfind-26.04.3.tar.xz) = 21b79c83b60bd142f20edf2cf380c377c0fcaa2a34b727401905ab69621c27d8 +SIZE (KDE/release-service/26.04.3/kfind-26.04.3.tar.xz) = 335956 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index b358fbc2cf66..6f29c7a48674 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478344 -SHA256 (KDE/release-service/26.04.2/kmail-account-wizard-26.04.2.tar.xz) = 58efaf3ab546d0824f05d397272553547dfc47b8184ef59976d7d35620f7d65d -SIZE (KDE/release-service/26.04.2/kmail-account-wizard-26.04.2.tar.xz) = 175348 +TIMESTAMP = 1782826673 +SHA256 (KDE/release-service/26.04.3/kmail-account-wizard-26.04.3.tar.xz) = 6bc54db7057e5fd4e83f71d6817a81bd36377a41cc734e079f55df3619e70461 +SIZE (KDE/release-service/26.04.3/kmail-account-wizard-26.04.3.tar.xz) = 175376 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index e4eb8385a3c5..d28e70ac1386 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478342 -SHA256 (KDE/release-service/26.04.2/kmail-26.04.2.tar.xz) = 8c9185d634eeeb3f151126439fd027f54a9f124a8e865fbda6b110993bd300f9 -SIZE (KDE/release-service/26.04.2/kmail-26.04.2.tar.xz) = 7836320 +TIMESTAMP = 1782826671 +SHA256 (KDE/release-service/26.04.3/kmail-26.04.3.tar.xz) = 7abd2c0e88779f18eff35ebb4f72f6447e25c0db6867a1edf94536052a1ae952 +SIZE (KDE/release-service/26.04.3/kmail-26.04.3.tar.xz) = 7836280 diff --git a/deskutils/kongress/distinfo b/deskutils/kongress/distinfo index 64cf6bb0da38..2bc73add3d8e 100644 --- a/deskutils/kongress/distinfo +++ b/deskutils/kongress/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478345 -SHA256 (KDE/release-service/26.04.2/kongress-26.04.2.tar.xz) = f4c3f5b90e28647b84159e91900cafe3ff832fcf618bfda1a1d52f4b8b913745 -SIZE (KDE/release-service/26.04.2/kongress-26.04.2.tar.xz) = 173232 +TIMESTAMP = 1782826674 +SHA256 (KDE/release-service/26.04.3/kongress-26.04.3.tar.xz) = 258fe4690f6eeab33df247912805c13e66f9e49a4c118b3d956621b1ebc5f7ff +SIZE (KDE/release-service/26.04.3/kongress-26.04.3.tar.xz) = 173232 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 0240df5a4235..9a878e0b8193 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478347 -SHA256 (KDE/release-service/26.04.2/kontact-26.04.2.tar.xz) = 7ef5a8849f7c21f3c2146466b2c6ecdb4e20a6d28c11f7e7f170dc8bf07ef428 -SIZE (KDE/release-service/26.04.2/kontact-26.04.2.tar.xz) = 897132 +TIMESTAMP = 1782826676 +SHA256 (KDE/release-service/26.04.3/kontact-26.04.3.tar.xz) = 28efd897d46825e9ab66b050a8076663d6a74a286fd4a1f8183fc12695b2f4d5 +SIZE (KDE/release-service/26.04.3/kontact-26.04.3.tar.xz) = 897116 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 3ec79500212a..2352f3b1b5e1 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478348 -SHA256 (KDE/release-service/26.04.2/korganizer-26.04.2.tar.xz) = 78b856154f08305a38172c3b451fc4ef2f1852b202b109f2adf9f3e97af675a2 -SIZE (KDE/release-service/26.04.2/korganizer-26.04.2.tar.xz) = 3120964 +TIMESTAMP = 1782826678 +SHA256 (KDE/release-service/26.04.3/korganizer-26.04.3.tar.xz) = 89a11d44aa4c46fe3e3ca64f2b38fd806cfcdb23262c63cc764c5e6ab9e04d48 +SIZE (KDE/release-service/26.04.3/korganizer-26.04.3.tar.xz) = 3121336 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 0ae7da349cac..08d496099f27 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478350 -SHA256 (KDE/release-service/26.04.2/kruler-26.04.2.tar.xz) = 5a46bb0c524dd8fe09e5bc2f90b6fa8220834bfad7612c7265ef0cf413f19acb -SIZE (KDE/release-service/26.04.2/kruler-26.04.2.tar.xz) = 286936 +TIMESTAMP = 1782826680 +SHA256 (KDE/release-service/26.04.3/kruler-26.04.3.tar.xz) = 634b154d05db526a4d05025e7358b01929b7c5938602477f6880b19c6ba79a13 +SIZE (KDE/release-service/26.04.3/kruler-26.04.3.tar.xz) = 287064 diff --git a/deskutils/kweather/distinfo b/deskutils/kweather/distinfo index 3ea08859df9b..09d64a4bef3b 100644 --- a/deskutils/kweather/distinfo +++ b/deskutils/kweather/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478350 -SHA256 (KDE/release-service/26.04.2/kweather-26.04.2.tar.xz) = 840e0cf2774e12187aace8735903b733355bbeca9d9c65fa9eb53f795c4b5d18 -SIZE (KDE/release-service/26.04.2/kweather-26.04.2.tar.xz) = 384576 +TIMESTAMP = 1782826680 +SHA256 (KDE/release-service/26.04.3/kweather-26.04.3.tar.xz) = 3d22d401742715333c2566fdb3902f82d561ee1e75f677fe958e9f161cf9021a +SIZE (KDE/release-service/26.04.3/kweather-26.04.3.tar.xz) = 384640 diff --git a/deskutils/kweathercore/distinfo b/deskutils/kweathercore/distinfo index 08f6bc16fcf4..df43e061170b 100644 --- a/deskutils/kweathercore/distinfo +++ b/deskutils/kweathercore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478351 -SHA256 (KDE/release-service/26.04.2/kweathercore-26.04.2.tar.xz) = d370b4581983597b16a383fc67206118c8f6a67f0f5d6421e97dd6b7695a60d9 -SIZE (KDE/release-service/26.04.2/kweathercore-26.04.2.tar.xz) = 87044 +TIMESTAMP = 1782826680 +SHA256 (KDE/release-service/26.04.3/kweathercore-26.04.3.tar.xz) = 5b46b0841757ee498fd3c55ad3d01d5e3d3f40d0c8039b3b2e16a9e459dd9b4b +SIZE (KDE/release-service/26.04.3/kweathercore-26.04.3.tar.xz) = 87016 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 323e32c0b9cf..d5af88d4fdf8 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478352 -SHA256 (KDE/release-service/26.04.2/libkdepim-26.04.2.tar.xz) = 9aed63179510dfd842483019595a27d44f97a0e3c05e8ea10c4c07f9e532eefd -SIZE (KDE/release-service/26.04.2/libkdepim-26.04.2.tar.xz) = 284568 +TIMESTAMP = 1782826682 +SHA256 (KDE/release-service/26.04.3/libkdepim-26.04.3.tar.xz) = 089f1b24839a66b234e987f9eb71aca9efe20c2e9d8dd7387f24c14cbff37bf5 +SIZE (KDE/release-service/26.04.3/libkdepim-26.04.3.tar.xz) = 284636 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 8d8b0bc13939..82904051784c 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478354 -SHA256 (KDE/release-service/26.04.2/mbox-importer-26.04.2.tar.xz) = 64a0e021f65b429bd85f7a7c248aab3c64ba098b0b73708919a0c68c1ce7984f -SIZE (KDE/release-service/26.04.2/mbox-importer-26.04.2.tar.xz) = 35496 +TIMESTAMP = 1782826684 +SHA256 (KDE/release-service/26.04.3/mbox-importer-26.04.3.tar.xz) = f7a8a22dab372271175162595cac8c38a1645c54b0935cc05dc9df4ea5004508 +SIZE (KDE/release-service/26.04.3/mbox-importer-26.04.3.tar.xz) = 35508 diff --git a/deskutils/merkuro/distinfo b/deskutils/merkuro/distinfo index 655ae60dcac2..4341cb03be7b 100644 --- a/deskutils/merkuro/distinfo +++ b/deskutils/merkuro/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478356 -SHA256 (KDE/release-service/26.04.2/merkuro-26.04.2.tar.xz) = b48e3d5fa59ea6b4606680b6b2ff8160a04dbe3229cb52d2664983faa3c3443b -SIZE (KDE/release-service/26.04.2/merkuro-26.04.2.tar.xz) = 840176 +TIMESTAMP = 1782826686 +SHA256 (KDE/release-service/26.04.3/merkuro-26.04.3.tar.xz) = 136d63ecd4180569e502b71fd5ac3f8154ee015abd65c0f405a035175c1ac7f0 +SIZE (KDE/release-service/26.04.3/merkuro-26.04.3.tar.xz) = 840420 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 05d1016fa695..65b13c40b6f9 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478357 -SHA256 (KDE/release-service/26.04.2/pim-data-exporter-26.04.2.tar.xz) = 89628c08048a4a511d1b608051c8510ef6ebf7edd0879f7245bdbc9ba795f59c -SIZE (KDE/release-service/26.04.2/pim-data-exporter-26.04.2.tar.xz) = 431612 +TIMESTAMP = 1782826687 +SHA256 (KDE/release-service/26.04.3/pim-data-exporter-26.04.3.tar.xz) = 2c0ecfb883267f5c18fdde254c7702c28fbb5c579d2633bf622c2de6d50c9560 +SIZE (KDE/release-service/26.04.3/pim-data-exporter-26.04.3.tar.xz) = 431676 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 7f82a2412097..8b0f204fbb9b 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478359 -SHA256 (KDE/release-service/26.04.2/pim-sieve-editor-26.04.2.tar.xz) = 4c75d13cb0af1a838c0385ea1a8b05a3cd9fdf00eb5bd7fc290720603c0d4ec8 -SIZE (KDE/release-service/26.04.2/pim-sieve-editor-26.04.2.tar.xz) = 485500 +TIMESTAMP = 1782826689 +SHA256 (KDE/release-service/26.04.3/pim-sieve-editor-26.04.3.tar.xz) = 4ecd2574adcb895ff902178bb3f66e0233e249af3b8bcf129201bb25a931c9b6 +SIZE (KDE/release-service/26.04.3/pim-sieve-editor-26.04.3.tar.xz) = 485508 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 0fe95b85c45d..22a5acc02f69 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478360 -SHA256 (KDE/release-service/26.04.2/zanshin-26.04.2.tar.xz) = 43454518021eb57af6f28b5fb765f2f7eba93516de9c3b96efa71814fca7a64f -SIZE (KDE/release-service/26.04.2/zanshin-26.04.2.tar.xz) = 390804 +TIMESTAMP = 1782826691 +SHA256 (KDE/release-service/26.04.3/zanshin-26.04.3.tar.xz) = a805e9a20b8240c552ea3d7d1586419037bf43aab943ab1cd48f00c3b5dc9792 +SIZE (KDE/release-service/26.04.3/zanshin-26.04.3.tar.xz) = 390796 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 5ecd24ee0259..15b4144437a0 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478362 -SHA256 (KDE/release-service/26.04.2/dolphin-plugins-26.04.2.tar.xz) = 8c53ce19b2b910f087de42180c034dd9c087598d3b145815a3eba713006e22e7 -SIZE (KDE/release-service/26.04.2/dolphin-plugins-26.04.2.tar.xz) = 338628 +TIMESTAMP = 1782826693 +SHA256 (KDE/release-service/26.04.3/dolphin-plugins-26.04.3.tar.xz) = 35fe9e822c6a61608ea194ec9b949b49c44b2b3b77a877454847a305d7963252 +SIZE (KDE/release-service/26.04.3/dolphin-plugins-26.04.3.tar.xz) = 338640 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 872cc8709e65..cc00905fa925 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478364 -SHA256 (KDE/release-service/26.04.2/kapptemplate-26.04.2.tar.xz) = fd0654f86bd5e8731e709b7c08716db40168dfd1d2b3c676e7a5fd091d6bae9e -SIZE (KDE/release-service/26.04.2/kapptemplate-26.04.2.tar.xz) = 481740 +TIMESTAMP = 1782826694 +SHA256 (KDE/release-service/26.04.3/kapptemplate-26.04.3.tar.xz) = e917a5e37e8c7b9283af30fcd017433a0966d9d4236e4021f817acd2723a5426 +SIZE (KDE/release-service/26.04.3/kapptemplate-26.04.3.tar.xz) = 481568 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index 137cd9967001..d96ab024c4db 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,68 +1,67 @@ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg share/icons/hicolor/128x128/apps/kapptemplate.png share/icons/hicolor/16x16/apps/kapptemplate.png share/icons/hicolor/22x22/apps/kapptemplate.png share/icons/hicolor/32x32/apps/kapptemplate.png share/icons/hicolor/48x48/apps/kapptemplate.png share/icons/hicolor/64x64/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks6-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks6.tar.bz2 share/locale/ar/LC_MESSAGES/kapptemplate.mo share/locale/ast/LC_MESSAGES/kapptemplate.mo -share/locale/bg/LC_MESSAGES/kapptemplate.mo share/locale/bs/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca@valencia/LC_MESSAGES/kapptemplate.mo share/locale/cs/LC_MESSAGES/kapptemplate.mo share/locale/da/LC_MESSAGES/kapptemplate.mo share/locale/de/LC_MESSAGES/kapptemplate.mo share/locale/el/LC_MESSAGES/kapptemplate.mo share/locale/en_GB/LC_MESSAGES/kapptemplate.mo share/locale/eo/LC_MESSAGES/kapptemplate.mo share/locale/es/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/eu/LC_MESSAGES/kapptemplate.mo share/locale/fi/LC_MESSAGES/kapptemplate.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo share/locale/he/LC_MESSAGES/kapptemplate.mo share/locale/hi/LC_MESSAGES/kapptemplate.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo share/locale/ia/LC_MESSAGES/kapptemplate.mo share/locale/it/LC_MESSAGES/kapptemplate.mo share/locale/ja/LC_MESSAGES/kapptemplate.mo share/locale/ka/LC_MESSAGES/kapptemplate.mo share/locale/kk/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/lt/LC_MESSAGES/kapptemplate.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo share/locale/mr/LC_MESSAGES/kapptemplate.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo share/locale/ru/LC_MESSAGES/kapptemplate.mo share/locale/sa/LC_MESSAGES/kapptemplate.mo share/locale/sk/LC_MESSAGES/kapptemplate.mo share/locale/sl/LC_MESSAGES/kapptemplate.mo share/locale/sq/LC_MESSAGES/kapptemplate.mo share/locale/sr/LC_MESSAGES/kapptemplate.mo share/locale/sr@ijekavian/LC_MESSAGES/kapptemplate.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kapptemplate.mo share/locale/sr@latin/LC_MESSAGES/kapptemplate.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo share/locale/th/LC_MESSAGES/kapptemplate.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo share/locale/ug/LC_MESSAGES/kapptemplate.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo share/metainfo/org.kde.kapptemplate.appdata.xml share/qlogging-categories6/kapptemplate.categories diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 2251a11ea9a5..0a4887009e36 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478365 -SHA256 (KDE/release-service/26.04.2/kcachegrind-26.04.2.tar.xz) = 89a4ee7ec8b0750067cc6e1826eab185cb97dd6b1b9ebcc04e5528b05e3b7078 -SIZE (KDE/release-service/26.04.2/kcachegrind-26.04.2.tar.xz) = 1006028 +TIMESTAMP = 1782826696 +SHA256 (KDE/release-service/26.04.3/kcachegrind-26.04.3.tar.xz) = 5a071482af4c999081eca0da798c457db33cfc791c133859e8c9877cebd22577 +SIZE (KDE/release-service/26.04.3/kcachegrind-26.04.3.tar.xz) = 1005580 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index c3b395808ebe..bd0b5efc8f1f 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,133 +1,131 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/128x128/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/ar/LC_MESSAGES/kcachegrind_qt.qm share/locale/ast/LC_MESSAGES/kcachegrind.mo share/locale/ast/LC_MESSAGES/kcachegrind_qt.qm share/locale/be/LC_MESSAGES/kcachegrind.mo -share/locale/bg/LC_MESSAGES/kcachegrind.mo -share/locale/bg/LC_MESSAGES/kcachegrind_qt.qm share/locale/br/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca/LC_MESSAGES/kcachegrind.mo share/locale/ca/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo share/locale/ca@valencia/LC_MESSAGES/kcachegrind_qt.qm share/locale/cs/LC_MESSAGES/kcachegrind.mo share/locale/cs/LC_MESSAGES/kcachegrind_qt.qm share/locale/cy/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind_qt.qm share/locale/de/LC_MESSAGES/kcachegrind.mo share/locale/de/LC_MESSAGES/kcachegrind_qt.qm share/locale/el/LC_MESSAGES/kcachegrind.mo share/locale/el/LC_MESSAGES/kcachegrind_qt.qm share/locale/en/LC_MESSAGES/kcachegrind_qt.qm share/locale/en_GB/LC_MESSAGES/kcachegrind.mo share/locale/en_GB/LC_MESSAGES/kcachegrind_qt.qm share/locale/eo/LC_MESSAGES/kcachegrind.mo share/locale/eo/LC_MESSAGES/kcachegrind_qt.qm share/locale/es/LC_MESSAGES/kcachegrind.mo share/locale/es/LC_MESSAGES/kcachegrind_qt.qm share/locale/et/LC_MESSAGES/kcachegrind.mo share/locale/et/LC_MESSAGES/kcachegrind_qt.qm share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/eu/LC_MESSAGES/kcachegrind_qt.qm share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind_qt.qm share/locale/fr/LC_MESSAGES/kcachegrind.mo share/locale/fr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ga/LC_MESSAGES/kcachegrind.mo share/locale/ga/LC_MESSAGES/kcachegrind_qt.qm share/locale/gl/LC_MESSAGES/kcachegrind.mo share/locale/gl/LC_MESSAGES/kcachegrind_qt.qm share/locale/he/LC_MESSAGES/kcachegrind.mo share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hi/LC_MESSAGES/kcachegrind_qt.qm share/locale/hne/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind_qt.qm share/locale/hu/LC_MESSAGES/kcachegrind.mo share/locale/hu/LC_MESSAGES/kcachegrind_qt.qm share/locale/ia/LC_MESSAGES/kcachegrind.mo share/locale/ia/LC_MESSAGES/kcachegrind_qt.qm share/locale/it/LC_MESSAGES/kcachegrind.mo share/locale/it/LC_MESSAGES/kcachegrind_qt.qm share/locale/ja/LC_MESSAGES/kcachegrind.mo share/locale/ja/LC_MESSAGES/kcachegrind_qt.qm share/locale/ka/LC_MESSAGES/kcachegrind.mo share/locale/ka/LC_MESSAGES/kcachegrind_qt.qm share/locale/kk/LC_MESSAGES/kcachegrind.mo share/locale/kk/LC_MESSAGES/kcachegrind_qt.qm share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind_qt.qm share/locale/lt/LC_MESSAGES/kcachegrind.mo share/locale/lt/LC_MESSAGES/kcachegrind_qt.qm share/locale/mai/LC_MESSAGES/kcachegrind.mo share/locale/mai/LC_MESSAGES/kcachegrind_qt.qm share/locale/mr/LC_MESSAGES/kcachegrind.mo share/locale/mr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ms/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind_qt.qm share/locale/nds/LC_MESSAGES/kcachegrind.mo share/locale/nds/LC_MESSAGES/kcachegrind_qt.qm share/locale/ne/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind_qt.qm share/locale/nn/LC_MESSAGES/kcachegrind.mo share/locale/nn/LC_MESSAGES/kcachegrind_qt.qm share/locale/oc/LC_MESSAGES/kcachegrind.mo share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt/LC_MESSAGES/kcachegrind.mo share/locale/pt/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo share/locale/pt_BR/LC_MESSAGES/kcachegrind_qt.qm share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind_qt.qm share/locale/sa/LC_MESSAGES/kcachegrind.mo share/locale/sa/LC_MESSAGES/kcachegrind_qt.qm share/locale/se/LC_MESSAGES/kcachegrind.mo share/locale/se/LC_MESSAGES/kcachegrind_qt.qm share/locale/sk/LC_MESSAGES/kcachegrind.mo share/locale/sk/LC_MESSAGES/kcachegrind_qt.qm share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sl/LC_MESSAGES/kcachegrind_qt.qm share/locale/sq/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind_qt.qm share/locale/ta/LC_MESSAGES/kcachegrind.mo share/locale/tg/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ug/LC_MESSAGES/kcachegrind.mo share/locale/ug/LC_MESSAGES/kcachegrind_qt.qm share/locale/uk/LC_MESSAGES/kcachegrind.mo share/locale/uk/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo share/locale/zh_CN/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo share/locale/zh_TW/LC_MESSAGES/kcachegrind_qt.qm share/metainfo/org.kde.kcachegrind.appdata.xml diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 26f6158fe931..4e5dc3531cee 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478366 -SHA256 (KDE/release-service/26.04.2/kde-dev-scripts-26.04.2.tar.xz) = b52be11b5e1749b3ec40a064ecdebd2682c0ab35ea34c9e1f14ffde08c93b8da -SIZE (KDE/release-service/26.04.2/kde-dev-scripts-26.04.2.tar.xz) = 377276 +TIMESTAMP = 1782826696 +SHA256 (KDE/release-service/26.04.3/kde-dev-scripts-26.04.3.tar.xz) = 4697a368b66c292cb7d1c8a91b8e851cdd0b61a4e64bbfab0471f75c518a4d1f +SIZE (KDE/release-service/26.04.3/kde-dev-scripts-26.04.3.tar.xz) = 377308 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 9feb55f6d250..b2174e1f796c 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478367 -SHA256 (KDE/release-service/26.04.2/kde-dev-utils-26.04.2.tar.xz) = f499a676b165eebcc38448ad85f819911c1f462d4f69bc1ea73438095a362010 -SIZE (KDE/release-service/26.04.2/kde-dev-utils-26.04.2.tar.xz) = 77800 +TIMESTAMP = 1782826698 +SHA256 (KDE/release-service/26.04.3/kde-dev-utils-26.04.3.tar.xz) = fd03e4a4e9749206053d81b71d3a3b47081df3c570cb8ec4f4bf18e8eb28a2d6 +SIZE (KDE/release-service/26.04.3/kde-dev-utils-26.04.3.tar.xz) = 77812 diff --git a/devel/kdesdk-kio/distinfo b/devel/kdesdk-kio/distinfo index 4f131c986ed0..b6ae3cb3f185 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478369 -SHA256 (KDE/release-service/26.04.2/kdesdk-kio-26.04.2.tar.xz) = 21802432767a46208544bf37a00811ce33463cf3a9378ca8ece0b88eaac67994 -SIZE (KDE/release-service/26.04.2/kdesdk-kio-26.04.2.tar.xz) = 43728 +TIMESTAMP = 1782826700 +SHA256 (KDE/release-service/26.04.3/kdesdk-kio-26.04.3.tar.xz) = e73cff30b504240ce0257326aa376ad7473cbc25f195bb92f383c78dd8ca8268 +SIZE (KDE/release-service/26.04.3/kdesdk-kio-26.04.3.tar.xz) = 43720 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index d0e2c4fee497..03a0ad05c47c 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478371 -SHA256 (KDE/release-service/26.04.2/kdesdk-thumbnailers-26.04.2.tar.xz) = 660e2cde3dc79275ab4d1276c52c47abe00525b5e567301ee958ad4c2dc3c537 -SIZE (KDE/release-service/26.04.2/kdesdk-thumbnailers-26.04.2.tar.xz) = 21000 +TIMESTAMP = 1782826702 +SHA256 (KDE/release-service/26.04.3/kdesdk-thumbnailers-26.04.3.tar.xz) = 2063c6df5e2dd216d244bd30e9eef7fc94fae97f0420ddc20e2ddaf958213ba7 +SIZE (KDE/release-service/26.04.3/kdesdk-thumbnailers-26.04.3.tar.xz) = 21004 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 096573f786d2..3385ac26b9e7 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478372 -SHA256 (KDE/release-service/26.04.2/kdev-php-26.04.2.tar.xz) = ad336937b6e148a848d5794ea300e7f28426cf35d0cea63f5a728c2b96ad98b9 -SIZE (KDE/release-service/26.04.2/kdev-php-26.04.2.tar.xz) = 1101176 +TIMESTAMP = 1782826703 +SHA256 (KDE/release-service/26.04.3/kdev-php-26.04.3.tar.xz) = d25d4ec3c20fa6d4569ab6f0beb6b18bd33b35914957348a1d5ea8e09f4a1693 +SIZE (KDE/release-service/26.04.3/kdev-php-26.04.3.tar.xz) = 1100960 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index d44b7dfb92b2..582e1f8b29ea 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478374 -SHA256 (KDE/release-service/26.04.2/kdev-python-26.04.2.tar.xz) = 002d538d62067891e7ba84c8d22eadbe2e769df3f9a3205be917c0681d5d55e0 -SIZE (KDE/release-service/26.04.2/kdev-python-26.04.2.tar.xz) = 1139856 +TIMESTAMP = 1782826705 +SHA256 (KDE/release-service/26.04.3/kdev-python-26.04.3.tar.xz) = 1ad26eccfd1cc28b4cf5ffb91b252739b1b954d9a989446e1e0809ecda8c5a52 +SIZE (KDE/release-service/26.04.3/kdev-python-26.04.3.tar.xz) = 1139680 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index fee4ec15d757..3efaf5b7dcf7 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478376 -SHA256 (KDE/release-service/26.04.2/kdevelop-26.04.2.tar.xz) = ed6a5c6d4b9a55b433a1a66db69704e31d742279c4e767d9d3e8c7de1a9c5f37 -SIZE (KDE/release-service/26.04.2/kdevelop-26.04.2.tar.xz) = 9048456 +TIMESTAMP = 1782826707 +SHA256 (KDE/release-service/26.04.3/kdevelop-26.04.3.tar.xz) = a940a83b0752578fb04b700b8d274044e23543a68850cbc448dbdcb874ae75f4 +SIZE (KDE/release-service/26.04.3/kdevelop-26.04.3.tar.xz) = 9031144 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index eb440177f2a7..9e1bede56883 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3562 +1,3497 @@ bin/kdev_dbus_socket_transformer bin/kdev_format_source bin/kdev_includepathsconverter bin/kdevelop bin/kdevelop! bin/kdevplatform_shell_environment.sh include/kdevelop/custom-definesandincludes/idefinesandincludesmanager.h include/kdevelop/kdevelop_version.h include/kdevelop/makebuilder/imakebuilder.h include/kdevelop/qmake/iqmakebuilder.h include/kdevplatform/config-kdevplatform.h include/kdevplatform/debugger/breakpoint/breakpoint.h include/kdevplatform/debugger/breakpoint/breakpointdetails.h include/kdevplatform/debugger/breakpoint/breakpointmodel.h include/kdevplatform/debugger/breakpoint/breakpointwidget.h include/kdevplatform/debugger/debuggerexport.h include/kdevplatform/debugger/framestack/framestackmodel.h include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h include/kdevplatform/debugger/interfaces/idebugsession.h include/kdevplatform/debugger/interfaces/iframestackmodel.h include/kdevplatform/debugger/interfaces/ivariablecontroller.h include/kdevplatform/debugger/util/pathmappings.h include/kdevplatform/debugger/util/treeitem.h include/kdevplatform/debugger/util/treemodel.h include/kdevplatform/debugger/util/treeview.h include/kdevplatform/debugger/variable/variablecollection.h include/kdevplatform/documentation/documentationexport.h include/kdevplatform/documentation/documentationfindwidget.h include/kdevplatform/documentation/standarddocumentationview.h include/kdevplatform/execute/iexecuteplugin.h include/kdevplatform/execute/iexecutepluginhelpers.h include/kdevplatform/executescript/iexecutescriptplugin.h include/kdevplatform/interfaces/configpage.h include/kdevplatform/interfaces/context.h include/kdevplatform/interfaces/contextmenuextension.h include/kdevplatform/interfaces/iassistant.h include/kdevplatform/interfaces/ibuddydocumentfinder.h include/kdevplatform/interfaces/icompletionsettings.h include/kdevplatform/interfaces/icore.h include/kdevplatform/interfaces/idebugcontroller.h include/kdevplatform/interfaces/idocument.h include/kdevplatform/interfaces/idocumentation.h include/kdevplatform/interfaces/idocumentationcontroller.h include/kdevplatform/interfaces/idocumentationprovider.h include/kdevplatform/interfaces/idocumentationproviderprovider.h include/kdevplatform/interfaces/idocumentcontroller.h include/kdevplatform/interfaces/ilanguagecheck.h include/kdevplatform/interfaces/ilanguagecheckprovider.h include/kdevplatform/interfaces/ilanguagecontroller.h include/kdevplatform/interfaces/ilaunchconfiguration.h include/kdevplatform/interfaces/ilauncher.h include/kdevplatform/interfaces/ilaunchmode.h include/kdevplatform/interfaces/interfacesexport.h include/kdevplatform/interfaces/ipartcontroller.h include/kdevplatform/interfaces/iplugin.h include/kdevplatform/interfaces/iplugincontroller.h include/kdevplatform/interfaces/ipluginversion.h include/kdevplatform/interfaces/iproblem.h include/kdevplatform/interfaces/iproject.h include/kdevplatform/interfaces/iprojectcontroller.h include/kdevplatform/interfaces/iprojectprovider.h include/kdevplatform/interfaces/iruncontroller.h include/kdevplatform/interfaces/iruntime.h include/kdevplatform/interfaces/iruntimecontroller.h include/kdevplatform/interfaces/iselectioncontroller.h include/kdevplatform/interfaces/isession.h include/kdevplatform/interfaces/isessionlock.h include/kdevplatform/interfaces/isourceformatter.h include/kdevplatform/interfaces/isourceformattercontroller.h include/kdevplatform/interfaces/istatus.h include/kdevplatform/interfaces/itemplateprovider.h include/kdevplatform/interfaces/itestcontroller.h include/kdevplatform/interfaces/itestsuite.h include/kdevplatform/interfaces/itoolviewactionlistener.h include/kdevplatform/interfaces/iuicontroller.h include/kdevplatform/interfaces/launchconfigurationpage.h include/kdevplatform/interfaces/launchconfigurationtype.h include/kdevplatform/kdevplatform_version.h include/kdevplatform/language/assistant/renameaction.h include/kdevplatform/language/assistant/renameassistant.h include/kdevplatform/language/assistant/staticassistant.h include/kdevplatform/language/assistant/staticassistantsmanager.h include/kdevplatform/language/backgroundparser/backgroundparser.h include/kdevplatform/language/backgroundparser/documentchangetracker.h include/kdevplatform/language/backgroundparser/parsejob.h include/kdevplatform/language/backgroundparser/parseprojectjob.h include/kdevplatform/language/backgroundparser/urlparselock.h include/kdevplatform/language/checks/controlflowgraph.h include/kdevplatform/language/checks/controlflownode.h include/kdevplatform/language/checks/dataaccess.h include/kdevplatform/language/checks/dataaccessrepository.h include/kdevplatform/language/classmodel/allclassesfolder.h include/kdevplatform/language/classmodel/classmodel.h include/kdevplatform/language/classmodel/classmodelnode.h include/kdevplatform/language/classmodel/classmodelnodescontroller.h include/kdevplatform/language/classmodel/documentclassesfolder.h include/kdevplatform/language/classmodel/projectfolder.h include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h include/kdevplatform/language/codecompletion/codecompletion.h include/kdevplatform/language/codecompletion/codecompletioncontext.h include/kdevplatform/language/codecompletion/codecompletionhelper.h include/kdevplatform/language/codecompletion/codecompletionitem.h include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h include/kdevplatform/language/codecompletion/codecompletionmodel.h include/kdevplatform/language/codecompletion/codecompletiontesthelper.h include/kdevplatform/language/codecompletion/codecompletionworker.h include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h include/kdevplatform/language/codegen/astchangeset.h include/kdevplatform/language/codegen/basicrefactoring.h include/kdevplatform/language/codegen/codedescription.h include/kdevplatform/language/codegen/coderepresentation.h include/kdevplatform/language/codegen/documentchangeset.h include/kdevplatform/language/codegen/duchainchangeset.h include/kdevplatform/language/codegen/sourcefiletemplate.h include/kdevplatform/language/codegen/templateclassgenerator.h include/kdevplatform/language/codegen/templateengine.h include/kdevplatform/language/codegen/templatepreviewicon.h include/kdevplatform/language/codegen/templaterenderer.h include/kdevplatform/language/codegen/templatesmodel.h include/kdevplatform/language/codegen/utilities.h include/kdevplatform/language/duchain/abstractfunctiondeclaration.h include/kdevplatform/language/duchain/aliasdeclaration.h include/kdevplatform/language/duchain/appendedlist.h include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h include/kdevplatform/language/duchain/builders/abstracttypebuilder.h include/kdevplatform/language/duchain/builders/abstractusebuilder.h include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h include/kdevplatform/language/duchain/classdeclaration.h include/kdevplatform/language/duchain/classfunctiondeclaration.h include/kdevplatform/language/duchain/classmemberdeclaration.h include/kdevplatform/language/duchain/classmemberdeclarationdata.h include/kdevplatform/language/duchain/codemodel.h include/kdevplatform/language/duchain/declaration.h include/kdevplatform/language/duchain/declarationdata.h include/kdevplatform/language/duchain/declarationid.h include/kdevplatform/language/duchain/definitions.h include/kdevplatform/language/duchain/duchain.h include/kdevplatform/language/duchain/duchainbase.h include/kdevplatform/language/duchain/duchaindumper.h include/kdevplatform/language/duchain/duchainlock.h include/kdevplatform/language/duchain/duchainpointer.h include/kdevplatform/language/duchain/duchainregister.h include/kdevplatform/language/duchain/duchainutils.h include/kdevplatform/language/duchain/ducontext.h include/kdevplatform/language/duchain/ducontextdata.h include/kdevplatform/language/duchain/dumpdotgraph.h include/kdevplatform/language/duchain/forwarddeclaration.h include/kdevplatform/language/duchain/functiondeclaration.h include/kdevplatform/language/duchain/functiondefinition.h include/kdevplatform/language/duchain/identifier.h include/kdevplatform/language/duchain/indexeddeclaration.h include/kdevplatform/language/duchain/indexedducontext.h include/kdevplatform/language/duchain/indexedtopducontext.h include/kdevplatform/language/duchain/instantiationinformation.h include/kdevplatform/language/duchain/localindexeddeclaration.h include/kdevplatform/language/duchain/localindexedducontext.h include/kdevplatform/language/duchain/namespacealiasdeclaration.h include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h include/kdevplatform/language/duchain/navigation/navigationaction.h include/kdevplatform/language/duchain/navigation/usescollector.h include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h include/kdevplatform/language/duchain/navigation/useswidget.h include/kdevplatform/language/duchain/parsingenvironment.h include/kdevplatform/language/duchain/persistentsymboltable.h include/kdevplatform/language/duchain/problem.h include/kdevplatform/language/duchain/specializationstore.h include/kdevplatform/language/duchain/stringhelpers.h include/kdevplatform/language/duchain/topducontext.h include/kdevplatform/language/duchain/topducontextdata.h include/kdevplatform/language/duchain/topducontextutils.h include/kdevplatform/language/duchain/types/abstracttype.h include/kdevplatform/language/duchain/types/alltypes.h include/kdevplatform/language/duchain/types/arraytype.h include/kdevplatform/language/duchain/types/constantintegraltype.h include/kdevplatform/language/duchain/types/containertypes.h include/kdevplatform/language/duchain/types/delayedtype.h include/kdevplatform/language/duchain/types/enumerationtype.h include/kdevplatform/language/duchain/types/enumeratortype.h include/kdevplatform/language/duchain/types/functiontype.h include/kdevplatform/language/duchain/types/identifiedtype.h include/kdevplatform/language/duchain/types/indexedtype.h include/kdevplatform/language/duchain/types/integraltype.h include/kdevplatform/language/duchain/types/pointertype.h include/kdevplatform/language/duchain/types/referencetype.h include/kdevplatform/language/duchain/types/structuretype.h include/kdevplatform/language/duchain/types/typealiastype.h include/kdevplatform/language/duchain/types/typepointer.h include/kdevplatform/language/duchain/types/typeregister.h include/kdevplatform/language/duchain/types/typerepository.h include/kdevplatform/language/duchain/types/typesystem.h include/kdevplatform/language/duchain/types/typesystemdata.h include/kdevplatform/language/duchain/types/typeutils.h include/kdevplatform/language/duchain/types/unsuretype.h include/kdevplatform/language/duchain/use.h include/kdevplatform/language/editor/cursorinrevision.h include/kdevplatform/language/editor/documentcursor.h include/kdevplatform/language/editor/documentrange.h include/kdevplatform/language/editor/modificationrevision.h include/kdevplatform/language/editor/modificationrevisionset.h include/kdevplatform/language/editor/persistentmovingrange.h include/kdevplatform/language/editor/rangeinrevision.h include/kdevplatform/language/highlighting/codehighlighting.h include/kdevplatform/language/highlighting/colorcache.h include/kdevplatform/language/highlighting/configurablecolors.h include/kdevplatform/language/interfaces/abbreviations.h include/kdevplatform/language/interfaces/codecontext.h include/kdevplatform/language/interfaces/editorcontext.h include/kdevplatform/language/interfaces/iastcontainer.h include/kdevplatform/language/interfaces/icodehighlighting.h include/kdevplatform/language/interfaces/icontextbrowser.h include/kdevplatform/language/interfaces/icreateclasshelper.h include/kdevplatform/language/interfaces/ilanguagesupport.h include/kdevplatform/language/interfaces/iquickopen.h include/kdevplatform/language/interfaces/quickopendataprovider.h include/kdevplatform/language/interfaces/quickopenfilter.h include/kdevplatform/language/languageexport.h include/kdevplatform/language/util/basicsetrepository.h include/kdevplatform/language/util/debuglanguageparserhelper.h include/kdevplatform/language/util/includeitem.h include/kdevplatform/language/util/kdevhash.h include/kdevplatform/language/util/navigationtooltip.h include/kdevplatform/language/util/setrepository.h include/kdevplatform/openwith/iopenwith.h include/kdevplatform/outputview/filtereditem.h include/kdevplatform/outputview/ifilterstrategy.h include/kdevplatform/outputview/ioutputview.h include/kdevplatform/outputview/ioutputviewmodel.h include/kdevplatform/outputview/outputdelegate.h include/kdevplatform/outputview/outputexecutejob.h include/kdevplatform/outputview/outputfilteringstrategies.h include/kdevplatform/outputview/outputjob.h include/kdevplatform/outputview/outputmodel.h include/kdevplatform/outputview/outputviewexport.h include/kdevplatform/project/abstractfilemanagerplugin.h include/kdevplatform/project/builderjob.h include/kdevplatform/project/helper.h include/kdevplatform/project/importprojectjob.h include/kdevplatform/project/interfaces/ibuildsystemmanager.h include/kdevplatform/project/interfaces/iprojectbuilder.h include/kdevplatform/project/interfaces/iprojectfilemanager.h include/kdevplatform/project/interfaces/iprojectfilter.h include/kdevplatform/project/interfaces/iprojectfilterprovider.h include/kdevplatform/project/projectbuildsetmodel.h include/kdevplatform/project/projectchangesmodel.h include/kdevplatform/project/projectconfigpage.h include/kdevplatform/project/projectconfigskeleton.h include/kdevplatform/project/projectexport.h include/kdevplatform/project/projectfiltermanager.h include/kdevplatform/project/projectitemlineedit.h include/kdevplatform/project/projectmodel.h include/kdevplatform/project/projectutils.h include/kdevplatform/project/widgets/dependencieswidget.h include/kdevplatform/serialization/abstractitemrepository.h include/kdevplatform/serialization/indexedstring.h include/kdevplatform/serialization/indexedstringview.h include/kdevplatform/serialization/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryreferencecounting.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/core.h include/kdevplatform/shell/documentcontroller.h include/kdevplatform/shell/environmentconfigurebutton.h include/kdevplatform/shell/filteredproblemstore.h include/kdevplatform/shell/languagecontroller.h include/kdevplatform/shell/launchconfiguration.h include/kdevplatform/shell/mainwindow.h include/kdevplatform/shell/partcontroller.h include/kdevplatform/shell/partdocument.h include/kdevplatform/shell/plugincontroller.h include/kdevplatform/shell/problem.h include/kdevplatform/shell/problemconstants.h include/kdevplatform/shell/problemmodel.h include/kdevplatform/shell/problemmodelset.h include/kdevplatform/shell/problemstore.h include/kdevplatform/shell/project.h include/kdevplatform/shell/projectcontroller.h include/kdevplatform/shell/runcontroller.h include/kdevplatform/shell/selectioncontroller.h include/kdevplatform/shell/session.h include/kdevplatform/shell/sessioncontroller.h include/kdevplatform/shell/sessionlock.h include/kdevplatform/shell/shellexport.h include/kdevplatform/shell/shellextension.h include/kdevplatform/shell/sourceformatterconfig.h include/kdevplatform/shell/sourceformattercontroller.h include/kdevplatform/shell/sourceformatterselectionedit.h include/kdevplatform/shell/textdocument.h include/kdevplatform/shell/uicontroller.h include/kdevplatform/sublime/area.h include/kdevplatform/sublime/areaindex.h include/kdevplatform/sublime/areawalkers.h include/kdevplatform/sublime/container.h include/kdevplatform/sublime/controller.h include/kdevplatform/sublime/document.h include/kdevplatform/sublime/mainwindow.h include/kdevplatform/sublime/mainwindowoperator.h include/kdevplatform/sublime/message.h include/kdevplatform/sublime/sublimedefs.h include/kdevplatform/sublime/sublimeexport.h include/kdevplatform/sublime/tooldocument.h include/kdevplatform/sublime/urldocument.h include/kdevplatform/sublime/view.h include/kdevplatform/sublime/viewbarcontainer.h include/kdevplatform/util/activetooltip.h include/kdevplatform/util/algorithm.h include/kdevplatform/util/autoorientedsplitter.h include/kdevplatform/util/commandexecutor.h include/kdevplatform/util/convenientfreelist.h include/kdevplatform/util/embeddedfreetree.h include/kdevplatform/util/environmentprofilelist.h include/kdevplatform/util/environmentselectionwidget.h include/kdevplatform/util/executecompositejob.h include/kdevplatform/util/filesystemhelpers.h include/kdevplatform/util/focusedtreeview.h include/kdevplatform/util/foregroundlock.h include/kdevplatform/util/formattinghelpers.h include/kdevplatform/util/jobstatus.h include/kdevplatform/util/kdevcoreaddons/kcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksequentialcompoundjob.h include/kdevplatform/util/kdevcoreaddons/ksimplesequentialcompoundjob.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/namespacedoperatorbitwiseorworkaroundqtbug.h include/kdevplatform/util/objectlist.h include/kdevplatform/util/owningrawpointercontainer.h include/kdevplatform/util/path.h include/kdevplatform/util/placeholderitemproxymodel.h include/kdevplatform/util/processlinemaker.h include/kdevplatform/util/projecttestjob.h include/kdevplatform/util/pushvalue.h include/kdevplatform/util/scopedincrementor.h include/kdevplatform/util/simpletoolviewfactory.h include/kdevplatform/util/stack.h include/kdevplatform/util/stringviewhelpers.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/toggleonlybool.h include/kdevplatform/util/utilexport.h include/kdevplatform/util/widgetcolorizer.h include/kdevplatform/util/wildcardhelpers.h include/kdevplatform/util/zoomcontroller.h include/kdevplatform/vcs/dvcs/dvcsevent.h include/kdevplatform/vcs/dvcs/dvcsjob.h include/kdevplatform/vcs/dvcs/dvcsplugin.h include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h include/kdevplatform/vcs/interfaces/ipatchdocument.h include/kdevplatform/vcs/interfaces/ipatchsource.h include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h include/kdevplatform/vcs/models/brancheslistmodel.h include/kdevplatform/vcs/models/vcsannotationmodel.h include/kdevplatform/vcs/models/vcseventmodel.h include/kdevplatform/vcs/models/vcsfilechangesmodel.h include/kdevplatform/vcs/models/vcsitemeventmodel.h include/kdevplatform/vcs/vcsannotation.h include/kdevplatform/vcs/vcsdiff.h include/kdevplatform/vcs/vcsevent.h include/kdevplatform/vcs/vcsexport.h include/kdevplatform/vcs/vcsjob.h include/kdevplatform/vcs/vcslocation.h include/kdevplatform/vcs/vcspluginhelper.h include/kdevplatform/vcs/vcsrevision.h include/kdevplatform/vcs/vcsstatusinfo.h include/kdevplatform/vcs/widgets/standardvcslocationwidget.h include/kdevplatform/vcs/widgets/vcscommitdialog.h include/kdevplatform/vcs/widgets/vcsdiffwidget.h include/kdevplatform/vcs/widgets/vcseventwidget.h include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h include/kdevplatform/vcs/widgets/vcslocationwidget.h lib/cmake/KDevPlatform/KDevPlatformConfig.cmake lib/cmake/KDevPlatform/KDevPlatformConfigVersion.cmake lib/cmake/KDevPlatform/KDevPlatformMacros.cmake lib/cmake/KDevPlatform/KDevPlatformTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPlatform/KDevPlatformTargets.cmake lib/cmake/KDevelop/KDevelopConfig.cmake lib/cmake/KDevelop/KDevelopConfigVersion.cmake lib/cmake/KDevelop/KDevelopTargets.cmake lib/libKDevCMakeCommon.so.%%PLATFORM_VER%% lib/libKDevClangPrivate.so.%%PLATFORM_VER%% lib/libKDevCompileAnalyzerCommon.so.%%PLATFORM_VER%% lib/libKDevPlatformDebugger.so lib/libKDevPlatformDebugger.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDebugger.so.%%PLATFORM_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%PLATFORM_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%PLATFORM_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformLanguage.so.%%PLATFORM_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformOutputView.so.%%PLATFORM_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformProject.so.%%PLATFORM_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSerialization.so.%%PLATFORM_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformShell.so.%%PLATFORM_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformSublime.so.%%PLATFORM_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformUtil.so.%%PLATFORM_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SHLIB_VER_LONG%% lib/libKDevPlatformVcs.so.%%PLATFORM_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeDocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomBuildSystem.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevCustomMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevDefinesAndIncludesManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevGenericManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevManPage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevMesonManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevNinjaBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevOutlineView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectFilter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevProjectManagerView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeBuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevQMakeManager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevStandardOutputView.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/KDevWelcomePage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevandroid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevappwizard.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevastyle.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevbazaar.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangsupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangtidy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclassbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclazy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcodeutils.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcontextbrowser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcppcheck.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcraft.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocker.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentswitcher.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecute.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecuteplasmoid.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecutescript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexternalscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfilemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfiletemplates.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevflatpak.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgdb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevghprovider.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgit.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgrepview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevheaptrack.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevkonsoleview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevlldb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpatchreview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevperforce.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevproblemreporter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsubversion.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevswitchtobuddy.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevtestview.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevvcschangesviewplugin.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/scratchpad.so %%QT_PLUGINDIR%%/kf6/krunner/kdevelopsessions.so %%QT_PLUGINDIR%%/kf6/ktexttemplate/kdev_filters.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/libkdevelopsessionsplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/qmldir share/applications/org.kde.kdevelop.desktop share/applications/org.kde.kdevelop_bzr.desktop share/applications/org.kde.kdevelop_git.desktop share/applications/org.kde.kdevelop_kdev4.desktop share/applications/org.kde.kdevelop_ps.desktop share/applications/org.kde.kdevelop_svn.desktop share/doc/HTML/ca/kdevelop/index.cache.bz2 share/doc/HTML/ca/kdevelop/index.docbook share/doc/HTML/ca/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/Icon-folder.png share/doc/HTML/en/kdevelop/Icon-list-add.png share/doc/HTML/en/kdevelop/Icon-list-remove.png share/doc/HTML/en/kdevelop/index.cache.bz2 share/doc/HTML/en/kdevelop/index.docbook share/doc/HTML/en/kdevelop/kdevelop-10.png share/doc/HTML/en/kdevelop/kdevelop-11.png share/doc/HTML/en/kdevelop/kdevelop-12.png share/doc/HTML/en/kdevelop/kdevelop-13.png share/doc/HTML/en/kdevelop/kdevelop-14.png share/doc/HTML/en/kdevelop/kdevelop-15.png share/doc/HTML/en/kdevelop/kdevelop-16.png share/doc/HTML/en/kdevelop/kdevelop-17.png share/doc/HTML/en/kdevelop/kdevelop-18.png share/doc/HTML/en/kdevelop/kdevelop-19.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-20.png share/doc/HTML/en/kdevelop/kdevelop-23.png share/doc/HTML/en/kdevelop/kdevelop-24.png share/doc/HTML/en/kdevelop/kdevelop-25.png share/doc/HTML/en/kdevelop/kdevelop-26.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-4.png share/doc/HTML/en/kdevelop/kdevelop-40.png share/doc/HTML/en/kdevelop/kdevelop-41.png share/doc/HTML/en/kdevelop/kdevelop-42.png share/doc/HTML/en/kdevelop/kdevelop-43.png share/doc/HTML/en/kdevelop/kdevelop-5.png share/doc/HTML/en/kdevelop/kdevelop-6.png share/doc/HTML/en/kdevelop/kdevelop-7.png share/doc/HTML/en/kdevelop/kdevelop-8.png share/doc/HTML/en/kdevelop/kdevelop-9.png share/doc/HTML/en/kdevelop/kdevelop-project-dialog.png share/doc/HTML/en/kdevelop/kdevelop-template-inheritance.png share/doc/HTML/en/kdevelop/kdevelop-template-manager.png share/doc/HTML/en/kdevelop/kdevelop-template-members.png share/doc/HTML/en/kdevelop/kdevelop-template-result.png share/doc/HTML/en/kdevelop/kdevelop-template-selection.png share/doc/HTML/en/kdevelop/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/es/kdevelop/index.cache.bz2 share/doc/HTML/es/kdevelop/index.docbook share/doc/HTML/it/kdevelop/index.cache.bz2 share/doc/HTML/it/kdevelop/index.docbook share/doc/HTML/nl/kdevelop/index.cache.bz2 share/doc/HTML/nl/kdevelop/index.docbook share/doc/HTML/pt/kdevelop/index.cache.bz2 share/doc/HTML/pt/kdevelop/index.docbook share/doc/HTML/pt_BR/kdevelop/index.cache.bz2 share/doc/HTML/pt_BR/kdevelop/index.docbook share/doc/HTML/ru/kdevelop/index.cache.bz2 share/doc/HTML/ru/kdevelop/index.docbook share/doc/HTML/sl/kdevelop/index.cache.bz2 share/doc/HTML/sl/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/tr/kdevelop/index.cache.bz2 share/doc/HTML/tr/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png share/icons/hicolor/16x16/apps/kdevsubversion.png share/icons/hicolor/22x22/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/kdevsubversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/kdevsubversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/kdevsubversion.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt6quick_app.tar.bz2 share/kdevappwizard/templates/cmake_qt6widgetsapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 share/kdevappwizard/templates/meson_plainc.tar.bz2 share/kdevappwizard/templates/meson_plaincpp.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 share/kdevclangsupport/gccCompatibility/additional_floating_types.h share/kdevclangsupport/wrappedQtHeaders/QtCore/qobjectdefs.h share/kdevcodegen/licenses/Apache v2 share/kdevcodegen/licenses/BSD share/kdevcodegen/licenses/Boost share/kdevcodegen/licenses/GPL v2 share/kdevcodegen/licenses/GPL v2+ (KDE) share/kdevcodegen/licenses/GPL v3 share/kdevcodegen/licenses/LGPL v2 share/kdevcodegen/licenses/LGPL v2+ (KDE) share/kdevcodegen/licenses/LGPL v3 share/kdevcodegen/licenses/MIT X11 share/kdevcodegen/licenses/Mozilla v1.1 share/kdevcodegen/templates/arguments_names.txt share/kdevcodegen/templates/arguments_types_names.txt share/kdevcodegen/templates/class_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_declaration_cpp.txt share/kdevcodegen/templates/class_method_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_method_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_definition_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_cpp.txt share/kdevcodegen/templates/class_property_setter_definition_cpp.txt share/kdevcodegen/templates/class_property_signal_declaration_cpp.txt share/kdevcodegen/templates/class_qproperty_declaration_cpp.txt share/kdevcodegen/templates/cpp_header.h share/kdevcodegen/templates/cpp_header_onlyfunctions.h share/kdevcodegen/templates/cpp_implementation.cpp share/kdevcodegen/templates/cpp_qobject_header.h share/kdevcodegen/templates/cpp_qobject_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_header.h share/kdevcodegen/templates/cpp_qobject_pimpl_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_p_header.h share/kdevcodegen/templates/include_guard_cpp.txt share/kdevcodegen/templates/license_header_cpp.txt share/kdevcodegen/templates/method_declaration_cpp.txt share/kdevcodegen/templates/method_definition_cpp.txt share/kdevcodegen/templates/namespace_close_cpp.txt share/kdevcodegen/templates/namespace_open_cpp.txt share/kdevcodegen/templates/namespace_use_cpp.txt share/kdevcodeutils/templates/doxygen_cpp.txt share/kdevcodeutils/templates/phpdoc_php.txt share/kdevcodeutils/templates/rest_python.txt %%DATADIR%%/icons/hicolor/16x16/actions/classnew.png %%DATADIR%%/icons/hicolor/16x16/actions/dirsync.png %%DATADIR%%/icons/hicolor/16x16/actions/methodnew.png %%DATADIR%%/icons/hicolor/16x16/actions/variablenew.png %%DATADIR%%/icons/hicolor/22x22/actions/classnew.png %%DATADIR%%/icons/hicolor/32x32/actions/classnew.png %%DATADIR%%/kdevflatpak/replicate.sh %%DATADIR%%/pics/CTchildren.png %%DATADIR%%/pics/CTclients.png %%DATADIR%%/pics/CTdisconnected_parents.png %%DATADIR%%/pics/CTparents.png %%DATADIR%%/pics/CTsuppliers.png %%DATADIR%%/pics/CTvirtuals.png %%DATADIR%%/pics/CVclass.png %%DATADIR%%/pics/CVglobal_meth.png %%DATADIR%%/pics/CVglobal_var.png %%DATADIR%%/pics/CVnamespace.png %%DATADIR%%/pics/CVpackage_meth.png %%DATADIR%%/pics/CVpackage_var.png %%DATADIR%%/pics/CVprivate_meth.png %%DATADIR%%/pics/CVprivate_signal.png %%DATADIR%%/pics/CVprivate_slot.png %%DATADIR%%/pics/CVprivate_var.png %%DATADIR%%/pics/CVprotected_meth.png %%DATADIR%%/pics/CVprotected_signal.png %%DATADIR%%/pics/CVprotected_slot.png %%DATADIR%%/pics/CVprotected_var.png %%DATADIR%%/pics/CVpublic_meth.png %%DATADIR%%/pics/CVpublic_signal.png %%DATADIR%%/pics/CVpublic_slot.png %%DATADIR%%/pics/CVpublic_var.png %%DATADIR%%/pics/CVstruct.png %%DATADIR%%/pics/CVtypedef.png %%DATADIR%%/pics/code-class.png %%DATADIR%%/pics/code-function.png %%DATADIR%%/pics/enum.png %%DATADIR%%/pics/field.png %%DATADIR%%/pics/namespace.png %%DATADIR%%/pics/private_class.png %%DATADIR%%/pics/private_enum.png %%DATADIR%%/pics/private_field.png %%DATADIR%%/pics/private_function.png %%DATADIR%%/pics/private_struct.png %%DATADIR%%/pics/private_union.png %%DATADIR%%/pics/protected_class.png %%DATADIR%%/pics/protected_enum.png %%DATADIR%%/pics/protected_field.png %%DATADIR%%/pics/protected_function.png %%DATADIR%%/pics/protected_struct.png %%DATADIR%%/pics/protected_union.png %%DATADIR%%/pics/signal.png %%DATADIR%%/pics/slot.png %%DATADIR%%/pics/struct.png %%DATADIR%%/pics/typedef.png %%DATADIR%%/pics/union.png %%DATADIR%%/shortcuts/QtCreator share/kdevfiletemplates/templates/c_gobject.tar.bz2 share/kdevfiletemplates/templates/c_gobject_private.tar.bz2 share/kdevfiletemplates/templates/c_gobject_properties.tar.bz2 share/kdevfiletemplates/templates/cmake_module.tar.bz2 share/kdevfiletemplates/templates/cpp_basic.tar.bz2 share/kdevfiletemplates/templates/cpp_cpputest.tar.bz2 share/kdevfiletemplates/templates/cpp_gtest.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib_kdevelop.tar.bz2 share/kdevfiletemplates/templates/dockerfile-template.tar.bz2 share/kdevfiletemplates/templates/flatpak-template.tar.bz2 share/kdevfiletemplates/templates/php_phpunit.tar.bz2 share/kdevfiletemplates/templates/private_pointer.tar.bz2 share/kdevfiletemplates/templates/python_basic.tar.bz2 share/kdevfiletemplates/templates/python_pyunit.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel_pimpl.tar.bz2 share/kdevfiletemplates/templates/qdialog.tar.bz2 share/kdevfiletemplates/templates/qdialog_pimpl.tar.bz2 share/kdevfiletemplates/templates/qobject.tar.bz2 share/kdevfiletemplates/templates/qobject_pimpl.tar.bz2 share/kdevfiletemplates/templates/qt_interface.tar.bz2 share/kdevfiletemplates/templates/qt_qrc_file.tar.bz2 share/kdevfiletemplates/templates/qt_shared.tar.bz2 share/kdevfiletemplates/templates/qt_widget.tar.bz2 share/kdevfiletemplates/templates/qwidget_pimpl.tar.bz2 share/kdevgdb/printers/gdbinit share/kdevgdb/printers/helper.py share/kdevgdb/printers/kde.py share/kdevgdb/printers/qt.py share/kdevgdb/printers/qtcreator_debugger/README share/kdevgdb/printers/qtcreator_debugger/__init__.py share/kdevgdb/printers/qtcreator_debugger/dumper.py share/kdevgdb/printers/qtcreator_debugger/gdbbridge.py share/kdevgdb/printers/qtcreator_debugger/qttypes.py share/kdevlldb/formatters/all.py share/kdevlldb/formatters/helpers.py share/kdevlldb/formatters/kde.py share/kdevlldb/formatters/qt.py share/kdevmanpage/manpagedocumentation.css share/kdevplatform/shellutils/.zshrc share/knotifications6/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevandroid.mo share/locale/ar/LC_MESSAGES/kdevappwizard.mo share/locale/ar/LC_MESSAGES/kdevastyle.mo share/locale/ar/LC_MESSAGES/kdevbazaar.mo share/locale/ar/LC_MESSAGES/kdevclang.mo share/locale/ar/LC_MESSAGES/kdevclangtidy.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevclazy.mo share/locale/ar/LC_MESSAGES/kdevcmake.mo share/locale/ar/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevcodeutils.mo share/locale/ar/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ar/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ar/LC_MESSAGES/kdevcppcheck.mo share/locale/ar/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ar/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ar/LC_MESSAGES/kdevcustommake.mo share/locale/ar/LC_MESSAGES/kdevcustomscript.mo share/locale/ar/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ar/LC_MESSAGES/kdevdocker.mo share/locale/ar/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ar/LC_MESSAGES/kdevdocumentview.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecute.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevexecutescript.mo share/locale/ar/LC_MESSAGES/kdevexternalscript.mo share/locale/ar/LC_MESSAGES/kdevfilemanager.mo share/locale/ar/LC_MESSAGES/kdevfiletemplates.mo share/locale/ar/LC_MESSAGES/kdevflatpak.mo share/locale/ar/LC_MESSAGES/kdevgdb.mo share/locale/ar/LC_MESSAGES/kdevghprovider.mo share/locale/ar/LC_MESSAGES/kdevgit.mo share/locale/ar/LC_MESSAGES/kdevgrepview.mo share/locale/ar/LC_MESSAGES/kdevheaptrack.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevlldb.mo share/locale/ar/LC_MESSAGES/kdevmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevmanpage.mo share/locale/ar/LC_MESSAGES/kdevmesonmanager.mo share/locale/ar/LC_MESSAGES/kdevninja.mo share/locale/ar/LC_MESSAGES/kdevokteta.mo share/locale/ar/LC_MESSAGES/kdevopenwith.mo share/locale/ar/LC_MESSAGES/kdevoutlineview.mo share/locale/ar/LC_MESSAGES/kdevpatchreview.mo share/locale/ar/LC_MESSAGES/kdevperforce.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevproblemreporter.mo share/locale/ar/LC_MESSAGES/kdevprojectfilter.mo share/locale/ar/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ar/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ar/LC_MESSAGES/kdevqmakemanager.mo share/locale/ar/LC_MESSAGES/kdevqmljs.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevquickopen.mo share/locale/ar/LC_MESSAGES/kdevscratchpad.mo share/locale/ar/LC_MESSAGES/kdevsourceformatter.mo share/locale/ar/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ar/LC_MESSAGES/kdevsubversion.mo share/locale/ar/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ar/LC_MESSAGES/kdevtestview.mo share/locale/ar/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/ar/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ar/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo -share/locale/bg/LC_MESSAGES/kdevandroid.mo -share/locale/bg/LC_MESSAGES/kdevappwizard.mo -share/locale/bg/LC_MESSAGES/kdevastyle.mo -share/locale/bg/LC_MESSAGES/kdevbazaar.mo -share/locale/bg/LC_MESSAGES/kdevclang.mo -share/locale/bg/LC_MESSAGES/kdevclangtidy.mo -share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo -share/locale/bg/LC_MESSAGES/kdevclazy.mo -share/locale/bg/LC_MESSAGES/kdevcmake.mo -share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo -share/locale/bg/LC_MESSAGES/kdevcodeutils.mo -share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo -share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo -share/locale/bg/LC_MESSAGES/kdevcppcheck.mo -share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo -share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo -share/locale/bg/LC_MESSAGES/kdevcustommake.mo -share/locale/bg/LC_MESSAGES/kdevcustomscript.mo -share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo -share/locale/bg/LC_MESSAGES/kdevdocker.mo -share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo -share/locale/bg/LC_MESSAGES/kdevdocumentview.mo -share/locale/bg/LC_MESSAGES/kdevelop.mo -share/locale/bg/LC_MESSAGES/kdevexecute.mo -share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo -share/locale/bg/LC_MESSAGES/kdevexecutescript.mo -share/locale/bg/LC_MESSAGES/kdevexternalscript.mo -share/locale/bg/LC_MESSAGES/kdevfilemanager.mo -share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo -share/locale/bg/LC_MESSAGES/kdevflatpak.mo -share/locale/bg/LC_MESSAGES/kdevgdb.mo -share/locale/bg/LC_MESSAGES/kdevghprovider.mo -share/locale/bg/LC_MESSAGES/kdevgit.mo -share/locale/bg/LC_MESSAGES/kdevgrepview.mo -share/locale/bg/LC_MESSAGES/kdevheaptrack.mo -share/locale/bg/LC_MESSAGES/kdevkonsole.mo -share/locale/bg/LC_MESSAGES/kdevlldb.mo -share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo -share/locale/bg/LC_MESSAGES/kdevmanpage.mo -share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo -share/locale/bg/LC_MESSAGES/kdevninja.mo -share/locale/bg/LC_MESSAGES/kdevokteta.mo -share/locale/bg/LC_MESSAGES/kdevopenwith.mo -share/locale/bg/LC_MESSAGES/kdevoutlineview.mo -share/locale/bg/LC_MESSAGES/kdevpatchreview.mo -share/locale/bg/LC_MESSAGES/kdevperforce.mo -share/locale/bg/LC_MESSAGES/kdevplatform.mo -share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo -share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo -share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo -share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo -share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo -share/locale/bg/LC_MESSAGES/kdevqmljs.mo -share/locale/bg/LC_MESSAGES/kdevqthelp.mo -share/locale/bg/LC_MESSAGES/kdevquickopen.mo -share/locale/bg/LC_MESSAGES/kdevscratchpad.mo -share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo -share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo -share/locale/bg/LC_MESSAGES/kdevsubversion.mo -share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo -share/locale/bg/LC_MESSAGES/kdevtestview.mo -share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo -share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo -share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo -share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevfiletemplates.mo share/locale/el/LC_MESSAGES/kdevflatpak.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevghprovider.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevheaptrack.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevlldb.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevmesonmanager.mo share/locale/el/LC_MESSAGES/kdevninja.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevoutlineview.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevperforce.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectfilter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqmljs.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevscratchpad.mo share/locale/el/LC_MESSAGES/kdevsourceformatter.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/kdevwelcomepage.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevandroid.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevastyle.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclang.mo share/locale/eo/LC_MESSAGES/kdevclangtidy.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevclazy.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcodeutils.mo share/locale/eo/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcppcheck.mo share/locale/eo/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/eo/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevcustomscript.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocker.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevfiletemplates.mo share/locale/eo/LC_MESSAGES/kdevflatpak.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevghprovider.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevheaptrack.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevlldb.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevmanpage.mo share/locale/eo/LC_MESSAGES/kdevmesonmanager.mo share/locale/eo/LC_MESSAGES/kdevninja.mo share/locale/eo/LC_MESSAGES/kdevokteta.mo share/locale/eo/LC_MESSAGES/kdevopenwith.mo share/locale/eo/LC_MESSAGES/kdevoutlineview.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevperforce.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectfilter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqmljs.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevscratchpad.mo share/locale/eo/LC_MESSAGES/kdevsourceformatter.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/eo/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eo/LC_MESSAGES/kdevtestview.mo share/locale/eo/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eo/LC_MESSAGES/kdevwelcomepage.mo share/locale/eo/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevbazaar.mo share/locale/eu/LC_MESSAGES/kdevclassbrowser.mo share/locale/eu/LC_MESSAGES/kdevcodeutils.mo share/locale/eu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eu/LC_MESSAGES/kdevcustommake.mo share/locale/eu/LC_MESSAGES/kdevcustomscript.mo share/locale/eu/LC_MESSAGES/kdevdocker.mo share/locale/eu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eu/LC_MESSAGES/kdevdocumentview.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/eu/LC_MESSAGES/kdevfilemanager.mo share/locale/eu/LC_MESSAGES/kdevflatpak.mo share/locale/eu/LC_MESSAGES/kdevgit.mo share/locale/eu/LC_MESSAGES/kdevgrepview.mo share/locale/eu/LC_MESSAGES/kdevkonsole.mo share/locale/eu/LC_MESSAGES/kdevmanpage.mo share/locale/eu/LC_MESSAGES/kdevninja.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevopenwith.mo share/locale/eu/LC_MESSAGES/kdevoutlineview.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/eu/LC_MESSAGES/kdevprojectfilter.mo share/locale/eu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eu/LC_MESSAGES/kdevqthelp.mo share/locale/eu/LC_MESSAGES/kdevsourceformatter.mo share/locale/eu/LC_MESSAGES/kdevsubversion.mo share/locale/eu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/eu/LC_MESSAGES/kdevtestview.mo share/locale/eu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/eu/LC_MESSAGES/kdevwelcomepage.mo share/locale/eu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcppcheck.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocker.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevheaptrack.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevandroid.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevastyle.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclang.mo share/locale/ga/LC_MESSAGES/kdevclangtidy.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevclazy.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcppcheck.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevcustomscript.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocker.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevfiletemplates.mo share/locale/ga/LC_MESSAGES/kdevflatpak.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevghprovider.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevheaptrack.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevlldb.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevmesonmanager.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevoutlineview.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectfilter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqmljs.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevscratchpad.mo share/locale/ga/LC_MESSAGES/kdevsourceformatter.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevtestview.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/kdevwelcomepage.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/he/LC_MESSAGES/kdevandroid.mo share/locale/he/LC_MESSAGES/kdevappwizard.mo share/locale/he/LC_MESSAGES/kdevastyle.mo share/locale/he/LC_MESSAGES/kdevbazaar.mo share/locale/he/LC_MESSAGES/kdevclang.mo share/locale/he/LC_MESSAGES/kdevclangtidy.mo share/locale/he/LC_MESSAGES/kdevclassbrowser.mo share/locale/he/LC_MESSAGES/kdevclazy.mo share/locale/he/LC_MESSAGES/kdevcodeutils.mo share/locale/he/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/he/LC_MESSAGES/kdevcontextbrowser.mo share/locale/he/LC_MESSAGES/kdevcustommake.mo share/locale/he/LC_MESSAGES/kdevcustomscript.mo share/locale/he/LC_MESSAGES/kdevdocker.mo share/locale/he/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/he/LC_MESSAGES/kdevdocumentview.mo share/locale/he/LC_MESSAGES/kdevelop.mo share/locale/he/LC_MESSAGES/kdevexecute.mo share/locale/he/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/he/LC_MESSAGES/kdevexecutescript.mo share/locale/he/LC_MESSAGES/kdevfilemanager.mo share/locale/he/LC_MESSAGES/kdevflatpak.mo share/locale/he/LC_MESSAGES/kdevghprovider.mo share/locale/he/LC_MESSAGES/kdevgit.mo share/locale/he/LC_MESSAGES/kdevgrepview.mo share/locale/he/LC_MESSAGES/kdevheaptrack.mo share/locale/he/LC_MESSAGES/kdevkonsole.mo share/locale/he/LC_MESSAGES/kdevlldb.mo share/locale/he/LC_MESSAGES/kdevmanpage.mo share/locale/he/LC_MESSAGES/kdevninja.mo share/locale/he/LC_MESSAGES/kdevokteta.mo share/locale/he/LC_MESSAGES/kdevopenwith.mo share/locale/he/LC_MESSAGES/kdevoutlineview.mo share/locale/he/LC_MESSAGES/kdevpatchreview.mo share/locale/he/LC_MESSAGES/kdevplatform.mo share/locale/he/LC_MESSAGES/kdevproblemreporter.mo share/locale/he/LC_MESSAGES/kdevprojectfilter.mo share/locale/he/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/he/LC_MESSAGES/kdevqmakebuilder.mo share/locale/he/LC_MESSAGES/kdevqmljs.mo share/locale/he/LC_MESSAGES/kdevqthelp.mo share/locale/he/LC_MESSAGES/kdevquickopen.mo share/locale/he/LC_MESSAGES/kdevscratchpad.mo share/locale/he/LC_MESSAGES/kdevsourceformatter.mo share/locale/he/LC_MESSAGES/kdevstandardoutputview.mo share/locale/he/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/he/LC_MESSAGES/kdevtestview.mo share/locale/he/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/he/LC_MESSAGES/kdevwelcomepage.mo share/locale/he/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/he/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevandroid.mo share/locale/hi/LC_MESSAGES/kdevappwizard.mo share/locale/hi/LC_MESSAGES/kdevastyle.mo share/locale/hi/LC_MESSAGES/kdevbazaar.mo share/locale/hi/LC_MESSAGES/kdevclang.mo share/locale/hi/LC_MESSAGES/kdevclangtidy.mo share/locale/hi/LC_MESSAGES/kdevclassbrowser.mo share/locale/hi/LC_MESSAGES/kdevclazy.mo share/locale/hi/LC_MESSAGES/kdevcmake.mo share/locale/hi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevcodeutils.mo share/locale/hi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/hi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hi/LC_MESSAGES/kdevcppcheck.mo share/locale/hi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hi/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/hi/LC_MESSAGES/kdevcustommake.mo share/locale/hi/LC_MESSAGES/kdevcustomscript.mo share/locale/hi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hi/LC_MESSAGES/kdevdocker.mo share/locale/hi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hi/LC_MESSAGES/kdevdocumentview.mo share/locale/hi/LC_MESSAGES/kdevelop.mo share/locale/hi/LC_MESSAGES/kdevexecute.mo share/locale/hi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hi/LC_MESSAGES/kdevexecutescript.mo share/locale/hi/LC_MESSAGES/kdevexternalscript.mo share/locale/hi/LC_MESSAGES/kdevfilemanager.mo share/locale/hi/LC_MESSAGES/kdevfiletemplates.mo share/locale/hi/LC_MESSAGES/kdevflatpak.mo share/locale/hi/LC_MESSAGES/kdevgdb.mo share/locale/hi/LC_MESSAGES/kdevghprovider.mo share/locale/hi/LC_MESSAGES/kdevgit.mo share/locale/hi/LC_MESSAGES/kdevgrepview.mo share/locale/hi/LC_MESSAGES/kdevheaptrack.mo share/locale/hi/LC_MESSAGES/kdevkonsole.mo share/locale/hi/LC_MESSAGES/kdevlldb.mo share/locale/hi/LC_MESSAGES/kdevmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevmanpage.mo share/locale/hi/LC_MESSAGES/kdevmesonmanager.mo share/locale/hi/LC_MESSAGES/kdevninja.mo share/locale/hi/LC_MESSAGES/kdevokteta.mo share/locale/hi/LC_MESSAGES/kdevopenwith.mo share/locale/hi/LC_MESSAGES/kdevoutlineview.mo share/locale/hi/LC_MESSAGES/kdevpatchreview.mo share/locale/hi/LC_MESSAGES/kdevperforce.mo share/locale/hi/LC_MESSAGES/kdevplatform.mo share/locale/hi/LC_MESSAGES/kdevproblemreporter.mo share/locale/hi/LC_MESSAGES/kdevprojectfilter.mo share/locale/hi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hi/LC_MESSAGES/kdevqmakemanager.mo share/locale/hi/LC_MESSAGES/kdevqmljs.mo share/locale/hi/LC_MESSAGES/kdevqthelp.mo share/locale/hi/LC_MESSAGES/kdevquickopen.mo share/locale/hi/LC_MESSAGES/kdevscratchpad.mo share/locale/hi/LC_MESSAGES/kdevsourceformatter.mo share/locale/hi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hi/LC_MESSAGES/kdevsubversion.mo share/locale/hi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hi/LC_MESSAGES/kdevtestview.mo share/locale/hi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hi/LC_MESSAGES/kdevwelcomepage.mo share/locale/hi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevandroid.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevastyle.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/kdevwelcomepage.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ia/LC_MESSAGES/kdevappwizard.mo share/locale/ia/LC_MESSAGES/kdevastyle.mo share/locale/ia/LC_MESSAGES/kdevelop.mo share/locale/ia/LC_MESSAGES/kdevplatform.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/kdevandroid.mo share/locale/ka/LC_MESSAGES/kdevappwizard.mo share/locale/ka/LC_MESSAGES/kdevastyle.mo share/locale/ka/LC_MESSAGES/kdevbazaar.mo share/locale/ka/LC_MESSAGES/kdevclang.mo share/locale/ka/LC_MESSAGES/kdevclangtidy.mo share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo share/locale/ka/LC_MESSAGES/kdevclazy.mo share/locale/ka/LC_MESSAGES/kdevcmake.mo share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevcodeutils.mo share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ka/LC_MESSAGES/kdevcppcheck.mo share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ka/LC_MESSAGES/kdevcustommake.mo share/locale/ka/LC_MESSAGES/kdevcustomscript.mo share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ka/LC_MESSAGES/kdevdocker.mo share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ka/LC_MESSAGES/kdevdocumentview.mo share/locale/ka/LC_MESSAGES/kdevelop.mo share/locale/ka/LC_MESSAGES/kdevexecute.mo share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ka/LC_MESSAGES/kdevexecutescript.mo share/locale/ka/LC_MESSAGES/kdevexternalscript.mo share/locale/ka/LC_MESSAGES/kdevfilemanager.mo share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo share/locale/ka/LC_MESSAGES/kdevflatpak.mo share/locale/ka/LC_MESSAGES/kdevgdb.mo share/locale/ka/LC_MESSAGES/kdevghprovider.mo share/locale/ka/LC_MESSAGES/kdevgit.mo share/locale/ka/LC_MESSAGES/kdevgrepview.mo share/locale/ka/LC_MESSAGES/kdevheaptrack.mo share/locale/ka/LC_MESSAGES/kdevkonsole.mo share/locale/ka/LC_MESSAGES/kdevlldb.mo share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevmanpage.mo share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo share/locale/ka/LC_MESSAGES/kdevninja.mo share/locale/ka/LC_MESSAGES/kdevokteta.mo share/locale/ka/LC_MESSAGES/kdevopenwith.mo share/locale/ka/LC_MESSAGES/kdevoutlineview.mo share/locale/ka/LC_MESSAGES/kdevpatchreview.mo share/locale/ka/LC_MESSAGES/kdevperforce.mo share/locale/ka/LC_MESSAGES/kdevplatform.mo share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo share/locale/ka/LC_MESSAGES/kdevqmljs.mo share/locale/ka/LC_MESSAGES/kdevqthelp.mo share/locale/ka/LC_MESSAGES/kdevquickopen.mo share/locale/ka/LC_MESSAGES/kdevscratchpad.mo share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ka/LC_MESSAGES/kdevsubversion.mo share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ka/LC_MESSAGES/kdevtestview.mo share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo share/locale/mai/LC_MESSAGES/kdevbazaar.mo share/locale/mai/LC_MESSAGES/kdevexecutescript.mo share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ms/LC_MESSAGES/kdevappwizard.mo share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo share/locale/ms/LC_MESSAGES/kdevcmake.mo share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ms/LC_MESSAGES/kdevcustommake.mo share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ms/LC_MESSAGES/kdevdocumentview.mo share/locale/ms/LC_MESSAGES/kdevelop.mo share/locale/ms/LC_MESSAGES/kdevexecute.mo share/locale/ms/LC_MESSAGES/kdevfilemanager.mo share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo share/locale/ru/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/kdevandroid.mo share/locale/sa/LC_MESSAGES/kdevappwizard.mo share/locale/sa/LC_MESSAGES/kdevastyle.mo share/locale/sa/LC_MESSAGES/kdevbazaar.mo share/locale/sa/LC_MESSAGES/kdevclang.mo share/locale/sa/LC_MESSAGES/kdevclangtidy.mo share/locale/sa/LC_MESSAGES/kdevclassbrowser.mo share/locale/sa/LC_MESSAGES/kdevclazy.mo share/locale/sa/LC_MESSAGES/kdevcmake.mo share/locale/sa/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevcodeutils.mo share/locale/sa/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sa/LC_MESSAGES/kdevcppcheck.mo share/locale/sa/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sa/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sa/LC_MESSAGES/kdevcustommake.mo share/locale/sa/LC_MESSAGES/kdevcustomscript.mo share/locale/sa/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sa/LC_MESSAGES/kdevdocker.mo share/locale/sa/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sa/LC_MESSAGES/kdevdocumentview.mo share/locale/sa/LC_MESSAGES/kdevelop.mo share/locale/sa/LC_MESSAGES/kdevexecute.mo share/locale/sa/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sa/LC_MESSAGES/kdevexecutescript.mo share/locale/sa/LC_MESSAGES/kdevexternalscript.mo share/locale/sa/LC_MESSAGES/kdevfilemanager.mo share/locale/sa/LC_MESSAGES/kdevfiletemplates.mo share/locale/sa/LC_MESSAGES/kdevflatpak.mo share/locale/sa/LC_MESSAGES/kdevgdb.mo share/locale/sa/LC_MESSAGES/kdevghprovider.mo share/locale/sa/LC_MESSAGES/kdevgit.mo share/locale/sa/LC_MESSAGES/kdevgrepview.mo share/locale/sa/LC_MESSAGES/kdevheaptrack.mo share/locale/sa/LC_MESSAGES/kdevkonsole.mo share/locale/sa/LC_MESSAGES/kdevlldb.mo share/locale/sa/LC_MESSAGES/kdevmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevmanpage.mo share/locale/sa/LC_MESSAGES/kdevmesonmanager.mo share/locale/sa/LC_MESSAGES/kdevninja.mo share/locale/sa/LC_MESSAGES/kdevokteta.mo share/locale/sa/LC_MESSAGES/kdevopenwith.mo share/locale/sa/LC_MESSAGES/kdevoutlineview.mo share/locale/sa/LC_MESSAGES/kdevpatchreview.mo share/locale/sa/LC_MESSAGES/kdevperforce.mo share/locale/sa/LC_MESSAGES/kdevplatform.mo share/locale/sa/LC_MESSAGES/kdevproblemreporter.mo share/locale/sa/LC_MESSAGES/kdevprojectfilter.mo share/locale/sa/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sa/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sa/LC_MESSAGES/kdevqmakemanager.mo share/locale/sa/LC_MESSAGES/kdevqmljs.mo share/locale/sa/LC_MESSAGES/kdevqthelp.mo share/locale/sa/LC_MESSAGES/kdevquickopen.mo share/locale/sa/LC_MESSAGES/kdevscratchpad.mo share/locale/sa/LC_MESSAGES/kdevsourceformatter.mo share/locale/sa/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sa/LC_MESSAGES/kdevsubversion.mo share/locale/sa/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sa/LC_MESSAGES/kdevtestview.mo share/locale/sa/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sa/LC_MESSAGES/kdevwelcomepage.mo share/locale/sa/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sa/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/ta/LC_MESSAGES/kdevkonsole.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/th/LC_MESSAGES/kdevappwizard.mo share/locale/th/LC_MESSAGES/kdevcustommake.mo share/locale/th/LC_MESSAGES/kdevkonsole.mo share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/org.kde.kdevelopsessions/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdevelopsessions/metadata.json share/qlogging-categories6/kdevelop.categories share/qlogging-categories6/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index e7336b3489e5..9b0ac4c5cada 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478377 -SHA256 (KDE/release-service/26.04.2/kio-extras-26.04.2.tar.xz) = af4941af624f883891d33701aa0ce4216d6de114db3e4a250099c52d3d42acaa -SIZE (KDE/release-service/26.04.2/kio-extras-26.04.2.tar.xz) = 5600256 +TIMESTAMP = 1782826709 +SHA256 (KDE/release-service/26.04.3/kio-extras-26.04.3.tar.xz) = 8448075fdedd1e5ae43b865337f5ac3ca39037726dd0deaa061797fa84d31d63 +SIZE (KDE/release-service/26.04.3/kio-extras-26.04.3.tar.xz) = 5599952 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 9179751852ee..bf80f8942252 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478379 -SHA256 (KDE/release-service/26.04.2/kirigami-gallery-26.04.2.tar.xz) = 72ef3a4659dd4cee5572a625a014e6c2a8b406cea5bb3424a263aaffc2fcbbad -SIZE (KDE/release-service/26.04.2/kirigami-gallery-26.04.2.tar.xz) = 382052 +TIMESTAMP = 1782826711 +SHA256 (KDE/release-service/26.04.3/kirigami-gallery-26.04.3.tar.xz) = 216119e088c63d6c6fee7b48b1ed94a70a9b217299bbadec44350c9c819501cd +SIZE (KDE/release-service/26.04.3/kirigami-gallery-26.04.3.tar.xz) = 382060 diff --git a/devel/kopeninghours/distinfo b/devel/kopeninghours/distinfo index 00197bb11ede..d50dbab98c8e 100644 --- a/devel/kopeninghours/distinfo +++ b/devel/kopeninghours/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478381 -SHA256 (KDE/release-service/26.04.2/kopeninghours-26.04.2.tar.xz) = 0001946190105da042121d93bf0102d554dd4a11bdc9b447718640698fcc63f2 -SIZE (KDE/release-service/26.04.2/kopeninghours-26.04.2.tar.xz) = 76664 +TIMESTAMP = 1782826712 +SHA256 (KDE/release-service/26.04.3/kopeninghours-26.04.3.tar.xz) = 309cde5d9c9ee141867fee6eca5208863a6fab13b1cdd8f89b2850d16e017ef6 +SIZE (KDE/release-service/26.04.3/kopeninghours-26.04.3.tar.xz) = 76648 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 58948d65a79e..a050200f2269 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478382 -SHA256 (KDE/release-service/26.04.2/kpublictransport-26.04.2.tar.xz) = 9669fdc271067f82851cf7804fc62fc0a5b228d488f9e9217a3b65d0e839c6b2 -SIZE (KDE/release-service/26.04.2/kpublictransport-26.04.2.tar.xz) = 959268 +TIMESTAMP = 1782826714 +SHA256 (KDE/release-service/26.04.3/kpublictransport-26.04.3.tar.xz) = aeac3ec0fa39a26cf9bacd87a30f5d8cf2968116ca99902873499b6cd45f9b17 +SIZE (KDE/release-service/26.04.3/kpublictransport-26.04.3.tar.xz) = 959348 diff --git a/devel/kunifiedpush/distinfo b/devel/kunifiedpush/distinfo index 12151e039c52..afd85fd0fce1 100644 --- a/devel/kunifiedpush/distinfo +++ b/devel/kunifiedpush/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478384 -SHA256 (KDE/release-service/26.04.2/kunifiedpush-26.04.2.tar.xz) = 15b6c7c463953b0d3b0ae8dfdde9dea41ae7eac77d036ca95db6f87d1a8a8fe1 -SIZE (KDE/release-service/26.04.2/kunifiedpush-26.04.2.tar.xz) = 89448 +TIMESTAMP = 1782826716 +SHA256 (KDE/release-service/26.04.3/kunifiedpush-26.04.3.tar.xz) = 247ccc7bcc4277e2fc63a753c367d0ca10efe3b4916f60a44d9ca2da403c4fe5 +SIZE (KDE/release-service/26.04.3/kunifiedpush-26.04.3.tar.xz) = 89464 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index d99fa7cfaaad..735fc0a91709 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478386 -SHA256 (KDE/release-service/26.04.2/lokalize-26.04.2.tar.xz) = eb2001a3e1ef8b522d1a763a9082d3334c1e30fa787ded12b6be9d07f804292a -SIZE (KDE/release-service/26.04.2/lokalize-26.04.2.tar.xz) = 2103920 +TIMESTAMP = 1782826718 +SHA256 (KDE/release-service/26.04.3/lokalize-26.04.3.tar.xz) = c23ac4bf5ec63100823855f72f9c6e473050282361b1460072bb15d193ece5dd +SIZE (KDE/release-service/26.04.3/lokalize-26.04.3.tar.xz) = 2104016 diff --git a/devel/massif-visualizer/distinfo b/devel/massif-visualizer/distinfo index f0487f6bdc5a..5e472b758288 100644 --- a/devel/massif-visualizer/distinfo +++ b/devel/massif-visualizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478387 -SHA256 (KDE/release-service/26.04.2/massif-visualizer-26.04.2.tar.xz) = a9e4755279a66c252f21fb27c53ceac757bd5ecf1bc0e9a5fc25f65c721c7af1 -SIZE (KDE/release-service/26.04.2/massif-visualizer-26.04.2.tar.xz) = 286836 +TIMESTAMP = 1782826719 +SHA256 (KDE/release-service/26.04.3/massif-visualizer-26.04.3.tar.xz) = 63496ba8810f938d77c56bc97c1ace23bd422ac64405d68f094b00154d3345e3 +SIZE (KDE/release-service/26.04.3/massif-visualizer-26.04.3.tar.xz) = 286008 diff --git a/devel/massif-visualizer/pkg-plist b/devel/massif-visualizer/pkg-plist index 61c47b4a8cc6..107d766e9560 100644 --- a/devel/massif-visualizer/pkg-plist +++ b/devel/massif-visualizer/pkg-plist @@ -1,54 +1,53 @@ bin/massif-visualizer share/applications/org.kde.massif-visualizer.desktop share/config.kcfg/massif-visualizer-settings.kcfg share/icons/hicolor/scalable/apps/massif-visualizer.svg share/locale/ar/LC_MESSAGES/massif-visualizer.mo -share/locale/bg/LC_MESSAGES/massif-visualizer.mo share/locale/bs/LC_MESSAGES/massif-visualizer.mo share/locale/ca/LC_MESSAGES/massif-visualizer.mo share/locale/ca@valencia/LC_MESSAGES/massif-visualizer.mo share/locale/cs/LC_MESSAGES/massif-visualizer.mo share/locale/da/LC_MESSAGES/massif-visualizer.mo share/locale/de/LC_MESSAGES/massif-visualizer.mo share/locale/el/LC_MESSAGES/massif-visualizer.mo share/locale/en_GB/LC_MESSAGES/massif-visualizer.mo share/locale/eo/LC_MESSAGES/massif-visualizer.mo share/locale/es/LC_MESSAGES/massif-visualizer.mo share/locale/et/LC_MESSAGES/massif-visualizer.mo share/locale/eu/LC_MESSAGES/massif-visualizer.mo share/locale/fi/LC_MESSAGES/massif-visualizer.mo share/locale/fr/LC_MESSAGES/massif-visualizer.mo share/locale/ga/LC_MESSAGES/massif-visualizer.mo share/locale/gl/LC_MESSAGES/massif-visualizer.mo share/locale/he/LC_MESSAGES/massif-visualizer.mo share/locale/hi/LC_MESSAGES/massif-visualizer.mo share/locale/hu/LC_MESSAGES/massif-visualizer.mo share/locale/ia/LC_MESSAGES/massif-visualizer.mo share/locale/is/LC_MESSAGES/massif-visualizer.mo share/locale/it/LC_MESSAGES/massif-visualizer.mo share/locale/ja/LC_MESSAGES/massif-visualizer.mo share/locale/ka/LC_MESSAGES/massif-visualizer.mo share/locale/kk/LC_MESSAGES/massif-visualizer.mo share/locale/ko/LC_MESSAGES/massif-visualizer.mo share/locale/lt/LC_MESSAGES/massif-visualizer.mo share/locale/mr/LC_MESSAGES/massif-visualizer.mo share/locale/nb/LC_MESSAGES/massif-visualizer.mo share/locale/nds/LC_MESSAGES/massif-visualizer.mo share/locale/nl/LC_MESSAGES/massif-visualizer.mo share/locale/nn/LC_MESSAGES/massif-visualizer.mo share/locale/pl/LC_MESSAGES/massif-visualizer.mo share/locale/pt/LC_MESSAGES/massif-visualizer.mo share/locale/pt_BR/LC_MESSAGES/massif-visualizer.mo share/locale/ru/LC_MESSAGES/massif-visualizer.mo share/locale/sa/LC_MESSAGES/massif-visualizer.mo share/locale/sk/LC_MESSAGES/massif-visualizer.mo share/locale/sl/LC_MESSAGES/massif-visualizer.mo share/locale/sv/LC_MESSAGES/massif-visualizer.mo share/locale/tr/LC_MESSAGES/massif-visualizer.mo share/locale/ug/LC_MESSAGES/massif-visualizer.mo share/locale/uk/LC_MESSAGES/massif-visualizer.mo share/locale/zh_CN/LC_MESSAGES/massif-visualizer.mo share/locale/zh_TW/LC_MESSAGES/massif-visualizer.mo %%DATADIR%%/icons/hicolor/22x22/actions/shortentemplates.png share/metainfo/org.kde.massif_visualizer.appdata.xml share/mime/packages/massif.xml diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index d0ed4e1b100e..e18397ecd28c 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478389 -SHA256 (KDE/release-service/26.04.2/poxml-26.04.2.tar.xz) = 0cd156e0cf32076941304be85e2948962e82db410b94373a0ce5b37c0965a571 -SIZE (KDE/release-service/26.04.2/poxml-26.04.2.tar.xz) = 45212 +TIMESTAMP = 1782826721 +SHA256 (KDE/release-service/26.04.3/poxml-26.04.3.tar.xz) = c3b3c9719d50e4dde81f67e75ce236ef15b9e81187208f3b3844707cce76c448 +SIZE (KDE/release-service/26.04.3/poxml-26.04.3.tar.xz) = 45208 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 8fd1e47a0318..8346976e9aab 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478390 -SHA256 (KDE/release-service/26.04.2/umbrello-26.04.2.tar.xz) = fcb3c64a7f25780d985aab76d6ecc0e5fa5e3c1e144ad1d5ab5e50eca714b670 -SIZE (KDE/release-service/26.04.2/umbrello-26.04.2.tar.xz) = 5664964 +TIMESTAMP = 1782826723 +SHA256 (KDE/release-service/26.04.3/umbrello-26.04.3.tar.xz) = 48fc62edb58bf3c65cc5d89e8fd4927f441902a163e47a55ff1b6d4b7ed40d56 +SIZE (KDE/release-service/26.04.3/umbrello-26.04.3.tar.xz) = 5654672 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index fee3240c941b..d95780e05d8a 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,168 +1,166 @@ bin/po2xmi6 bin/umbrello6 bin/xmi2pot6 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/ar/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/be/LC_MESSAGES/umbrello.mo -share/locale/bg/LC_MESSAGES/umbrello.mo -share/locale/bg/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/br/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cy/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/he/LC_MESSAGES/umbrello.mo share/locale/he/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hne/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ia/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ka/LC_MESSAGES/umbrello.mo share/locale/ka/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mai/LC_MESSAGES/umbrello.mo share/locale/mk/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ms/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ne/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/oc/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/se/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sq/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ta/LC_MESSAGES/umbrello.mo share/locale/tg/LC_MESSAGES/umbrello.mo share/locale/th/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello6/common.ent share/umbrello6/docbook2xhtml.xsl share/umbrello6/headings/heading.adb share/umbrello6/headings/heading.ads share/umbrello6/headings/heading.as share/umbrello6/headings/heading.cpp share/umbrello6/headings/heading.cs share/umbrello6/headings/heading.d share/umbrello6/headings/heading.h share/umbrello6/headings/heading.idl share/umbrello6/headings/heading.java share/umbrello6/headings/heading.js share/umbrello6/headings/heading.php share/umbrello6/headings/heading.pm share/umbrello6/headings/heading.py share/umbrello6/headings/heading.rb share/umbrello6/headings/heading.sql share/umbrello6/headings/heading.xsd share/umbrello6/layouts/activity-export.desktop share/umbrello6/layouts/activity-vertical.desktop share/umbrello6/layouts/class-export.desktop share/umbrello6/layouts/class-horizontal.desktop share/umbrello6/layouts/class-vertical.desktop share/umbrello6/layouts/component-horizontal.desktop share/umbrello6/layouts/component-vertical.desktop share/umbrello6/layouts/entityrelationship-export.desktop share/umbrello6/layouts/entityrelationship-horizontal.desktop share/umbrello6/layouts/entityrelationship-vertical.desktop share/umbrello6/layouts/object-export.desktop share/umbrello6/layouts/object-horizontal.desktop share/umbrello6/layouts/object-vertical.desktop share/umbrello6/layouts/state-export.desktop share/umbrello6/layouts/state-horizontal.desktop share/umbrello6/layouts/state-vertical.desktop share/umbrello6/layouts/usecase-default.desktop share/umbrello6/simple4125/sdbcent.mod share/umbrello6/simple4125/sdbhier.mod share/umbrello6/simple4125/sdbpool.mod share/umbrello6/simple4125/sdocbook-custom.dtd share/umbrello6/simple4125/sdocbook.css share/umbrello6/simple4125/sdocbook.dtd share/umbrello6/simple4125/sdocbookref-custom.dtd share/umbrello6/simple4125/sdocbookref.dtd share/umbrello6/simple4125/sinclist.mod share/umbrello6/xmi.css share/umbrello6/xmi1docbook.xsl share/umbrello6/xmi2docbook.xsl diff --git a/editors/calligra/distinfo b/editors/calligra/distinfo index 6c97bf973b68..a5729fab3f6d 100644 --- a/editors/calligra/distinfo +++ b/editors/calligra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478392 -SHA256 (KDE/release-service/26.04.2/calligra-26.04.2.tar.xz) = cb787371a5622b8401ab15136d1ebf6b9c0cf0ed32c840c35a08f2374d59eeb8 -SIZE (KDE/release-service/26.04.2/calligra-26.04.2.tar.xz) = 58084312 +TIMESTAMP = 1782826725 +SHA256 (KDE/release-service/26.04.3/calligra-26.04.3.tar.xz) = 4c7fff9af90d7a5a2d3c5683b1fdc936c627459cd2f2cdb4fc3837822c52b345 +SIZE (KDE/release-service/26.04.3/calligra-26.04.3.tar.xz) = 58005724 diff --git a/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.cpp b/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.cpp deleted file mode 100644 index 973e62742bc2..000000000000 --- a/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.cpp +++ /dev/null @@ -1,44 +0,0 @@ ---- filters/karbon/pdf/SvgOutputDev.cpp.orig 2026-04-09 04:19:06 UTC -+++ filters/karbon/pdf/SvgOutputDev.cpp -@@ -386,7 +386,11 @@ QString SvgOutputDev::printStroke() - return stroke; - } - -+#if POPPLER_VERSION_MACRO < QT_VERSION_CHECK(26, 4, 0) - void SvgOutputDev::drawString(GfxState *state, const GooString *s) -+#else -+void SvgOutputDev::drawString(GfxState *state, const std::string &s) -+#endif - { - int render = state->getRender(); - // check for invisible text -- this is used by Acrobat Capture -@@ -397,8 +401,10 @@ void SvgOutputDev::drawString(GfxState *state, const G - // ignore empty strings - #if POPPLER_VERSION_MACRO < QT_VERSION_CHECK(25, 10, 0) - if (s->getLength() == 0) { --#else -+#elif POPPLER_VERSION_MACRO < QT_VERSION_CHECK(26, 4, 0) - if (s->size() == 0) { -+#else -+ if (s.empty()) { - #endif - return; - } -@@ -407,11 +413,15 @@ void SvgOutputDev::drawString(GfxState *state, const G - - QString str; - -- const char *p = s->c_str(); - #if POPPLER_VERSION_MACRO < QT_VERSION_CHECK(25, 10, 0) -+ const char *p = s->c_str(); - int len = s->getLength(); --#else -+#elif POPPLER_VERSION_MACRO < QT_VERSION_CHECK(26, 4, 0) -+ const char *p = s->c_str(); - int len = s->size(); -+#else -+ const char *p = s.c_str(); -+ int len = s.size(); - #endif - CharCode code; - const Unicode *u = nullptr; diff --git a/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.h b/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.h deleted file mode 100644 index 49b3fdbfae3f..000000000000 --- a/editors/calligra/files/patch-filters_karbon_pdf_SvgOutputDev.h +++ /dev/null @@ -1,14 +0,0 @@ ---- filters/karbon/pdf/SvgOutputDev.h.orig 2026-04-09 04:19:06 UTC -+++ filters/karbon/pdf/SvgOutputDev.h -@@ -44,7 +44,11 @@ class SvgOutputDev : public OutputDev (public) - void eoFill(GfxState *state) override; - - // text -+#if POPPLER_VERSION_MACRO < QT_VERSION_CHECK(26, 4, 0) - void drawString(GfxState *state, const GooString *s) override; -+#else -+ void drawString(GfxState *state, const std::string &s) override; -+#endif - - // images - void drawImage(GfxState *state, diff --git a/editors/calligra/pkg-plist b/editors/calligra/pkg-plist index e7083c11d46d..73dae50beb8e 100644 --- a/editors/calligra/pkg-plist +++ b/editors/calligra/pkg-plist @@ -1,7591 +1,7551 @@ 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/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/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/tut25.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/ta/LC_MESSAGES/okularGenerator_odp.mo share/locale/ta/LC_MESSAGES/okularGenerator_odt.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 bcba598fd8c9..91fa54fef066 100644 --- a/editors/ghostwriter/distinfo +++ b/editors/ghostwriter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478394 -SHA256 (KDE/release-service/26.04.2/ghostwriter-26.04.2.tar.xz) = 4d3b6e57579843a1dd50d09d344667c07b1511f4dcf82764dbd661d28889d5dc -SIZE (KDE/release-service/26.04.2/ghostwriter-26.04.2.tar.xz) = 2746452 +TIMESTAMP = 1782826727 +SHA256 (KDE/release-service/26.04.3/ghostwriter-26.04.3.tar.xz) = c948923d90c8ab3d5c22a426a4a02efff663aeaeec836bf59a9dcf9a3e38a7bf +SIZE (KDE/release-service/26.04.3/ghostwriter-26.04.3.tar.xz) = 2748108 diff --git a/editors/kate/distinfo b/editors/kate/distinfo index e1d25441b465..685b15652d22 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478395 -SHA256 (KDE/release-service/26.04.2/kate-26.04.2.tar.xz) = f138a5b022b6ca0562b903bea7b2a794bb6bb18b88a9277ffcaf418b9b49018d -SIZE (KDE/release-service/26.04.2/kate-26.04.2.tar.xz) = 8611248 +TIMESTAMP = 1782826728 +SHA256 (KDE/release-service/26.04.3/kate-26.04.3.tar.xz) = cb95426cba170f994761e509e342d523e53a62a80a252248b38efcbe8abff623 +SIZE (KDE/release-service/26.04.3/kate-26.04.3.tar.xz) = 8619908 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index ca1aa9ed96b8..606c869cf9d7 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1852 +1,1854 @@ 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/katebookmarksplugin.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/kategpgplugin.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/kategpgplugin.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/kategpgplugin.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/katebookmarksplugin.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/rainbowparens.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/kategpgplugin.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/katecolorpickerplugin.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/rainbowparens.mo share/locale/ro/LC_MESSAGES/rbqlplugin.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/katebookmarksplugin.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/kategpgplugin.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 dd2c6afba9a1..a2f9ab99f6d0 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478397 -SHA256 (KDE/release-service/26.04.2/blinken-26.04.2.tar.xz) = fe6182b27fa31e5b2cc257644f1ce40cbbaf500de161ab3498fe3ab18e05fffb -SIZE (KDE/release-service/26.04.2/blinken-26.04.2.tar.xz) = 2715456 +TIMESTAMP = 1782826730 +SHA256 (KDE/release-service/26.04.3/blinken-26.04.3.tar.xz) = 453fc075cc01aeac980ecdf3064874a69c357d46c60457bc42fb979a9567a0ba +SIZE (KDE/release-service/26.04.3/blinken-26.04.3.tar.xz) = 2715472 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index a21c56237820..15d0bb41d99a 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478399 -SHA256 (KDE/release-service/26.04.2/bomber-26.04.2.tar.xz) = ba9a738be20719afd4976063192163dba13488e2a5abb771e709648d6dc129d2 -SIZE (KDE/release-service/26.04.2/bomber-26.04.2.tar.xz) = 840480 +TIMESTAMP = 1782826732 +SHA256 (KDE/release-service/26.04.3/bomber-26.04.3.tar.xz) = 1a91cb08e8baac409ee7584430cec2de29e16d3e3ba45022ef88fc21af0e068b +SIZE (KDE/release-service/26.04.3/bomber-26.04.3.tar.xz) = 840360 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index fc20bb516ebc..f06b3159ca62 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478400 -SHA256 (KDE/release-service/26.04.2/bovo-26.04.2.tar.xz) = 00803fde82fc7a00a2b0e2d606a4bded3118db933f20ec0cdd484c6b90b2961a -SIZE (KDE/release-service/26.04.2/bovo-26.04.2.tar.xz) = 221988 +TIMESTAMP = 1782826734 +SHA256 (KDE/release-service/26.04.3/bovo-26.04.3.tar.xz) = bb38f2f9c3c3694d3b9869f5d1d97eda2b1621374f5a85ce2b30a4aefa53549d +SIZE (KDE/release-service/26.04.3/bovo-26.04.3.tar.xz) = 221960 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 74bb1c062711..ebf0ff714ee4 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478402 -SHA256 (KDE/release-service/26.04.2/granatier-26.04.2.tar.xz) = fff180320d887fa1a1ec252746316f5d75ff53fba599f19db96a867400a3b0a2 -SIZE (KDE/release-service/26.04.2/granatier-26.04.2.tar.xz) = 2017232 +TIMESTAMP = 1782826735 +SHA256 (KDE/release-service/26.04.3/granatier-26.04.3.tar.xz) = d61453188d6bbeb636c699b0a5a5bf3b28dbc4c5dfd799e26bdfe5b7100f554d +SIZE (KDE/release-service/26.04.3/granatier-26.04.3.tar.xz) = 2016344 diff --git a/games/granatier/pkg-plist b/games/granatier/pkg-plist index 1ff1ece6e491..8d684e63cab3 100644 --- a/games/granatier/pkg-plist +++ b/games/granatier/pkg-plist @@ -1,179 +1,178 @@ bin/granatier share/applications/org.kde.granatier.desktop share/config.kcfg/granatier.kcfg %%DATADIR%%/arenas/clanbomber_Arena.desktop %%DATADIR%%/arenas/clanbomber_Arena.xml %%DATADIR%%/arenas/clanbomber_Big_Block.desktop %%DATADIR%%/arenas/clanbomber_Big_Block.xml %%DATADIR%%/arenas/clanbomber_Big_Standard.desktop %%DATADIR%%/arenas/clanbomber_Big_Standard.xml %%DATADIR%%/arenas/clanbomber_Blast_Matrix.desktop %%DATADIR%%/arenas/clanbomber_Blast_Matrix.xml %%DATADIR%%/arenas/clanbomber_Bloody_Ring.desktop %%DATADIR%%/arenas/clanbomber_Bloody_Ring.xml %%DATADIR%%/arenas/clanbomber_Boiling_Egg.desktop %%DATADIR%%/arenas/clanbomber_Boiling_Egg.xml %%DATADIR%%/arenas/clanbomber_Bomb_Attack.desktop %%DATADIR%%/arenas/clanbomber_Bomb_Attack.xml %%DATADIR%%/arenas/clanbomber_Broken_Heart.desktop %%DATADIR%%/arenas/clanbomber_Broken_Heart.xml %%DATADIR%%/arenas/clanbomber_Crammed.desktop %%DATADIR%%/arenas/clanbomber_Crammed.xml %%DATADIR%%/arenas/clanbomber_Death_Corridor.desktop %%DATADIR%%/arenas/clanbomber_Death_Corridor.xml %%DATADIR%%/arenas/clanbomber_Dilemma.desktop %%DATADIR%%/arenas/clanbomber_Dilemma.xml %%DATADIR%%/arenas/clanbomber_FearCircle.desktop %%DATADIR%%/arenas/clanbomber_FearCircle.xml %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.desktop %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.xml %%DATADIR%%/arenas/clanbomber_FireWheels.desktop %%DATADIR%%/arenas/clanbomber_FireWheels.xml %%DATADIR%%/arenas/clanbomber_Football.desktop %%DATADIR%%/arenas/clanbomber_Football.xml %%DATADIR%%/arenas/clanbomber_Four_Instance.desktop %%DATADIR%%/arenas/clanbomber_Four_Instance.xml %%DATADIR%%/arenas/clanbomber_Ghostbear.desktop %%DATADIR%%/arenas/clanbomber_Ghostbear.xml %%DATADIR%%/arenas/clanbomber_Hard_Work.desktop %%DATADIR%%/arenas/clanbomber_Hard_Work.xml %%DATADIR%%/arenas/clanbomber_Hole_Run.desktop %%DATADIR%%/arenas/clanbomber_Hole_Run.xml %%DATADIR%%/arenas/clanbomber_Huge_Standard.desktop %%DATADIR%%/arenas/clanbomber_Huge_Standard.xml %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.desktop %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.xml %%DATADIR%%/arenas/clanbomber_Kitchen.desktop %%DATADIR%%/arenas/clanbomber_Kitchen.xml %%DATADIR%%/arenas/clanbomber_Meeting.desktop %%DATADIR%%/arenas/clanbomber_Meeting.xml %%DATADIR%%/arenas/clanbomber_MungoBane.desktop %%DATADIR%%/arenas/clanbomber_MungoBane.xml %%DATADIR%%/arenas/clanbomber_Obstacle_Race.desktop %%DATADIR%%/arenas/clanbomber_Obstacle_Race.xml %%DATADIR%%/arenas/clanbomber_Overkill.desktop %%DATADIR%%/arenas/clanbomber_Overkill.xml %%DATADIR%%/arenas/clanbomber_Prison_Cells.desktop %%DATADIR%%/arenas/clanbomber_Prison_Cells.xml %%DATADIR%%/arenas/clanbomber_Redirection.desktop %%DATADIR%%/arenas/clanbomber_Redirection.xml %%DATADIR%%/arenas/clanbomber_Sixty_Nine.desktop %%DATADIR%%/arenas/clanbomber_Sixty_Nine.xml %%DATADIR%%/arenas/clanbomber_Small_Standard.desktop %%DATADIR%%/arenas/clanbomber_Small_Standard.xml %%DATADIR%%/arenas/clanbomber_Snake_Race.desktop %%DATADIR%%/arenas/clanbomber_Snake_Race.xml %%DATADIR%%/arenas/clanbomber_Tiny_Standard.desktop %%DATADIR%%/arenas/clanbomber_Tiny_Standard.xml %%DATADIR%%/arenas/clanbomber_Whole_Mess.desktop %%DATADIR%%/arenas/clanbomber_Whole_Mess.xml %%DATADIR%%/arenas/clover.desktop %%DATADIR%%/arenas/clover.xml %%DATADIR%%/arenas/crazy.desktop %%DATADIR%%/arenas/crazy.xml %%DATADIR%%/arenas/granatier.desktop %%DATADIR%%/arenas/granatier.xml %%DATADIR%%/arenas/labyrinth.desktop %%DATADIR%%/arenas/labyrinth.xml %%DATADIR%%/arenas/threeofthree.desktop %%DATADIR%%/arenas/threeofthree.xml %%DATADIR%%/players/player1.desktop %%DATADIR%%/players/player1.svgz %%DATADIR%%/players/player2.desktop %%DATADIR%%/players/player2.svgz %%DATADIR%%/players/player3.desktop %%DATADIR%%/players/player3.svgz %%DATADIR%%/players/player4.desktop %%DATADIR%%/players/player4.svgz %%DATADIR%%/players/player5.desktop %%DATADIR%%/players/player5.svgz %%DATADIR%%/sounds/break.wav %%DATADIR%%/sounds/clear.wav %%DATADIR%%/sounds/corpse_explode.wav %%DATADIR%%/sounds/crunch.wav %%DATADIR%%/sounds/deepfall.wav %%DATADIR%%/sounds/die.wav %%DATADIR%%/sounds/explode.wav %%DATADIR%%/sounds/joint.wav %%DATADIR%%/sounds/putbomb.wav %%DATADIR%%/sounds/winlevel.wav %%DATADIR%%/sounds/wow.wav %%DATADIR%%/themes/clanbomber.desktop %%DATADIR%%/themes/clanbomber.svgz %%DATADIR%%/themes/clanbomber_preview.png %%DATADIR%%/themes/granatier.desktop %%DATADIR%%/themes/granatier.svgz %%DATADIR%%/themes/granatier_preview.png %%DATADIR%%/themes/waterbomb.desktop %%DATADIR%%/themes/waterbomb.svgz %%DATADIR%%/themes/waterbomb_preview.png share/icons/hicolor/128x128/apps/granatier.png share/icons/hicolor/16x16/apps/granatier.png share/icons/hicolor/22x22/apps/granatier.png share/icons/hicolor/32x32/apps/granatier.png share/icons/hicolor/48x48/apps/granatier.png share/icons/hicolor/64x64/apps/granatier.png share/locale/ar/LC_MESSAGES/granatier.mo share/locale/ast/LC_MESSAGES/granatier.mo -share/locale/bg/LC_MESSAGES/granatier.mo share/locale/bs/LC_MESSAGES/granatier.mo share/locale/ca/LC_MESSAGES/granatier.mo share/locale/ca@valencia/LC_MESSAGES/granatier.mo share/locale/cs/LC_MESSAGES/granatier.mo share/locale/da/LC_MESSAGES/granatier.mo share/locale/de/LC_MESSAGES/granatier.mo share/locale/el/LC_MESSAGES/granatier.mo share/locale/en_GB/LC_MESSAGES/granatier.mo share/locale/eo/LC_MESSAGES/granatier.mo share/locale/es/LC_MESSAGES/granatier.mo share/locale/et/LC_MESSAGES/granatier.mo share/locale/eu/LC_MESSAGES/granatier.mo share/locale/fi/LC_MESSAGES/granatier.mo share/locale/fr/LC_MESSAGES/granatier.mo share/locale/ga/LC_MESSAGES/granatier.mo share/locale/gl/LC_MESSAGES/granatier.mo share/locale/he/LC_MESSAGES/granatier.mo share/locale/hi/LC_MESSAGES/granatier.mo share/locale/hr/LC_MESSAGES/granatier.mo share/locale/hu/LC_MESSAGES/granatier.mo share/locale/ia/LC_MESSAGES/granatier.mo share/locale/id/LC_MESSAGES/granatier.mo share/locale/is/LC_MESSAGES/granatier.mo share/locale/it/LC_MESSAGES/granatier.mo share/locale/ja/LC_MESSAGES/granatier.mo share/locale/ka/LC_MESSAGES/granatier.mo share/locale/kk/LC_MESSAGES/granatier.mo share/locale/km/LC_MESSAGES/granatier.mo share/locale/ko/LC_MESSAGES/granatier.mo share/locale/lt/LC_MESSAGES/granatier.mo share/locale/lv/LC_MESSAGES/granatier.mo share/locale/mai/LC_MESSAGES/granatier.mo share/locale/ml/LC_MESSAGES/granatier.mo share/locale/mr/LC_MESSAGES/granatier.mo share/locale/ms/LC_MESSAGES/granatier.mo share/locale/nb/LC_MESSAGES/granatier.mo share/locale/nds/LC_MESSAGES/granatier.mo share/locale/nl/LC_MESSAGES/granatier.mo share/locale/nn/LC_MESSAGES/granatier.mo share/locale/pl/LC_MESSAGES/granatier.mo share/locale/pt/LC_MESSAGES/granatier.mo share/locale/pt_BR/LC_MESSAGES/granatier.mo share/locale/ro/LC_MESSAGES/granatier.mo share/locale/ru/LC_MESSAGES/granatier.mo share/locale/sa/LC_MESSAGES/granatier.mo share/locale/sk/LC_MESSAGES/granatier.mo share/locale/sl/LC_MESSAGES/granatier.mo share/locale/sr/LC_MESSAGES/granatier.mo share/locale/sr@ijekavian/LC_MESSAGES/granatier.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/granatier.mo share/locale/sr@latin/LC_MESSAGES/granatier.mo share/locale/sv/LC_MESSAGES/granatier.mo share/locale/th/LC_MESSAGES/granatier.mo share/locale/tr/LC_MESSAGES/granatier.mo share/locale/ug/LC_MESSAGES/granatier.mo share/locale/uk/LC_MESSAGES/granatier.mo share/locale/zh_CN/LC_MESSAGES/granatier.mo share/locale/zh_TW/LC_MESSAGES/granatier.mo share/metainfo/org.kde.granatier.appdata.xml share/qlogging-categories6/granatier.categories share/qlogging-categories6/granatier.renamecategories diff --git a/games/kajongg/distinfo b/games/kajongg/distinfo index 01b8f5e81a01..9e1c8ae6155e 100644 --- a/games/kajongg/distinfo +++ b/games/kajongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478404 -SHA256 (KDE/release-service/26.04.2/kajongg-26.04.2.tar.xz) = 06fa02869b8a2063c8d29d3cea5aefd48345ea5fadc8257bb04483f9f2889860 -SIZE (KDE/release-service/26.04.2/kajongg-26.04.2.tar.xz) = 4637408 +TIMESTAMP = 1782826737 +SHA256 (KDE/release-service/26.04.3/kajongg-26.04.3.tar.xz) = ed16cddcc22c1d366a6dc50674ee7271d68af9995a29e96d0d559ffc5bad1ec2 +SIZE (KDE/release-service/26.04.3/kajongg-26.04.3.tar.xz) = 4635996 diff --git a/games/kajongg/pkg-plist b/games/kajongg/pkg-plist index 3bbebfbdec6d..3f7f24ca5962 100644 --- a/games/kajongg/pkg-plist +++ b/games/kajongg/pkg-plist @@ -1,556 +1,556 @@ bin/kajongg bin/kajonggserver share/applications/org.kde.kajongg.desktop share/icons/hicolor/128x128/apps/kajongg.png share/icons/hicolor/16x16/apps/kajongg.png share/icons/hicolor/22x22/apps/kajongg.png share/icons/hicolor/32x32/apps/kajongg.png share/icons/hicolor/48x48/apps/kajongg.png share/icons/hicolor/64x64/apps/kajongg.png share/icons/hicolor/scalable/actions/games-kajongg-law.svgz share/icons/hicolor/scalable/apps/kajongg.svgz %%DATADIR%%/__pycache__/altint%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/animation%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/appversion%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/background%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/backgroundselector%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/board%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/chat%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/client%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/common%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/config%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/configdialog%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/deferredutil%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/dialogs%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/differ%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/game%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/games%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/genericdelegates%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/guiutil%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/hand%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/handboard%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/humanclient%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/intelligence%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kajcsv%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kajongg%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kajonggserver%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kde%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kdepaths%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/kdestub%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/log%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/login%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/mainwindow%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/message%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/mi18n%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/mjresource%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/modeltest%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/move%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/permutations%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/player%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/playerlist%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/point%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/predefined%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/qt%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/qtreactor%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/query%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/rand%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/rule%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/rulecode%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/rulesetselector%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/scene%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/scoring%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/scoringdialog%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/server%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/servercommon%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/servertable%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/sound%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/statesaver%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tables%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tile%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tileset%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tilesetselector%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tilesource%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/tree%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/uitile%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/uiwall%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/user%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/util%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/visible%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/wall%%PYTHON_TAG%%.pyc %%DATADIR%%/__pycache__/wind%%PYTHON_TAG%%.pyc %%DATADIR%%/altint.py %%DATADIR%%/animation.py %%DATADIR%%/appversion.py %%DATADIR%%/background.py %%DATADIR%%/backgroundselector.py %%DATADIR%%/board.py %%DATADIR%%/chat.py %%DATADIR%%/client.py %%DATADIR%%/common.py %%DATADIR%%/config.py %%DATADIR%%/configdialog.py %%DATADIR%%/deferredutil.py %%DATADIR%%/dialogs.py %%DATADIR%%/differ.py %%DATADIR%%/game.py %%DATADIR%%/games.py %%DATADIR%%/genericdelegates.py %%DATADIR%%/guiutil.py %%DATADIR%%/hand.py %%DATADIR%%/handboard.py %%DATADIR%%/humanclient.py %%DATADIR%%/intelligence.py %%DATADIR%%/kajcsv.py %%DATADIR%%/kajongg.py %%DATADIR%%/kajonggserver.py %%DATADIR%%/kajonggui.rc %%DATADIR%%/kde.py %%DATADIR%%/kdepaths.py %%DATADIR%%/kdestub.py %%DATADIR%%/log.py %%DATADIR%%/login.py %%DATADIR%%/mainwindow.py %%DATADIR%%/message.py %%DATADIR%%/mi18n.py %%DATADIR%%/mjresource.py %%DATADIR%%/modeltest.py %%DATADIR%%/move.py %%DATADIR%%/permutations.py %%DATADIR%%/player.py %%DATADIR%%/playerlist.py %%DATADIR%%/point.py %%DATADIR%%/predefined.py %%DATADIR%%/qt.py %%DATADIR%%/qtreactor.py %%DATADIR%%/query.py %%DATADIR%%/rand.py %%DATADIR%%/rule.py %%DATADIR%%/rulecode.py %%DATADIR%%/rulesetselector.py %%DATADIR%%/scene.py %%DATADIR%%/scoring.py %%DATADIR%%/scoringdialog.py %%DATADIR%%/server.py %%DATADIR%%/servercommon.py %%DATADIR%%/servertable.py %%DATADIR%%/sound.py %%DATADIR%%/statesaver.py %%DATADIR%%/tables.py %%DATADIR%%/tile.py %%DATADIR%%/tileset.py %%DATADIR%%/tilesetselector.py %%DATADIR%%/tilesource.py %%DATADIR%%/tree.py %%DATADIR%%/uitile.py %%DATADIR%%/uiwall.py %%DATADIR%%/user.py %%DATADIR%%/util.py %%DATADIR%%/visible.py %%DATADIR%%/voices/de/female1/COPYRIGHT %%DATADIR%%/voices/de/female1/b1.ogg %%DATADIR%%/voices/de/female1/b2.ogg %%DATADIR%%/voices/de/female1/b3.ogg %%DATADIR%%/voices/de/female1/b4.ogg %%DATADIR%%/voices/de/female1/b5.ogg %%DATADIR%%/voices/de/female1/b6.ogg %%DATADIR%%/voices/de/female1/b7.ogg %%DATADIR%%/voices/de/female1/b8.ogg %%DATADIR%%/voices/de/female1/b9.ogg %%DATADIR%%/voices/de/female1/c1.ogg %%DATADIR%%/voices/de/female1/c2.ogg %%DATADIR%%/voices/de/female1/c3.ogg %%DATADIR%%/voices/de/female1/c4.ogg %%DATADIR%%/voices/de/female1/c5.ogg %%DATADIR%%/voices/de/female1/c6.ogg %%DATADIR%%/voices/de/female1/c7.ogg %%DATADIR%%/voices/de/female1/c8.ogg %%DATADIR%%/voices/de/female1/c9.ogg %%DATADIR%%/voices/de/female1/chow.ogg %%DATADIR%%/voices/de/female1/dangerousgame.ogg %%DATADIR%%/voices/de/female1/db.ogg %%DATADIR%%/voices/de/female1/dg.ogg %%DATADIR%%/voices/de/female1/dr.ogg %%DATADIR%%/voices/de/female1/kong.ogg %%DATADIR%%/voices/de/female1/mahjongg.ogg %%DATADIR%%/voices/de/female1/md5sum %%DATADIR%%/voices/de/female1/nochoice.ogg %%DATADIR%%/voices/de/female1/originalcall.ogg %%DATADIR%%/voices/de/female1/pung.ogg %%DATADIR%%/voices/de/female1/s1.ogg %%DATADIR%%/voices/de/female1/s2.ogg %%DATADIR%%/voices/de/female1/s3.ogg %%DATADIR%%/voices/de/female1/s4.ogg %%DATADIR%%/voices/de/female1/s5.ogg %%DATADIR%%/voices/de/female1/s6.ogg %%DATADIR%%/voices/de/female1/s7.ogg %%DATADIR%%/voices/de/female1/s8.ogg %%DATADIR%%/voices/de/female1/s9.ogg %%DATADIR%%/voices/de/female1/violatesoriginalcall.ogg %%DATADIR%%/voices/de/female1/we.ogg %%DATADIR%%/voices/de/female1/wn.ogg %%DATADIR%%/voices/de/female1/ws.ogg %%DATADIR%%/voices/de/female1/ww.ogg %%DATADIR%%/voices/de/female2/COPYRIGHT %%DATADIR%%/voices/de/female2/b1.ogg %%DATADIR%%/voices/de/female2/b2.ogg %%DATADIR%%/voices/de/female2/b3.ogg %%DATADIR%%/voices/de/female2/b4.ogg %%DATADIR%%/voices/de/female2/b5.ogg %%DATADIR%%/voices/de/female2/b6.ogg %%DATADIR%%/voices/de/female2/b7.ogg %%DATADIR%%/voices/de/female2/b8.ogg %%DATADIR%%/voices/de/female2/b9.ogg %%DATADIR%%/voices/de/female2/c1.ogg %%DATADIR%%/voices/de/female2/c2.ogg %%DATADIR%%/voices/de/female2/c3.ogg %%DATADIR%%/voices/de/female2/c4.ogg %%DATADIR%%/voices/de/female2/c5.ogg %%DATADIR%%/voices/de/female2/c6.ogg %%DATADIR%%/voices/de/female2/c7.ogg %%DATADIR%%/voices/de/female2/c8.ogg %%DATADIR%%/voices/de/female2/c9.ogg %%DATADIR%%/voices/de/female2/chow.ogg %%DATADIR%%/voices/de/female2/dangerousgame.ogg %%DATADIR%%/voices/de/female2/db.ogg %%DATADIR%%/voices/de/female2/dg.ogg %%DATADIR%%/voices/de/female2/dr.ogg %%DATADIR%%/voices/de/female2/kong.ogg %%DATADIR%%/voices/de/female2/mahjongg.ogg %%DATADIR%%/voices/de/female2/md5sum %%DATADIR%%/voices/de/female2/nochoice.ogg %%DATADIR%%/voices/de/female2/originalcall.ogg %%DATADIR%%/voices/de/female2/pung.ogg %%DATADIR%%/voices/de/female2/s1.ogg %%DATADIR%%/voices/de/female2/s2.ogg %%DATADIR%%/voices/de/female2/s3.ogg %%DATADIR%%/voices/de/female2/s4.ogg %%DATADIR%%/voices/de/female2/s5.ogg %%DATADIR%%/voices/de/female2/s6.ogg %%DATADIR%%/voices/de/female2/s7.ogg %%DATADIR%%/voices/de/female2/s8.ogg %%DATADIR%%/voices/de/female2/s9.ogg %%DATADIR%%/voices/de/female2/violatesoriginalcall.ogg %%DATADIR%%/voices/de/female2/we.ogg %%DATADIR%%/voices/de/female2/wn.ogg %%DATADIR%%/voices/de/female2/ws.ogg %%DATADIR%%/voices/de/female2/ww.ogg %%DATADIR%%/voices/de/male1/COPYRIGHT %%DATADIR%%/voices/de/male1/b1.ogg %%DATADIR%%/voices/de/male1/b2.ogg %%DATADIR%%/voices/de/male1/b3.ogg %%DATADIR%%/voices/de/male1/b4.ogg %%DATADIR%%/voices/de/male1/b5.ogg %%DATADIR%%/voices/de/male1/b6.ogg %%DATADIR%%/voices/de/male1/b7.ogg %%DATADIR%%/voices/de/male1/b8.ogg %%DATADIR%%/voices/de/male1/b9.ogg %%DATADIR%%/voices/de/male1/c1.ogg %%DATADIR%%/voices/de/male1/c2.ogg %%DATADIR%%/voices/de/male1/c3.ogg %%DATADIR%%/voices/de/male1/c4.ogg %%DATADIR%%/voices/de/male1/c5.ogg %%DATADIR%%/voices/de/male1/c6.ogg %%DATADIR%%/voices/de/male1/c7.ogg %%DATADIR%%/voices/de/male1/c8.ogg %%DATADIR%%/voices/de/male1/c9.ogg %%DATADIR%%/voices/de/male1/chow.ogg %%DATADIR%%/voices/de/male1/dangerousgame.ogg %%DATADIR%%/voices/de/male1/db.ogg %%DATADIR%%/voices/de/male1/dg.ogg %%DATADIR%%/voices/de/male1/dr.ogg %%DATADIR%%/voices/de/male1/kong.ogg %%DATADIR%%/voices/de/male1/mahjongg.ogg %%DATADIR%%/voices/de/male1/md5sum %%DATADIR%%/voices/de/male1/nochoice.ogg %%DATADIR%%/voices/de/male1/originalcall.ogg %%DATADIR%%/voices/de/male1/pung.ogg %%DATADIR%%/voices/de/male1/s1.ogg %%DATADIR%%/voices/de/male1/s2.ogg %%DATADIR%%/voices/de/male1/s3.ogg %%DATADIR%%/voices/de/male1/s4.ogg %%DATADIR%%/voices/de/male1/s5.ogg %%DATADIR%%/voices/de/male1/s6.ogg %%DATADIR%%/voices/de/male1/s7.ogg %%DATADIR%%/voices/de/male1/s8.ogg %%DATADIR%%/voices/de/male1/s9.ogg %%DATADIR%%/voices/de/male1/violatesoriginalcall.ogg %%DATADIR%%/voices/de/male1/we.ogg %%DATADIR%%/voices/de/male1/wn.ogg %%DATADIR%%/voices/de/male1/ws.ogg %%DATADIR%%/voices/de/male1/ww.ogg %%DATADIR%%/voices/de/male2/COPYRIGHT %%DATADIR%%/voices/de/male2/b1.ogg %%DATADIR%%/voices/de/male2/b2.ogg %%DATADIR%%/voices/de/male2/b3.ogg %%DATADIR%%/voices/de/male2/b4.ogg %%DATADIR%%/voices/de/male2/b5.ogg %%DATADIR%%/voices/de/male2/b6.ogg %%DATADIR%%/voices/de/male2/b7.ogg %%DATADIR%%/voices/de/male2/b8.ogg %%DATADIR%%/voices/de/male2/b9.ogg %%DATADIR%%/voices/de/male2/c1.ogg %%DATADIR%%/voices/de/male2/c2.ogg %%DATADIR%%/voices/de/male2/c3.ogg %%DATADIR%%/voices/de/male2/c4.ogg %%DATADIR%%/voices/de/male2/c5.ogg %%DATADIR%%/voices/de/male2/c6.ogg %%DATADIR%%/voices/de/male2/c7.ogg %%DATADIR%%/voices/de/male2/c8.ogg %%DATADIR%%/voices/de/male2/c9.ogg %%DATADIR%%/voices/de/male2/chow.ogg %%DATADIR%%/voices/de/male2/db.ogg %%DATADIR%%/voices/de/male2/dg.ogg %%DATADIR%%/voices/de/male2/dr.ogg %%DATADIR%%/voices/de/male2/kong.ogg %%DATADIR%%/voices/de/male2/mahjongg.ogg %%DATADIR%%/voices/de/male2/md5sum %%DATADIR%%/voices/de/male2/nochoice.ogg %%DATADIR%%/voices/de/male2/originalcall.ogg %%DATADIR%%/voices/de/male2/pung.ogg %%DATADIR%%/voices/de/male2/s1.ogg %%DATADIR%%/voices/de/male2/s2.ogg %%DATADIR%%/voices/de/male2/s3.ogg %%DATADIR%%/voices/de/male2/s4.ogg %%DATADIR%%/voices/de/male2/s5.ogg %%DATADIR%%/voices/de/male2/s6.ogg %%DATADIR%%/voices/de/male2/s7.ogg %%DATADIR%%/voices/de/male2/s8.ogg %%DATADIR%%/voices/de/male2/s9.ogg %%DATADIR%%/voices/de/male2/violatesoriginalcall.ogg %%DATADIR%%/voices/de/male2/we.ogg %%DATADIR%%/voices/de/male2/wn.ogg %%DATADIR%%/voices/de/male2/ws.ogg %%DATADIR%%/voices/de/male2/ww.ogg %%DATADIR%%/voices/female1/COPYRIGHT %%DATADIR%%/voices/female1/b1.ogg %%DATADIR%%/voices/female1/b2.ogg %%DATADIR%%/voices/female1/b3.ogg %%DATADIR%%/voices/female1/b4.ogg %%DATADIR%%/voices/female1/b5.ogg %%DATADIR%%/voices/female1/b6.ogg %%DATADIR%%/voices/female1/b7.ogg %%DATADIR%%/voices/female1/b8.ogg %%DATADIR%%/voices/female1/b9.ogg %%DATADIR%%/voices/female1/c1.ogg %%DATADIR%%/voices/female1/c2.ogg %%DATADIR%%/voices/female1/c3.ogg %%DATADIR%%/voices/female1/c4.ogg %%DATADIR%%/voices/female1/c5.ogg %%DATADIR%%/voices/female1/c6.ogg %%DATADIR%%/voices/female1/c7.ogg %%DATADIR%%/voices/female1/c8.ogg %%DATADIR%%/voices/female1/c9.ogg %%DATADIR%%/voices/female1/chow.ogg %%DATADIR%%/voices/female1/dangerousgame.ogg %%DATADIR%%/voices/female1/db.ogg %%DATADIR%%/voices/female1/dg.ogg %%DATADIR%%/voices/female1/dr.ogg %%DATADIR%%/voices/female1/kong.ogg %%DATADIR%%/voices/female1/mahjongg.ogg %%DATADIR%%/voices/female1/md5sum %%DATADIR%%/voices/female1/nochoice.ogg %%DATADIR%%/voices/female1/originalcall.ogg %%DATADIR%%/voices/female1/pung.ogg %%DATADIR%%/voices/female1/s1.ogg %%DATADIR%%/voices/female1/s2.ogg %%DATADIR%%/voices/female1/s3.ogg %%DATADIR%%/voices/female1/s4.ogg %%DATADIR%%/voices/female1/s5.ogg %%DATADIR%%/voices/female1/s6.ogg %%DATADIR%%/voices/female1/s7.ogg %%DATADIR%%/voices/female1/s8.ogg %%DATADIR%%/voices/female1/s9.ogg %%DATADIR%%/voices/female1/violatesoriginalcall.ogg %%DATADIR%%/voices/female1/we.ogg %%DATADIR%%/voices/female1/wn.ogg %%DATADIR%%/voices/female1/ws.ogg %%DATADIR%%/voices/female1/ww.ogg %%DATADIR%%/voices/female2/COPYRIGHT %%DATADIR%%/voices/female2/b1.ogg %%DATADIR%%/voices/female2/b2.ogg %%DATADIR%%/voices/female2/b3.ogg %%DATADIR%%/voices/female2/b4.ogg %%DATADIR%%/voices/female2/b5.ogg %%DATADIR%%/voices/female2/b6.ogg %%DATADIR%%/voices/female2/b7.ogg %%DATADIR%%/voices/female2/b8.ogg %%DATADIR%%/voices/female2/b9.ogg %%DATADIR%%/voices/female2/c1.ogg %%DATADIR%%/voices/female2/c2.ogg %%DATADIR%%/voices/female2/c3.ogg %%DATADIR%%/voices/female2/c4.ogg %%DATADIR%%/voices/female2/c5.ogg %%DATADIR%%/voices/female2/c6.ogg %%DATADIR%%/voices/female2/c7.ogg %%DATADIR%%/voices/female2/c8.ogg %%DATADIR%%/voices/female2/c9.ogg %%DATADIR%%/voices/female2/chow.ogg %%DATADIR%%/voices/female2/dangerousgame.ogg %%DATADIR%%/voices/female2/db.ogg %%DATADIR%%/voices/female2/dg.ogg %%DATADIR%%/voices/female2/dr.ogg %%DATADIR%%/voices/female2/kong.ogg %%DATADIR%%/voices/female2/mahjongg.ogg %%DATADIR%%/voices/female2/md5sum %%DATADIR%%/voices/female2/nochoice.ogg %%DATADIR%%/voices/female2/originalcall.ogg %%DATADIR%%/voices/female2/pung.ogg %%DATADIR%%/voices/female2/s1.ogg %%DATADIR%%/voices/female2/s2.ogg %%DATADIR%%/voices/female2/s3.ogg %%DATADIR%%/voices/female2/s4.ogg %%DATADIR%%/voices/female2/s5.ogg %%DATADIR%%/voices/female2/s6.ogg %%DATADIR%%/voices/female2/s7.ogg %%DATADIR%%/voices/female2/s8.ogg %%DATADIR%%/voices/female2/s9.ogg %%DATADIR%%/voices/female2/violatesoriginalcall.ogg %%DATADIR%%/voices/female2/we.ogg %%DATADIR%%/voices/female2/wn.ogg %%DATADIR%%/voices/female2/ws.ogg %%DATADIR%%/voices/female2/ww.ogg %%DATADIR%%/voices/male1/COPYRIGHT %%DATADIR%%/voices/male1/b1.ogg %%DATADIR%%/voices/male1/b2.ogg %%DATADIR%%/voices/male1/b3.ogg %%DATADIR%%/voices/male1/b4.ogg %%DATADIR%%/voices/male1/b5.ogg %%DATADIR%%/voices/male1/b6.ogg %%DATADIR%%/voices/male1/b7.ogg %%DATADIR%%/voices/male1/b8.ogg %%DATADIR%%/voices/male1/b9.ogg %%DATADIR%%/voices/male1/c1.ogg %%DATADIR%%/voices/male1/c2.ogg %%DATADIR%%/voices/male1/c3.ogg %%DATADIR%%/voices/male1/c4.ogg %%DATADIR%%/voices/male1/c5.ogg %%DATADIR%%/voices/male1/c6.ogg %%DATADIR%%/voices/male1/c7.ogg %%DATADIR%%/voices/male1/c8.ogg %%DATADIR%%/voices/male1/c9.ogg %%DATADIR%%/voices/male1/chow.ogg %%DATADIR%%/voices/male1/dangerousgame.ogg %%DATADIR%%/voices/male1/db.ogg %%DATADIR%%/voices/male1/dg.ogg %%DATADIR%%/voices/male1/dr.ogg %%DATADIR%%/voices/male1/kong.ogg %%DATADIR%%/voices/male1/mahjongg.ogg %%DATADIR%%/voices/male1/md5sum %%DATADIR%%/voices/male1/nochoice.ogg %%DATADIR%%/voices/male1/originalcall.ogg %%DATADIR%%/voices/male1/pung.ogg %%DATADIR%%/voices/male1/s1.ogg %%DATADIR%%/voices/male1/s2.ogg %%DATADIR%%/voices/male1/s3.ogg %%DATADIR%%/voices/male1/s4.ogg %%DATADIR%%/voices/male1/s5.ogg %%DATADIR%%/voices/male1/s6.ogg %%DATADIR%%/voices/male1/s7.ogg %%DATADIR%%/voices/male1/s8.ogg %%DATADIR%%/voices/male1/s9.ogg %%DATADIR%%/voices/male1/violatesoriginalcall.ogg %%DATADIR%%/voices/male1/we.ogg %%DATADIR%%/voices/male1/wn.ogg %%DATADIR%%/voices/male1/ws.ogg %%DATADIR%%/voices/male1/ww.ogg %%DATADIR%%/voices/male2/b1.ogg %%DATADIR%%/voices/male2/b2.ogg %%DATADIR%%/voices/male2/b3.ogg %%DATADIR%%/voices/male2/b4.ogg %%DATADIR%%/voices/male2/b5.ogg %%DATADIR%%/voices/male2/b6.ogg %%DATADIR%%/voices/male2/b7.ogg %%DATADIR%%/voices/male2/b8.ogg %%DATADIR%%/voices/male2/b9.ogg %%DATADIR%%/voices/male2/c1.ogg %%DATADIR%%/voices/male2/c2.ogg %%DATADIR%%/voices/male2/c3.ogg %%DATADIR%%/voices/male2/c4.ogg %%DATADIR%%/voices/male2/c5.ogg %%DATADIR%%/voices/male2/c6.ogg %%DATADIR%%/voices/male2/c7.ogg %%DATADIR%%/voices/male2/c8.ogg %%DATADIR%%/voices/male2/c9.ogg %%DATADIR%%/voices/male2/chow.ogg %%DATADIR%%/voices/male2/dangerousgame.ogg %%DATADIR%%/voices/male2/db.ogg %%DATADIR%%/voices/male2/dg.ogg %%DATADIR%%/voices/male2/dr.ogg %%DATADIR%%/voices/male2/kong.ogg %%DATADIR%%/voices/male2/mahjongg.ogg %%DATADIR%%/voices/male2/md5sum %%DATADIR%%/voices/male2/nochoice.ogg %%DATADIR%%/voices/male2/originalcall.ogg %%DATADIR%%/voices/male2/pung.ogg %%DATADIR%%/voices/male2/s1.ogg %%DATADIR%%/voices/male2/s2.ogg %%DATADIR%%/voices/male2/s3.ogg %%DATADIR%%/voices/male2/s4.ogg %%DATADIR%%/voices/male2/s5.ogg %%DATADIR%%/voices/male2/s6.ogg %%DATADIR%%/voices/male2/s7.ogg %%DATADIR%%/voices/male2/s8.ogg %%DATADIR%%/voices/male2/s9.ogg %%DATADIR%%/voices/male2/violatesoriginalcall.ogg %%DATADIR%%/voices/male2/we.ogg %%DATADIR%%/voices/male2/wn.ogg %%DATADIR%%/voices/male2/ws.ogg %%DATADIR%%/voices/male2/ww.ogg %%DATADIR%%/wall.py %%DATADIR%%/wind.py share/locale/ar/LC_MESSAGES/kajongg.mo share/locale/ast/LC_MESSAGES/kajongg.mo -share/locale/bg/LC_MESSAGES/kajongg.mo share/locale/bs/LC_MESSAGES/kajongg.mo share/locale/ca/LC_MESSAGES/kajongg.mo share/locale/ca@valencia/LC_MESSAGES/kajongg.mo share/locale/cs/LC_MESSAGES/kajongg.mo share/locale/da/LC_MESSAGES/kajongg.mo share/locale/de/LC_MESSAGES/kajongg.mo share/locale/el/LC_MESSAGES/kajongg.mo share/locale/en_GB/LC_MESSAGES/kajongg.mo share/locale/eo/LC_MESSAGES/kajongg.mo share/locale/es/LC_MESSAGES/kajongg.mo share/locale/et/LC_MESSAGES/kajongg.mo share/locale/eu/LC_MESSAGES/kajongg.mo share/locale/fi/LC_MESSAGES/kajongg.mo share/locale/fr/LC_MESSAGES/kajongg.mo share/locale/ga/LC_MESSAGES/kajongg.mo share/locale/gl/LC_MESSAGES/kajongg.mo share/locale/he/LC_MESSAGES/kajongg.mo share/locale/hi/LC_MESSAGES/kajongg.mo share/locale/hu/LC_MESSAGES/kajongg.mo share/locale/ia/LC_MESSAGES/kajongg.mo share/locale/is/LC_MESSAGES/kajongg.mo share/locale/it/LC_MESSAGES/kajongg.mo share/locale/ja/LC_MESSAGES/kajongg.mo share/locale/ka/LC_MESSAGES/kajongg.mo share/locale/kk/LC_MESSAGES/kajongg.mo share/locale/km/LC_MESSAGES/kajongg.mo +share/locale/ko/LC_MESSAGES/kajongg.mo share/locale/lt/LC_MESSAGES/kajongg.mo share/locale/mai/LC_MESSAGES/kajongg.mo share/locale/ml/LC_MESSAGES/kajongg.mo share/locale/mr/LC_MESSAGES/kajongg.mo share/locale/nb/LC_MESSAGES/kajongg.mo share/locale/nds/LC_MESSAGES/kajongg.mo share/locale/nl/LC_MESSAGES/kajongg.mo share/locale/nn/LC_MESSAGES/kajongg.mo share/locale/pl/LC_MESSAGES/kajongg.mo share/locale/pt/LC_MESSAGES/kajongg.mo share/locale/pt_BR/LC_MESSAGES/kajongg.mo share/locale/ro/LC_MESSAGES/kajongg.mo share/locale/ru/LC_MESSAGES/kajongg.mo share/locale/sa/LC_MESSAGES/kajongg.mo share/locale/sk/LC_MESSAGES/kajongg.mo share/locale/sl/LC_MESSAGES/kajongg.mo share/locale/sr/LC_MESSAGES/kajongg.mo share/locale/sr@ijekavian/LC_MESSAGES/kajongg.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kajongg.mo share/locale/sr@latin/LC_MESSAGES/kajongg.mo share/locale/sv/LC_MESSAGES/kajongg.mo share/locale/tr/LC_MESSAGES/kajongg.mo share/locale/ug/LC_MESSAGES/kajongg.mo share/locale/uk/LC_MESSAGES/kajongg.mo share/locale/zh_CN/LC_MESSAGES/kajongg.mo share/locale/zh_TW/LC_MESSAGES/kajongg.mo share/metainfo/org.kde.kajongg.appdata.xml diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 32c396792725..51c5b14d00f0 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478405 -SHA256 (KDE/release-service/26.04.2/kanagram-26.04.2.tar.xz) = 73a1d5056fd00f137bac234cb618d24a8f3e4bda31d03fec0089bb93de069ab9 -SIZE (KDE/release-service/26.04.2/kanagram-26.04.2.tar.xz) = 7786728 +TIMESTAMP = 1782826739 +SHA256 (KDE/release-service/26.04.3/kanagram-26.04.3.tar.xz) = ef08ea3ed240c2a163e2b2abf1a19fcfbda079c8f000f9dd1e14fab44851fd0d +SIZE (KDE/release-service/26.04.3/kanagram-26.04.3.tar.xz) = 7785112 diff --git a/games/kanagram/pkg-plist b/games/kanagram/pkg-plist index a2d406f45180..46ca3aba51fb 100644 --- a/games/kanagram/pkg-plist +++ b/games/kanagram/pkg-plist @@ -1,111 +1,110 @@ bin/kanagram share/applications/org.kde.kanagram.desktop share/config.kcfg/kanagram.kcfg share/icons/hicolor/128x128/apps/kanagram.png share/icons/hicolor/16x16/apps/kanagram.png share/icons/hicolor/24x24/apps/kanagram.png share/icons/hicolor/32x32/apps/kanagram.png share/icons/hicolor/48x48/apps/kanagram.png share/icons/hicolor/64x64/apps/kanagram.png share/icons/hicolor/80x80/apps/kanagram-harmattan.png share/icons/hicolor/scalable/apps/kanagram.svgz %%DATADIR%%/ui/Blackboard.qml %%DATADIR%%/ui/IconButton.qml %%DATADIR%%/ui/LetterButton.qml %%DATADIR%%/ui/icons/1player.png %%DATADIR%%/ui/icons/2player.png %%DATADIR%%/ui/icons/about-kanagram.png %%DATADIR%%/ui/icons/about-kde.png %%DATADIR%%/ui/icons/arrow-light.svgz %%DATADIR%%/ui/icons/close.png %%DATADIR%%/ui/icons/hint.png %%DATADIR%%/ui/icons/kanagram-handbook.png %%DATADIR%%/ui/icons/left-arrow.png %%DATADIR%%/ui/icons/on-off-light.svgz %%DATADIR%%/ui/icons/question-light.svgz %%DATADIR%%/ui/icons/reveal.png %%DATADIR%%/ui/icons/right-arrow.png %%DATADIR%%/ui/icons/spanner-light.svgz %%DATADIR%%/ui/icons/timer.png %%DATADIR%%/ui/icons/wikipedia.png %%DATADIR%%/ui/images/background.jpg %%DATADIR%%/ui/images/chalkboard.png %%DATADIR%%/ui/images/header.png %%DATADIR%%/ui/main.qml %%DATADIR%%/ui/sounds/chalk.ogg %%DATADIR%%/ui/sounds/chalk.wav %%DATADIR%%/ui/sounds/right.ogg %%DATADIR%%/ui/sounds/right.wav %%DATADIR%%/ui/sounds/wrong.ogg %%DATADIR%%/ui/sounds/wrong.wav share/knsrcfiles/kanagram.knsrc share/locale/ar/LC_MESSAGES/kanagram.mo share/locale/ast/LC_MESSAGES/kanagram.mo share/locale/be/LC_MESSAGES/kanagram.mo -share/locale/bg/LC_MESSAGES/kanagram.mo share/locale/bn/LC_MESSAGES/kanagram.mo share/locale/br/LC_MESSAGES/kanagram.mo share/locale/bs/LC_MESSAGES/kanagram.mo share/locale/ca/LC_MESSAGES/kanagram.mo share/locale/ca@valencia/LC_MESSAGES/kanagram.mo share/locale/cs/LC_MESSAGES/kanagram.mo share/locale/cy/LC_MESSAGES/kanagram.mo share/locale/da/LC_MESSAGES/kanagram.mo share/locale/de/LC_MESSAGES/kanagram.mo share/locale/el/LC_MESSAGES/kanagram.mo share/locale/en_GB/LC_MESSAGES/kanagram.mo share/locale/eo/LC_MESSAGES/kanagram.mo share/locale/es/LC_MESSAGES/kanagram.mo share/locale/et/LC_MESSAGES/kanagram.mo share/locale/eu/LC_MESSAGES/kanagram.mo share/locale/fa/LC_MESSAGES/kanagram.mo share/locale/fi/LC_MESSAGES/kanagram.mo share/locale/fr/LC_MESSAGES/kanagram.mo share/locale/ga/LC_MESSAGES/kanagram.mo share/locale/gl/LC_MESSAGES/kanagram.mo share/locale/gu/LC_MESSAGES/kanagram.mo share/locale/he/LC_MESSAGES/kanagram.mo share/locale/hi/LC_MESSAGES/kanagram.mo share/locale/hne/LC_MESSAGES/kanagram.mo share/locale/hr/LC_MESSAGES/kanagram.mo share/locale/hu/LC_MESSAGES/kanagram.mo share/locale/ia/LC_MESSAGES/kanagram.mo share/locale/id/LC_MESSAGES/kanagram.mo share/locale/it/LC_MESSAGES/kanagram.mo share/locale/ja/LC_MESSAGES/kanagram.mo share/locale/ka/LC_MESSAGES/kanagram.mo share/locale/kk/LC_MESSAGES/kanagram.mo share/locale/km/LC_MESSAGES/kanagram.mo share/locale/ko/LC_MESSAGES/kanagram.mo share/locale/lt/LC_MESSAGES/kanagram.mo share/locale/lv/LC_MESSAGES/kanagram.mo share/locale/mk/LC_MESSAGES/kanagram.mo share/locale/ml/LC_MESSAGES/kanagram.mo share/locale/mr/LC_MESSAGES/kanagram.mo share/locale/ms/LC_MESSAGES/kanagram.mo share/locale/nb/LC_MESSAGES/kanagram.mo share/locale/nds/LC_MESSAGES/kanagram.mo share/locale/ne/LC_MESSAGES/kanagram.mo share/locale/nl/LC_MESSAGES/kanagram.mo share/locale/nn/LC_MESSAGES/kanagram.mo share/locale/oc/LC_MESSAGES/kanagram.mo share/locale/pa/LC_MESSAGES/kanagram.mo share/locale/pl/LC_MESSAGES/kanagram.mo share/locale/pt/LC_MESSAGES/kanagram.mo share/locale/pt_BR/LC_MESSAGES/kanagram.mo share/locale/ro/LC_MESSAGES/kanagram.mo share/locale/ru/LC_MESSAGES/kanagram.mo share/locale/sa/LC_MESSAGES/kanagram.mo share/locale/se/LC_MESSAGES/kanagram.mo share/locale/si/LC_MESSAGES/kanagram.mo share/locale/sk/LC_MESSAGES/kanagram.mo share/locale/sl/LC_MESSAGES/kanagram.mo share/locale/sq/LC_MESSAGES/kanagram.mo share/locale/sv/LC_MESSAGES/kanagram.mo share/locale/tg/LC_MESSAGES/kanagram.mo share/locale/tr/LC_MESSAGES/kanagram.mo share/locale/ug/LC_MESSAGES/kanagram.mo share/locale/uk/LC_MESSAGES/kanagram.mo share/locale/zh_CN/LC_MESSAGES/kanagram.mo share/locale/zh_TW/LC_MESSAGES/kanagram.mo share/metainfo/org.kde.kanagram.appdata.xml diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 6a7888663493..cbc445dca138 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478407 -SHA256 (KDE/release-service/26.04.2/kapman-26.04.2.tar.xz) = c03362a979be1fc4ced03cdf7ae4cc16987cfd7ccbf2bf1f3b1054fd1910f982 -SIZE (KDE/release-service/26.04.2/kapman-26.04.2.tar.xz) = 2149924 +TIMESTAMP = 1782826741 +SHA256 (KDE/release-service/26.04.3/kapman-26.04.3.tar.xz) = 1803ad4cf63e103b36970470a66974140c3a7f6e60c8fd1de4f47d930004a36f +SIZE (KDE/release-service/26.04.3/kapman-26.04.3.tar.xz) = 2149424 diff --git a/games/kapman/pkg-plist b/games/kapman/pkg-plist index 947acce94f12..70b015026963 100644 --- a/games/kapman/pkg-plist +++ b/games/kapman/pkg-plist @@ -1,95 +1,94 @@ bin/kapman share/applications/org.kde.kapman.desktop share/icons/hicolor/128x128/apps/kapman.png share/icons/hicolor/16x16/apps/kapman.png share/icons/hicolor/22x22/apps/kapman.png share/icons/hicolor/32x32/apps/kapman.png share/icons/hicolor/48x48/apps/kapman.png share/icons/hicolor/64x64/apps/kapman.png %%DATADIR%%/defaultmaze.xml %%DATADIR%%/themes/invisible.desktop %%DATADIR%%/themes/invisible.svgz %%DATADIR%%/themes/invisible_preview.png %%DATADIR%%/themes/matches.desktop %%DATADIR%%/themes/matches.svgz %%DATADIR%%/themes/matches_preview.png %%DATADIR%%/themes/mountain.desktop %%DATADIR%%/themes/mountain.svgz %%DATADIR%%/themes/mountain_preview.png %%DATADIR%%/themes/mummies_crypt.desktop %%DATADIR%%/themes/mummies_crypt.svgz %%DATADIR%%/themes/mummies_crypt_preview.png %%DATADIR%%/themes/retro.desktop %%DATADIR%%/themes/retro.svgz %%DATADIR%%/themes/retro_preview.png share/locale/ar/LC_MESSAGES/kapman.mo share/locale/ast/LC_MESSAGES/kapman.mo -share/locale/bg/LC_MESSAGES/kapman.mo share/locale/bs/LC_MESSAGES/kapman.mo share/locale/ca/LC_MESSAGES/kapman.mo share/locale/ca@valencia/LC_MESSAGES/kapman.mo share/locale/cs/LC_MESSAGES/kapman.mo share/locale/da/LC_MESSAGES/kapman.mo share/locale/de/LC_MESSAGES/kapman.mo share/locale/el/LC_MESSAGES/kapman.mo share/locale/en_GB/LC_MESSAGES/kapman.mo share/locale/eo/LC_MESSAGES/kapman.mo share/locale/es/LC_MESSAGES/kapman.mo share/locale/et/LC_MESSAGES/kapman.mo share/locale/eu/LC_MESSAGES/kapman.mo share/locale/fi/LC_MESSAGES/kapman.mo share/locale/fr/LC_MESSAGES/kapman.mo share/locale/ga/LC_MESSAGES/kapman.mo share/locale/gl/LC_MESSAGES/kapman.mo share/locale/gu/LC_MESSAGES/kapman.mo share/locale/he/LC_MESSAGES/kapman.mo share/locale/hi/LC_MESSAGES/kapman.mo share/locale/hr/LC_MESSAGES/kapman.mo share/locale/hu/LC_MESSAGES/kapman.mo share/locale/ia/LC_MESSAGES/kapman.mo share/locale/id/LC_MESSAGES/kapman.mo share/locale/is/LC_MESSAGES/kapman.mo share/locale/it/LC_MESSAGES/kapman.mo share/locale/ja/LC_MESSAGES/kapman.mo share/locale/ka/LC_MESSAGES/kapman.mo share/locale/kk/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kapman.mo share/locale/ko/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lv/LC_MESSAGES/kapman.mo share/locale/mai/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kapman.mo share/locale/mr/LC_MESSAGES/kapman.mo share/locale/ms/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kapman.mo share/locale/sa/LC_MESSAGES/kapman.mo share/locale/sk/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kapman.mo share/locale/sq/LC_MESSAGES/kapman.mo share/locale/sr/LC_MESSAGES/kapman.mo share/locale/sr@ijekavian/LC_MESSAGES/kapman.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kapman.mo share/locale/sr@latin/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kapman.mo share/locale/th/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kapman.mo share/locale/ug/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kapman.mo share/metainfo/org.kde.kapman.appdata.xml share/sounds/kapman/bonus.ogg share/sounds/kapman/energizer.ogg share/sounds/kapman/gameover.ogg share/sounds/kapman/ghost.ogg share/sounds/kapman/levelup.ogg share/sounds/kapman/life.ogg share/sounds/kapman/pill.ogg diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 2d4d21d12b8f..900164b8727b 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478409 -SHA256 (KDE/release-service/26.04.2/katomic-26.04.2.tar.xz) = d49a42b879f17065d918f948afa1ba7a337fee4ff0a3a9ef8f8bc8faf2090caa -SIZE (KDE/release-service/26.04.2/katomic-26.04.2.tar.xz) = 1450544 +TIMESTAMP = 1782826743 +SHA256 (KDE/release-service/26.04.3/katomic-26.04.3.tar.xz) = 936265a75eec7f86c661e27b003533da884e77f628bbdd37696d0b9a76f3a8cb +SIZE (KDE/release-service/26.04.3/katomic-26.04.3.tar.xz) = 1449500 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index c1cf5dc4e89e..5a5392c58087 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478410 -SHA256 (KDE/release-service/26.04.2/kblackbox-26.04.2.tar.xz) = 0af802fb83af4857ed8480640e5a4bc9600df3ca90a688f9582263856ec82de6 -SIZE (KDE/release-service/26.04.2/kblackbox-26.04.2.tar.xz) = 555508 +TIMESTAMP = 1782826744 +SHA256 (KDE/release-service/26.04.3/kblackbox-26.04.3.tar.xz) = 3ad6199c97717662b42a6d82a8a8f3325437219e06afff432a5ba162213160ae +SIZE (KDE/release-service/26.04.3/kblackbox-26.04.3.tar.xz) = 555500 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 4e7aabad82b4..747117209e85 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478412 -SHA256 (KDE/release-service/26.04.2/kblocks-26.04.2.tar.xz) = b16aa8f6ca132cffe4ecd8003de807c178711245b03021ea5acd348784ec6263 -SIZE (KDE/release-service/26.04.2/kblocks-26.04.2.tar.xz) = 2104684 +TIMESTAMP = 1782826746 +SHA256 (KDE/release-service/26.04.3/kblocks-26.04.3.tar.xz) = 51ea7e22c006904607c34116d7107e77adf59b767f2be7ff4073fbc717c3e568 +SIZE (KDE/release-service/26.04.3/kblocks-26.04.3.tar.xz) = 2104536 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index c6347736796d..ef7aec0fff1e 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478414 -SHA256 (KDE/release-service/26.04.2/kbounce-26.04.2.tar.xz) = d81afade48f33ee0eb74101fd81263b4d4f19d5c3a3678d947a1fbcac6d15e8e -SIZE (KDE/release-service/26.04.2/kbounce-26.04.2.tar.xz) = 3324692 +TIMESTAMP = 1782826748 +SHA256 (KDE/release-service/26.04.3/kbounce-26.04.3.tar.xz) = 9670e5d139b52643edf6b029e1478e3a7005203866390a0cb4385c67937e48d1 +SIZE (KDE/release-service/26.04.3/kbounce-26.04.3.tar.xz) = 3324972 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 361c53634dbf..a1398c2879dd 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478415 -SHA256 (KDE/release-service/26.04.2/kbreakout-26.04.2.tar.xz) = b070386a8b0eb5ae2b6f7bc862acebd670c50e9ee3fa64a711c88397e3a4e570 -SIZE (KDE/release-service/26.04.2/kbreakout-26.04.2.tar.xz) = 2559468 +TIMESTAMP = 1782826750 +SHA256 (KDE/release-service/26.04.3/kbreakout-26.04.3.tar.xz) = 9e81314e6f6a2d1dd71cf4247b3be8aa33d4723cf546a31a575dd338684dcc9b +SIZE (KDE/release-service/26.04.3/kbreakout-26.04.3.tar.xz) = 2558972 diff --git a/games/kbreakout/pkg-plist b/games/kbreakout/pkg-plist index 8833e1ad34a8..1b63ecda8e7d 100644 --- a/games/kbreakout/pkg-plist +++ b/games/kbreakout/pkg-plist @@ -1,103 +1,102 @@ bin/kbreakout share/applications/org.kde.kbreakout.desktop share/icons/hicolor/128x128/apps/kbreakout.png share/icons/hicolor/16x16/apps/kbreakout.png share/icons/hicolor/22x22/apps/kbreakout.png share/icons/hicolor/32x32/apps/kbreakout.png share/icons/hicolor/48x48/apps/kbreakout.png share/icons/hicolor/64x64/apps/kbreakout.png share/icons/hicolor/scalable/apps/kbreakout.svg %%DATADIR%%/levelsets/default.levelset %%DATADIR%%/qml/Ball.qml %%DATADIR%%/qml/Bar.qml %%DATADIR%%/qml/Brick.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Gift.qml %%DATADIR%%/qml/Singleshot.qml %%DATADIR%%/qml/TextItem.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/themes/IceWorld.desktop %%DATADIR%%/themes/IceWorld.svgz %%DATADIR%%/themes/IceWorld_preview.png %%DATADIR%%/themes/alienbreakout.desktop %%DATADIR%%/themes/alienbreakout.svgz %%DATADIR%%/themes/alienbreakout_preview.png %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.svgz %%DATADIR%%/themes/crystal_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptianbreakout.svgz %%DATADIR%%/themes/egyptianbreakout_preview.png %%DATADIR%%/themes/simple.desktop %%DATADIR%%/themes/simple.svgz %%DATADIR%%/themes/simple_preview.png %%DATADIR%%/themes/web20.desktop %%DATADIR%%/themes/web20.svgz %%DATADIR%%/themes/web20_preview.png share/locale/ar/LC_MESSAGES/kbreakout.mo share/locale/ast/LC_MESSAGES/kbreakout.mo -share/locale/bg/LC_MESSAGES/kbreakout.mo share/locale/bs/LC_MESSAGES/kbreakout.mo share/locale/ca/LC_MESSAGES/kbreakout.mo share/locale/ca@valencia/LC_MESSAGES/kbreakout.mo share/locale/cs/LC_MESSAGES/kbreakout.mo share/locale/da/LC_MESSAGES/kbreakout.mo share/locale/de/LC_MESSAGES/kbreakout.mo share/locale/el/LC_MESSAGES/kbreakout.mo share/locale/en_GB/LC_MESSAGES/kbreakout.mo share/locale/eo/LC_MESSAGES/kbreakout.mo share/locale/es/LC_MESSAGES/kbreakout.mo share/locale/et/LC_MESSAGES/kbreakout.mo share/locale/eu/LC_MESSAGES/kbreakout.mo share/locale/fi/LC_MESSAGES/kbreakout.mo share/locale/fr/LC_MESSAGES/kbreakout.mo share/locale/ga/LC_MESSAGES/kbreakout.mo share/locale/gl/LC_MESSAGES/kbreakout.mo share/locale/gu/LC_MESSAGES/kbreakout.mo share/locale/he/LC_MESSAGES/kbreakout.mo share/locale/hi/LC_MESSAGES/kbreakout.mo share/locale/hr/LC_MESSAGES/kbreakout.mo share/locale/hu/LC_MESSAGES/kbreakout.mo share/locale/ia/LC_MESSAGES/kbreakout.mo share/locale/id/LC_MESSAGES/kbreakout.mo share/locale/is/LC_MESSAGES/kbreakout.mo share/locale/it/LC_MESSAGES/kbreakout.mo share/locale/ja/LC_MESSAGES/kbreakout.mo share/locale/ka/LC_MESSAGES/kbreakout.mo share/locale/kk/LC_MESSAGES/kbreakout.mo share/locale/km/LC_MESSAGES/kbreakout.mo share/locale/ko/LC_MESSAGES/kbreakout.mo share/locale/lt/LC_MESSAGES/kbreakout.mo share/locale/lv/LC_MESSAGES/kbreakout.mo share/locale/mai/LC_MESSAGES/kbreakout.mo share/locale/ml/LC_MESSAGES/kbreakout.mo share/locale/mr/LC_MESSAGES/kbreakout.mo share/locale/nb/LC_MESSAGES/kbreakout.mo share/locale/nds/LC_MESSAGES/kbreakout.mo share/locale/nl/LC_MESSAGES/kbreakout.mo share/locale/nn/LC_MESSAGES/kbreakout.mo share/locale/pl/LC_MESSAGES/kbreakout.mo share/locale/pt/LC_MESSAGES/kbreakout.mo share/locale/pt_BR/LC_MESSAGES/kbreakout.mo share/locale/ro/LC_MESSAGES/kbreakout.mo share/locale/ru/LC_MESSAGES/kbreakout.mo share/locale/sa/LC_MESSAGES/kbreakout.mo share/locale/sk/LC_MESSAGES/kbreakout.mo share/locale/sl/LC_MESSAGES/kbreakout.mo share/locale/sq/LC_MESSAGES/kbreakout.mo share/locale/sr/LC_MESSAGES/kbreakout.mo share/locale/sr@ijekavian/LC_MESSAGES/kbreakout.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kbreakout.mo share/locale/sr@latin/LC_MESSAGES/kbreakout.mo share/locale/sv/LC_MESSAGES/kbreakout.mo share/locale/th/LC_MESSAGES/kbreakout.mo share/locale/tr/LC_MESSAGES/kbreakout.mo share/locale/ug/LC_MESSAGES/kbreakout.mo share/locale/uk/LC_MESSAGES/kbreakout.mo share/locale/wa/LC_MESSAGES/kbreakout.mo share/locale/zh_CN/LC_MESSAGES/kbreakout.mo share/locale/zh_TW/LC_MESSAGES/kbreakout.mo share/metainfo/org.kde.kbreakout.appdata.xml share/qlogging-categories6/kbreakout.categories diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 44c6d9f12d3e..4562dd1fb825 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478417 -SHA256 (KDE/release-service/26.04.2/kdiamond-26.04.2.tar.xz) = c80855502162b8567fa46f5b6683bd73eaa625fb8a9beb86a524ae4095a6b18e -SIZE (KDE/release-service/26.04.2/kdiamond-26.04.2.tar.xz) = 4675312 +TIMESTAMP = 1782826751 +SHA256 (KDE/release-service/26.04.3/kdiamond-26.04.3.tar.xz) = 47f82e5d54f79322d4ad5eb6cf918a21f34a83316ed2c778fe5f0beb4c937a9d +SIZE (KDE/release-service/26.04.3/kdiamond-26.04.3.tar.xz) = 4674700 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 74b5f1e236d1..28cc76f56aaf 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478418 -SHA256 (KDE/release-service/26.04.2/kfourinline-26.04.2.tar.xz) = 1ff1af2ad2ac38dc585fc668286d87534ccd20537cdceb010f1e49b82f6f0327 -SIZE (KDE/release-service/26.04.2/kfourinline-26.04.2.tar.xz) = 748476 +TIMESTAMP = 1782826753 +SHA256 (KDE/release-service/26.04.3/kfourinline-26.04.3.tar.xz) = 09f1e80ff3a11e37e0a7a27cecf886d0d0b390560a9da9302b790f74b35c19d6 +SIZE (KDE/release-service/26.04.3/kfourinline-26.04.3.tar.xz) = 747260 diff --git a/games/kfourinline/pkg-plist b/games/kfourinline/pkg-plist index 7fda03bb2ed4..3cdc051d4a00 100644 --- a/games/kfourinline/pkg-plist +++ b/games/kfourinline/pkg-plist @@ -1,97 +1,96 @@ bin/kfourinline bin/kfourinlineproc share/applications/org.kde.kfourinline.desktop share/config.kcfg/kwin4.kcfg share/icons/hicolor/128x128/apps/kfourinline.png share/icons/hicolor/16x16/apps/kfourinline.png share/icons/hicolor/22x22/apps/kfourinline.png share/icons/hicolor/32x32/apps/kfourinline.png share/icons/hicolor/48x48/apps/kfourinline.png share/icons/hicolor/64x64/apps/kfourinline.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.rc %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/gray_reflection.desktop %%DATADIR%%/themes/gray_reflection.rc %%DATADIR%%/themes/gray_reflection.svgz %%DATADIR%%/themes/yellow.desktop %%DATADIR%%/themes/yellow.rc %%DATADIR%%/themes/yellow.svgz %%DATADIR%%/themes/yellow_reflection.desktop %%DATADIR%%/themes/yellow_reflection.rc share/locale/af/LC_MESSAGES/kfourinline.mo share/locale/ar/LC_MESSAGES/kfourinline.mo share/locale/ast/LC_MESSAGES/kfourinline.mo share/locale/be/LC_MESSAGES/kfourinline.mo -share/locale/bg/LC_MESSAGES/kfourinline.mo share/locale/br/LC_MESSAGES/kfourinline.mo share/locale/bs/LC_MESSAGES/kfourinline.mo share/locale/ca/LC_MESSAGES/kfourinline.mo share/locale/ca@valencia/LC_MESSAGES/kfourinline.mo share/locale/cs/LC_MESSAGES/kfourinline.mo share/locale/cy/LC_MESSAGES/kfourinline.mo share/locale/da/LC_MESSAGES/kfourinline.mo share/locale/de/LC_MESSAGES/kfourinline.mo share/locale/el/LC_MESSAGES/kfourinline.mo share/locale/en_GB/LC_MESSAGES/kfourinline.mo share/locale/eo/LC_MESSAGES/kfourinline.mo share/locale/es/LC_MESSAGES/kfourinline.mo share/locale/et/LC_MESSAGES/kfourinline.mo share/locale/eu/LC_MESSAGES/kfourinline.mo share/locale/fa/LC_MESSAGES/kfourinline.mo share/locale/fi/LC_MESSAGES/kfourinline.mo share/locale/fr/LC_MESSAGES/kfourinline.mo share/locale/ga/LC_MESSAGES/kfourinline.mo share/locale/gl/LC_MESSAGES/kfourinline.mo share/locale/he/LC_MESSAGES/kfourinline.mo share/locale/hi/LC_MESSAGES/kfourinline.mo share/locale/hr/LC_MESSAGES/kfourinline.mo share/locale/hu/LC_MESSAGES/kfourinline.mo share/locale/ia/LC_MESSAGES/kfourinline.mo share/locale/id/LC_MESSAGES/kfourinline.mo share/locale/is/LC_MESSAGES/kfourinline.mo share/locale/it/LC_MESSAGES/kfourinline.mo share/locale/ja/LC_MESSAGES/kfourinline.mo share/locale/ka/LC_MESSAGES/kfourinline.mo share/locale/kk/LC_MESSAGES/kfourinline.mo share/locale/km/LC_MESSAGES/kfourinline.mo share/locale/ko/LC_MESSAGES/kfourinline.mo share/locale/lt/LC_MESSAGES/kfourinline.mo share/locale/lv/LC_MESSAGES/kfourinline.mo share/locale/mai/LC_MESSAGES/kfourinline.mo share/locale/mk/LC_MESSAGES/kfourinline.mo share/locale/ml/LC_MESSAGES/kfourinline.mo share/locale/mr/LC_MESSAGES/kfourinline.mo share/locale/nb/LC_MESSAGES/kfourinline.mo share/locale/nds/LC_MESSAGES/kfourinline.mo share/locale/ne/LC_MESSAGES/kfourinline.mo share/locale/nl/LC_MESSAGES/kfourinline.mo share/locale/nn/LC_MESSAGES/kfourinline.mo share/locale/oc/LC_MESSAGES/kfourinline.mo share/locale/pa/LC_MESSAGES/kfourinline.mo share/locale/pl/LC_MESSAGES/kfourinline.mo share/locale/pt/LC_MESSAGES/kfourinline.mo share/locale/pt_BR/LC_MESSAGES/kfourinline.mo share/locale/ro/LC_MESSAGES/kfourinline.mo share/locale/ru/LC_MESSAGES/kfourinline.mo share/locale/sa/LC_MESSAGES/kfourinline.mo share/locale/sk/LC_MESSAGES/kfourinline.mo share/locale/sl/LC_MESSAGES/kfourinline.mo share/locale/sr/LC_MESSAGES/kfourinline.mo share/locale/sr@ijekavian/LC_MESSAGES/kfourinline.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kfourinline.mo share/locale/sr@latin/LC_MESSAGES/kfourinline.mo share/locale/sv/LC_MESSAGES/kfourinline.mo share/locale/ta/LC_MESSAGES/kfourinline.mo share/locale/te/LC_MESSAGES/kfourinline.mo share/locale/tg/LC_MESSAGES/kfourinline.mo share/locale/th/LC_MESSAGES/kfourinline.mo share/locale/tr/LC_MESSAGES/kfourinline.mo share/locale/ug/LC_MESSAGES/kfourinline.mo share/locale/uk/LC_MESSAGES/kfourinline.mo share/locale/xh/LC_MESSAGES/kfourinline.mo share/locale/zh_CN/LC_MESSAGES/kfourinline.mo share/locale/zh_TW/LC_MESSAGES/kfourinline.mo share/metainfo/org.kde.kfourinline.appdata.xml share/qlogging-categories6/kfourinline.categories share/qlogging-categories6/kfourinline.renamecategories diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 9bea08f6c834..1a6dd1ec99d4 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478420 -SHA256 (KDE/release-service/26.04.2/kgoldrunner-26.04.2.tar.xz) = e1b2f0e6b06c9cead7298dcddbcb17e0e50d474004706e447db8e0144f7748d4 -SIZE (KDE/release-service/26.04.2/kgoldrunner-26.04.2.tar.xz) = 4474160 +TIMESTAMP = 1782826755 +SHA256 (KDE/release-service/26.04.3/kgoldrunner-26.04.3.tar.xz) = 19c0a9071b29f64dc705ef08e2e1fd6fc40df5535e91891762f87d53425ea548 +SIZE (KDE/release-service/26.04.3/kgoldrunner-26.04.3.tar.xz) = 4463844 diff --git a/games/kgoldrunner/pkg-plist b/games/kgoldrunner/pkg-plist index ea33c014d30b..d31042d3e34d 100644 --- a/games/kgoldrunner/pkg-plist +++ b/games/kgoldrunner/pkg-plist @@ -1,152 +1,151 @@ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_GotD.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_GotD.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svgz %%DATADIR%%/themes/accessible/black-on-white-set.svgz %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svgz %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svgz %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svgz %%DATADIR%%/themes/nostalgia/blue-actors.svgz %%DATADIR%%/themes/nostalgia/blue-set.svgz %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svgz share/knsrcfiles/kgoldrunner.knsrc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/ast/LC_MESSAGES/kgoldrunner.mo share/locale/be/LC_MESSAGES/kgoldrunner.mo -share/locale/bg/LC_MESSAGES/kgoldrunner.mo share/locale/bn/LC_MESSAGES/kgoldrunner.mo share/locale/br/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/cy/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo share/locale/hne/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo share/locale/ia/LC_MESSAGES/kgoldrunner.mo share/locale/id/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo share/locale/ka/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/ko/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/mai/LC_MESSAGES/kgoldrunner.mo share/locale/mk/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo share/locale/ne/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo share/locale/oc/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo share/locale/sa/LC_MESSAGES/kgoldrunner.mo share/locale/se/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo share/locale/sq/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo share/locale/sr@ijekavian/LC_MESSAGES/kgoldrunner.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kgoldrunner.mo share/locale/sr@latin/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo share/locale/ta/LC_MESSAGES/kgoldrunner.mo share/locale/te/LC_MESSAGES/kgoldrunner.mo share/locale/tg/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml share/qlogging-categories6/kgoldrunner.categories share/qlogging-categories6/kgoldrunner.renamecategories diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 2c73a4ac170b..bbb48270e1ac 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478422 -SHA256 (KDE/release-service/26.04.2/khangman-26.04.2.tar.xz) = 92df44a17f4cb0cd62af9ecc16f61669b83f1c259f70992d31fc3c76739d078c -SIZE (KDE/release-service/26.04.2/khangman-26.04.2.tar.xz) = 7030228 +TIMESTAMP = 1782826757 +SHA256 (KDE/release-service/26.04.3/khangman-26.04.3.tar.xz) = c5be0a733e910682d0d67a6db3236be2cbad42da16c3e7c1a77096ab3d2b81f0 +SIZE (KDE/release-service/26.04.3/khangman-26.04.3.tar.xz) = 7024720 diff --git a/games/khangman/pkg-plist b/games/khangman/pkg-plist index 43e03f059303..49d6af611e5c 100644 --- a/games/khangman/pkg-plist +++ b/games/khangman/pkg-plist @@ -1,134 +1,133 @@ bin/khangman share/applications/org.kde.khangman.desktop share/config.kcfg/khangman.kcfg share/icons/hicolor/128x128/apps/khangman.png share/icons/hicolor/16x16/apps/khangman.png share/icons/hicolor/22x22/apps/khangman.png share/icons/hicolor/32x32/apps/khangman.png share/icons/hicolor/48x48/apps/khangman.png share/icons/hicolor/64x64/apps/khangman.png share/icons/hicolor/scalable/apps/khangman.svgz %%DATADIR%%/ca.txt %%DATADIR%%/cs.txt %%DATADIR%%/da.txt %%DATADIR%%/de.txt %%DATADIR%%/el.txt %%DATADIR%%/eo.txt %%DATADIR%%/es.txt %%DATADIR%%/et.txt %%DATADIR%%/fi.txt %%DATADIR%%/fonts/Domestic_Manners.ttf %%DATADIR%%/fonts/Dustismo_Roman.ttf %%DATADIR%%/fr.txt %%DATADIR%%/ga.txt %%DATADIR%%/gl.txt %%DATADIR%%/hu.txt %%DATADIR%%/nb.txt %%DATADIR%%/nds.txt %%DATADIR%%/nn.txt %%DATADIR%%/pl.txt %%DATADIR%%/pt.txt %%DATADIR%%/pt_BR.txt %%DATADIR%%/ru.txt %%DATADIR%%/sk.txt %%DATADIR%%/sl.txt %%DATADIR%%/sr@ijekavianlatin.txt %%DATADIR%%/sr@latin.txt %%DATADIR%%/sv.txt %%DATADIR%%/tg.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt %%DATADIR%%/uk.txt share/knsrcfiles/khangman.knsrc share/locale/af/LC_MESSAGES/khangman.mo share/locale/ar/LC_MESSAGES/khangman.mo share/locale/ast/LC_MESSAGES/khangman.mo share/locale/be/LC_MESSAGES/khangman.mo -share/locale/bg/LC_MESSAGES/khangman.mo share/locale/bn/LC_MESSAGES/khangman.mo share/locale/br/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/cy/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo share/locale/gu/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo share/locale/hne/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/ia/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo share/locale/ka/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/ko/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo share/locale/mk/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo share/locale/ms/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo share/locale/ne/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo share/locale/oc/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo share/locale/sa/LC_MESSAGES/khangman.mo share/locale/se/LC_MESSAGES/khangman.mo share/locale/si/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo share/locale/sq/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo share/locale/ta/LC_MESSAGES/khangman.mo share/locale/tg/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo share/locale/xh/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/man/ca/man6/khangman.6.gz share/man/de/man6/khangman.6.gz share/man/es/man6/khangman.6.gz share/man/et/man6/khangman.6.gz share/man/fr/man6/khangman.6.gz share/man/it/man6/khangman.6.gz share/man/man6/khangman.6.gz share/man/nl/man6/khangman.6.gz share/man/pt/man6/khangman.6.gz share/man/pt_BR/man6/khangman.6.gz share/man/ru/man6/khangman.6.gz share/man/sl/man6/khangman.6.gz share/man/sv/man6/khangman.6.gz share/man/uk/man6/khangman.6.gz share/metainfo/org.kde.khangman.appdata.xml diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 916d807c7552..c4fc494989d8 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478423 -SHA256 (KDE/release-service/26.04.2/kigo-26.04.2.tar.xz) = e27883d1dc08578a2e80d2342ec847810066bf6d96de0ba4a2c6fb04c9ab40c6 -SIZE (KDE/release-service/26.04.2/kigo-26.04.2.tar.xz) = 4839336 +TIMESTAMP = 1782826759 +SHA256 (KDE/release-service/26.04.3/kigo-26.04.3.tar.xz) = 72894c8d6239ae182843a1cf5965d683a7bcea3092f4ec88e5602d2d7f05db4f +SIZE (KDE/release-service/26.04.3/kigo-26.04.3.tar.xz) = 4838992 diff --git a/games/kigo/pkg-plist b/games/kigo/pkg-plist index 4543b1042131..8a75e4258f8c 100644 --- a/games/kigo/pkg-plist +++ b/games/kigo/pkg-plist @@ -1,84 +1,83 @@ bin/kigo share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg share/icons/hicolor/128x128/apps/kigo.png share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png share/icons/hicolor/32x32/apps/kigo.png share/icons/hicolor/48x48/apps/kigo.png share/icons/hicolor/64x64/apps/kigo.png %%DATADIR%%/games/Honinbo-51-5.sgf %%DATADIR%%/games/Mehin-21-2.sgf %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/kigo_default.png %%DATADIR%%/themes/kigo_default.svgz %%DATADIR%%/themes/kigo_plain.png %%DATADIR%%/themes/kigo_plain.svgz %%DATADIR%%/themes/plain.desktop share/knsrcfiles/kigo-games.knsrc share/knsrcfiles/kigo.knsrc share/locale/ar/LC_MESSAGES/kigo.mo share/locale/ast/LC_MESSAGES/kigo.mo -share/locale/bg/LC_MESSAGES/kigo.mo share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo share/locale/ca@valencia/LC_MESSAGES/kigo.mo share/locale/cs/LC_MESSAGES/kigo.mo share/locale/da/LC_MESSAGES/kigo.mo share/locale/de/LC_MESSAGES/kigo.mo share/locale/el/LC_MESSAGES/kigo.mo share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo share/locale/eu/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo share/locale/gl/LC_MESSAGES/kigo.mo share/locale/he/LC_MESSAGES/kigo.mo share/locale/hi/LC_MESSAGES/kigo.mo share/locale/hr/LC_MESSAGES/kigo.mo share/locale/hsb/LC_MESSAGES/kigo.mo share/locale/hu/LC_MESSAGES/kigo.mo share/locale/ia/LC_MESSAGES/kigo.mo share/locale/id/LC_MESSAGES/kigo.mo share/locale/is/LC_MESSAGES/kigo.mo share/locale/it/LC_MESSAGES/kigo.mo share/locale/ja/LC_MESSAGES/kigo.mo share/locale/ka/LC_MESSAGES/kigo.mo share/locale/kk/LC_MESSAGES/kigo.mo share/locale/km/LC_MESSAGES/kigo.mo share/locale/ko/LC_MESSAGES/kigo.mo share/locale/lt/LC_MESSAGES/kigo.mo share/locale/lv/LC_MESSAGES/kigo.mo share/locale/mai/LC_MESSAGES/kigo.mo share/locale/ml/LC_MESSAGES/kigo.mo share/locale/mr/LC_MESSAGES/kigo.mo share/locale/ms/LC_MESSAGES/kigo.mo share/locale/nb/LC_MESSAGES/kigo.mo share/locale/nds/LC_MESSAGES/kigo.mo share/locale/nl/LC_MESSAGES/kigo.mo share/locale/nn/LC_MESSAGES/kigo.mo share/locale/pl/LC_MESSAGES/kigo.mo share/locale/pt/LC_MESSAGES/kigo.mo share/locale/pt_BR/LC_MESSAGES/kigo.mo share/locale/ro/LC_MESSAGES/kigo.mo share/locale/ru/LC_MESSAGES/kigo.mo share/locale/sa/LC_MESSAGES/kigo.mo share/locale/sk/LC_MESSAGES/kigo.mo share/locale/sl/LC_MESSAGES/kigo.mo share/locale/sr/LC_MESSAGES/kigo.mo share/locale/sr@ijekavian/LC_MESSAGES/kigo.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kigo.mo share/locale/sr@latin/LC_MESSAGES/kigo.mo share/locale/sv/LC_MESSAGES/kigo.mo share/locale/th/LC_MESSAGES/kigo.mo share/locale/tr/LC_MESSAGES/kigo.mo share/locale/ug/LC_MESSAGES/kigo.mo share/locale/uk/LC_MESSAGES/kigo.mo share/locale/zh_CN/LC_MESSAGES/kigo.mo share/locale/zh_TW/LC_MESSAGES/kigo.mo share/metainfo/org.kde.kigo.appdata.xml share/qlogging-categories6/kigo.categories share/qlogging-categories6/kigo.renamecategories diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 11e8d7bd379b..99b0733097da 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478425 -SHA256 (KDE/release-service/26.04.2/killbots-26.04.2.tar.xz) = f469e6b8fef1be44820fa7cee8439d7cb1b48909a9521656a61ed760625d7816 -SIZE (KDE/release-service/26.04.2/killbots-26.04.2.tar.xz) = 1179608 +TIMESTAMP = 1782826760 +SHA256 (KDE/release-service/26.04.3/killbots-26.04.3.tar.xz) = 67d29f81eba213a399e746148e0c5571fc63216da32fac3d4b879195c2c37af3 +SIZE (KDE/release-service/26.04.3/killbots-26.04.3.tar.xz) = 1178656 diff --git a/games/killbots/pkg-plist b/games/killbots/pkg-plist index 0557e2f99b77..7f96b3e7f4d7 100644 --- a/games/killbots/pkg-plist +++ b/games/killbots/pkg-plist @@ -1,88 +1,87 @@ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg share/icons/hicolor/128x128/apps/killbots.png share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/64x64/apps/killbots.png %%DATADIR%%/rulesets/classic.desktop %%DATADIR%%/rulesets/daleks.desktop %%DATADIR%%/rulesets/default.desktop %%DATADIR%%/rulesets/easy.desktop %%DATADIR%%/rulesets/energycrisis.desktop %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic.png %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/mountainadventure.desktop %%DATADIR%%/themes/mountainadventure.png %%DATADIR%%/themes/mountainadventure.svgz %%DATADIR%%/themes/mummymadness.desktop %%DATADIR%%/themes/mummymadness.png %%DATADIR%%/themes/mummymadness.svgz %%DATADIR%%/themes/robotkill.desktop %%DATADIR%%/themes/robotkill.png %%DATADIR%%/themes/robotkill.svgz share/locale/ar/LC_MESSAGES/killbots.mo share/locale/ast/LC_MESSAGES/killbots.mo -share/locale/bg/LC_MESSAGES/killbots.mo share/locale/bs/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca@valencia/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/killbots.mo share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo share/locale/eu/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/killbots.mo share/locale/he/LC_MESSAGES/killbots.mo share/locale/hi/LC_MESSAGES/killbots.mo share/locale/hr/LC_MESSAGES/killbots.mo share/locale/hu/LC_MESSAGES/killbots.mo share/locale/ia/LC_MESSAGES/killbots.mo share/locale/id/LC_MESSAGES/killbots.mo share/locale/is/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/killbots.mo share/locale/ja/LC_MESSAGES/killbots.mo share/locale/ka/LC_MESSAGES/killbots.mo share/locale/kk/LC_MESSAGES/killbots.mo share/locale/km/LC_MESSAGES/killbots.mo share/locale/ko/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lv/LC_MESSAGES/killbots.mo share/locale/mai/LC_MESSAGES/killbots.mo share/locale/ml/LC_MESSAGES/killbots.mo share/locale/mr/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/killbots.mo share/locale/pl/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/killbots.mo share/locale/sa/LC_MESSAGES/killbots.mo share/locale/sk/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sr/LC_MESSAGES/killbots.mo share/locale/sr@ijekavian/LC_MESSAGES/killbots.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/killbots.mo share/locale/sr@latin/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/killbots.mo share/locale/ug/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/killbots.mo share/metainfo/org.kde.killbots.appdata.xml share/qlogging-categories6/killbots.categories share/qlogging-categories6/killbots.renamecategories diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index ff3bc049db4b..2fcc934f009c 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478427 -SHA256 (KDE/release-service/26.04.2/kiriki-26.04.2.tar.xz) = 0cc414775b28da617665fa904d950c2d92667ddf94d4c4dae5c5a302596bbddd -SIZE (KDE/release-service/26.04.2/kiriki-26.04.2.tar.xz) = 375908 +TIMESTAMP = 1782826762 +SHA256 (KDE/release-service/26.04.3/kiriki-26.04.3.tar.xz) = 622df82f2d499a50ec315bff4c296b1be819fcb234798ac2e5a9a231d39ed9f1 +SIZE (KDE/release-service/26.04.3/kiriki-26.04.3.tar.xz) = 375776 diff --git a/games/kiriki/pkg-plist b/games/kiriki/pkg-plist index 5669f822616a..29a66dd44ce6 100644 --- a/games/kiriki/pkg-plist +++ b/games/kiriki/pkg-plist @@ -1,80 +1,79 @@ bin/kiriki share/applications/org.kde.kiriki.desktop share/icons/hicolor/128x128/apps/kiriki.png share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/64x64/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png share/locale/ar/LC_MESSAGES/kiriki.mo share/locale/ast/LC_MESSAGES/kiriki.mo share/locale/be/LC_MESSAGES/kiriki.mo -share/locale/bg/LC_MESSAGES/kiriki.mo share/locale/bs/LC_MESSAGES/kiriki.mo share/locale/ca/LC_MESSAGES/kiriki.mo share/locale/ca@valencia/LC_MESSAGES/kiriki.mo share/locale/cs/LC_MESSAGES/kiriki.mo share/locale/csb/LC_MESSAGES/kiriki.mo share/locale/da/LC_MESSAGES/kiriki.mo share/locale/de/LC_MESSAGES/kiriki.mo share/locale/el/LC_MESSAGES/kiriki.mo share/locale/en_GB/LC_MESSAGES/kiriki.mo share/locale/eo/LC_MESSAGES/kiriki.mo share/locale/es/LC_MESSAGES/kiriki.mo share/locale/et/LC_MESSAGES/kiriki.mo share/locale/eu/LC_MESSAGES/kiriki.mo share/locale/fi/LC_MESSAGES/kiriki.mo share/locale/fr/LC_MESSAGES/kiriki.mo share/locale/ga/LC_MESSAGES/kiriki.mo share/locale/gl/LC_MESSAGES/kiriki.mo share/locale/he/LC_MESSAGES/kiriki.mo share/locale/hi/LC_MESSAGES/kiriki.mo share/locale/hne/LC_MESSAGES/kiriki.mo share/locale/hr/LC_MESSAGES/kiriki.mo share/locale/hu/LC_MESSAGES/kiriki.mo share/locale/ia/LC_MESSAGES/kiriki.mo share/locale/id/LC_MESSAGES/kiriki.mo share/locale/is/LC_MESSAGES/kiriki.mo share/locale/it/LC_MESSAGES/kiriki.mo share/locale/ja/LC_MESSAGES/kiriki.mo share/locale/ka/LC_MESSAGES/kiriki.mo share/locale/kk/LC_MESSAGES/kiriki.mo share/locale/km/LC_MESSAGES/kiriki.mo share/locale/ko/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lv/LC_MESSAGES/kiriki.mo share/locale/mai/LC_MESSAGES/kiriki.mo share/locale/ml/LC_MESSAGES/kiriki.mo share/locale/mr/LC_MESSAGES/kiriki.mo share/locale/nb/LC_MESSAGES/kiriki.mo share/locale/nds/LC_MESSAGES/kiriki.mo share/locale/nl/LC_MESSAGES/kiriki.mo share/locale/nn/LC_MESSAGES/kiriki.mo share/locale/oc/LC_MESSAGES/kiriki.mo share/locale/pl/LC_MESSAGES/kiriki.mo share/locale/pt/LC_MESSAGES/kiriki.mo share/locale/pt_BR/LC_MESSAGES/kiriki.mo share/locale/ro/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/sa/LC_MESSAGES/kiriki.mo share/locale/se/LC_MESSAGES/kiriki.mo share/locale/sk/LC_MESSAGES/kiriki.mo share/locale/sl/LC_MESSAGES/kiriki.mo share/locale/sr/LC_MESSAGES/kiriki.mo share/locale/sr@ijekavian/LC_MESSAGES/kiriki.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kiriki.mo share/locale/sr@latin/LC_MESSAGES/kiriki.mo share/locale/sv/LC_MESSAGES/kiriki.mo share/locale/tr/LC_MESSAGES/kiriki.mo share/locale/ug/LC_MESSAGES/kiriki.mo share/locale/uk/LC_MESSAGES/kiriki.mo share/locale/zh_CN/LC_MESSAGES/kiriki.mo share/locale/zh_TW/LC_MESSAGES/kiriki.mo share/metainfo/org.kde.kiriki.appdata.xml diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index 7d8141edcd09..caf4a5a41c7f 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478428 -SHA256 (KDE/release-service/26.04.2/kjumpingcube-26.04.2.tar.xz) = 1048d0d36322591513b621191bf09e2cff7adabb08bd66a5dc7a55e0b7ad5775 -SIZE (KDE/release-service/26.04.2/kjumpingcube-26.04.2.tar.xz) = 353276 +TIMESTAMP = 1782826764 +SHA256 (KDE/release-service/26.04.3/kjumpingcube-26.04.3.tar.xz) = dc6cbd66ec114d8379621be352ca53f7125701e0c5c364341703e723e4e77e1d +SIZE (KDE/release-service/26.04.3/kjumpingcube-26.04.3.tar.xz) = 352748 diff --git a/games/kjumpingcube/pkg-plist b/games/kjumpingcube/pkg-plist index 01894b6ad3f7..e183ce70b455 100644 --- a/games/kjumpingcube/pkg-plist +++ b/games/kjumpingcube/pkg-plist @@ -1,90 +1,89 @@ bin/kjumpingcube share/applications/org.kde.kjumpingcube.desktop share/config.kcfg/kjumpingcube.kcfg share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/kjumpingcube.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz share/locale/af/LC_MESSAGES/kjumpingcube.mo share/locale/ar/LC_MESSAGES/kjumpingcube.mo share/locale/ast/LC_MESSAGES/kjumpingcube.mo share/locale/be/LC_MESSAGES/kjumpingcube.mo -share/locale/bg/LC_MESSAGES/kjumpingcube.mo share/locale/br/LC_MESSAGES/kjumpingcube.mo share/locale/bs/LC_MESSAGES/kjumpingcube.mo share/locale/ca/LC_MESSAGES/kjumpingcube.mo share/locale/ca@valencia/LC_MESSAGES/kjumpingcube.mo share/locale/cs/LC_MESSAGES/kjumpingcube.mo share/locale/cy/LC_MESSAGES/kjumpingcube.mo share/locale/da/LC_MESSAGES/kjumpingcube.mo share/locale/de/LC_MESSAGES/kjumpingcube.mo share/locale/el/LC_MESSAGES/kjumpingcube.mo share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo share/locale/eo/LC_MESSAGES/kjumpingcube.mo share/locale/es/LC_MESSAGES/kjumpingcube.mo share/locale/et/LC_MESSAGES/kjumpingcube.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo share/locale/fa/LC_MESSAGES/kjumpingcube.mo share/locale/fi/LC_MESSAGES/kjumpingcube.mo share/locale/fr/LC_MESSAGES/kjumpingcube.mo share/locale/ga/LC_MESSAGES/kjumpingcube.mo share/locale/gl/LC_MESSAGES/kjumpingcube.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo share/locale/hi/LC_MESSAGES/kjumpingcube.mo share/locale/hne/LC_MESSAGES/kjumpingcube.mo share/locale/hr/LC_MESSAGES/kjumpingcube.mo share/locale/hu/LC_MESSAGES/kjumpingcube.mo share/locale/ia/LC_MESSAGES/kjumpingcube.mo share/locale/id/LC_MESSAGES/kjumpingcube.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo share/locale/it/LC_MESSAGES/kjumpingcube.mo share/locale/ja/LC_MESSAGES/kjumpingcube.mo share/locale/ka/LC_MESSAGES/kjumpingcube.mo share/locale/kk/LC_MESSAGES/kjumpingcube.mo share/locale/km/LC_MESSAGES/kjumpingcube.mo share/locale/ko/LC_MESSAGES/kjumpingcube.mo share/locale/lt/LC_MESSAGES/kjumpingcube.mo share/locale/lv/LC_MESSAGES/kjumpingcube.mo share/locale/mai/LC_MESSAGES/kjumpingcube.mo share/locale/mk/LC_MESSAGES/kjumpingcube.mo share/locale/ml/LC_MESSAGES/kjumpingcube.mo share/locale/mr/LC_MESSAGES/kjumpingcube.mo share/locale/nb/LC_MESSAGES/kjumpingcube.mo share/locale/nds/LC_MESSAGES/kjumpingcube.mo share/locale/ne/LC_MESSAGES/kjumpingcube.mo share/locale/nl/LC_MESSAGES/kjumpingcube.mo share/locale/nn/LC_MESSAGES/kjumpingcube.mo share/locale/oc/LC_MESSAGES/kjumpingcube.mo share/locale/pa/LC_MESSAGES/kjumpingcube.mo share/locale/pl/LC_MESSAGES/kjumpingcube.mo share/locale/pt/LC_MESSAGES/kjumpingcube.mo share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo share/locale/ru/LC_MESSAGES/kjumpingcube.mo share/locale/sa/LC_MESSAGES/kjumpingcube.mo share/locale/se/LC_MESSAGES/kjumpingcube.mo share/locale/sk/LC_MESSAGES/kjumpingcube.mo share/locale/sl/LC_MESSAGES/kjumpingcube.mo share/locale/sq/LC_MESSAGES/kjumpingcube.mo share/locale/sr/LC_MESSAGES/kjumpingcube.mo share/locale/sr@ijekavian/LC_MESSAGES/kjumpingcube.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kjumpingcube.mo share/locale/sr@latin/LC_MESSAGES/kjumpingcube.mo share/locale/sv/LC_MESSAGES/kjumpingcube.mo share/locale/ta/LC_MESSAGES/kjumpingcube.mo share/locale/te/LC_MESSAGES/kjumpingcube.mo share/locale/tg/LC_MESSAGES/kjumpingcube.mo share/locale/tr/LC_MESSAGES/kjumpingcube.mo share/locale/ug/LC_MESSAGES/kjumpingcube.mo share/locale/uk/LC_MESSAGES/kjumpingcube.mo share/locale/vi/LC_MESSAGES/kjumpingcube.mo share/locale/xh/LC_MESSAGES/kjumpingcube.mo share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo share/metainfo/org.kde.kjumpingcube.appdata.xml share/qlogging-categories6/kjumpingcube.categories share/qlogging-categories6/kjumpingcube.renamecategories diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 714a8030f180..865648859dca 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478430 -SHA256 (KDE/release-service/26.04.2/klickety-26.04.2.tar.xz) = 9b7112576a3ae2b884764e2bf6a5e036533a064fa5fc1dac2a59bd507329f4eb -SIZE (KDE/release-service/26.04.2/klickety-26.04.2.tar.xz) = 1506496 +TIMESTAMP = 1782826766 +SHA256 (KDE/release-service/26.04.3/klickety-26.04.3.tar.xz) = c4eeab5e4e2ece6ca9929254e6aea25fff1b4f5f713e969b4ae41f96b5963941 +SIZE (KDE/release-service/26.04.3/klickety-26.04.3.tar.xz) = 1506152 diff --git a/games/klickety/pkg-plist b/games/klickety/pkg-plist index 00cf4bb0b970..8458c4773278 100644 --- a/games/klickety/pkg-plist +++ b/games/klickety/pkg-plist @@ -1,88 +1,87 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop share/icons/hicolor/128x128/apps/klickety.png share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svgz %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svgz %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png share/locale/ar/LC_MESSAGES/klickety.mo share/locale/ast/LC_MESSAGES/klickety.mo -share/locale/bg/LC_MESSAGES/klickety.mo share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/eo/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/eu/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/he/LC_MESSAGES/klickety.mo share/locale/hi/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo share/locale/ia/LC_MESSAGES/klickety.mo share/locale/id/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo share/locale/ka/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/ko/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo share/locale/mai/LC_MESSAGES/klickety.mo share/locale/ml/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sa/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo share/locale/sr@ijekavian/LC_MESSAGES/klickety.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/klickety.mo share/locale/sr@latin/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo share/metainfo/org.kde.klickety.appdata.xml share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg diff --git a/games/klines/distinfo b/games/klines/distinfo index be2e226356e3..2858ca4db6b1 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478432 -SHA256 (KDE/release-service/26.04.2/klines-26.04.2.tar.xz) = a6e1e778b2eb8a10086c3d521d2fedbe488eca49354eb404278a885934fd76af -SIZE (KDE/release-service/26.04.2/klines-26.04.2.tar.xz) = 1675744 +TIMESTAMP = 1782826767 +SHA256 (KDE/release-service/26.04.3/klines-26.04.3.tar.xz) = 9412583f6dad558d7c9c79f4485737277c295bc66ee584cb78ab6faca4844467 +SIZE (KDE/release-service/26.04.3/klines-26.04.3.tar.xz) = 1675836 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index c5f7a27fa814..1878e9eb4696 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478433 -SHA256 (KDE/release-service/26.04.2/kmahjongg-26.04.2.tar.xz) = d6c063da23f5e5b6f34b81e0c3bdc52a430f7332becffa4eb1aa51e58e8740da -SIZE (KDE/release-service/26.04.2/kmahjongg-26.04.2.tar.xz) = 3724788 +TIMESTAMP = 1782826769 +SHA256 (KDE/release-service/26.04.3/kmahjongg-26.04.3.tar.xz) = 8e4575a50d37a6259b7c4381c4243d0a05d64847c620c5af58c34a83ae6ce38b +SIZE (KDE/release-service/26.04.3/kmahjongg-26.04.3.tar.xz) = 3723224 diff --git a/games/kmahjongg/pkg-plist b/games/kmahjongg/pkg-plist index 5e70ec022796..0c39bae54dd1 100644 --- a/games/kmahjongg/pkg-plist +++ b/games/kmahjongg/pkg-plist @@ -1,235 +1,234 @@ bin/kmahjongg share/applications/org.kde.kmahjongg.desktop share/config.kcfg/kmahjongg.kcfg share/icons/hicolor/128x128/apps/kmahjongg.png share/icons/hicolor/16x16/apps/kmahjongg.png share/icons/hicolor/22x22/apps/kmahjongg.png share/icons/hicolor/32x32/apps/kmahjongg.png share/icons/hicolor/48x48/apps/kmahjongg.png share/icons/hicolor/64x64/apps/kmahjongg.png share/icons/hicolor/scalable/apps/kmahjongg.svgz %%DATADIR%%/layouts/4_winds.desktop %%DATADIR%%/layouts/4_winds.layout %%DATADIR%%/layouts/Vi.desktop %%DATADIR%%/layouts/Vi.layout %%DATADIR%%/layouts/X_shaped.desktop %%DATADIR%%/layouts/X_shaped.layout %%DATADIR%%/layouts/alien.desktop %%DATADIR%%/layouts/alien.layout %%DATADIR%%/layouts/altar.desktop %%DATADIR%%/layouts/altar.layout %%DATADIR%%/layouts/arena.desktop %%DATADIR%%/layouts/arena.layout %%DATADIR%%/layouts/arrow.desktop %%DATADIR%%/layouts/arrow.layout %%DATADIR%%/layouts/atlantis.desktop %%DATADIR%%/layouts/atlantis.layout %%DATADIR%%/layouts/aztec.desktop %%DATADIR%%/layouts/aztec.layout %%DATADIR%%/layouts/balance.desktop %%DATADIR%%/layouts/balance.layout %%DATADIR%%/layouts/bat.desktop %%DATADIR%%/layouts/bat.layout %%DATADIR%%/layouts/bug.desktop %%DATADIR%%/layouts/bug.layout %%DATADIR%%/layouts/castle.desktop %%DATADIR%%/layouts/castle.layout %%DATADIR%%/layouts/castle2.desktop %%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/cat.desktop %%DATADIR%%/layouts/cat.layout %%DATADIR%%/layouts/chains.desktop %%DATADIR%%/layouts/chains.layout %%DATADIR%%/layouts/checkered.desktop %%DATADIR%%/layouts/checkered.layout %%DATADIR%%/layouts/chip.desktop %%DATADIR%%/layouts/chip.layout %%DATADIR%%/layouts/clubs.desktop %%DATADIR%%/layouts/clubs.layout %%DATADIR%%/layouts/columns.desktop %%DATADIR%%/layouts/columns.layout %%DATADIR%%/layouts/crab.desktop %%DATADIR%%/layouts/crab.layout %%DATADIR%%/layouts/cross.desktop %%DATADIR%%/layouts/cross.layout %%DATADIR%%/layouts/default.desktop %%DATADIR%%/layouts/default.layout %%DATADIR%%/layouts/dragon.desktop %%DATADIR%%/layouts/dragon.layout %%DATADIR%%/layouts/eagle.desktop %%DATADIR%%/layouts/eagle.layout %%DATADIR%%/layouts/enterprise.desktop %%DATADIR%%/layouts/enterprise.layout %%DATADIR%%/layouts/explosion.desktop %%DATADIR%%/layouts/explosion.layout %%DATADIR%%/layouts/flowers.desktop %%DATADIR%%/layouts/flowers.layout %%DATADIR%%/layouts/future.desktop %%DATADIR%%/layouts/future.layout %%DATADIR%%/layouts/galaxy.desktop %%DATADIR%%/layouts/galaxy.layout %%DATADIR%%/layouts/garden.desktop %%DATADIR%%/layouts/garden.layout %%DATADIR%%/layouts/girl.desktop %%DATADIR%%/layouts/girl.layout %%DATADIR%%/layouts/glade.desktop %%DATADIR%%/layouts/glade.layout %%DATADIR%%/layouts/grid.desktop %%DATADIR%%/layouts/grid.layout %%DATADIR%%/layouts/helios.desktop %%DATADIR%%/layouts/helios.layout %%DATADIR%%/layouts/hole.desktop %%DATADIR%%/layouts/hole.layout %%DATADIR%%/layouts/inner_circle.desktop %%DATADIR%%/layouts/inner_circle.layout %%DATADIR%%/layouts/key.desktop %%DATADIR%%/layouts/key.layout %%DATADIR%%/layouts/km.desktop %%DATADIR%%/layouts/km.layout %%DATADIR%%/layouts/labyrinth.desktop %%DATADIR%%/layouts/labyrinth.layout %%DATADIR%%/layouts/mask.desktop %%DATADIR%%/layouts/mask.layout %%DATADIR%%/layouts/maya.desktop %%DATADIR%%/layouts/maya.layout %%DATADIR%%/layouts/maze.desktop %%DATADIR%%/layouts/maze.layout %%DATADIR%%/layouts/mesh.desktop %%DATADIR%%/layouts/mesh.layout %%DATADIR%%/layouts/moth.desktop %%DATADIR%%/layouts/moth.layout %%DATADIR%%/layouts/order.desktop %%DATADIR%%/layouts/order.layout %%DATADIR%%/layouts/pattern.desktop %%DATADIR%%/layouts/pattern.layout %%DATADIR%%/layouts/penta.desktop %%DATADIR%%/layouts/penta.layout %%DATADIR%%/layouts/pillars.desktop %%DATADIR%%/layouts/pillars.layout %%DATADIR%%/layouts/pirates.desktop %%DATADIR%%/layouts/pirates.layout %%DATADIR%%/layouts/pyramid.desktop %%DATADIR%%/layouts/pyramid.layout %%DATADIR%%/layouts/rocket.desktop %%DATADIR%%/layouts/rocket.layout %%DATADIR%%/layouts/shield.desktop %%DATADIR%%/layouts/shield.layout %%DATADIR%%/layouts/spider.desktop %%DATADIR%%/layouts/spider.layout %%DATADIR%%/layouts/squares.desktop %%DATADIR%%/layouts/squares.layout %%DATADIR%%/layouts/squaring.desktop %%DATADIR%%/layouts/squaring.layout %%DATADIR%%/layouts/stadion.desktop %%DATADIR%%/layouts/stadion.layout %%DATADIR%%/layouts/stairs.desktop %%DATADIR%%/layouts/stairs.layout %%DATADIR%%/layouts/star.desktop %%DATADIR%%/layouts/star.layout %%DATADIR%%/layouts/star_ship.desktop %%DATADIR%%/layouts/star_ship.layout %%DATADIR%%/layouts/stax.desktop %%DATADIR%%/layouts/stax.layout %%DATADIR%%/layouts/swirl.desktop %%DATADIR%%/layouts/swirl.layout %%DATADIR%%/layouts/temple.desktop %%DATADIR%%/layouts/temple.layout %%DATADIR%%/layouts/the_door.desktop %%DATADIR%%/layouts/the_door.layout %%DATADIR%%/layouts/theatre.desktop %%DATADIR%%/layouts/theatre.layout %%DATADIR%%/layouts/time_tunnel.desktop %%DATADIR%%/layouts/time_tunnel.layout %%DATADIR%%/layouts/tomb.desktop %%DATADIR%%/layouts/tomb.layout %%DATADIR%%/layouts/totem.desktop %%DATADIR%%/layouts/totem.layout %%DATADIR%%/layouts/tower.desktop %%DATADIR%%/layouts/tower.layout %%DATADIR%%/layouts/triangle.desktop %%DATADIR%%/layouts/triangle.layout %%DATADIR%%/layouts/up&down.desktop %%DATADIR%%/layouts/up&down.layout %%DATADIR%%/layouts/well.desktop %%DATADIR%%/layouts/well.layout share/locale/af/LC_MESSAGES/kmahjongg.mo share/locale/ar/LC_MESSAGES/kmahjongg.mo share/locale/ast/LC_MESSAGES/kmahjongg.mo share/locale/be/LC_MESSAGES/kmahjongg.mo -share/locale/bg/LC_MESSAGES/kmahjongg.mo share/locale/bn/LC_MESSAGES/kmahjongg.mo share/locale/br/LC_MESSAGES/kmahjongg.mo share/locale/bs/LC_MESSAGES/kmahjongg.mo share/locale/ca/LC_MESSAGES/kmahjongg.mo share/locale/ca@valencia/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmahjongg.mo share/locale/csb/LC_MESSAGES/kmahjongg.mo share/locale/cy/LC_MESSAGES/kmahjongg.mo share/locale/da/LC_MESSAGES/kmahjongg.mo share/locale/de/LC_MESSAGES/kmahjongg.mo share/locale/el/LC_MESSAGES/kmahjongg.mo share/locale/en_GB/LC_MESSAGES/kmahjongg.mo share/locale/eo/LC_MESSAGES/kmahjongg.mo share/locale/es/LC_MESSAGES/kmahjongg.mo share/locale/et/LC_MESSAGES/kmahjongg.mo share/locale/eu/LC_MESSAGES/kmahjongg.mo share/locale/fa/LC_MESSAGES/kmahjongg.mo share/locale/fi/LC_MESSAGES/kmahjongg.mo share/locale/fr/LC_MESSAGES/kmahjongg.mo share/locale/ga/LC_MESSAGES/kmahjongg.mo share/locale/gl/LC_MESSAGES/kmahjongg.mo share/locale/he/LC_MESSAGES/kmahjongg.mo share/locale/hi/LC_MESSAGES/kmahjongg.mo share/locale/hne/LC_MESSAGES/kmahjongg.mo share/locale/hr/LC_MESSAGES/kmahjongg.mo share/locale/hu/LC_MESSAGES/kmahjongg.mo share/locale/ia/LC_MESSAGES/kmahjongg.mo share/locale/id/LC_MESSAGES/kmahjongg.mo share/locale/is/LC_MESSAGES/kmahjongg.mo share/locale/it/LC_MESSAGES/kmahjongg.mo share/locale/ja/LC_MESSAGES/kmahjongg.mo share/locale/ka/LC_MESSAGES/kmahjongg.mo share/locale/kk/LC_MESSAGES/kmahjongg.mo share/locale/km/LC_MESSAGES/kmahjongg.mo share/locale/ko/LC_MESSAGES/kmahjongg.mo share/locale/lt/LC_MESSAGES/kmahjongg.mo share/locale/lv/LC_MESSAGES/kmahjongg.mo share/locale/mai/LC_MESSAGES/kmahjongg.mo share/locale/mk/LC_MESSAGES/kmahjongg.mo share/locale/ml/LC_MESSAGES/kmahjongg.mo share/locale/mr/LC_MESSAGES/kmahjongg.mo share/locale/nb/LC_MESSAGES/kmahjongg.mo share/locale/nds/LC_MESSAGES/kmahjongg.mo share/locale/ne/LC_MESSAGES/kmahjongg.mo share/locale/nl/LC_MESSAGES/kmahjongg.mo share/locale/nn/LC_MESSAGES/kmahjongg.mo share/locale/oc/LC_MESSAGES/kmahjongg.mo share/locale/pa/LC_MESSAGES/kmahjongg.mo share/locale/pl/LC_MESSAGES/kmahjongg.mo share/locale/pt/LC_MESSAGES/kmahjongg.mo share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmahjongg.mo share/locale/sa/LC_MESSAGES/kmahjongg.mo share/locale/se/LC_MESSAGES/kmahjongg.mo share/locale/sk/LC_MESSAGES/kmahjongg.mo share/locale/sl/LC_MESSAGES/kmahjongg.mo share/locale/sq/LC_MESSAGES/kmahjongg.mo share/locale/sr/LC_MESSAGES/kmahjongg.mo share/locale/sr@ijekavian/LC_MESSAGES/kmahjongg.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmahjongg.mo share/locale/sr@latin/LC_MESSAGES/kmahjongg.mo share/locale/sv/LC_MESSAGES/kmahjongg.mo share/locale/ta/LC_MESSAGES/kmahjongg.mo share/locale/tg/LC_MESSAGES/kmahjongg.mo share/locale/th/LC_MESSAGES/kmahjongg.mo share/locale/tr/LC_MESSAGES/kmahjongg.mo share/locale/ug/LC_MESSAGES/kmahjongg.mo share/locale/uk/LC_MESSAGES/kmahjongg.mo share/locale/wa/LC_MESSAGES/kmahjongg.mo share/locale/xh/LC_MESSAGES/kmahjongg.mo share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo share/metainfo/org.kde.kmahjongg.appdata.xml share/qlogging-categories6/kmahjongg.categories share/qlogging-categories6/kmahjongg.renamecategories diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 1472b71da5e5..b51e14cbad87 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478435 -SHA256 (KDE/release-service/26.04.2/kmines-26.04.2.tar.xz) = c0111c0e055e3e88853be80ee6d3f624d3a3a1d7efe04810280632e02e0fd030 -SIZE (KDE/release-service/26.04.2/kmines-26.04.2.tar.xz) = 952580 +TIMESTAMP = 1782826771 +SHA256 (KDE/release-service/26.04.3/kmines-26.04.3.tar.xz) = a1ba7b35da8b8a9bf51f227838485b8d9d2424b3c048d4539256f4fd0b2fc825 +SIZE (KDE/release-service/26.04.3/kmines-26.04.3.tar.xz) = 952744 diff --git a/games/kmines/pkg-plist b/games/kmines/pkg-plist index 7d44a7d46eeb..43457ec22fe5 100644 --- a/games/kmines/pkg-plist +++ b/games/kmines/pkg-plist @@ -1,107 +1,106 @@ bin/kmines share/applications/org.kde.kmines.desktop share/icons/hicolor/128x128/apps/kmines.png share/icons/hicolor/16x16/apps/kmines.png share/icons/hicolor/22x22/apps/kmines.png share/icons/hicolor/32x32/apps/kmines.png share/icons/hicolor/48x48/apps/kmines.png share/icons/hicolor/64x64/apps/kmines.png %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/clean_blue.desktop %%DATADIR%%/themes/clean_blue_dark.desktop %%DATADIR%%/themes/clean_blue_dark_preview.png %%DATADIR%%/themes/clean_blue_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/graveyard-mayhem-preview.png %%DATADIR%%/themes/graveyard-mayhem.desktop %%DATADIR%%/themes/graveyard-mayhem.svgz %%DATADIR%%/themes/green.desktop %%DATADIR%%/themes/green.png %%DATADIR%%/themes/kmines_classic.svgz %%DATADIR%%/themes/kmines_clean_blue.svgz %%DATADIR%%/themes/kmines_clean_blue_dark.svgz %%DATADIR%%/themes/kmines_green.svgz %%DATADIR%%/themes/kmines_oxygen.svgz share/locale/af/LC_MESSAGES/kmines.mo share/locale/ar/LC_MESSAGES/kmines.mo share/locale/ast/LC_MESSAGES/kmines.mo share/locale/be/LC_MESSAGES/kmines.mo -share/locale/bg/LC_MESSAGES/kmines.mo share/locale/bn/LC_MESSAGES/kmines.mo share/locale/br/LC_MESSAGES/kmines.mo share/locale/bs/LC_MESSAGES/kmines.mo share/locale/ca/LC_MESSAGES/kmines.mo share/locale/ca@valencia/LC_MESSAGES/kmines.mo share/locale/cs/LC_MESSAGES/kmines.mo share/locale/cy/LC_MESSAGES/kmines.mo share/locale/da/LC_MESSAGES/kmines.mo share/locale/de/LC_MESSAGES/kmines.mo share/locale/el/LC_MESSAGES/kmines.mo share/locale/en_GB/LC_MESSAGES/kmines.mo share/locale/eo/LC_MESSAGES/kmines.mo share/locale/es/LC_MESSAGES/kmines.mo share/locale/et/LC_MESSAGES/kmines.mo share/locale/eu/LC_MESSAGES/kmines.mo share/locale/fa/LC_MESSAGES/kmines.mo share/locale/fi/LC_MESSAGES/kmines.mo share/locale/fr/LC_MESSAGES/kmines.mo share/locale/ga/LC_MESSAGES/kmines.mo share/locale/gl/LC_MESSAGES/kmines.mo share/locale/he/LC_MESSAGES/kmines.mo share/locale/hi/LC_MESSAGES/kmines.mo share/locale/hne/LC_MESSAGES/kmines.mo share/locale/hr/LC_MESSAGES/kmines.mo share/locale/hu/LC_MESSAGES/kmines.mo share/locale/ia/LC_MESSAGES/kmines.mo share/locale/id/LC_MESSAGES/kmines.mo share/locale/is/LC_MESSAGES/kmines.mo share/locale/it/LC_MESSAGES/kmines.mo share/locale/ja/LC_MESSAGES/kmines.mo share/locale/ka/LC_MESSAGES/kmines.mo share/locale/kk/LC_MESSAGES/kmines.mo share/locale/km/LC_MESSAGES/kmines.mo share/locale/ko/LC_MESSAGES/kmines.mo share/locale/lt/LC_MESSAGES/kmines.mo share/locale/lv/LC_MESSAGES/kmines.mo share/locale/mai/LC_MESSAGES/kmines.mo share/locale/mk/LC_MESSAGES/kmines.mo share/locale/ml/LC_MESSAGES/kmines.mo share/locale/mr/LC_MESSAGES/kmines.mo share/locale/ms/LC_MESSAGES/kmines.mo share/locale/nb/LC_MESSAGES/kmines.mo share/locale/nds/LC_MESSAGES/kmines.mo share/locale/ne/LC_MESSAGES/kmines.mo share/locale/nl/LC_MESSAGES/kmines.mo share/locale/nn/LC_MESSAGES/kmines.mo share/locale/oc/LC_MESSAGES/kmines.mo share/locale/pa/LC_MESSAGES/kmines.mo share/locale/pl/LC_MESSAGES/kmines.mo share/locale/pt/LC_MESSAGES/kmines.mo share/locale/pt_BR/LC_MESSAGES/kmines.mo share/locale/ro/LC_MESSAGES/kmines.mo share/locale/ru/LC_MESSAGES/kmines.mo share/locale/sa/LC_MESSAGES/kmines.mo share/locale/se/LC_MESSAGES/kmines.mo share/locale/sk/LC_MESSAGES/kmines.mo share/locale/sl/LC_MESSAGES/kmines.mo share/locale/sq/LC_MESSAGES/kmines.mo share/locale/sr/LC_MESSAGES/kmines.mo share/locale/sr@ijekavian/LC_MESSAGES/kmines.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kmines.mo share/locale/sr@latin/LC_MESSAGES/kmines.mo share/locale/sv/LC_MESSAGES/kmines.mo share/locale/ta/LC_MESSAGES/kmines.mo share/locale/tg/LC_MESSAGES/kmines.mo share/locale/th/LC_MESSAGES/kmines.mo share/locale/tr/LC_MESSAGES/kmines.mo share/locale/ug/LC_MESSAGES/kmines.mo share/locale/uk/LC_MESSAGES/kmines.mo share/locale/wa/LC_MESSAGES/kmines.mo share/locale/xh/LC_MESSAGES/kmines.mo share/locale/zh_CN/LC_MESSAGES/kmines.mo share/locale/zh_TW/LC_MESSAGES/kmines.mo share/metainfo/org.kde.kmines.appdata.xml share/qlogging-categories6/kmines.categories share/qlogging-categories6/kmines.renamecategories diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 9b4aa5a3bf86..caad9dcd31f7 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478437 -SHA256 (KDE/release-service/26.04.2/knavalbattle-26.04.2.tar.xz) = f3b07333f103e638eee779516efe4cda38869fb0dd554508d7a0b2e96078da29 -SIZE (KDE/release-service/26.04.2/knavalbattle-26.04.2.tar.xz) = 1050160 +TIMESTAMP = 1782826773 +SHA256 (KDE/release-service/26.04.3/knavalbattle-26.04.3.tar.xz) = bf70a46cd49cc7c632d6d5e9ed6f4a285783ae1483280c54b5a7e8a75823c982 +SIZE (KDE/release-service/26.04.3/knavalbattle-26.04.3.tar.xz) = 1050564 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index a51ee72ad789..af71f3401e73 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478438 -SHA256 (KDE/release-service/26.04.2/knetwalk-26.04.2.tar.xz) = 42228f9d40b0346d7b4288530c0c859df817e6431668d5fc906e7539e31a5eb6 -SIZE (KDE/release-service/26.04.2/knetwalk-26.04.2.tar.xz) = 1014312 +TIMESTAMP = 1782826774 +SHA256 (KDE/release-service/26.04.3/knetwalk-26.04.3.tar.xz) = fc8afb72d5455dd016104931d27335bebefec96d1e993696e705115729fb70ee +SIZE (KDE/release-service/26.04.3/knetwalk-26.04.3.tar.xz) = 1014460 diff --git a/games/knetwalk/pkg-plist b/games/knetwalk/pkg-plist index 9b9f4bb60da7..80ea41c2a22f 100644 --- a/games/knetwalk/pkg-plist +++ b/games/knetwalk/pkg-plist @@ -1,99 +1,98 @@ bin/knetwalk share/applications/org.kde.knetwalk.desktop share/icons/hicolor/128x128/apps/knetwalk.png share/icons/hicolor/16x16/apps/knetwalk.png share/icons/hicolor/22x22/apps/knetwalk.png share/icons/hicolor/32x32/apps/knetwalk.png share/icons/hicolor/48x48/apps/knetwalk.png share/icons/hicolor/64x64/apps/knetwalk.png share/icons/hicolor/scalable/apps/knetwalk.svgz %%DATADIR%%/qml/Cable.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/sounds/click.wav %%DATADIR%%/sounds/connect.wav %%DATADIR%%/sounds/start.wav %%DATADIR%%/sounds/turn.wav %%DATADIR%%/sounds/win.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/electronic.desktop %%DATADIR%%/themes/electronic.svgz %%DATADIR%%/themes/electronic_preview.png share/locale/ar/LC_MESSAGES/knetwalk.mo share/locale/ast/LC_MESSAGES/knetwalk.mo share/locale/be/LC_MESSAGES/knetwalk.mo -share/locale/bg/LC_MESSAGES/knetwalk.mo share/locale/br/LC_MESSAGES/knetwalk.mo share/locale/bs/LC_MESSAGES/knetwalk.mo share/locale/ca/LC_MESSAGES/knetwalk.mo share/locale/ca@valencia/LC_MESSAGES/knetwalk.mo share/locale/cs/LC_MESSAGES/knetwalk.mo share/locale/csb/LC_MESSAGES/knetwalk.mo share/locale/cy/LC_MESSAGES/knetwalk.mo share/locale/da/LC_MESSAGES/knetwalk.mo share/locale/de/LC_MESSAGES/knetwalk.mo share/locale/el/LC_MESSAGES/knetwalk.mo share/locale/en_GB/LC_MESSAGES/knetwalk.mo share/locale/eo/LC_MESSAGES/knetwalk.mo share/locale/es/LC_MESSAGES/knetwalk.mo share/locale/et/LC_MESSAGES/knetwalk.mo share/locale/eu/LC_MESSAGES/knetwalk.mo share/locale/fa/LC_MESSAGES/knetwalk.mo share/locale/fi/LC_MESSAGES/knetwalk.mo share/locale/fr/LC_MESSAGES/knetwalk.mo share/locale/ga/LC_MESSAGES/knetwalk.mo share/locale/gl/LC_MESSAGES/knetwalk.mo share/locale/he/LC_MESSAGES/knetwalk.mo share/locale/hi/LC_MESSAGES/knetwalk.mo share/locale/hne/LC_MESSAGES/knetwalk.mo share/locale/hr/LC_MESSAGES/knetwalk.mo share/locale/hu/LC_MESSAGES/knetwalk.mo share/locale/ia/LC_MESSAGES/knetwalk.mo share/locale/id/LC_MESSAGES/knetwalk.mo share/locale/is/LC_MESSAGES/knetwalk.mo share/locale/it/LC_MESSAGES/knetwalk.mo share/locale/ja/LC_MESSAGES/knetwalk.mo share/locale/ka/LC_MESSAGES/knetwalk.mo share/locale/kk/LC_MESSAGES/knetwalk.mo share/locale/km/LC_MESSAGES/knetwalk.mo share/locale/ko/LC_MESSAGES/knetwalk.mo share/locale/lt/LC_MESSAGES/knetwalk.mo share/locale/lv/LC_MESSAGES/knetwalk.mo share/locale/mai/LC_MESSAGES/knetwalk.mo share/locale/mk/LC_MESSAGES/knetwalk.mo share/locale/ml/LC_MESSAGES/knetwalk.mo share/locale/mr/LC_MESSAGES/knetwalk.mo share/locale/nb/LC_MESSAGES/knetwalk.mo share/locale/nds/LC_MESSAGES/knetwalk.mo share/locale/ne/LC_MESSAGES/knetwalk.mo share/locale/nl/LC_MESSAGES/knetwalk.mo share/locale/nn/LC_MESSAGES/knetwalk.mo share/locale/oc/LC_MESSAGES/knetwalk.mo share/locale/pa/LC_MESSAGES/knetwalk.mo share/locale/pl/LC_MESSAGES/knetwalk.mo share/locale/pt/LC_MESSAGES/knetwalk.mo share/locale/pt_BR/LC_MESSAGES/knetwalk.mo share/locale/ro/LC_MESSAGES/knetwalk.mo share/locale/ru/LC_MESSAGES/knetwalk.mo share/locale/sa/LC_MESSAGES/knetwalk.mo share/locale/se/LC_MESSAGES/knetwalk.mo share/locale/sk/LC_MESSAGES/knetwalk.mo share/locale/sl/LC_MESSAGES/knetwalk.mo share/locale/sq/LC_MESSAGES/knetwalk.mo share/locale/sr/LC_MESSAGES/knetwalk.mo share/locale/sr@ijekavian/LC_MESSAGES/knetwalk.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/knetwalk.mo share/locale/sr@latin/LC_MESSAGES/knetwalk.mo share/locale/sv/LC_MESSAGES/knetwalk.mo share/locale/te/LC_MESSAGES/knetwalk.mo share/locale/th/LC_MESSAGES/knetwalk.mo share/locale/tr/LC_MESSAGES/knetwalk.mo share/locale/ug/LC_MESSAGES/knetwalk.mo share/locale/uk/LC_MESSAGES/knetwalk.mo share/locale/zh_CN/LC_MESSAGES/knetwalk.mo share/locale/zh_TW/LC_MESSAGES/knetwalk.mo share/metainfo/org.kde.knetwalk.appdata.xml diff --git a/games/knights/distinfo b/games/knights/distinfo index 1f20bed492b1..0072b906b28e 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478440 -SHA256 (KDE/release-service/26.04.2/knights-26.04.2.tar.xz) = 12e468394ce066c473db4475e417665e4a52ae0d19995ffb2c8359417f635801 -SIZE (KDE/release-service/26.04.2/knights-26.04.2.tar.xz) = 2501288 +TIMESTAMP = 1782826776 +SHA256 (KDE/release-service/26.04.3/knights-26.04.3.tar.xz) = 62720ad9f00177e836b1616f76cadaa55a1a12636fd4c7d6d94b9ee1fe9b4c5d +SIZE (KDE/release-service/26.04.3/knights-26.04.3.tar.xz) = 2501024 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index dc313af90380..515166931352 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478441 -SHA256 (KDE/release-service/26.04.2/kolf-26.04.2.tar.xz) = 3c7276b42cacc346ffe05baa10b9651968feab5d72e267b45fb5988a9a3a1941 -SIZE (KDE/release-service/26.04.2/kolf-26.04.2.tar.xz) = 1087820 +TIMESTAMP = 1782826778 +SHA256 (KDE/release-service/26.04.3/kolf-26.04.3.tar.xz) = fbf637c88b7353119a3c22d86cc4e97b715283efaaa941cdecc2c76771032d73 +SIZE (KDE/release-service/26.04.3/kolf-26.04.3.tar.xz) = 1083000 diff --git a/games/kolf/pkg-plist b/games/kolf/pkg-plist index a6039c6d349f..71693ea0bf77 100644 --- a/games/kolf/pkg-plist +++ b/games/kolf/pkg-plist @@ -1,106 +1,105 @@ bin/kolf share/applications/org.kde.kolf.desktop share/icons/hicolor/128x128/apps/kolf.png share/icons/hicolor/16x16/apps/kolf.png share/icons/hicolor/22x22/apps/kolf.png share/icons/hicolor/32x32/apps/kolf.png share/icons/hicolor/48x48/apps/kolf.png share/icons/hicolor/64x64/apps/kolf.png share/icons/hicolor/scalable/apps/kolf.svgz %%DATADIR%%/courses/Classic.kolf %%DATADIR%%/courses/Easy.kolf %%DATADIR%%/courses/Hard.kolf %%DATADIR%%/courses/Impossible %%DATADIR%%/courses/Medium.kolf %%DATADIR%%/courses/Practice %%DATADIR%%/courses/ReallyEasy %%DATADIR%%/courses/USApro %%DATADIR%%/intro %%DATADIR%%/sounds/blackhole.wav %%DATADIR%%/sounds/blackholeeject.wav %%DATADIR%%/sounds/blackholeputin.wav %%DATADIR%%/sounds/bumper.wav %%DATADIR%%/sounds/hit.wav %%DATADIR%%/sounds/holed.wav %%DATADIR%%/sounds/holeinone.wav %%DATADIR%%/sounds/puddle.wav %%DATADIR%%/sounds/wall.wav %%DATADIR%%/sounds/woohoo.wav %%DATADIR%%/themes/default.svgz %%DATADIR%%/tutorial.kolf %%DATADIR%%/tutorial.kolfgame share/locale/af/LC_MESSAGES/kolf.mo share/locale/ar/LC_MESSAGES/kolf.mo share/locale/ast/LC_MESSAGES/kolf.mo share/locale/be/LC_MESSAGES/kolf.mo -share/locale/bg/LC_MESSAGES/kolf.mo share/locale/br/LC_MESSAGES/kolf.mo share/locale/bs/LC_MESSAGES/kolf.mo share/locale/ca/LC_MESSAGES/kolf.mo share/locale/ca@valencia/LC_MESSAGES/kolf.mo share/locale/cs/LC_MESSAGES/kolf.mo share/locale/cy/LC_MESSAGES/kolf.mo share/locale/da/LC_MESSAGES/kolf.mo share/locale/de/LC_MESSAGES/kolf.mo share/locale/el/LC_MESSAGES/kolf.mo share/locale/en_GB/LC_MESSAGES/kolf.mo share/locale/eo/LC_MESSAGES/kolf.mo share/locale/es/LC_MESSAGES/kolf.mo share/locale/et/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/fa/LC_MESSAGES/kolf.mo share/locale/fi/LC_MESSAGES/kolf.mo share/locale/fr/LC_MESSAGES/kolf.mo share/locale/ga/LC_MESSAGES/kolf.mo share/locale/gl/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/hi/LC_MESSAGES/kolf.mo share/locale/hne/LC_MESSAGES/kolf.mo share/locale/hr/LC_MESSAGES/kolf.mo share/locale/hu/LC_MESSAGES/kolf.mo share/locale/ia/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/it/LC_MESSAGES/kolf.mo share/locale/ja/LC_MESSAGES/kolf.mo share/locale/ka/LC_MESSAGES/kolf.mo share/locale/kk/LC_MESSAGES/kolf.mo share/locale/km/LC_MESSAGES/kolf.mo share/locale/ko/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lv/LC_MESSAGES/kolf.mo share/locale/mai/LC_MESSAGES/kolf.mo share/locale/mk/LC_MESSAGES/kolf.mo share/locale/ml/LC_MESSAGES/kolf.mo share/locale/mr/LC_MESSAGES/kolf.mo share/locale/ms/LC_MESSAGES/kolf.mo share/locale/nb/LC_MESSAGES/kolf.mo share/locale/nds/LC_MESSAGES/kolf.mo share/locale/ne/LC_MESSAGES/kolf.mo share/locale/nl/LC_MESSAGES/kolf.mo share/locale/nn/LC_MESSAGES/kolf.mo share/locale/oc/LC_MESSAGES/kolf.mo share/locale/pa/LC_MESSAGES/kolf.mo share/locale/pl/LC_MESSAGES/kolf.mo share/locale/pt/LC_MESSAGES/kolf.mo share/locale/pt_BR/LC_MESSAGES/kolf.mo share/locale/ro/LC_MESSAGES/kolf.mo share/locale/ru/LC_MESSAGES/kolf.mo share/locale/sa/LC_MESSAGES/kolf.mo share/locale/se/LC_MESSAGES/kolf.mo share/locale/sk/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kolf.mo share/locale/sq/LC_MESSAGES/kolf.mo share/locale/sr/LC_MESSAGES/kolf.mo share/locale/sr@ijekavian/LC_MESSAGES/kolf.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kolf.mo share/locale/sr@latin/LC_MESSAGES/kolf.mo share/locale/sv/LC_MESSAGES/kolf.mo share/locale/ta/LC_MESSAGES/kolf.mo share/locale/tg/LC_MESSAGES/kolf.mo share/locale/tr/LC_MESSAGES/kolf.mo share/locale/ug/LC_MESSAGES/kolf.mo share/locale/uk/LC_MESSAGES/kolf.mo share/locale/xh/LC_MESSAGES/kolf.mo share/locale/zh_CN/LC_MESSAGES/kolf.mo share/locale/zh_TW/LC_MESSAGES/kolf.mo share/metainfo/org.kde.kolf.appdata.xml diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 1371f037050a..4c5ffae53f13 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478443 -SHA256 (KDE/release-service/26.04.2/kollision-26.04.2.tar.xz) = 2621bbb7d34bee9dc3d6ccd1bc90e315eed5e2eb7ee73cb6635b83b4b2ea9327 -SIZE (KDE/release-service/26.04.2/kollision-26.04.2.tar.xz) = 313844 +TIMESTAMP = 1782826780 +SHA256 (KDE/release-service/26.04.3/kollision-26.04.3.tar.xz) = ab231aac83bb551a76b5d1c1b11826a7ead7c827455d97fbcbeeee4813667c9a +SIZE (KDE/release-service/26.04.3/kollision-26.04.3.tar.xz) = 313720 diff --git a/games/kollision/pkg-plist b/games/kollision/pkg-plist index 9def5f74717b..954b1fe7e755 100644 --- a/games/kollision/pkg-plist +++ b/games/kollision/pkg-plist @@ -1,83 +1,82 @@ bin/kollision share/applications/org.kde.kollision.desktop share/icons/hicolor/128x128/apps/kollision.png share/icons/hicolor/16x16/apps/kollision.png share/icons/hicolor/22x22/apps/kollision.png share/icons/hicolor/32x32/apps/kollision.png share/icons/hicolor/48x48/apps/kollision.png share/icons/hicolor/64x64/apps/kollision.png share/icons/oxygen/128x128/apps/kollision.png share/icons/oxygen/16x16/apps/kollision.png share/icons/oxygen/22x22/apps/kollision.png share/icons/oxygen/32x32/apps/kollision.png share/icons/oxygen/48x48/apps/kollision.png share/icons/oxygen/64x64/apps/kollision.png %%DATADIR%%/sounds/ball_leaving.ogg %%DATADIR%%/sounds/hit_wall.ogg %%DATADIR%%/sounds/start.ogg %%DATADIR%%/sounds/you_lose.ogg %%DATADIR%%/themes/default.svgz share/locale/ar/LC_MESSAGES/kollision.mo share/locale/ast/LC_MESSAGES/kollision.mo -share/locale/bg/LC_MESSAGES/kollision.mo share/locale/bs/LC_MESSAGES/kollision.mo share/locale/ca/LC_MESSAGES/kollision.mo share/locale/ca@valencia/LC_MESSAGES/kollision.mo share/locale/cs/LC_MESSAGES/kollision.mo share/locale/da/LC_MESSAGES/kollision.mo share/locale/de/LC_MESSAGES/kollision.mo share/locale/el/LC_MESSAGES/kollision.mo share/locale/en_GB/LC_MESSAGES/kollision.mo share/locale/eo/LC_MESSAGES/kollision.mo share/locale/es/LC_MESSAGES/kollision.mo share/locale/et/LC_MESSAGES/kollision.mo share/locale/eu/LC_MESSAGES/kollision.mo share/locale/fi/LC_MESSAGES/kollision.mo share/locale/fr/LC_MESSAGES/kollision.mo share/locale/ga/LC_MESSAGES/kollision.mo share/locale/gl/LC_MESSAGES/kollision.mo share/locale/gu/LC_MESSAGES/kollision.mo share/locale/he/LC_MESSAGES/kollision.mo share/locale/hi/LC_MESSAGES/kollision.mo share/locale/hr/LC_MESSAGES/kollision.mo share/locale/hu/LC_MESSAGES/kollision.mo share/locale/ia/LC_MESSAGES/kollision.mo share/locale/id/LC_MESSAGES/kollision.mo share/locale/is/LC_MESSAGES/kollision.mo share/locale/it/LC_MESSAGES/kollision.mo share/locale/ja/LC_MESSAGES/kollision.mo share/locale/ka/LC_MESSAGES/kollision.mo share/locale/kk/LC_MESSAGES/kollision.mo share/locale/km/LC_MESSAGES/kollision.mo share/locale/ko/LC_MESSAGES/kollision.mo share/locale/lt/LC_MESSAGES/kollision.mo share/locale/lv/LC_MESSAGES/kollision.mo share/locale/mai/LC_MESSAGES/kollision.mo share/locale/ml/LC_MESSAGES/kollision.mo share/locale/mr/LC_MESSAGES/kollision.mo share/locale/nb/LC_MESSAGES/kollision.mo share/locale/nds/LC_MESSAGES/kollision.mo share/locale/nl/LC_MESSAGES/kollision.mo share/locale/nn/LC_MESSAGES/kollision.mo share/locale/pa/LC_MESSAGES/kollision.mo share/locale/pl/LC_MESSAGES/kollision.mo share/locale/pt/LC_MESSAGES/kollision.mo share/locale/pt_BR/LC_MESSAGES/kollision.mo share/locale/ro/LC_MESSAGES/kollision.mo share/locale/ru/LC_MESSAGES/kollision.mo share/locale/sa/LC_MESSAGES/kollision.mo share/locale/sk/LC_MESSAGES/kollision.mo share/locale/sl/LC_MESSAGES/kollision.mo share/locale/sq/LC_MESSAGES/kollision.mo share/locale/sr/LC_MESSAGES/kollision.mo share/locale/sr@ijekavian/LC_MESSAGES/kollision.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kollision.mo share/locale/sr@latin/LC_MESSAGES/kollision.mo share/locale/sv/LC_MESSAGES/kollision.mo share/locale/th/LC_MESSAGES/kollision.mo share/locale/tr/LC_MESSAGES/kollision.mo share/locale/ug/LC_MESSAGES/kollision.mo share/locale/uk/LC_MESSAGES/kollision.mo share/locale/zh_CN/LC_MESSAGES/kollision.mo share/locale/zh_TW/LC_MESSAGES/kollision.mo share/metainfo/org.kde.kollision.appdata.xml diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 4f575d0b263c..1c8c7d568826 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478445 -SHA256 (KDE/release-service/26.04.2/konquest-26.04.2.tar.xz) = d5009fb07e1955db8801b7babf522d1f83551e6c5ff43436e7508b6b55f1f556 -SIZE (KDE/release-service/26.04.2/konquest-26.04.2.tar.xz) = 863164 +TIMESTAMP = 1782826781 +SHA256 (KDE/release-service/26.04.3/konquest-26.04.3.tar.xz) = b224c10924f829c3a48755445241065b8cf8136d67031dcdaa72eb4bb1855077 +SIZE (KDE/release-service/26.04.3/konquest-26.04.3.tar.xz) = 862176 diff --git a/games/konquest/pkg-plist b/games/konquest/pkg-plist index 4b154b336bde..f70d4ed5c24b 100644 --- a/games/konquest/pkg-plist +++ b/games/konquest/pkg-plist @@ -1,84 +1,83 @@ bin/konquest share/applications/org.kde.konquest.desktop share/icons/hicolor/128x128/apps/konquest.png share/icons/hicolor/16x16/apps/konquest.png share/icons/hicolor/22x22/apps/konquest.png share/icons/hicolor/32x32/apps/konquest.png share/icons/hicolor/48x48/apps/konquest.png share/icons/hicolor/64x64/apps/konquest.png %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/pics/konquest-splash.png share/locale/af/LC_MESSAGES/konquest.mo share/locale/ar/LC_MESSAGES/konquest.mo share/locale/ast/LC_MESSAGES/konquest.mo share/locale/be/LC_MESSAGES/konquest.mo -share/locale/bg/LC_MESSAGES/konquest.mo share/locale/br/LC_MESSAGES/konquest.mo share/locale/bs/LC_MESSAGES/konquest.mo share/locale/ca/LC_MESSAGES/konquest.mo share/locale/ca@valencia/LC_MESSAGES/konquest.mo share/locale/cs/LC_MESSAGES/konquest.mo share/locale/cy/LC_MESSAGES/konquest.mo share/locale/da/LC_MESSAGES/konquest.mo share/locale/de/LC_MESSAGES/konquest.mo share/locale/el/LC_MESSAGES/konquest.mo share/locale/en_GB/LC_MESSAGES/konquest.mo share/locale/eo/LC_MESSAGES/konquest.mo share/locale/es/LC_MESSAGES/konquest.mo share/locale/et/LC_MESSAGES/konquest.mo share/locale/eu/LC_MESSAGES/konquest.mo share/locale/fa/LC_MESSAGES/konquest.mo share/locale/fi/LC_MESSAGES/konquest.mo share/locale/fr/LC_MESSAGES/konquest.mo share/locale/ga/LC_MESSAGES/konquest.mo share/locale/gl/LC_MESSAGES/konquest.mo share/locale/he/LC_MESSAGES/konquest.mo share/locale/hi/LC_MESSAGES/konquest.mo share/locale/hne/LC_MESSAGES/konquest.mo share/locale/hr/LC_MESSAGES/konquest.mo share/locale/hu/LC_MESSAGES/konquest.mo share/locale/ia/LC_MESSAGES/konquest.mo share/locale/is/LC_MESSAGES/konquest.mo share/locale/it/LC_MESSAGES/konquest.mo share/locale/ja/LC_MESSAGES/konquest.mo share/locale/ka/LC_MESSAGES/konquest.mo share/locale/kk/LC_MESSAGES/konquest.mo share/locale/km/LC_MESSAGES/konquest.mo share/locale/ko/LC_MESSAGES/konquest.mo share/locale/lt/LC_MESSAGES/konquest.mo share/locale/lv/LC_MESSAGES/konquest.mo share/locale/mai/LC_MESSAGES/konquest.mo share/locale/mk/LC_MESSAGES/konquest.mo share/locale/ml/LC_MESSAGES/konquest.mo share/locale/mr/LC_MESSAGES/konquest.mo share/locale/nb/LC_MESSAGES/konquest.mo share/locale/nds/LC_MESSAGES/konquest.mo share/locale/ne/LC_MESSAGES/konquest.mo share/locale/nl/LC_MESSAGES/konquest.mo share/locale/nn/LC_MESSAGES/konquest.mo share/locale/oc/LC_MESSAGES/konquest.mo share/locale/pa/LC_MESSAGES/konquest.mo share/locale/pl/LC_MESSAGES/konquest.mo share/locale/pt/LC_MESSAGES/konquest.mo share/locale/pt_BR/LC_MESSAGES/konquest.mo share/locale/ro/LC_MESSAGES/konquest.mo share/locale/ru/LC_MESSAGES/konquest.mo share/locale/sa/LC_MESSAGES/konquest.mo share/locale/se/LC_MESSAGES/konquest.mo share/locale/sk/LC_MESSAGES/konquest.mo share/locale/sl/LC_MESSAGES/konquest.mo share/locale/sq/LC_MESSAGES/konquest.mo share/locale/sr/LC_MESSAGES/konquest.mo share/locale/sr@ijekavian/LC_MESSAGES/konquest.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/konquest.mo share/locale/sr@latin/LC_MESSAGES/konquest.mo share/locale/sv/LC_MESSAGES/konquest.mo share/locale/ta/LC_MESSAGES/konquest.mo share/locale/tg/LC_MESSAGES/konquest.mo share/locale/tr/LC_MESSAGES/konquest.mo share/locale/ug/LC_MESSAGES/konquest.mo share/locale/uk/LC_MESSAGES/konquest.mo share/locale/xh/LC_MESSAGES/konquest.mo share/locale/zh_CN/LC_MESSAGES/konquest.mo share/locale/zh_TW/LC_MESSAGES/konquest.mo share/metainfo/org.kde.konquest.appdata.xml diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 35fd4596db50..89357f647d81 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478446 -SHA256 (KDE/release-service/26.04.2/kpat-26.04.2.tar.xz) = c0ae10f2c10e2413351ea79cbc83d9a56ec1c37c57065dc3d5e481d37c76afd7 -SIZE (KDE/release-service/26.04.2/kpat-26.04.2.tar.xz) = 3746044 +TIMESTAMP = 1782826783 +SHA256 (KDE/release-service/26.04.3/kpat-26.04.3.tar.xz) = 562ab74043bfb77ec57970f757f107ded9d8e3fe13748324009720077ad719cb +SIZE (KDE/release-service/26.04.3/kpat-26.04.3.tar.xz) = 3747156 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 0f9f84ff0814..9bb92cba582f 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478448 -SHA256 (KDE/release-service/26.04.2/kreversi-26.04.2.tar.xz) = ef440e98b25e93dcd6bed8f870260c3d4ca70c532ea67624053cfd53248c9ce1 -SIZE (KDE/release-service/26.04.2/kreversi-26.04.2.tar.xz) = 1037256 +TIMESTAMP = 1782826785 +SHA256 (KDE/release-service/26.04.3/kreversi-26.04.3.tar.xz) = 402c2ee71ecdd6160541f89ff9dd14035ca743025c04292c947eb624d0f0ce52 +SIZE (KDE/release-service/26.04.3/kreversi-26.04.3.tar.xz) = 1036404 diff --git a/games/kreversi/pkg-plist b/games/kreversi/pkg-plist index 2bb8a5da5bd2..f086fe424c37 100644 --- a/games/kreversi/pkg-plist +++ b/games/kreversi/pkg-plist @@ -1,107 +1,106 @@ bin/kreversi share/applications/org.kde.kreversi.desktop share/icons/hicolor/128x128/apps/kreversi.png share/icons/hicolor/16x16/actions/lastmoves.png share/icons/hicolor/16x16/actions/legalmoves.png share/icons/hicolor/16x16/apps/kreversi.png share/icons/hicolor/22x22/actions/lastmoves.png share/icons/hicolor/22x22/actions/legalmoves.png share/icons/hicolor/22x22/apps/kreversi.png share/icons/hicolor/32x32/actions/lastmoves.png share/icons/hicolor/32x32/actions/legalmoves.png share/icons/hicolor/32x32/apps/kreversi.png share/icons/hicolor/48x48/actions/lastmoves.png share/icons/hicolor/48x48/actions/legalmoves.png share/icons/hicolor/48x48/apps/kreversi.png share/icons/hicolor/64x64/apps/kreversi.png share/icons/hicolor/scalable/actions/lastmoves.svgz share/icons/hicolor/scalable/actions/legalmoves.svgz share/knotifications6/kreversi.notifyrc %%DATADIR%%/qml/Board.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/Chip.qml %%DATADIR%%/qml/Popup.qml %%DATADIR%%/qml/Table.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/sounds/reversi-click.wav %%DATADIR%%/sounds/reversi-won.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz share/locale/af/LC_MESSAGES/kreversi.mo share/locale/ar/LC_MESSAGES/kreversi.mo share/locale/ast/LC_MESSAGES/kreversi.mo share/locale/be/LC_MESSAGES/kreversi.mo -share/locale/bg/LC_MESSAGES/kreversi.mo share/locale/bn/LC_MESSAGES/kreversi.mo share/locale/br/LC_MESSAGES/kreversi.mo share/locale/bs/LC_MESSAGES/kreversi.mo share/locale/ca/LC_MESSAGES/kreversi.mo share/locale/ca@valencia/LC_MESSAGES/kreversi.mo share/locale/cs/LC_MESSAGES/kreversi.mo share/locale/cy/LC_MESSAGES/kreversi.mo share/locale/da/LC_MESSAGES/kreversi.mo share/locale/de/LC_MESSAGES/kreversi.mo share/locale/el/LC_MESSAGES/kreversi.mo share/locale/en_GB/LC_MESSAGES/kreversi.mo share/locale/eo/LC_MESSAGES/kreversi.mo share/locale/es/LC_MESSAGES/kreversi.mo share/locale/et/LC_MESSAGES/kreversi.mo share/locale/eu/LC_MESSAGES/kreversi.mo share/locale/fa/LC_MESSAGES/kreversi.mo share/locale/fi/LC_MESSAGES/kreversi.mo share/locale/fr/LC_MESSAGES/kreversi.mo share/locale/ga/LC_MESSAGES/kreversi.mo share/locale/gl/LC_MESSAGES/kreversi.mo share/locale/he/LC_MESSAGES/kreversi.mo share/locale/hi/LC_MESSAGES/kreversi.mo share/locale/hne/LC_MESSAGES/kreversi.mo share/locale/hr/LC_MESSAGES/kreversi.mo share/locale/hu/LC_MESSAGES/kreversi.mo share/locale/ia/LC_MESSAGES/kreversi.mo share/locale/id/LC_MESSAGES/kreversi.mo share/locale/is/LC_MESSAGES/kreversi.mo share/locale/it/LC_MESSAGES/kreversi.mo share/locale/ja/LC_MESSAGES/kreversi.mo share/locale/ka/LC_MESSAGES/kreversi.mo share/locale/kk/LC_MESSAGES/kreversi.mo share/locale/km/LC_MESSAGES/kreversi.mo share/locale/ko/LC_MESSAGES/kreversi.mo share/locale/lt/LC_MESSAGES/kreversi.mo share/locale/lv/LC_MESSAGES/kreversi.mo share/locale/mai/LC_MESSAGES/kreversi.mo share/locale/mk/LC_MESSAGES/kreversi.mo share/locale/ml/LC_MESSAGES/kreversi.mo share/locale/mr/LC_MESSAGES/kreversi.mo share/locale/nb/LC_MESSAGES/kreversi.mo share/locale/nds/LC_MESSAGES/kreversi.mo share/locale/ne/LC_MESSAGES/kreversi.mo share/locale/nl/LC_MESSAGES/kreversi.mo share/locale/nn/LC_MESSAGES/kreversi.mo share/locale/oc/LC_MESSAGES/kreversi.mo share/locale/pa/LC_MESSAGES/kreversi.mo share/locale/pl/LC_MESSAGES/kreversi.mo share/locale/pt/LC_MESSAGES/kreversi.mo share/locale/pt_BR/LC_MESSAGES/kreversi.mo share/locale/ro/LC_MESSAGES/kreversi.mo share/locale/ru/LC_MESSAGES/kreversi.mo share/locale/sa/LC_MESSAGES/kreversi.mo share/locale/se/LC_MESSAGES/kreversi.mo share/locale/sk/LC_MESSAGES/kreversi.mo share/locale/sl/LC_MESSAGES/kreversi.mo share/locale/sq/LC_MESSAGES/kreversi.mo share/locale/sr/LC_MESSAGES/kreversi.mo share/locale/sr@ijekavian/LC_MESSAGES/kreversi.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kreversi.mo share/locale/sr@latin/LC_MESSAGES/kreversi.mo share/locale/sv/LC_MESSAGES/kreversi.mo share/locale/ta/LC_MESSAGES/kreversi.mo share/locale/tg/LC_MESSAGES/kreversi.mo share/locale/th/LC_MESSAGES/kreversi.mo share/locale/tr/LC_MESSAGES/kreversi.mo share/locale/ug/LC_MESSAGES/kreversi.mo share/locale/uk/LC_MESSAGES/kreversi.mo share/locale/xh/LC_MESSAGES/kreversi.mo share/locale/zh_CN/LC_MESSAGES/kreversi.mo share/locale/zh_TW/LC_MESSAGES/kreversi.mo share/metainfo/org.kde.kreversi.appdata.xml diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 684e4d0fcb6e..774e72219273 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478450 -SHA256 (KDE/release-service/26.04.2/kshisen-26.04.2.tar.xz) = 64dee4b63058ade9abb8a55371c99f38f88c048c3dc0c03674f7ae005d53e141 -SIZE (KDE/release-service/26.04.2/kshisen-26.04.2.tar.xz) = 976272 +TIMESTAMP = 1782826787 +SHA256 (KDE/release-service/26.04.3/kshisen-26.04.3.tar.xz) = 2479a73aec1a4aeec451c31e1b5858d7571235615cd3e3de5f134445ac5ce853 +SIZE (KDE/release-service/26.04.3/kshisen-26.04.3.tar.xz) = 975660 diff --git a/games/kshisen/pkg-plist b/games/kshisen/pkg-plist index 6e9ff2c683fe..d175b0abbd6d 100644 --- a/games/kshisen/pkg-plist +++ b/games/kshisen/pkg-plist @@ -1,89 +1,88 @@ bin/kshisen share/applications/org.kde.kshisen.desktop share/config.kcfg/kshisen.kcfg share/icons/hicolor/128x128/apps/kshisen.png share/icons/hicolor/16x16/apps/kshisen.png share/icons/hicolor/22x22/apps/kshisen.png share/icons/hicolor/32x32/apps/kshisen.png share/icons/hicolor/48x48/apps/kshisen.png share/icons/hicolor/64x64/apps/kshisen.png share/locale/af/LC_MESSAGES/kshisen.mo share/locale/ar/LC_MESSAGES/kshisen.mo share/locale/ast/LC_MESSAGES/kshisen.mo share/locale/be/LC_MESSAGES/kshisen.mo -share/locale/bg/LC_MESSAGES/kshisen.mo share/locale/bn/LC_MESSAGES/kshisen.mo share/locale/br/LC_MESSAGES/kshisen.mo share/locale/bs/LC_MESSAGES/kshisen.mo share/locale/ca/LC_MESSAGES/kshisen.mo share/locale/ca@valencia/LC_MESSAGES/kshisen.mo share/locale/cs/LC_MESSAGES/kshisen.mo share/locale/cy/LC_MESSAGES/kshisen.mo share/locale/da/LC_MESSAGES/kshisen.mo share/locale/de/LC_MESSAGES/kshisen.mo share/locale/el/LC_MESSAGES/kshisen.mo share/locale/en_GB/LC_MESSAGES/kshisen.mo share/locale/eo/LC_MESSAGES/kshisen.mo share/locale/es/LC_MESSAGES/kshisen.mo share/locale/et/LC_MESSAGES/kshisen.mo share/locale/eu/LC_MESSAGES/kshisen.mo share/locale/fa/LC_MESSAGES/kshisen.mo share/locale/fi/LC_MESSAGES/kshisen.mo share/locale/fr/LC_MESSAGES/kshisen.mo share/locale/ga/LC_MESSAGES/kshisen.mo share/locale/gl/LC_MESSAGES/kshisen.mo share/locale/he/LC_MESSAGES/kshisen.mo share/locale/hi/LC_MESSAGES/kshisen.mo share/locale/hne/LC_MESSAGES/kshisen.mo share/locale/hr/LC_MESSAGES/kshisen.mo share/locale/hu/LC_MESSAGES/kshisen.mo share/locale/ia/LC_MESSAGES/kshisen.mo share/locale/id/LC_MESSAGES/kshisen.mo share/locale/is/LC_MESSAGES/kshisen.mo share/locale/it/LC_MESSAGES/kshisen.mo share/locale/ja/LC_MESSAGES/kshisen.mo share/locale/ka/LC_MESSAGES/kshisen.mo share/locale/kk/LC_MESSAGES/kshisen.mo share/locale/km/LC_MESSAGES/kshisen.mo share/locale/ko/LC_MESSAGES/kshisen.mo share/locale/lt/LC_MESSAGES/kshisen.mo share/locale/lv/LC_MESSAGES/kshisen.mo share/locale/mai/LC_MESSAGES/kshisen.mo share/locale/mk/LC_MESSAGES/kshisen.mo share/locale/ml/LC_MESSAGES/kshisen.mo share/locale/mr/LC_MESSAGES/kshisen.mo share/locale/nb/LC_MESSAGES/kshisen.mo share/locale/nds/LC_MESSAGES/kshisen.mo share/locale/ne/LC_MESSAGES/kshisen.mo share/locale/nl/LC_MESSAGES/kshisen.mo share/locale/nn/LC_MESSAGES/kshisen.mo share/locale/oc/LC_MESSAGES/kshisen.mo share/locale/pa/LC_MESSAGES/kshisen.mo share/locale/pl/LC_MESSAGES/kshisen.mo share/locale/pt/LC_MESSAGES/kshisen.mo share/locale/pt_BR/LC_MESSAGES/kshisen.mo share/locale/ro/LC_MESSAGES/kshisen.mo share/locale/ru/LC_MESSAGES/kshisen.mo share/locale/sa/LC_MESSAGES/kshisen.mo share/locale/se/LC_MESSAGES/kshisen.mo share/locale/sk/LC_MESSAGES/kshisen.mo share/locale/sl/LC_MESSAGES/kshisen.mo share/locale/sq/LC_MESSAGES/kshisen.mo share/locale/sr/LC_MESSAGES/kshisen.mo share/locale/sr@ijekavian/LC_MESSAGES/kshisen.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kshisen.mo share/locale/sr@latin/LC_MESSAGES/kshisen.mo share/locale/sv/LC_MESSAGES/kshisen.mo share/locale/ta/LC_MESSAGES/kshisen.mo share/locale/tg/LC_MESSAGES/kshisen.mo share/locale/th/LC_MESSAGES/kshisen.mo share/locale/tr/LC_MESSAGES/kshisen.mo share/locale/ug/LC_MESSAGES/kshisen.mo share/locale/uk/LC_MESSAGES/kshisen.mo share/locale/xh/LC_MESSAGES/kshisen.mo share/locale/zh_CN/LC_MESSAGES/kshisen.mo share/locale/zh_TW/LC_MESSAGES/kshisen.mo share/metainfo/org.kde.kshisen.appdata.xml share/qlogging-categories6/kshisen.categories share/sounds/kshisen/tile-fall-tile.ogg share/sounds/kshisen/tile-touch.ogg diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 382eefbfd6e7..bef3f5d9ca20 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478451 -SHA256 (KDE/release-service/26.04.2/ksirk-26.04.2.tar.xz) = 0ac8772caf3634716d1aa68b3f6e0fe3fe64396f4ba3eaa9c7f5203a8da40150 -SIZE (KDE/release-service/26.04.2/ksirk-26.04.2.tar.xz) = 6720564 +TIMESTAMP = 1782826788 +SHA256 (KDE/release-service/26.04.3/ksirk-26.04.3.tar.xz) = ee16eaf0c28677a051628d9aa8f426c8999dbf78462069662ac3a16953c8323d +SIZE (KDE/release-service/26.04.3/ksirk-26.04.3.tar.xz) = 6722164 diff --git a/games/ksirk/pkg-plist b/games/ksirk/pkg-plist index 29c727c7b641..38466310ec3e 100644 --- a/games/ksirk/pkg-plist +++ b/games/ksirk/pkg-plist @@ -1,172 +1,172 @@ bin/ksirk bin/ksirkskineditor share/applications/org.kde.ksirk.desktop share/applications/org.kde.ksirkskineditor.desktop share/config.kcfg/ksirksettings.kcfg share/config.kcfg/ksirkskineditorsettings.kcfg share/icons/hicolor/128x128/apps/ksirk.png share/icons/hicolor/16x16/apps/ksirk.png share/icons/hicolor/22x22/apps/ksirk.png share/icons/hicolor/32x32/apps/ksirk.png share/icons/hicolor/48x48/apps/ksirk.png share/icons/hicolor/64x64/apps/ksirk.png share/icons/hicolor/scalable/apps/ksirk.svgz share/knsrcfiles/ksirk.knsrc %%DATADIR%%/skins/default/Data/world.desktop %%DATADIR%%/skins/default/Images/2DownArrow.png %%DATADIR%%/skins/default/Images/2UpArrow.png %%DATADIR%%/skins/default/Images/arena.svg %%DATADIR%%/skins/default/Images/attackAuto.png %%DATADIR%%/skins/default/Images/attackOne.png %%DATADIR%%/skins/default/Images/attackThree.png %%DATADIR%%/skins/default/Images/attackTwo.png %%DATADIR%%/skins/default/Images/cancel.png %%DATADIR%%/skins/default/Images/defendOne.png %%DATADIR%%/skins/default/Images/defendTwo.png %%DATADIR%%/skins/default/Images/downArrow.png %%DATADIR%%/skins/default/Images/loader.gif %%DATADIR%%/skins/default/Images/logoLeft.png %%DATADIR%%/skins/default/Images/logoRight.png %%DATADIR%%/skins/default/Images/map-mask.png %%DATADIR%%/skins/default/Images/moveArmies.png %%DATADIR%%/skins/default/Images/moveBackFive.png %%DATADIR%%/skins/default/Images/moveBackOne.png %%DATADIR%%/skins/default/Images/moveBackTen.png %%DATADIR%%/skins/default/Images/moveFinish.png %%DATADIR%%/skins/default/Images/moveFive.png %%DATADIR%%/skins/default/Images/moveOne.png %%DATADIR%%/skins/default/Images/moveTen.png %%DATADIR%%/skins/default/Images/newNetGame.png %%DATADIR%%/skins/default/Images/nextPlayer.png %%DATADIR%%/skins/default/Images/pool.svg %%DATADIR%%/skins/default/Images/recycling.png %%DATADIR%%/skins/default/Images/recyclingFinished.png %%DATADIR%%/skins/default/Images/snapshot.jpg %%DATADIR%%/skins/default/Images/soldierKneeling.png %%DATADIR%%/skins/default/Images/stopAttackAuto.png %%DATADIR%%/skins/default/Images/upArrow.png %%DATADIR%%/skins/default/Sounds/cannon.wav %%DATADIR%%/skins/default/Sounds/crash.wav %%DATADIR%%/skins/default/Sounds/roll.wav %%DATADIR%%/skins/skinsdir share/ksirkskineditor/cross.png share/ksirkskineditor/target.png share/locale/ar/LC_MESSAGES/ksirk.mo share/locale/ar/LC_MESSAGES/ksirkskineditor.mo share/locale/ast/LC_MESSAGES/ksirk.mo share/locale/ast/LC_MESSAGES/ksirkskineditor.mo share/locale/be/LC_MESSAGES/ksirk.mo -share/locale/bg/LC_MESSAGES/ksirk.mo -share/locale/bg/LC_MESSAGES/ksirkskineditor.mo share/locale/bs/LC_MESSAGES/ksirk.mo share/locale/bs/LC_MESSAGES/ksirkskineditor.mo share/locale/ca/LC_MESSAGES/ksirk.mo share/locale/ca/LC_MESSAGES/ksirkskineditor.mo share/locale/ca@valencia/LC_MESSAGES/ksirk.mo share/locale/ca@valencia/LC_MESSAGES/ksirkskineditor.mo share/locale/cs/LC_MESSAGES/ksirk.mo share/locale/cs/LC_MESSAGES/ksirkskineditor.mo share/locale/da/LC_MESSAGES/ksirk.mo share/locale/da/LC_MESSAGES/ksirkskineditor.mo share/locale/de/LC_MESSAGES/ksirk.mo share/locale/de/LC_MESSAGES/ksirkskineditor.mo share/locale/el/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirkskineditor.mo share/locale/eo/LC_MESSAGES/ksirk.mo share/locale/eo/LC_MESSAGES/ksirkskineditor.mo share/locale/es/LC_MESSAGES/ksirk.mo share/locale/es/LC_MESSAGES/ksirkskineditor.mo share/locale/et/LC_MESSAGES/ksirk.mo share/locale/et/LC_MESSAGES/ksirkskineditor.mo share/locale/eu/LC_MESSAGES/ksirk.mo share/locale/eu/LC_MESSAGES/ksirkskineditor.mo share/locale/fi/LC_MESSAGES/ksirk.mo share/locale/fi/LC_MESSAGES/ksirkskineditor.mo share/locale/fr/LC_MESSAGES/ksirk.mo share/locale/fr/LC_MESSAGES/ksirkskineditor.mo share/locale/ga/LC_MESSAGES/ksirk.mo share/locale/ga/LC_MESSAGES/ksirkskineditor.mo share/locale/gl/LC_MESSAGES/ksirk.mo share/locale/gl/LC_MESSAGES/ksirkskineditor.mo share/locale/he/LC_MESSAGES/ksirk.mo share/locale/hi/LC_MESSAGES/ksirk.mo share/locale/hi/LC_MESSAGES/ksirkskineditor.mo share/locale/hne/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirkskineditor.mo share/locale/hu/LC_MESSAGES/ksirk.mo share/locale/hu/LC_MESSAGES/ksirkskineditor.mo share/locale/ia/LC_MESSAGES/ksirk.mo share/locale/ia/LC_MESSAGES/ksirkskineditor.mo share/locale/is/LC_MESSAGES/ksirk.mo share/locale/is/LC_MESSAGES/ksirkskineditor.mo share/locale/it/LC_MESSAGES/ksirk.mo share/locale/it/LC_MESSAGES/ksirkskineditor.mo share/locale/ja/LC_MESSAGES/ksirk.mo share/locale/ja/LC_MESSAGES/ksirkskineditor.mo share/locale/ka/LC_MESSAGES/ksirk.mo share/locale/ka/LC_MESSAGES/ksirkskineditor.mo share/locale/kk/LC_MESSAGES/ksirk.mo share/locale/kk/LC_MESSAGES/ksirkskineditor.mo share/locale/km/LC_MESSAGES/ksirk.mo share/locale/km/LC_MESSAGES/ksirkskineditor.mo +share/locale/ko/LC_MESSAGES/ksirk.mo +share/locale/ko/LC_MESSAGES/ksirkskineditor.mo share/locale/lt/LC_MESSAGES/ksirk.mo share/locale/lt/LC_MESSAGES/ksirkskineditor.mo share/locale/lv/LC_MESSAGES/ksirk.mo share/locale/lv/LC_MESSAGES/ksirkskineditor.mo share/locale/mai/LC_MESSAGES/ksirk.mo share/locale/mai/LC_MESSAGES/ksirkskineditor.mo share/locale/ml/LC_MESSAGES/ksirk.mo share/locale/ml/LC_MESSAGES/ksirkskineditor.mo share/locale/mr/LC_MESSAGES/ksirk.mo share/locale/mr/LC_MESSAGES/ksirkskineditor.mo share/locale/ms/LC_MESSAGES/ksirk.mo share/locale/nb/LC_MESSAGES/ksirk.mo share/locale/nb/LC_MESSAGES/ksirkskineditor.mo share/locale/nds/LC_MESSAGES/ksirk.mo share/locale/nds/LC_MESSAGES/ksirkskineditor.mo share/locale/nl/LC_MESSAGES/ksirk.mo share/locale/nl/LC_MESSAGES/ksirkskineditor.mo share/locale/nn/LC_MESSAGES/ksirk.mo share/locale/nn/LC_MESSAGES/ksirkskineditor.mo share/locale/oc/LC_MESSAGES/ksirk.mo share/locale/pl/LC_MESSAGES/ksirk.mo share/locale/pl/LC_MESSAGES/ksirkskineditor.mo share/locale/pt/LC_MESSAGES/ksirk.mo share/locale/pt/LC_MESSAGES/ksirkskineditor.mo share/locale/pt_BR/LC_MESSAGES/ksirk.mo share/locale/pt_BR/LC_MESSAGES/ksirkskineditor.mo share/locale/ro/LC_MESSAGES/ksirk.mo share/locale/ro/LC_MESSAGES/ksirkskineditor.mo share/locale/ru/LC_MESSAGES/ksirk.mo share/locale/ru/LC_MESSAGES/ksirkskineditor.mo share/locale/sa/LC_MESSAGES/ksirk.mo share/locale/sa/LC_MESSAGES/ksirkskineditor.mo share/locale/sk/LC_MESSAGES/ksirk.mo share/locale/sk/LC_MESSAGES/ksirkskineditor.mo share/locale/sl/LC_MESSAGES/ksirk.mo share/locale/sl/LC_MESSAGES/ksirkskineditor.mo share/locale/sr/LC_MESSAGES/ksirk.mo share/locale/sr/LC_MESSAGES/ksirkskineditor.mo share/locale/sr@ijekavian/LC_MESSAGES/ksirk.mo share/locale/sr@ijekavian/LC_MESSAGES/ksirkskineditor.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksirk.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksirkskineditor.mo share/locale/sr@latin/LC_MESSAGES/ksirk.mo share/locale/sr@latin/LC_MESSAGES/ksirkskineditor.mo share/locale/sv/LC_MESSAGES/ksirk.mo share/locale/sv/LC_MESSAGES/ksirkskineditor.mo share/locale/tr/LC_MESSAGES/ksirk.mo share/locale/tr/LC_MESSAGES/ksirkskineditor.mo share/locale/ug/LC_MESSAGES/ksirk.mo share/locale/ug/LC_MESSAGES/ksirkskineditor.mo share/locale/uk/LC_MESSAGES/ksirk.mo share/locale/uk/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_CN/LC_MESSAGES/ksirk.mo share/locale/zh_CN/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_TW/LC_MESSAGES/ksirk.mo share/locale/zh_TW/LC_MESSAGES/ksirkskineditor.mo share/metainfo/org.kde.ksirk.appdata.xml share/qlogging-categories6/ksirk.categories share/qlogging-categories6/ksirk.renamecategories diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 1e1cf8dd02af..bbbd8d3423e5 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478453 -SHA256 (KDE/release-service/26.04.2/ksnakeduel-26.04.2.tar.xz) = 1fbded4e20fa42794fba6cf3730d7be99e45e29c0fd185f87afee1ee6e1f7ce1 -SIZE (KDE/release-service/26.04.2/ksnakeduel-26.04.2.tar.xz) = 580384 +TIMESTAMP = 1782826790 +SHA256 (KDE/release-service/26.04.3/ksnakeduel-26.04.3.tar.xz) = 517d66a2ea0d1954b4205d37357cd03c2126acf8e043d7b95c3d9f598b94a231 +SIZE (KDE/release-service/26.04.3/ksnakeduel-26.04.3.tar.xz) = 580104 diff --git a/games/ksnakeduel/pkg-plist b/games/ksnakeduel/pkg-plist index 61214c298922..c0e4de72ee6f 100644 --- a/games/ksnakeduel/pkg-plist +++ b/games/ksnakeduel/pkg-plist @@ -1,80 +1,79 @@ bin/ksnakeduel share/applications/org.kde.ksnakeduel.desktop share/config.kcfg/ksnakeduel.kcfg share/icons/hicolor/128x128/apps/ksnakeduel.png share/icons/hicolor/16x16/apps/ksnakeduel.png share/icons/hicolor/22x22/apps/ksnakeduel.png share/icons/hicolor/256x256/apps/ksnakeduel.png share/icons/hicolor/32x32/apps/ksnakeduel.png share/icons/hicolor/48x48/apps/ksnakeduel.png share/icons/hicolor/64x64/apps/ksnakeduel.png share/knsrcfiles/ksnakeduel.knsrc %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.png %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/neon.desktop %%DATADIR%%/themes/neon.png %%DATADIR%%/themes/neon.svgz share/locale/ar/LC_MESSAGES/ksnakeduel.mo share/locale/ast/LC_MESSAGES/ksnakeduel.mo -share/locale/bg/LC_MESSAGES/ksnakeduel.mo share/locale/bs/LC_MESSAGES/ksnakeduel.mo share/locale/ca/LC_MESSAGES/ksnakeduel.mo share/locale/ca@valencia/LC_MESSAGES/ksnakeduel.mo share/locale/cs/LC_MESSAGES/ksnakeduel.mo share/locale/da/LC_MESSAGES/ksnakeduel.mo share/locale/de/LC_MESSAGES/ksnakeduel.mo share/locale/el/LC_MESSAGES/ksnakeduel.mo share/locale/en_GB/LC_MESSAGES/ksnakeduel.mo share/locale/eo/LC_MESSAGES/ksnakeduel.mo share/locale/es/LC_MESSAGES/ksnakeduel.mo share/locale/et/LC_MESSAGES/ksnakeduel.mo share/locale/eu/LC_MESSAGES/ksnakeduel.mo share/locale/fi/LC_MESSAGES/ksnakeduel.mo share/locale/fr/LC_MESSAGES/ksnakeduel.mo share/locale/ga/LC_MESSAGES/ksnakeduel.mo share/locale/gl/LC_MESSAGES/ksnakeduel.mo share/locale/he/LC_MESSAGES/ksnakeduel.mo share/locale/hi/LC_MESSAGES/ksnakeduel.mo share/locale/hr/LC_MESSAGES/ksnakeduel.mo share/locale/hsb/LC_MESSAGES/ksnakeduel.mo share/locale/hu/LC_MESSAGES/ksnakeduel.mo share/locale/ia/LC_MESSAGES/ksnakeduel.mo share/locale/is/LC_MESSAGES/ksnakeduel.mo share/locale/it/LC_MESSAGES/ksnakeduel.mo share/locale/ja/LC_MESSAGES/ksnakeduel.mo share/locale/ka/LC_MESSAGES/ksnakeduel.mo share/locale/kk/LC_MESSAGES/ksnakeduel.mo share/locale/km/LC_MESSAGES/ksnakeduel.mo share/locale/ko/LC_MESSAGES/ksnakeduel.mo share/locale/lt/LC_MESSAGES/ksnakeduel.mo share/locale/lv/LC_MESSAGES/ksnakeduel.mo share/locale/mai/LC_MESSAGES/ksnakeduel.mo share/locale/ml/LC_MESSAGES/ksnakeduel.mo share/locale/mr/LC_MESSAGES/ksnakeduel.mo share/locale/ms/LC_MESSAGES/ksnakeduel.mo share/locale/nb/LC_MESSAGES/ksnakeduel.mo share/locale/nds/LC_MESSAGES/ksnakeduel.mo share/locale/nl/LC_MESSAGES/ksnakeduel.mo share/locale/nn/LC_MESSAGES/ksnakeduel.mo share/locale/pl/LC_MESSAGES/ksnakeduel.mo share/locale/pt/LC_MESSAGES/ksnakeduel.mo share/locale/pt_BR/LC_MESSAGES/ksnakeduel.mo share/locale/ro/LC_MESSAGES/ksnakeduel.mo share/locale/ru/LC_MESSAGES/ksnakeduel.mo share/locale/sa/LC_MESSAGES/ksnakeduel.mo share/locale/sk/LC_MESSAGES/ksnakeduel.mo share/locale/sl/LC_MESSAGES/ksnakeduel.mo share/locale/sq/LC_MESSAGES/ksnakeduel.mo share/locale/sr/LC_MESSAGES/ksnakeduel.mo share/locale/sr@ijekavian/LC_MESSAGES/ksnakeduel.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksnakeduel.mo share/locale/sr@latin/LC_MESSAGES/ksnakeduel.mo share/locale/sv/LC_MESSAGES/ksnakeduel.mo share/locale/tr/LC_MESSAGES/ksnakeduel.mo share/locale/ug/LC_MESSAGES/ksnakeduel.mo share/locale/uk/LC_MESSAGES/ksnakeduel.mo share/locale/zh_CN/LC_MESSAGES/ksnakeduel.mo share/locale/zh_TW/LC_MESSAGES/ksnakeduel.mo share/metainfo/org.kde.ksnakeduel.appdata.xml share/qlogging-categories6/ksnakeduel.categories diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index dfcab6a59dd4..eebaf1666755 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478455 -SHA256 (KDE/release-service/26.04.2/kspaceduel-26.04.2.tar.xz) = b869ca36ce713bc5778376b8bfb897d173951b0e8e6b9e9f40f8c73c9b592a34 -SIZE (KDE/release-service/26.04.2/kspaceduel-26.04.2.tar.xz) = 637056 +TIMESTAMP = 1782826792 +SHA256 (KDE/release-service/26.04.3/kspaceduel-26.04.3.tar.xz) = 823f884a4d7ef558e1ada6d6956206f1eae068ab10577b880738e7384afc60af +SIZE (KDE/release-service/26.04.3/kspaceduel-26.04.3.tar.xz) = 637148 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index a00021977a9c..fbb3d5eef583 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478456 -SHA256 (KDE/release-service/26.04.2/ksquares-26.04.2.tar.xz) = 436548351513db039c77e30fae2f746e700b2adfdf6bce75fc36e9ed174f26d3 -SIZE (KDE/release-service/26.04.2/ksquares-26.04.2.tar.xz) = 324304 +TIMESTAMP = 1782826794 +SHA256 (KDE/release-service/26.04.3/ksquares-26.04.3.tar.xz) = 8a237e57dba25e960b0b1b8617b2ac9e5891523a50116e69028ebca7e71dc410 +SIZE (KDE/release-service/26.04.3/ksquares-26.04.3.tar.xz) = 323984 diff --git a/games/ksquares/pkg-plist b/games/ksquares/pkg-plist index 9b662c7acb57..936306d38a01 100644 --- a/games/ksquares/pkg-plist +++ b/games/ksquares/pkg-plist @@ -1,73 +1,72 @@ bin/ksquares share/applications/org.kde.ksquares.desktop share/config.kcfg/ksquares.kcfg share/icons/hicolor/128x128/apps/ksquares.png share/icons/hicolor/16x16/apps/ksquares.png share/icons/hicolor/22x22/apps/ksquares.png share/icons/hicolor/32x32/apps/ksquares.png share/icons/hicolor/48x48/apps/ksquares.png share/icons/hicolor/64x64/apps/ksquares.png share/locale/ar/LC_MESSAGES/ksquares.mo share/locale/ast/LC_MESSAGES/ksquares.mo share/locale/be/LC_MESSAGES/ksquares.mo -share/locale/bg/LC_MESSAGES/ksquares.mo share/locale/bs/LC_MESSAGES/ksquares.mo share/locale/ca/LC_MESSAGES/ksquares.mo share/locale/ca@valencia/LC_MESSAGES/ksquares.mo share/locale/cs/LC_MESSAGES/ksquares.mo share/locale/da/LC_MESSAGES/ksquares.mo share/locale/de/LC_MESSAGES/ksquares.mo share/locale/el/LC_MESSAGES/ksquares.mo share/locale/en_GB/LC_MESSAGES/ksquares.mo share/locale/eo/LC_MESSAGES/ksquares.mo share/locale/es/LC_MESSAGES/ksquares.mo share/locale/et/LC_MESSAGES/ksquares.mo share/locale/eu/LC_MESSAGES/ksquares.mo share/locale/fi/LC_MESSAGES/ksquares.mo share/locale/fr/LC_MESSAGES/ksquares.mo share/locale/ga/LC_MESSAGES/ksquares.mo share/locale/gl/LC_MESSAGES/ksquares.mo share/locale/he/LC_MESSAGES/ksquares.mo share/locale/hi/LC_MESSAGES/ksquares.mo share/locale/hne/LC_MESSAGES/ksquares.mo share/locale/hr/LC_MESSAGES/ksquares.mo share/locale/hu/LC_MESSAGES/ksquares.mo share/locale/ia/LC_MESSAGES/ksquares.mo share/locale/is/LC_MESSAGES/ksquares.mo share/locale/it/LC_MESSAGES/ksquares.mo share/locale/ja/LC_MESSAGES/ksquares.mo share/locale/ka/LC_MESSAGES/ksquares.mo share/locale/kk/LC_MESSAGES/ksquares.mo share/locale/km/LC_MESSAGES/ksquares.mo share/locale/ko/LC_MESSAGES/ksquares.mo share/locale/lt/LC_MESSAGES/ksquares.mo share/locale/lv/LC_MESSAGES/ksquares.mo share/locale/mai/LC_MESSAGES/ksquares.mo share/locale/ml/LC_MESSAGES/ksquares.mo share/locale/mr/LC_MESSAGES/ksquares.mo share/locale/nb/LC_MESSAGES/ksquares.mo share/locale/nds/LC_MESSAGES/ksquares.mo share/locale/nl/LC_MESSAGES/ksquares.mo share/locale/nn/LC_MESSAGES/ksquares.mo share/locale/oc/LC_MESSAGES/ksquares.mo share/locale/pl/LC_MESSAGES/ksquares.mo share/locale/pt/LC_MESSAGES/ksquares.mo share/locale/pt_BR/LC_MESSAGES/ksquares.mo share/locale/ro/LC_MESSAGES/ksquares.mo share/locale/ru/LC_MESSAGES/ksquares.mo share/locale/sa/LC_MESSAGES/ksquares.mo share/locale/se/LC_MESSAGES/ksquares.mo share/locale/sk/LC_MESSAGES/ksquares.mo share/locale/sl/LC_MESSAGES/ksquares.mo share/locale/sq/LC_MESSAGES/ksquares.mo share/locale/sr/LC_MESSAGES/ksquares.mo share/locale/sr@ijekavian/LC_MESSAGES/ksquares.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksquares.mo share/locale/sr@latin/LC_MESSAGES/ksquares.mo share/locale/sv/LC_MESSAGES/ksquares.mo share/locale/tr/LC_MESSAGES/ksquares.mo share/locale/ug/LC_MESSAGES/ksquares.mo share/locale/uk/LC_MESSAGES/ksquares.mo share/locale/zh_CN/LC_MESSAGES/ksquares.mo share/locale/zh_TW/LC_MESSAGES/ksquares.mo share/metainfo/org.kde.ksquares.appdata.xml diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 116da10e226a..a7459c8f3c4f 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478458 -SHA256 (KDE/release-service/26.04.2/ksudoku-26.04.2.tar.xz) = 8db4f901c0ace8f21938fdf149a69e13feb4e3db312cc70212cba95f344875d1 -SIZE (KDE/release-service/26.04.2/ksudoku-26.04.2.tar.xz) = 1754500 +TIMESTAMP = 1782826796 +SHA256 (KDE/release-service/26.04.3/ksudoku-26.04.3.tar.xz) = adf60faba3fb0a8f052e5d49ef3773bdf47ce9581fff4c1d790df4f1e1b9a0df +SIZE (KDE/release-service/26.04.3/ksudoku-26.04.3.tar.xz) = 1752840 diff --git a/games/ksudoku/pkg-plist b/games/ksudoku/pkg-plist index d8a8422c2160..b018f701f419 100644 --- a/games/ksudoku/pkg-plist +++ b/games/ksudoku/pkg-plist @@ -1,192 +1,191 @@ bin/ksudoku etc/xdg/ksudokurc share/applications/org.kde.ksudoku.desktop share/icons/hicolor/128x128/apps/ksudoku.png share/icons/hicolor/16x16/apps/ksudoku.png share/icons/hicolor/32x32/apps/ksudoku.png %%DATADIR%%/4x4.desktop %%DATADIR%%/4x4.xml %%DATADIR%%/6x6.desktop %%DATADIR%%/6x6.xml %%DATADIR%%/Aztec.desktop %%DATADIR%%/Aztec.xml %%DATADIR%%/DoubleRoxdoku.desktop %%DATADIR%%/DoubleRoxdoku.xml %%DATADIR%%/Jigsaw.desktop %%DATADIR%%/Jigsaw.xml %%DATADIR%%/Killer_4x4.desktop %%DATADIR%%/Killer_4x4.xml %%DATADIR%%/Killer_9x9.desktop %%DATADIR%%/Killer_9x9.xml %%DATADIR%%/Mathdoku_4x4.desktop %%DATADIR%%/Mathdoku_4x4.xml %%DATADIR%%/Mathdoku_Settable.desktop %%DATADIR%%/Mathdoku_Settable.xml %%DATADIR%%/Nonomino.desktop %%DATADIR%%/Nonomino.xml %%DATADIR%%/Pentomino.desktop %%DATADIR%%/Pentomino.xml %%DATADIR%%/RoxdokuTwin.desktop %%DATADIR%%/RoxdokuTwin.xml %%DATADIR%%/Samurai.desktop %%DATADIR%%/Samurai.xml %%DATADIR%%/SamuraiRoxdoku.desktop %%DATADIR%%/SamuraiRoxdoku.xml %%DATADIR%%/Sohei.desktop %%DATADIR%%/Sohei.xml %%DATADIR%%/Tetromino.desktop %%DATADIR%%/Tetromino.xml %%DATADIR%%/TinySamurai.desktop %%DATADIR%%/TinySamurai.xml %%DATADIR%%/Windmill.desktop %%DATADIR%%/Windmill.xml %%DATADIR%%/XSudoku.desktop %%DATADIR%%/XSudoku.xml %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku.png %%DATADIR%%/themes/abstraction.desktop %%DATADIR%%/themes/abstraction.svgz %%DATADIR%%/themes/abstraction_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/ksudoku_egyptian.svgz %%DATADIR%%/themes/ksudoku_scrible.desktop %%DATADIR%%/themes/ksudoku_scrible.svgz %%DATADIR%%/themes/scribble_preview.png share/locale/ar/LC_MESSAGES/ksudoku.mo share/locale/ast/LC_MESSAGES/ksudoku.mo share/locale/be/LC_MESSAGES/ksudoku.mo -share/locale/bg/LC_MESSAGES/ksudoku.mo share/locale/bs/LC_MESSAGES/ksudoku.mo share/locale/ca/LC_MESSAGES/ksudoku.mo share/locale/ca@valencia/LC_MESSAGES/ksudoku.mo share/locale/cs/LC_MESSAGES/ksudoku.mo share/locale/da/LC_MESSAGES/ksudoku.mo share/locale/de/LC_MESSAGES/ksudoku.mo share/locale/el/LC_MESSAGES/ksudoku.mo share/locale/en_GB/LC_MESSAGES/ksudoku.mo share/locale/eo/LC_MESSAGES/ksudoku.mo share/locale/es/LC_MESSAGES/ksudoku.mo share/locale/et/LC_MESSAGES/ksudoku.mo share/locale/eu/LC_MESSAGES/ksudoku.mo share/locale/fa/LC_MESSAGES/ksudoku.mo share/locale/fi/LC_MESSAGES/ksudoku.mo share/locale/fr/LC_MESSAGES/ksudoku.mo share/locale/ga/LC_MESSAGES/ksudoku.mo share/locale/gl/LC_MESSAGES/ksudoku.mo share/locale/he/LC_MESSAGES/ksudoku.mo share/locale/hi/LC_MESSAGES/ksudoku.mo share/locale/hne/LC_MESSAGES/ksudoku.mo share/locale/hr/LC_MESSAGES/ksudoku.mo share/locale/hu/LC_MESSAGES/ksudoku.mo share/locale/id/LC_MESSAGES/ksudoku.mo share/locale/is/LC_MESSAGES/ksudoku.mo share/locale/it/LC_MESSAGES/ksudoku.mo share/locale/ja/LC_MESSAGES/ksudoku.mo share/locale/ka/LC_MESSAGES/ksudoku.mo share/locale/kk/LC_MESSAGES/ksudoku.mo share/locale/km/LC_MESSAGES/ksudoku.mo share/locale/ko/LC_MESSAGES/ksudoku.mo share/locale/lt/LC_MESSAGES/ksudoku.mo share/locale/lv/LC_MESSAGES/ksudoku.mo share/locale/mai/LC_MESSAGES/ksudoku.mo share/locale/ml/LC_MESSAGES/ksudoku.mo share/locale/mr/LC_MESSAGES/ksudoku.mo share/locale/nb/LC_MESSAGES/ksudoku.mo share/locale/nds/LC_MESSAGES/ksudoku.mo share/locale/nl/LC_MESSAGES/ksudoku.mo share/locale/nn/LC_MESSAGES/ksudoku.mo share/locale/oc/LC_MESSAGES/ksudoku.mo share/locale/pa/LC_MESSAGES/ksudoku.mo share/locale/pl/LC_MESSAGES/ksudoku.mo share/locale/pt/LC_MESSAGES/ksudoku.mo share/locale/pt_BR/LC_MESSAGES/ksudoku.mo share/locale/ro/LC_MESSAGES/ksudoku.mo share/locale/ru/LC_MESSAGES/ksudoku.mo share/locale/sa/LC_MESSAGES/ksudoku.mo share/locale/se/LC_MESSAGES/ksudoku.mo share/locale/si/LC_MESSAGES/ksudoku.mo share/locale/sk/LC_MESSAGES/ksudoku.mo share/locale/sl/LC_MESSAGES/ksudoku.mo share/locale/sr/LC_MESSAGES/ksudoku.mo share/locale/sr@ijekavian/LC_MESSAGES/ksudoku.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ksudoku.mo share/locale/sr@latin/LC_MESSAGES/ksudoku.mo share/locale/sv/LC_MESSAGES/ksudoku.mo share/locale/th/LC_MESSAGES/ksudoku.mo share/locale/tr/LC_MESSAGES/ksudoku.mo share/locale/ug/LC_MESSAGES/ksudoku.mo share/locale/uk/LC_MESSAGES/ksudoku.mo share/locale/zh_CN/LC_MESSAGES/ksudoku.mo share/locale/zh_TW/LC_MESSAGES/ksudoku.mo share/metainfo/org.kde.ksudoku.appdata.xml diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 3e44deba9ff0..d2274494b1f8 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478460 -SHA256 (KDE/release-service/26.04.2/ktuberling-26.04.2.tar.xz) = f0ad762050ad5f5ef402decf92f4cdb8f2925f946569cf5936a3ca68b279e22c -SIZE (KDE/release-service/26.04.2/ktuberling-26.04.2.tar.xz) = 71573768 +TIMESTAMP = 1782826797 +SHA256 (KDE/release-service/26.04.3/ktuberling-26.04.3.tar.xz) = 2fde23b8183707136d7a9b210848bcb4f017425558ccd18768f7cbc3f62ec548 +SIZE (KDE/release-service/26.04.3/ktuberling-26.04.3.tar.xz) = 71553440 diff --git a/games/ktuberling/pkg-plist b/games/ktuberling/pkg-plist index 5f4044e8a62b..17be10130458 100644 --- a/games/ktuberling/pkg-plist +++ b/games/ktuberling/pkg-plist @@ -1,2269 +1,2268 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/eo.soundtheme %%DATADIR%%/sounds/eo/kt_ball-pilko.ogg %%DATADIR%%/sounds/eo/kt_bow-banto.ogg %%DATADIR%%/sounds/eo/kt_coat-mantelo.ogg %%DATADIR%%/sounds/eo/kt_ear-orelo.ogg %%DATADIR%%/sounds/eo/kt_earring-orelringo.ogg %%DATADIR%%/sounds/eo/kt_eye-okulo.ogg %%DATADIR%%/sounds/eo/kt_eyebrow-brovo.ogg %%DATADIR%%/sounds/eo/kt_flower-floro.ogg %%DATADIR%%/sounds/eo/kt_hair-haroj.ogg %%DATADIR%%/sounds/eo/kt_hat-chapelo.ogg %%DATADIR%%/sounds/eo/kt_moustache-lipharoj.ogg %%DATADIR%%/sounds/eo/kt_mouth-busho.ogg %%DATADIR%%/sounds/eo/kt_nose-nazo.ogg %%DATADIR%%/sounds/eo/kt_shoe-shuo.ogg %%DATADIR%%/sounds/eo/kt_shorts-pantaloneto.ogg %%DATADIR%%/sounds/eo/kt_skirt-jupo.ogg %%DATADIR%%/sounds/eo/kt_spectacles-okulvitroj.ogg %%DATADIR%%/sounds/eo/kt_stick-bastono.ogg %%DATADIR%%/sounds/eo/kt_sunglasses-sunvitroj.ogg %%DATADIR%%/sounds/eo/kt_tie-kravato.ogg %%DATADIR%%/sounds/eo/kt_umbrella-ombrelo.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav %%DATADIR%%/sounds/fr/egypte_ane.wav %%DATADIR%%/sounds/fr/egypte_arche.wav %%DATADIR%%/sounds/fr/egypte_chameau.wav %%DATADIR%%/sounds/fr/egypte_charette.wav %%DATADIR%%/sounds/fr/egypte_colonne.wav %%DATADIR%%/sounds/fr/egypte_femme.wav %%DATADIR%%/sounds/fr/egypte_fille.wav %%DATADIR%%/sounds/fr/egypte_garcon.wav %%DATADIR%%/sounds/fr/egypte_herbe.wav %%DATADIR%%/sounds/fr/egypte_homme.wav %%DATADIR%%/sounds/fr/egypte_oasis.wav %%DATADIR%%/sounds/fr/egypte_oiseaux.wav %%DATADIR%%/sounds/fr/egypte_palmier.wav %%DATADIR%%/sounds/fr/egypte_pont.wav %%DATADIR%%/sounds/fr/egypte_puits.wav %%DATADIR%%/sounds/fr/egypte_pyramide.wav %%DATADIR%%/sounds/fr/egypte_route.wav %%DATADIR%%/sounds/fr/egypte_sphinx.wav %%DATADIR%%/sounds/fr/lune_astronaute.wav %%DATADIR%%/sounds/fr/lune_etoile-filante.wav %%DATADIR%%/sounds/fr/lune_etoile.wav %%DATADIR%%/sounds/fr/lune_extraterrestre.wav %%DATADIR%%/sounds/fr/lune_fusee.wav %%DATADIR%%/sounds/fr/lune_hotel.wav %%DATADIR%%/sounds/fr/lune_monstre.wav %%DATADIR%%/sounds/fr/lune_ovni.wav %%DATADIR%%/sounds/fr/lune_planete.wav %%DATADIR%%/sounds/fr/lune_radar.wav %%DATADIR%%/sounds/fr/lune_rover.wav %%DATADIR%%/sounds/fr/lune_satellite.wav %%DATADIR%%/sounds/fr/lune_signe.wav %%DATADIR%%/sounds/fr/lune_terre.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav %%DATADIR%%/sounds/fr/noel_Tux-le-pingouin.wav %%DATADIR%%/sounds/fr/noel_ange.wav %%DATADIR%%/sounds/fr/noel_arbre.wav %%DATADIR%%/sounds/fr/noel_bonhomme-de-neige.wav %%DATADIR%%/sounds/fr/noel_botte.wav %%DATADIR%%/sounds/fr/noel_bougie.wav %%DATADIR%%/sounds/fr/noel_boule-de-noel.wav %%DATADIR%%/sounds/fr/noel_boule.wav %%DATADIR%%/sounds/fr/noel_branche-de-gui.wav %%DATADIR%%/sounds/fr/noel_branche-de-houx.wav %%DATADIR%%/sounds/fr/noel_chaussure.wav %%DATADIR%%/sounds/fr/noel_chouette.wav %%DATADIR%%/sounds/fr/noel_comete.wav %%DATADIR%%/sounds/fr/noel_etoile.wav %%DATADIR%%/sounds/fr/noel_flocon.wav %%DATADIR%%/sounds/fr/noel_guirlande-lumineuse.wav %%DATADIR%%/sounds/fr/noel_guirlande.wav %%DATADIR%%/sounds/fr/noel_lapin.wav %%DATADIR%%/sounds/fr/noel_lune.wav %%DATADIR%%/sounds/fr/noel_paquet-cadeau.wav %%DATADIR%%/sounds/fr/noel_renne.wav %%DATADIR%%/sounds/fr/noel_tortue.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav %%DATADIR%%/sounds/fr/papillons_aile.wav %%DATADIR%%/sounds/fr/papillons_ailes.wav %%DATADIR%%/sounds/fr/papillons_cercle.wav %%DATADIR%%/sounds/fr/papillons_cercles.wav %%DATADIR%%/sounds/fr/papillons_coeur.wav %%DATADIR%%/sounds/fr/papillons_corps.wav %%DATADIR%%/sounds/fr/papillons_forme-violette.wav %%DATADIR%%/sounds/fr/papillons_oeil.wav %%DATADIR%%/sounds/fr/papillons_spirale.wav %%DATADIR%%/sounds/fr/patate_ballon.wav %%DATADIR%%/sounds/fr/patate_baton.wav %%DATADIR%%/sounds/fr/patate_bouche.wav %%DATADIR%%/sounds/fr/patate_boucle-d-oreille.wav %%DATADIR%%/sounds/fr/patate_chapeau.wav %%DATADIR%%/sounds/fr/patate_chaussure.wav %%DATADIR%%/sounds/fr/patate_cheveu.wav %%DATADIR%%/sounds/fr/patate_cheveux.wav %%DATADIR%%/sounds/fr/patate_cravate.wav %%DATADIR%%/sounds/fr/patate_fleur.wav %%DATADIR%%/sounds/fr/patate_jupe.wav %%DATADIR%%/sounds/fr/patate_lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/patate_lunettes.wav %%DATADIR%%/sounds/fr/patate_manteau.wav %%DATADIR%%/sounds/fr/patate_moustache.wav %%DATADIR%%/sounds/fr/patate_nez.wav %%DATADIR%%/sounds/fr/patate_noeud-papillon.wav %%DATADIR%%/sounds/fr/patate_oeil.wav %%DATADIR%%/sounds/fr/patate_oreille.wav %%DATADIR%%/sounds/fr/patate_parapluie.wav %%DATADIR%%/sounds/fr/patate_short.wav %%DATADIR%%/sounds/fr/patate_sourcil.wav %%DATADIR%%/sounds/fr/pizzeria_ananas.wav %%DATADIR%%/sounds/fr/pizzeria_anchois.wav %%DATADIR%%/sounds/fr/pizzeria_brocoli.wav %%DATADIR%%/sounds/fr/pizzeria_champignon.wav %%DATADIR%%/sounds/fr/pizzeria_concombre.wav %%DATADIR%%/sounds/fr/pizzeria_fromage.wav %%DATADIR%%/sounds/fr/pizzeria_lardon.wav %%DATADIR%%/sounds/fr/pizzeria_oignon.wav %%DATADIR%%/sounds/fr/pizzeria_olive.wav %%DATADIR%%/sounds/fr/pizzeria_origan.wav %%DATADIR%%/sounds/fr/pizzeria_pepperoni.wav %%DATADIR%%/sounds/fr/pizzeria_piment.wav %%DATADIR%%/sounds/fr/pizzeria_poivre.wav %%DATADIR%%/sounds/fr/pizzeria_poivron.wav %%DATADIR%%/sounds/fr/pizzeria_salami.wav %%DATADIR%%/sounds/fr/pizzeria_tomate.wav %%DATADIR%%/sounds/fr/robin_Tux-Robin.wav %%DATADIR%%/sounds/fr/robin_Tux-l-enfant.wav %%DATADIR%%/sounds/fr/robin_Tux-la-jeune-fille.wav %%DATADIR%%/sounds/fr/robin_Tux-la-sorciere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-frere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-garde.wav %%DATADIR%%/sounds/fr/robin_Tux-le-petit.wav %%DATADIR%%/sounds/fr/robin_Tux-le-prince.wav %%DATADIR%%/sounds/fr/robin_Tux-le-sheriff.wav %%DATADIR%%/sounds/fr/robin_arc.wav %%DATADIR%%/sounds/fr/robin_assiette.wav %%DATADIR%%/sounds/fr/robin_avis-recherche.wav %%DATADIR%%/sounds/fr/robin_chandelles-allumees.wav %%DATADIR%%/sounds/fr/robin_chandelles.wav %%DATADIR%%/sounds/fr/robin_cible.wav %%DATADIR%%/sounds/fr/robin_cle.wav %%DATADIR%%/sounds/fr/robin_coupe.wav %%DATADIR%%/sounds/fr/robin_flacon.wav %%DATADIR%%/sounds/fr/robin_fleche.wav %%DATADIR%%/sounds/fr/robin_fleches.wav %%DATADIR%%/sounds/fr/robin_guitare.wav %%DATADIR%%/sounds/fr/robin_heu.wav %%DATADIR%%/sounds/fr/robin_j-ai-une-idee.wav %%DATADIR%%/sounds/fr/robin_j-aime.wav %%DATADIR%%/sounds/fr/robin_j-examine.wav %%DATADIR%%/sounds/fr/robin_je-dors.wav %%DATADIR%%/sounds/fr/robin_je-me-fache.wav %%DATADIR%%/sounds/fr/robin_je-ris.wav %%DATADIR%%/sounds/fr/robin_je-suis-malade.wav %%DATADIR%%/sounds/fr/robin_lettre.wav %%DATADIR%%/sounds/fr/robin_note.wav %%DATADIR%%/sounds/fr/robin_notes.wav %%DATADIR%%/sounds/fr/robin_pigeon-volant.wav %%DATADIR%%/sounds/fr/robin_pigeon.wav %%DATADIR%%/sounds/fr/robin_poison.wav %%DATADIR%%/sounds/fr/robin_poisson.wav %%DATADIR%%/sounds/fr/robin_pomme.wav %%DATADIR%%/sounds/fr/robin_quoi.wav %%DATADIR%%/sounds/fr/robin_tasse.wav %%DATADIR%%/sounds/fr/robin_tir.wav %%DATADIR%%/sounds/fr/robin_vase.wav %%DATADIR%%/sounds/fr/robin_wouah.wav %%DATADIR%%/sounds/fr/robot_antenne.wav %%DATADIR%%/sounds/fr/robot_ballon.wav %%DATADIR%%/sounds/fr/robot_base.wav %%DATADIR%%/sounds/fr/robot_bloc.wav %%DATADIR%%/sounds/fr/robot_bras.wav %%DATADIR%%/sounds/fr/robot_corps.wav %%DATADIR%%/sounds/fr/robot_fusee.wav %%DATADIR%%/sounds/fr/robot_main.wav %%DATADIR%%/sounds/fr/robot_oeil.wav %%DATADIR%%/sounds/fr/robot_panneau.wav %%DATADIR%%/sounds/fr/robot_pieds.wav %%DATADIR%%/sounds/fr/robot_pince.wav %%DATADIR%%/sounds/fr/robot_roue.wav %%DATADIR%%/sounds/fr/robot_tete.wav %%DATADIR%%/sounds/fr/robot_tige.wav %%DATADIR%%/sounds/fr/sourcil.wav %%DATADIR%%/sounds/fr/tv_accident.wav %%DATADIR%%/sounds/fr/tv_arbre.wav %%DATADIR%%/sounds/fr/tv_ballon.wav %%DATADIR%%/sounds/fr/tv_barriere.wav %%DATADIR%%/sounds/fr/tv_benne-basculante.wav %%DATADIR%%/sounds/fr/tv_bicyclette.wav %%DATADIR%%/sounds/fr/tv_camion-de-depannage.wav %%DATADIR%%/sounds/fr/tv_camion-de-pompier.wav %%DATADIR%%/sounds/fr/tv_camion.wav %%DATADIR%%/sounds/fr/tv_caravane.wav %%DATADIR%%/sounds/fr/tv_chemin.wav %%DATADIR%%/sounds/fr/tv_cloture.wav %%DATADIR%%/sounds/fr/tv_cycliste.wav %%DATADIR%%/sounds/fr/tv_echelle.wav %%DATADIR%%/sounds/fr/tv_ecole.wav %%DATADIR%%/sounds/fr/tv_elephant.wav %%DATADIR%%/sounds/fr/tv_femme.wav %%DATADIR%%/sounds/fr/tv_feu.wav %%DATADIR%%/sounds/fr/tv_filet-de-volley.wav %%DATADIR%%/sounds/fr/tv_fumee.wav %%DATADIR%%/sounds/fr/tv_girafe.wav %%DATADIR%%/sounds/fr/tv_guitare.wav %%DATADIR%%/sounds/fr/tv_guitariste.wav %%DATADIR%%/sounds/fr/tv_homme.wav %%DATADIR%%/sounds/fr/tv_lion.wav %%DATADIR%%/sounds/fr/tv_magasin.wav %%DATADIR%%/sounds/fr/tv_maison.wav %%DATADIR%%/sounds/fr/tv_mecanicien.wav %%DATADIR%%/sounds/fr/tv_pecheur.wav %%DATADIR%%/sounds/fr/tv_pompier.wav %%DATADIR%%/sounds/fr/tv_remorque.wav %%DATADIR%%/sounds/fr/tv_rocher.wav %%DATADIR%%/sounds/fr/tv_singe.wav %%DATADIR%%/sounds/fr/tv_tracteur-routier.wav %%DATADIR%%/sounds/fr/tv_tractopelle.wav %%DATADIR%%/sounds/fr/tv_train.wav %%DATADIR%%/sounds/fr/tv_tunnel.wav %%DATADIR%%/sounds/fr/tv_voiture.wav %%DATADIR%%/sounds/fr/tv_wagon.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg %%DATADIR%%/sounds/id.soundtheme %%DATADIR%%/sounds/id/ball_bola.wav %%DATADIR%%/sounds/id/bow_dasi-kupu-kupu.wav %%DATADIR%%/sounds/id/butterflies_body_tubuh.wav %%DATADIR%%/sounds/id/butterflies_circle_bulatan.wav %%DATADIR%%/sounds/id/butterflies_circles_lingkaran.wav %%DATADIR%%/sounds/id/butterflies_eye_mata.wav %%DATADIR%%/sounds/id/butterflies_heart_hati.wav %%DATADIR%%/sounds/id/butterflies_purple_shape_bentuk-ungu.wav %%DATADIR%%/sounds/id/butterflies_spiral.wav %%DATADIR%%/sounds/id/butterflies_wing_sayap.wav %%DATADIR%%/sounds/id/coat_baju.wav %%DATADIR%%/sounds/id/ear_telinga.wav %%DATADIR%%/sounds/id/earring_anting-anting.wav %%DATADIR%%/sounds/id/egypt_arch_lengkungan-taman.wav %%DATADIR%%/sounds/id/egypt_birds_burung.wav %%DATADIR%%/sounds/id/egypt_boy_pria.wav %%DATADIR%%/sounds/id/egypt_bridge_jembatan.wav %%DATADIR%%/sounds/id/egypt_camel_unta.wav %%DATADIR%%/sounds/id/egypt_cart_gerobak.wav %%DATADIR%%/sounds/id/egypt_column_tiang.wav %%DATADIR%%/sounds/id/egypt_donkey_keledai.wav %%DATADIR%%/sounds/id/egypt_girl_wanita.wav %%DATADIR%%/sounds/id/egypt_grass_rumput.wav %%DATADIR%%/sounds/id/egypt_man_laki-laki.wav %%DATADIR%%/sounds/id/egypt_oasis_wahah.wav %%DATADIR%%/sounds/id/egypt_palmtree_pohon-palem.wav %%DATADIR%%/sounds/id/egypt_pyramid.wav %%DATADIR%%/sounds/id/egypt_road_jalan.wav %%DATADIR%%/sounds/id/egypt_sphynx.wav %%DATADIR%%/sounds/id/egypt_well_sumur.wav %%DATADIR%%/sounds/id/egypt_woman_perempuan.wav %%DATADIR%%/sounds/id/eye_mata.wav %%DATADIR%%/sounds/id/eyebrow_alis.wav %%DATADIR%%/sounds/id/flower_bunga.wav %%DATADIR%%/sounds/id/frier-tux_tux-biarawan.wav %%DATADIR%%/sounds/id/guard-tux_tux-penjaga.wav %%DATADIR%%/sounds/id/hair_rambut.wav %%DATADIR%%/sounds/id/hat_topi.wav %%DATADIR%%/sounds/id/kid-tux_tux-pemanah.wav %%DATADIR%%/sounds/id/kid-tux_tux-pria.wav %%DATADIR%%/sounds/id/little-tux_tux-putra.wav %%DATADIR%%/sounds/id/maiden-tux_tux-putri.wav %%DATADIR%%/sounds/id/moon_alien.wav %%DATADIR%%/sounds/id/moon_astronaut.wav %%DATADIR%%/sounds/id/moon_earth_bumi.wav %%DATADIR%%/sounds/id/moon_fallingstar_meteor.wav %%DATADIR%%/sounds/id/moon_hotel.wav %%DATADIR%%/sounds/id/moon_monster.wav %%DATADIR%%/sounds/id/moon_moonwalker_robot-penjelajah-rembulan.wav %%DATADIR%%/sounds/id/moon_planet.wav %%DATADIR%%/sounds/id/moon_radar.wav %%DATADIR%%/sounds/id/moon_rocket.wav %%DATADIR%%/sounds/id/moon_satellite.wav %%DATADIR%%/sounds/id/moon_sign_rambu.wav %%DATADIR%%/sounds/id/moon_star_bintang.wav %%DATADIR%%/sounds/id/moon_ufo.wav %%DATADIR%%/sounds/id/moustache_kumis.wav %%DATADIR%%/sounds/id/mouth_mulut.wav %%DATADIR%%/sounds/id/nose_hidung.wav %%DATADIR%%/sounds/id/pizzeria_anchovy_daging-ikan.wav %%DATADIR%%/sounds/id/pizzeria_bacon_daging-merah.wav %%DATADIR%%/sounds/id/pizzeria_brocolli_brokoli.wav %%DATADIR%%/sounds/id/pizzeria_cheese_keju.wav %%DATADIR%%/sounds/id/pizzeria_cucumber_timun.wav %%DATADIR%%/sounds/id/pizzeria_mushroom_jamur.wav %%DATADIR%%/sounds/id/pizzeria_olive1_biji-zaitun-muda.wav %%DATADIR%%/sounds/id/pizzeria_olive2_biji-zaitun-tua.wav %%DATADIR%%/sounds/id/pizzeria_olive3_irisan-zaitun-muda.wav %%DATADIR%%/sounds/id/pizzeria_olive4_irisan-zaitun-tua.wav %%DATADIR%%/sounds/id/pizzeria_onion1_bawang-putih.wav %%DATADIR%%/sounds/id/pizzeria_onion2_bawang-merah.wav %%DATADIR%%/sounds/id/pizzeria_oregano1_daun-oregano.wav %%DATADIR%%/sounds/id/pizzeria_oregano2_serbuk-oregano.wav %%DATADIR%%/sounds/id/pizzeria_pepper1_cabai-paprika-merah.wav %%DATADIR%%/sounds/id/pizzeria_pepper2_cabai-paprika-hijau.wav %%DATADIR%%/sounds/id/pizzeria_pepper3_cabai-paprika-kuning.wav %%DATADIR%%/sounds/id/pizzeria_pepperoni.wav %%DATADIR%%/sounds/id/pizzeria_pineapple_nanas.wav %%DATADIR%%/sounds/id/pizzeria_salami.wav %%DATADIR%%/sounds/id/pizzeria_tomato_tomat.wav %%DATADIR%%/sounds/id/prince-tux_tux-pangeran.wav %%DATADIR%%/sounds/id/robin-tux_tux-robin.wav %%DATADIR%%/sounds/id/robot_workshop_antenna.wav %%DATADIR%%/sounds/id/robot_workshop_arm_lengan.wav %%DATADIR%%/sounds/id/robot_workshop_ball_bola.wav %%DATADIR%%/sounds/id/robot_workshop_base_dasaran.wav %%DATADIR%%/sounds/id/robot_workshop_block_balok.wav %%DATADIR%%/sounds/id/robot_workshop_body_tubuh.wav %%DATADIR%%/sounds/id/robot_workshop_claw_cakar.wav %%DATADIR%%/sounds/id/robot_workshop_eye_mata.wav %%DATADIR%%/sounds/id/robot_workshop_foot_kaki.wav %%DATADIR%%/sounds/id/robot_workshop_hand_tangan.wav %%DATADIR%%/sounds/id/robot_workshop_head_kepala.wav %%DATADIR%%/sounds/id/robot_workshop_panel.wav %%DATADIR%%/sounds/id/robot_workshop_rocket_roket.wav %%DATADIR%%/sounds/id/robot_workshop_rod_batang.wav %%DATADIR%%/sounds/id/robot_workshop_wheel_roda.wav %%DATADIR%%/sounds/id/sherif-tux_tux-sherif.wav %%DATADIR%%/sounds/id/shoe_sepatu.wav %%DATADIR%%/sounds/id/shorts_celana.wav %%DATADIR%%/sounds/id/skirt_rok.wav %%DATADIR%%/sounds/id/spectacles_kacamata-putih.wav %%DATADIR%%/sounds/id/stick_tongkat.wav %%DATADIR%%/sounds/id/sunglasses_kacamata-hitam.wav %%DATADIR%%/sounds/id/tie_dasi.wav %%DATADIR%%/sounds/id/tux-angry_lapar.wav %%DATADIR%%/sounds/id/tux-apple_apel.wav %%DATADIR%%/sounds/id/tux-arrow_panah.wav %%DATADIR%%/sounds/id/tux-arrows_wadah-panah.wav %%DATADIR%%/sounds/id/tux-bow_busur.wav %%DATADIR%%/sounds/id/tux-bullseye_sasaran-panah.wav %%DATADIR%%/sounds/id/tux-candles_lilin.wav %%DATADIR%%/sounds/id/tux-dowe_merpati-hinggap.wav %%DATADIR%%/sounds/id/tux-dowe_merpati-hinggap1.wav %%DATADIR%%/sounds/id/tux-fish_ikan.wav %%DATADIR%%/sounds/id/tux-flask_botol-flask.wav %%DATADIR%%/sounds/id/tux-fly_merpati-terbang.wav %%DATADIR%%/sounds/id/tux-goblet_gelas-goblet.wav %%DATADIR%%/sounds/id/tux-guitar_gitar.wav %%DATADIR%%/sounds/id/tux-huh.wav %%DATADIR%%/sounds/id/tux-idea_ide.wav %%DATADIR%%/sounds/id/tux-key_kunci.wav %%DATADIR%%/sounds/id/tux-laugh_tertawa.wav %%DATADIR%%/sounds/id/tux-letter_surat.wav %%DATADIR%%/sounds/id/tux-love_cinta.wav %%DATADIR%%/sounds/id/tux-love_surat-cinta.wav %%DATADIR%%/sounds/id/tux-note_not.wav %%DATADIR%%/sounds/id/tux-notes_notasi.wav %%DATADIR%%/sounds/id/tux-plate_piring.wav %%DATADIR%%/sounds/id/tux-poison_racun.wav %%DATADIR%%/sounds/id/tux-shoot_panahkan.wav %%DATADIR%%/sounds/id/tux-sick_sakit.wav %%DATADIR%%/sounds/id/tux-sick_tongkat.wav %%DATADIR%%/sounds/id/tux-stare_tatapan.wav %%DATADIR%%/sounds/id/tux-teacup_gelas-cangkir.wav %%DATADIR%%/sounds/id/tux-vase_vas-bunga.wav %%DATADIR%%/sounds/id/tux-wanted_buronan.wav %%DATADIR%%/sounds/id/tux-what_apa.wav %%DATADIR%%/sounds/id/tux-wow.wav %%DATADIR%%/sounds/id/tux-zzz.wav %%DATADIR%%/sounds/id/tv_accident_kecelakaan.wav %%DATADIR%%/sounds/id/tv_ball_bola.wav %%DATADIR%%/sounds/id/tv_barrier_palang.wav %%DATADIR%%/sounds/id/tv_bicycle_sepeda.wav %%DATADIR%%/sounds/id/tv_breakdown_lorry_truk-derek.wav %%DATADIR%%/sounds/id/tv_car_mobil.wav %%DATADIR%%/sounds/id/tv_caravan_rumah-gandeng.wav %%DATADIR%%/sounds/id/tv_cyclist_bersepeda.wav %%DATADIR%%/sounds/id/tv_elephant_gajah.wav %%DATADIR%%/sounds/id/tv_excavator_alat-penggali.wav %%DATADIR%%/sounds/id/tv_fence_pagar.wav %%DATADIR%%/sounds/id/tv_fire_api.wav %%DATADIR%%/sounds/id/tv_fireengine_mobil-pemadam-kebakaran.wav %%DATADIR%%/sounds/id/tv_fireengine_pemadam-kebakaran.wav %%DATADIR%%/sounds/id/tv_fireman_pemadam-api.wav %%DATADIR%%/sounds/id/tv_fisherman_pemancing.wav %%DATADIR%%/sounds/id/tv_giraffe_jerapah.wav %%DATADIR%%/sounds/id/tv_guitar_gitar.wav %%DATADIR%%/sounds/id/tv_guitarist_gitaris.wav %%DATADIR%%/sounds/id/tv_house_rumah.wav %%DATADIR%%/sounds/id/tv_ladder_tangga.wav %%DATADIR%%/sounds/id/tv_lion_singa.wav %%DATADIR%%/sounds/id/tv_lorry_tractor_kepala-truk.wav %%DATADIR%%/sounds/id/tv_lorry_truk-tronton.wav %%DATADIR%%/sounds/id/tv_man_laki-laki.wav %%DATADIR%%/sounds/id/tv_mechanic_montir.wav %%DATADIR%%/sounds/id/tv_monkey_monyet.wav %%DATADIR%%/sounds/id/tv_path_jalan-setapak.wav %%DATADIR%%/sounds/id/tv_rock_batu.wav %%DATADIR%%/sounds/id/tv_school_sekolah.wav %%DATADIR%%/sounds/id/tv_shop_toko.wav %%DATADIR%%/sounds/id/tv_smoke_asap.wav %%DATADIR%%/sounds/id/tv_tipper_truk-jomplang.wav %%DATADIR%%/sounds/id/tv_trailer_becak.wav %%DATADIR%%/sounds/id/tv_trailer_gerobak.wav %%DATADIR%%/sounds/id/tv_train_kereta-api.wav %%DATADIR%%/sounds/id/tv_train_kereta.wav %%DATADIR%%/sounds/id/tv_train_lokomotif.wav %%DATADIR%%/sounds/id/tv_tree_pohon.wav %%DATADIR%%/sounds/id/tv_tunnel_terowongan.wav %%DATADIR%%/sounds/id/tv_volley_net_net-voli.wav %%DATADIR%%/sounds/id/tv_wagon_gerbong.wav %%DATADIR%%/sounds/id/tv_woman_perempuan.wav %%DATADIR%%/sounds/id/umbrella_payung.wav %%DATADIR%%/sounds/id/whitch-tux_tux-penyihir.wav %%DATADIR%%/sounds/id/xmas_angel_malaikat.wav %%DATADIR%%/sounds/id/xmas_ball_bola.wav %%DATADIR%%/sounds/id/xmas_boot_sepatu-but.wav %%DATADIR%%/sounds/id/xmas_candle_lilin.wav %%DATADIR%%/sounds/id/xmas_comet_komet.wav %%DATADIR%%/sounds/id/xmas_garland_karangan-bunga.wav %%DATADIR%%/sounds/id/xmas_lights_lampu.wav %%DATADIR%%/sounds/id/xmas_mistletoe_benalu.wav %%DATADIR%%/sounds/id/xmas_moon_rembulan.wav %%DATADIR%%/sounds/id/xmas_owl_burung-hantu.wav %%DATADIR%%/sounds/id/xmas_present_kado.wav %%DATADIR%%/sounds/id/xmas_rabbit_kelinci.wav %%DATADIR%%/sounds/id/xmas_reindeer_rusa-kutub.wav %%DATADIR%%/sounds/id/xmas_shoe_sepatu.wav %%DATADIR%%/sounds/id/xmas_snowflake_kepingan-salju.wav %%DATADIR%%/sounds/id/xmas_snowman_manusia-salju.wav %%DATADIR%%/sounds/id/xmas_star_bintang.wav %%DATADIR%%/sounds/id/xmas_tree_pohon.wav %%DATADIR%%/sounds/id/xmas_turtle_penyu.wav %%DATADIR%%/sounds/id/xmas_tux.wav %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/nn.soundtheme %%DATADIR%%/sounds/nn/ball.opus %%DATADIR%%/sounds/nn/bow.opus %%DATADIR%%/sounds/nn/butterflies_body.opus %%DATADIR%%/sounds/nn/butterflies_circle.opus %%DATADIR%%/sounds/nn/butterflies_circles.opus %%DATADIR%%/sounds/nn/butterflies_eye.opus %%DATADIR%%/sounds/nn/butterflies_heart.opus %%DATADIR%%/sounds/nn/butterflies_purple_shape.opus %%DATADIR%%/sounds/nn/butterflies_spiral.opus %%DATADIR%%/sounds/nn/butterflies_wing.opus %%DATADIR%%/sounds/nn/coat.opus %%DATADIR%%/sounds/nn/ear.opus %%DATADIR%%/sounds/nn/earring.opus %%DATADIR%%/sounds/nn/egypt_arch.opus %%DATADIR%%/sounds/nn/egypt_birds.opus %%DATADIR%%/sounds/nn/egypt_boy.opus %%DATADIR%%/sounds/nn/egypt_bridge.opus %%DATADIR%%/sounds/nn/egypt_camel.opus %%DATADIR%%/sounds/nn/egypt_cart.opus %%DATADIR%%/sounds/nn/egypt_column.opus %%DATADIR%%/sounds/nn/egypt_donkey.opus %%DATADIR%%/sounds/nn/egypt_girl.opus %%DATADIR%%/sounds/nn/egypt_grass.opus %%DATADIR%%/sounds/nn/egypt_man.opus %%DATADIR%%/sounds/nn/egypt_oasis.opus %%DATADIR%%/sounds/nn/egypt_palmtree.opus %%DATADIR%%/sounds/nn/egypt_pyramid.opus %%DATADIR%%/sounds/nn/egypt_road.opus %%DATADIR%%/sounds/nn/egypt_sphynx.opus %%DATADIR%%/sounds/nn/egypt_well.opus %%DATADIR%%/sounds/nn/egypt_woman.opus %%DATADIR%%/sounds/nn/eye.opus %%DATADIR%%/sounds/nn/eyebrow.opus %%DATADIR%%/sounds/nn/flower.opus %%DATADIR%%/sounds/nn/frier-tux.opus %%DATADIR%%/sounds/nn/guard-tux.opus %%DATADIR%%/sounds/nn/hair.opus %%DATADIR%%/sounds/nn/hat.opus %%DATADIR%%/sounds/nn/kid-tux.opus %%DATADIR%%/sounds/nn/little-tux.opus %%DATADIR%%/sounds/nn/maiden-tux.opus %%DATADIR%%/sounds/nn/moon_alien.opus %%DATADIR%%/sounds/nn/moon_astronaut.opus %%DATADIR%%/sounds/nn/moon_earth.opus %%DATADIR%%/sounds/nn/moon_fallingstar.opus %%DATADIR%%/sounds/nn/moon_hotel.opus %%DATADIR%%/sounds/nn/moon_monster.opus %%DATADIR%%/sounds/nn/moon_moonwalker.opus %%DATADIR%%/sounds/nn/moon_planet.opus %%DATADIR%%/sounds/nn/moon_radar.opus %%DATADIR%%/sounds/nn/moon_rocket.opus %%DATADIR%%/sounds/nn/moon_satellite.opus %%DATADIR%%/sounds/nn/moon_sign.opus %%DATADIR%%/sounds/nn/moon_star.opus %%DATADIR%%/sounds/nn/moon_ufo.opus %%DATADIR%%/sounds/nn/moustache.opus %%DATADIR%%/sounds/nn/mouth.opus %%DATADIR%%/sounds/nn/nose.opus %%DATADIR%%/sounds/nn/pizzeria_anchovy.opus %%DATADIR%%/sounds/nn/pizzeria_bacon.opus %%DATADIR%%/sounds/nn/pizzeria_brocolli.opus %%DATADIR%%/sounds/nn/pizzeria_cheese.opus %%DATADIR%%/sounds/nn/pizzeria_cucumber.opus %%DATADIR%%/sounds/nn/pizzeria_mushroom.opus %%DATADIR%%/sounds/nn/pizzeria_olive.opus %%DATADIR%%/sounds/nn/pizzeria_onion.opus %%DATADIR%%/sounds/nn/pizzeria_oregano.opus %%DATADIR%%/sounds/nn/pizzeria_pepper.opus %%DATADIR%%/sounds/nn/pizzeria_pepperoni.opus %%DATADIR%%/sounds/nn/pizzeria_pineapple.opus %%DATADIR%%/sounds/nn/pizzeria_salami.opus %%DATADIR%%/sounds/nn/pizzeria_tomato.opus %%DATADIR%%/sounds/nn/prince-tux.opus %%DATADIR%%/sounds/nn/robin-tux.opus %%DATADIR%%/sounds/nn/robot_workshop_antenna.opus %%DATADIR%%/sounds/nn/robot_workshop_arm.opus %%DATADIR%%/sounds/nn/robot_workshop_ball.opus %%DATADIR%%/sounds/nn/robot_workshop_base.opus %%DATADIR%%/sounds/nn/robot_workshop_block.opus %%DATADIR%%/sounds/nn/robot_workshop_body.opus %%DATADIR%%/sounds/nn/robot_workshop_claw.opus %%DATADIR%%/sounds/nn/robot_workshop_eye.opus %%DATADIR%%/sounds/nn/robot_workshop_foot.opus %%DATADIR%%/sounds/nn/robot_workshop_hand.opus %%DATADIR%%/sounds/nn/robot_workshop_head.opus %%DATADIR%%/sounds/nn/robot_workshop_panel.opus %%DATADIR%%/sounds/nn/robot_workshop_rocket.opus %%DATADIR%%/sounds/nn/robot_workshop_rod.opus %%DATADIR%%/sounds/nn/robot_workshop_wheel.opus %%DATADIR%%/sounds/nn/sherif-tux.opus %%DATADIR%%/sounds/nn/shoe.opus %%DATADIR%%/sounds/nn/shorts.opus %%DATADIR%%/sounds/nn/skirt.opus %%DATADIR%%/sounds/nn/spectacles.opus %%DATADIR%%/sounds/nn/stick.opus %%DATADIR%%/sounds/nn/sunglasses.opus %%DATADIR%%/sounds/nn/tie.opus %%DATADIR%%/sounds/nn/tux-angry.opus %%DATADIR%%/sounds/nn/tux-apple.opus %%DATADIR%%/sounds/nn/tux-arrow.opus %%DATADIR%%/sounds/nn/tux-arrows.opus %%DATADIR%%/sounds/nn/tux-bow.opus %%DATADIR%%/sounds/nn/tux-bullseye.opus %%DATADIR%%/sounds/nn/tux-candles.opus %%DATADIR%%/sounds/nn/tux-dowe.opus %%DATADIR%%/sounds/nn/tux-fish.opus %%DATADIR%%/sounds/nn/tux-flask.opus %%DATADIR%%/sounds/nn/tux-fly.opus %%DATADIR%%/sounds/nn/tux-goblet.opus %%DATADIR%%/sounds/nn/tux-guitar.opus %%DATADIR%%/sounds/nn/tux-huh.opus %%DATADIR%%/sounds/nn/tux-idea.opus %%DATADIR%%/sounds/nn/tux-key.opus %%DATADIR%%/sounds/nn/tux-laugh.opus %%DATADIR%%/sounds/nn/tux-letter.opus %%DATADIR%%/sounds/nn/tux-love.opus %%DATADIR%%/sounds/nn/tux-note.opus %%DATADIR%%/sounds/nn/tux-notes.opus %%DATADIR%%/sounds/nn/tux-plate.opus %%DATADIR%%/sounds/nn/tux-poison.opus %%DATADIR%%/sounds/nn/tux-shoot.opus %%DATADIR%%/sounds/nn/tux-sick.opus %%DATADIR%%/sounds/nn/tux-stare.opus %%DATADIR%%/sounds/nn/tux-teacup.opus %%DATADIR%%/sounds/nn/tux-vase.opus %%DATADIR%%/sounds/nn/tux-wanted.opus %%DATADIR%%/sounds/nn/tux-what.opus %%DATADIR%%/sounds/nn/tux-wow.opus %%DATADIR%%/sounds/nn/tux-zzz.opus %%DATADIR%%/sounds/nn/tv_accident.opus %%DATADIR%%/sounds/nn/tv_ball.opus %%DATADIR%%/sounds/nn/tv_barrier.opus %%DATADIR%%/sounds/nn/tv_bicycle.opus %%DATADIR%%/sounds/nn/tv_breakdown_lorry.opus %%DATADIR%%/sounds/nn/tv_car.opus %%DATADIR%%/sounds/nn/tv_caravan.opus %%DATADIR%%/sounds/nn/tv_cyclist.opus %%DATADIR%%/sounds/nn/tv_elephant.opus %%DATADIR%%/sounds/nn/tv_excavator.opus %%DATADIR%%/sounds/nn/tv_fence.opus %%DATADIR%%/sounds/nn/tv_fire.opus %%DATADIR%%/sounds/nn/tv_fireengine.opus %%DATADIR%%/sounds/nn/tv_fireman.opus %%DATADIR%%/sounds/nn/tv_fisherman.opus %%DATADIR%%/sounds/nn/tv_giraffe.opus %%DATADIR%%/sounds/nn/tv_guitar.opus %%DATADIR%%/sounds/nn/tv_guitarist.opus %%DATADIR%%/sounds/nn/tv_house.opus %%DATADIR%%/sounds/nn/tv_ladder.opus %%DATADIR%%/sounds/nn/tv_lion.opus %%DATADIR%%/sounds/nn/tv_lorry.opus %%DATADIR%%/sounds/nn/tv_lorry_tractor.opus %%DATADIR%%/sounds/nn/tv_man.opus %%DATADIR%%/sounds/nn/tv_mechanic.opus %%DATADIR%%/sounds/nn/tv_monkey.opus %%DATADIR%%/sounds/nn/tv_path.opus %%DATADIR%%/sounds/nn/tv_rock.opus %%DATADIR%%/sounds/nn/tv_school.opus %%DATADIR%%/sounds/nn/tv_shop.opus %%DATADIR%%/sounds/nn/tv_smoke.opus %%DATADIR%%/sounds/nn/tv_tipper.opus %%DATADIR%%/sounds/nn/tv_trailer.opus %%DATADIR%%/sounds/nn/tv_train.opus %%DATADIR%%/sounds/nn/tv_tree.opus %%DATADIR%%/sounds/nn/tv_tunnel.opus %%DATADIR%%/sounds/nn/tv_volley_net.opus %%DATADIR%%/sounds/nn/tv_wagon.opus %%DATADIR%%/sounds/nn/tv_woman.opus %%DATADIR%%/sounds/nn/umbrella.opus %%DATADIR%%/sounds/nn/whitch-tux.opus %%DATADIR%%/sounds/nn/xmas_angel.opus %%DATADIR%%/sounds/nn/xmas_ball.opus %%DATADIR%%/sounds/nn/xmas_boot.opus %%DATADIR%%/sounds/nn/xmas_candle.opus %%DATADIR%%/sounds/nn/xmas_comet.opus %%DATADIR%%/sounds/nn/xmas_garland.opus %%DATADIR%%/sounds/nn/xmas_lights.opus %%DATADIR%%/sounds/nn/xmas_mistletoe.opus %%DATADIR%%/sounds/nn/xmas_moon.opus %%DATADIR%%/sounds/nn/xmas_owl.opus %%DATADIR%%/sounds/nn/xmas_present.opus %%DATADIR%%/sounds/nn/xmas_rabbit.opus %%DATADIR%%/sounds/nn/xmas_reindeer.opus %%DATADIR%%/sounds/nn/xmas_shoe.opus %%DATADIR%%/sounds/nn/xmas_snowflake.opus %%DATADIR%%/sounds/nn/xmas_snowman.opus %%DATADIR%%/sounds/nn/xmas_star.opus %%DATADIR%%/sounds/nn/xmas_tree.opus %%DATADIR%%/sounds/nn/xmas_turtle.opus %%DATADIR%%/sounds/nn/xmas_tux.opus %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg %%DATADIR%%/sounds/sr@ijekavian.soundtheme %%DATADIR%%/sounds/sr@ijekavian/brkovi.ogg %%DATADIR%%/sounds/sr@ijekavian/cigara.ogg %%DATADIR%%/sounds/sr@ijekavian/krompirko.ogg %%DATADIR%%/sounds/sr@ijekavian/masna.ogg %%DATADIR%%/sounds/sr@ijekavian/mindjusa.ogg %%DATADIR%%/sounds/sr@ijekavian/naocare.ogg %%DATADIR%%/sounds/sr@ijekavian/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr@ijekavian/nos.ogg %%DATADIR%%/sounds/sr@ijekavian/obrva.ogg %%DATADIR%%/sounds/sr@ijekavian/oko.ogg %%DATADIR%%/sounds/sr@ijekavian/sat.ogg %%DATADIR%%/sounds/sr@ijekavian/sesir.ogg %%DATADIR%%/sounds/sr@ijekavian/usta.ogg %%DATADIR%%/sounds/sr@ijekavian/uvo.ogg %%DATADIR%%/sounds/sr@ijekavian/znacka.ogg %%DATADIR%%/sounds/sr@ijekavianlatin.soundtheme %%DATADIR%%/sounds/sr@ijekavianlatin/brkovi.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/cigara.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/krompirko.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/masna.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/mindjusa.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/naocare.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/nos.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/obrva.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/oko.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/sat.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/sesir.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/usta.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/uvo.ogg %%DATADIR%%/sounds/sr@ijekavianlatin/znacka.ogg %%DATADIR%%/sounds/sr@latin.soundtheme %%DATADIR%%/sounds/sr@latin/brkovi.ogg %%DATADIR%%/sounds/sr@latin/cigara.ogg %%DATADIR%%/sounds/sr@latin/krompirko.ogg %%DATADIR%%/sounds/sr@latin/masna.ogg %%DATADIR%%/sounds/sr@latin/mindjusa.ogg %%DATADIR%%/sounds/sr@latin/naocare.ogg %%DATADIR%%/sounds/sr@latin/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr@latin/nos.ogg %%DATADIR%%/sounds/sr@latin/obrva.ogg %%DATADIR%%/sounds/sr@latin/oko.ogg %%DATADIR%%/sounds/sr@latin/sat.ogg %%DATADIR%%/sounds/sr@latin/sesir.ogg %%DATADIR%%/sounds/sr@latin/usta.ogg %%DATADIR%%/sounds/sr@latin/uvo.ogg %%DATADIR%%/sounds/sr@latin/znacka.ogg %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/locale/af/LC_MESSAGES/ktuberling.mo share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/ast/LC_MESSAGES/ktuberling.mo share/locale/be/LC_MESSAGES/ktuberling.mo -share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/br/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/csb/LC_MESSAGES/ktuberling.mo share/locale/cy/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hne/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/ia/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/ka/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/mai/LC_MESSAGES/ktuberling.mo share/locale/mk/LC_MESSAGES/ktuberling.mo share/locale/ml/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/ne/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/oc/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/sa/LC_MESSAGES/ktuberling.mo share/locale/se/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sq/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sr@ijekavian/LC_MESSAGES/ktuberling.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/ktuberling.mo share/locale/sr@latin/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/ta/LC_MESSAGES/ktuberling.mo share/locale/tg/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/xh/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml share/qlogging-categories6/ktuberling.categories share/qlogging-categories6/ktuberling.renamecategories diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index d0ed0639f770..daa29fe15871 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478461 -SHA256 (KDE/release-service/26.04.2/kubrick-26.04.2.tar.xz) = 8373f79eeb5b615e43850d036d5a26cd9e970cd32595bba5e62a2d3e96489230 -SIZE (KDE/release-service/26.04.2/kubrick-26.04.2.tar.xz) = 384940 +TIMESTAMP = 1782826799 +SHA256 (KDE/release-service/26.04.3/kubrick-26.04.3.tar.xz) = a6f0b69af859b4c7c762375c4070ed272fdfb22c9d4f8d91a3fa828083ad29d0 +SIZE (KDE/release-service/26.04.3/kubrick-26.04.3.tar.xz) = 384620 diff --git a/games/kubrick/pkg-plist b/games/kubrick/pkg-plist index ef8e584773c5..21b37072c1c3 100644 --- a/games/kubrick/pkg-plist +++ b/games/kubrick/pkg-plist @@ -1,94 +1,93 @@ bin/kubrick share/applications/org.kde.kubrick.desktop share/icons/hicolor/128x128/apps/kubrick.png share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/64x64/apps/kubrick.png %%DATADIR%%/m333CTwirl2.kbk %%DATADIR%%/m333Complete.kbk %%DATADIR%%/m333E2prX.kbk %%DATADIR%%/m333EFlip2.kbk %%DATADIR%%/m333LLCornerPos.kbk %%DATADIR%%/m333LLCornerRot.kbk %%DATADIR%%/m333LLEdgeFlip.kbk %%DATADIR%%/m333LLEdgePos.kbk %%DATADIR%%/m333Layer1.kbk %%DATADIR%%/m333MEdge1.kbk %%DATADIR%%/m333MEdge2.kbk %%DATADIR%%/p333Bar4.kbk %%DATADIR%%/p333DoubleCube.kbk %%DATADIR%%/p333Plus4.kbk %%DATADIR%%/p333Snake.kbk %%DATADIR%%/p333Spot4.kbk %%DATADIR%%/p333Spot6.kbk %%DATADIR%%/p333Tricolor6.kbk %%DATADIR%%/p333U4.kbk %%DATADIR%%/p333U6.kbk %%DATADIR%%/p333Worm.kbk %%DATADIR%%/p333X2.kbk %%DATADIR%%/p333X6.kbk %%DATADIR%%/themes/default.svgz share/locale/ar/LC_MESSAGES/kubrick.mo share/locale/ast/LC_MESSAGES/kubrick.mo -share/locale/bg/LC_MESSAGES/kubrick.mo share/locale/bs/LC_MESSAGES/kubrick.mo share/locale/ca/LC_MESSAGES/kubrick.mo share/locale/ca@valencia/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/da/LC_MESSAGES/kubrick.mo share/locale/de/LC_MESSAGES/kubrick.mo share/locale/el/LC_MESSAGES/kubrick.mo share/locale/en_GB/LC_MESSAGES/kubrick.mo share/locale/eo/LC_MESSAGES/kubrick.mo share/locale/es/LC_MESSAGES/kubrick.mo share/locale/et/LC_MESSAGES/kubrick.mo share/locale/eu/LC_MESSAGES/kubrick.mo share/locale/fi/LC_MESSAGES/kubrick.mo share/locale/fr/LC_MESSAGES/kubrick.mo share/locale/ga/LC_MESSAGES/kubrick.mo share/locale/gl/LC_MESSAGES/kubrick.mo share/locale/he/LC_MESSAGES/kubrick.mo share/locale/hi/LC_MESSAGES/kubrick.mo share/locale/hr/LC_MESSAGES/kubrick.mo share/locale/hu/LC_MESSAGES/kubrick.mo share/locale/ia/LC_MESSAGES/kubrick.mo share/locale/id/LC_MESSAGES/kubrick.mo share/locale/is/LC_MESSAGES/kubrick.mo share/locale/it/LC_MESSAGES/kubrick.mo share/locale/ja/LC_MESSAGES/kubrick.mo share/locale/ka/LC_MESSAGES/kubrick.mo share/locale/kk/LC_MESSAGES/kubrick.mo share/locale/km/LC_MESSAGES/kubrick.mo share/locale/ko/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lv/LC_MESSAGES/kubrick.mo share/locale/mai/LC_MESSAGES/kubrick.mo share/locale/ml/LC_MESSAGES/kubrick.mo share/locale/mr/LC_MESSAGES/kubrick.mo share/locale/nb/LC_MESSAGES/kubrick.mo share/locale/nds/LC_MESSAGES/kubrick.mo share/locale/nl/LC_MESSAGES/kubrick.mo share/locale/nn/LC_MESSAGES/kubrick.mo share/locale/pl/LC_MESSAGES/kubrick.mo share/locale/pt/LC_MESSAGES/kubrick.mo share/locale/pt_BR/LC_MESSAGES/kubrick.mo share/locale/ro/LC_MESSAGES/kubrick.mo share/locale/ru/LC_MESSAGES/kubrick.mo share/locale/sa/LC_MESSAGES/kubrick.mo share/locale/sk/LC_MESSAGES/kubrick.mo share/locale/sl/LC_MESSAGES/kubrick.mo share/locale/sr/LC_MESSAGES/kubrick.mo share/locale/sr@ijekavian/LC_MESSAGES/kubrick.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/kubrick.mo share/locale/sr@latin/LC_MESSAGES/kubrick.mo share/locale/sv/LC_MESSAGES/kubrick.mo share/locale/tr/LC_MESSAGES/kubrick.mo share/locale/ug/LC_MESSAGES/kubrick.mo share/locale/uk/LC_MESSAGES/kubrick.mo share/locale/zh_CN/LC_MESSAGES/kubrick.mo share/locale/zh_TW/LC_MESSAGES/kubrick.mo share/metainfo/org.kde.kubrick.appdata.xml share/qlogging-categories6/kubrick.categories share/qlogging-categories6/kubrick.renamecategories diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 042f6f7dbe22..a6530d0e8ac8 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478463 -SHA256 (KDE/release-service/26.04.2/libkdegames-26.04.2.tar.xz) = af44d46b28a3449b6f805d0316ddce4674296719de0400f3e3a53a8dc59f1905 -SIZE (KDE/release-service/26.04.2/libkdegames-26.04.2.tar.xz) = 5976584 +TIMESTAMP = 1782826801 +SHA256 (KDE/release-service/26.04.3/libkdegames-26.04.3.tar.xz) = fb9a2199c1d7d5ad827584edb063dd96e41aa8a937980d641e1ffa122d1eccc3 +SIZE (KDE/release-service/26.04.3/libkdegames-26.04.3.tar.xz) = 5972852 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index e97a9c7a3c4c..8a5bc68b89fb 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478465 -SHA256 (KDE/release-service/26.04.2/libkmahjongg-26.04.2.tar.xz) = 7189fae0a80c3cab9f34bc93f1733036183ea91b4b1b0da748522f65392d367b -SIZE (KDE/release-service/26.04.2/libkmahjongg-26.04.2.tar.xz) = 1694252 +TIMESTAMP = 1782826803 +SHA256 (KDE/release-service/26.04.3/libkmahjongg-26.04.3.tar.xz) = 1914c780160d8913dd649fdd1b0760b445523c09b572f45ce99c08196e29c7e8 +SIZE (KDE/release-service/26.04.3/libkmahjongg-26.04.3.tar.xz) = 1693652 diff --git a/games/libkmahjongg/pkg-plist b/games/libkmahjongg/pkg-plist index a795c254750f..7fd95c519fa2 100644 --- a/games/libkmahjongg/pkg-plist +++ b/games/libkmahjongg/pkg-plist @@ -1,108 +1,107 @@ include/KMahjongg6/KMahjonggBackground include/KMahjongg6/KMahjonggConfigDialog include/KMahjongg6/KMahjonggTileset include/KMahjongg6/kmahjonggbackground.h include/KMahjongg6/kmahjonggconfigdialog.h include/KMahjongg6/kmahjongglib_version.h include/KMahjongg6/kmahjonggtileset.h include/KMahjongg6/libkmahjongg_export.h lib/cmake/KMahjongglib6/KMahjongglib6Config.cmake lib/cmake/KMahjongglib6/KMahjongglib6ConfigVersion.cmake lib/cmake/KMahjongglib6/KMahjongglib6Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KMahjongglib6/KMahjongglib6Targets.cmake lib/libKMahjongg6.so lib/libKMahjongg6.so.%%SHLIB_SHVER%% lib/libKMahjongg6.so.%%SHLIB_VER_LONG%% share/kmahjongglib/backgrounds/chinese_landscape.desktop share/kmahjongglib/backgrounds/chinese_landscape.svgz share/kmahjongglib/backgrounds/color_plain.desktop share/kmahjongglib/backgrounds/default.desktop share/kmahjongglib/backgrounds/default.svgz share/kmahjongglib/backgrounds/egyptian.desktop share/kmahjongglib/backgrounds/egyptian.svgz share/kmahjongglib/backgrounds/summerfield.desktop share/kmahjongglib/backgrounds/summerfield.svgz share/kmahjongglib/backgrounds/wood_light.desktop share/kmahjongglib/backgrounds/wood_light.svgz share/kmahjongglib/tilesets/alphabet.desktop share/kmahjongglib/tilesets/alphabet.svgz share/kmahjongglib/tilesets/classic.desktop share/kmahjongglib/tilesets/classic.svgz share/kmahjongglib/tilesets/default.desktop share/kmahjongglib/tilesets/default.svgz share/kmahjongglib/tilesets/egypt.desktop share/kmahjongglib/tilesets/egypt.svgz share/kmahjongglib/tilesets/jade.desktop share/kmahjongglib/tilesets/jade.svgz share/kmahjongglib/tilesets/traditional.desktop share/kmahjongglib/tilesets/traditional.svgz share/locale/ar/LC_MESSAGES/libkmahjongg6.mo share/locale/ast/LC_MESSAGES/libkmahjongg6.mo share/locale/be/LC_MESSAGES/libkmahjongg6.mo -share/locale/bg/LC_MESSAGES/libkmahjongg6.mo share/locale/bs/LC_MESSAGES/libkmahjongg6.mo share/locale/ca/LC_MESSAGES/libkmahjongg6.mo share/locale/ca@valencia/LC_MESSAGES/libkmahjongg6.mo share/locale/cs/LC_MESSAGES/libkmahjongg6.mo share/locale/csb/LC_MESSAGES/libkmahjongg6.mo share/locale/da/LC_MESSAGES/libkmahjongg6.mo share/locale/de/LC_MESSAGES/libkmahjongg6.mo share/locale/el/LC_MESSAGES/libkmahjongg6.mo share/locale/en_GB/LC_MESSAGES/libkmahjongg6.mo share/locale/eo/LC_MESSAGES/libkmahjongg6.mo share/locale/es/LC_MESSAGES/libkmahjongg6.mo share/locale/et/LC_MESSAGES/libkmahjongg6.mo share/locale/eu/LC_MESSAGES/libkmahjongg6.mo share/locale/fi/LC_MESSAGES/libkmahjongg6.mo share/locale/fr/LC_MESSAGES/libkmahjongg6.mo share/locale/ga/LC_MESSAGES/libkmahjongg6.mo share/locale/gl/LC_MESSAGES/libkmahjongg6.mo share/locale/gu/LC_MESSAGES/libkmahjongg6.mo share/locale/he/LC_MESSAGES/libkmahjongg6.mo share/locale/hi/LC_MESSAGES/libkmahjongg6.mo share/locale/hne/LC_MESSAGES/libkmahjongg6.mo share/locale/hr/LC_MESSAGES/libkmahjongg6.mo share/locale/hu/LC_MESSAGES/libkmahjongg6.mo share/locale/ia/LC_MESSAGES/libkmahjongg6.mo share/locale/id/LC_MESSAGES/libkmahjongg6.mo share/locale/is/LC_MESSAGES/libkmahjongg6.mo share/locale/it/LC_MESSAGES/libkmahjongg6.mo share/locale/ja/LC_MESSAGES/libkmahjongg6.mo share/locale/ka/LC_MESSAGES/libkmahjongg6.mo share/locale/kk/LC_MESSAGES/libkmahjongg6.mo share/locale/km/LC_MESSAGES/libkmahjongg6.mo share/locale/ko/LC_MESSAGES/libkmahjongg6.mo share/locale/lt/LC_MESSAGES/libkmahjongg6.mo share/locale/lv/LC_MESSAGES/libkmahjongg6.mo share/locale/mai/LC_MESSAGES/libkmahjongg6.mo share/locale/ml/LC_MESSAGES/libkmahjongg6.mo share/locale/mr/LC_MESSAGES/libkmahjongg6.mo share/locale/nb/LC_MESSAGES/libkmahjongg6.mo share/locale/nds/LC_MESSAGES/libkmahjongg6.mo share/locale/nl/LC_MESSAGES/libkmahjongg6.mo share/locale/nn/LC_MESSAGES/libkmahjongg6.mo share/locale/oc/LC_MESSAGES/libkmahjongg6.mo share/locale/pl/LC_MESSAGES/libkmahjongg6.mo share/locale/pt/LC_MESSAGES/libkmahjongg6.mo share/locale/pt_BR/LC_MESSAGES/libkmahjongg6.mo share/locale/ro/LC_MESSAGES/libkmahjongg6.mo share/locale/ru/LC_MESSAGES/libkmahjongg6.mo share/locale/sa/LC_MESSAGES/libkmahjongg6.mo share/locale/se/LC_MESSAGES/libkmahjongg6.mo share/locale/sk/LC_MESSAGES/libkmahjongg6.mo share/locale/sl/LC_MESSAGES/libkmahjongg6.mo share/locale/sq/LC_MESSAGES/libkmahjongg6.mo share/locale/sr/LC_MESSAGES/libkmahjongg6.mo share/locale/sr@ijekavian/LC_MESSAGES/libkmahjongg6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libkmahjongg6.mo share/locale/sr@latin/LC_MESSAGES/libkmahjongg6.mo share/locale/sv/LC_MESSAGES/libkmahjongg6.mo share/locale/th/LC_MESSAGES/libkmahjongg6.mo share/locale/tr/LC_MESSAGES/libkmahjongg6.mo share/locale/ug/LC_MESSAGES/libkmahjongg6.mo share/locale/uk/LC_MESSAGES/libkmahjongg6.mo share/locale/wa/LC_MESSAGES/libkmahjongg6.mo share/locale/zh_CN/LC_MESSAGES/libkmahjongg6.mo share/locale/zh_TW/LC_MESSAGES/libkmahjongg6.mo share/qlogging-categories6/libkmahjongg.categories share/qlogging-categories6/libkmahjongg.renamecategories diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 22ede56c652d..b175b1e6f72c 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478466 -SHA256 (KDE/release-service/26.04.2/lskat-26.04.2.tar.xz) = 5b34202601d46b21f50f1445fa53723bb85fa614edf1eafb6cefc745e5d588a4 -SIZE (KDE/release-service/26.04.2/lskat-26.04.2.tar.xz) = 1229244 +TIMESTAMP = 1782826805 +SHA256 (KDE/release-service/26.04.3/lskat-26.04.3.tar.xz) = cc69cd51143694b13e5b5f983506dba15c8036420c5c16d795de5d698972c756 +SIZE (KDE/release-service/26.04.3/lskat-26.04.3.tar.xz) = 1228180 diff --git a/games/lskat/pkg-plist b/games/lskat/pkg-plist index 2044ef2a739d..2d6d66f6ee0c 100644 --- a/games/lskat/pkg-plist +++ b/games/lskat/pkg-plist @@ -1,94 +1,93 @@ bin/lskat share/applications/org.kde.lskat.desktop share/icons/hicolor/128x128/apps/lskat.png share/icons/hicolor/16x16/apps/lskat.png share/icons/hicolor/22x22/apps/lskat.png share/icons/hicolor/32x32/apps/lskat.png share/icons/hicolor/48x48/apps/lskat.png share/icons/hicolor/64x64/apps/lskat.png share/locale/af/LC_MESSAGES/lskat.mo share/locale/ar/LC_MESSAGES/lskat.mo share/locale/ast/LC_MESSAGES/lskat.mo share/locale/be/LC_MESSAGES/lskat.mo -share/locale/bg/LC_MESSAGES/lskat.mo share/locale/br/LC_MESSAGES/lskat.mo share/locale/bs/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca@valencia/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/lskat.mo share/locale/cy/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/en_GB/LC_MESSAGES/lskat.mo share/locale/eo/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/eu/LC_MESSAGES/lskat.mo share/locale/fa/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/he/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/lskat.mo share/locale/hne/LC_MESSAGES/lskat.mo share/locale/hr/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/lskat.mo share/locale/id/LC_MESSAGES/lskat.mo share/locale/is/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/lskat.mo share/locale/ka/LC_MESSAGES/lskat.mo share/locale/kk/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/lskat.mo share/locale/mai/LC_MESSAGES/lskat.mo share/locale/mk/LC_MESSAGES/lskat.mo share/locale/ml/LC_MESSAGES/lskat.mo share/locale/mr/LC_MESSAGES/lskat.mo share/locale/ms/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/lskat.mo share/locale/ne/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/lskat.mo share/locale/oc/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/ro/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/lskat.mo share/locale/sa/LC_MESSAGES/lskat.mo share/locale/se/LC_MESSAGES/lskat.mo share/locale/sk/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/lskat.mo share/locale/sq/LC_MESSAGES/lskat.mo share/locale/sr/LC_MESSAGES/lskat.mo share/locale/sr@ijekavian/LC_MESSAGES/lskat.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/lskat.mo share/locale/sr@latin/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/lskat.mo share/locale/ta/LC_MESSAGES/lskat.mo share/locale/tg/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/ug/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/lskat.mo share/locale/xh/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo %%DATADIR%%/themes/blue.desktop %%DATADIR%%/themes/blue.rc %%DATADIR%%/themes/blue.svgz %%DATADIR%%/themes/egyptian.desktop %%DATADIR%%/themes/egyptian.rc %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.rc %%DATADIR%%/themes/oxygen.svgz share/metainfo/org.kde.lskat.appdata.xml share/qlogging-categories6/lskat.categories share/qlogging-categories6/lskat.renamecategories diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index cae84f698eb3..cf494c1fe691 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478468 -SHA256 (KDE/release-service/26.04.2/palapeli-26.04.2.tar.xz) = 4d299752ab95651f3cb8651fb65e1cc226091e53fe13a28bd6592cfc0054a06e -SIZE (KDE/release-service/26.04.2/palapeli-26.04.2.tar.xz) = 2137052 +TIMESTAMP = 1782826806 +SHA256 (KDE/release-service/26.04.3/palapeli-26.04.3.tar.xz) = 4e6d678cf8dd3866c829ae006d01bd07f2e045c03f5677227d2e20fd7b86ad05 +SIZE (KDE/release-service/26.04.3/palapeli-26.04.3.tar.xz) = 2136612 diff --git a/games/palapeli/pkg-plist b/games/palapeli/pkg-plist index 741d63d852e6..fd49e094fb9e 100644 --- a/games/palapeli/pkg-plist +++ b/games/palapeli/pkg-plist @@ -1,120 +1,119 @@ bin/palapeli etc/xdg/palapeli-collectionrc include/Pala/Pala/Slicer include/Pala/Pala/SlicerJob include/Pala/Pala/SlicerMode include/Pala/Pala/SlicerProperty include/Pala/Pala/SlicerPropertySet include/Pala/pala/libpala_export.h include/Pala/pala/slicer.h include/Pala/pala/slicerjob.h include/Pala/pala/slicermode.h include/Pala/pala/slicerproperty.h include/Pala/pala/slicerpropertyset.h lib/cmake/Pala/PalaConfig.cmake lib/cmake/Pala/PalaConfigVersion.cmake lib/cmake/Pala/PalaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Pala/PalaTargets.cmake lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 %%QT_PLUGINDIR%%/kf6/thumbcreator/palathumbcreator.so %%QT_PLUGINDIR%%/palapelislicers/palapeli_goldbergslicer.so %%QT_PLUGINDIR%%/palapelislicers/palapeli_jigsawslicer.so %%QT_PLUGINDIR%%/palapelislicers/palapeli_rectslicer.so share/applications/org.kde.palapeli.desktop share/icons/hicolor/128x128/apps/palapeli.png share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png share/icons/hicolor/16x16/apps/palapeli.png share/icons/hicolor/16x16/mimetypes/application-x-palapeli.png share/icons/hicolor/24x24/apps/palapeli.png share/icons/hicolor/24x24/mimetypes/application-x-palapeli.png share/icons/hicolor/32x32/apps/palapeli.png share/icons/hicolor/32x32/mimetypes/application-x-palapeli.png share/icons/hicolor/48x48/apps/palapeli.png share/icons/hicolor/48x48/mimetypes/application-x-palapeli.png share/icons/hicolor/64x64/apps/palapeli.png share/icons/hicolor/64x64/mimetypes/application-x-palapeli.png share/kio/servicemenus/palapeli_servicemenu.desktop share/knotifications6/palapeli.notifyrc share/locale/ar/LC_MESSAGES/palapeli.mo share/locale/ast/LC_MESSAGES/palapeli.mo -share/locale/bg/LC_MESSAGES/palapeli.mo share/locale/bs/LC_MESSAGES/palapeli.mo share/locale/ca/LC_MESSAGES/palapeli.mo share/locale/ca@valencia/LC_MESSAGES/palapeli.mo share/locale/cs/LC_MESSAGES/palapeli.mo share/locale/da/LC_MESSAGES/palapeli.mo share/locale/de/LC_MESSAGES/palapeli.mo share/locale/el/LC_MESSAGES/palapeli.mo share/locale/en_GB/LC_MESSAGES/palapeli.mo share/locale/eo/LC_MESSAGES/palapeli.mo share/locale/es/LC_MESSAGES/palapeli.mo share/locale/et/LC_MESSAGES/palapeli.mo share/locale/eu/LC_MESSAGES/palapeli.mo share/locale/fi/LC_MESSAGES/palapeli.mo share/locale/fr/LC_MESSAGES/palapeli.mo share/locale/ga/LC_MESSAGES/palapeli.mo share/locale/gl/LC_MESSAGES/palapeli.mo share/locale/he/LC_MESSAGES/palapeli.mo share/locale/hi/LC_MESSAGES/palapeli.mo share/locale/hr/LC_MESSAGES/palapeli.mo share/locale/hsb/LC_MESSAGES/palapeli.mo share/locale/hu/LC_MESSAGES/palapeli.mo share/locale/ia/LC_MESSAGES/palapeli.mo share/locale/is/LC_MESSAGES/palapeli.mo share/locale/it/LC_MESSAGES/palapeli.mo share/locale/ja/LC_MESSAGES/palapeli.mo share/locale/ka/LC_MESSAGES/palapeli.mo share/locale/kk/LC_MESSAGES/palapeli.mo share/locale/km/LC_MESSAGES/palapeli.mo share/locale/ko/LC_MESSAGES/palapeli.mo share/locale/lt/LC_MESSAGES/palapeli.mo share/locale/lv/LC_MESSAGES/palapeli.mo share/locale/mai/LC_MESSAGES/palapeli.mo share/locale/ml/LC_MESSAGES/palapeli.mo share/locale/mr/LC_MESSAGES/palapeli.mo share/locale/nb/LC_MESSAGES/palapeli.mo share/locale/nds/LC_MESSAGES/palapeli.mo share/locale/nl/LC_MESSAGES/palapeli.mo share/locale/nn/LC_MESSAGES/palapeli.mo share/locale/pl/LC_MESSAGES/palapeli.mo share/locale/pt/LC_MESSAGES/palapeli.mo share/locale/pt_BR/LC_MESSAGES/palapeli.mo share/locale/ro/LC_MESSAGES/palapeli.mo share/locale/ru/LC_MESSAGES/palapeli.mo share/locale/sa/LC_MESSAGES/palapeli.mo share/locale/sk/LC_MESSAGES/palapeli.mo share/locale/sl/LC_MESSAGES/palapeli.mo share/locale/sq/LC_MESSAGES/palapeli.mo share/locale/sr/LC_MESSAGES/palapeli.mo share/locale/sr@ijekavian/LC_MESSAGES/palapeli.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/palapeli.mo share/locale/sr@latin/LC_MESSAGES/palapeli.mo share/locale/sv/LC_MESSAGES/palapeli.mo share/locale/tr/LC_MESSAGES/palapeli.mo share/locale/ug/LC_MESSAGES/palapeli.mo share/locale/uk/LC_MESSAGES/palapeli.mo share/locale/zh_CN/LC_MESSAGES/palapeli.mo share/locale/zh_TW/LC_MESSAGES/palapeli.mo share/metainfo/org.kde.palapeli.appdata.xml share/mime/packages/palapeli-mimetypes.xml %%DATADIR%%/backgrounds/Eliminator-Funk-2.jpg %%DATADIR%%/backgrounds/Rear-Admiral-Diplomat-1.jpg %%DATADIR%%/backgrounds/Time-For-Lunch-2.jpg %%DATADIR%%/backgrounds/background.svg %%DATADIR%%/backgrounds/gon-defends-the-critters-1.jpg %%DATADIR%%/backgrounds/mahogany-handjob-1.jpg %%DATADIR%%/collection/castle-maintenon.desktop %%DATADIR%%/collection/castle-maintenon.jpg %%DATADIR%%/collection/cincinnati-bridge.desktop %%DATADIR%%/collection/cincinnati-bridge.jpg %%DATADIR%%/collection/citrus-fruits.desktop %%DATADIR%%/collection/citrus-fruits.jpg %%DATADIR%%/collection/european-honey-bee.desktop %%DATADIR%%/collection/european-honey-bee.jpg %%DATADIR%%/collection/panther-chameleon-female.desktop %%DATADIR%%/collection/panther-chameleon-female.jpg %%DATADIR%%/palapeli.kcfg share/qlogging-categories6/palapeli.categories share/qlogging-categories6/palapeli.renamecategories diff --git a/games/picmi/distinfo b/games/picmi/distinfo index cb57c3f393ab..03781596ff4c 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478469 -SHA256 (KDE/release-service/26.04.2/picmi-26.04.2.tar.xz) = 386b542fb7b6df23e18ce4c876b759f0b74d3ae6452469de50e4b69f8727b455 -SIZE (KDE/release-service/26.04.2/picmi-26.04.2.tar.xz) = 1524088 +TIMESTAMP = 1782826808 +SHA256 (KDE/release-service/26.04.3/picmi-26.04.3.tar.xz) = 28370915623c728fc85197ffdca18c8a0d92baf375876549f2ce6993b8b728a2 +SIZE (KDE/release-service/26.04.3/picmi-26.04.3.tar.xz) = 1524096 diff --git a/games/skladnik/distinfo b/games/skladnik/distinfo index 5f9351a53f2e..7a3642b665f3 100644 --- a/games/skladnik/distinfo +++ b/games/skladnik/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478471 -SHA256 (KDE/release-service/26.04.2/skladnik-26.04.2.tar.xz) = e5f202e95b40e98d41c77a48edfee9f1ab41a8c6919f12b97b273d2e4c474feb -SIZE (KDE/release-service/26.04.2/skladnik-26.04.2.tar.xz) = 420412 +TIMESTAMP = 1782826810 +SHA256 (KDE/release-service/26.04.3/skladnik-26.04.3.tar.xz) = 62b7f1a831bd50cae251374db2fe9bc18e28835cc83d7f6202268fc790b8bcb7 +SIZE (KDE/release-service/26.04.3/skladnik-26.04.3.tar.xz) = 420456 diff --git a/graphics/colord-kde/distinfo b/graphics/colord-kde/distinfo index d897e7e83708..75b15166d631 100644 --- a/graphics/colord-kde/distinfo +++ b/graphics/colord-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478471 -SHA256 (KDE/release-service/26.04.2/colord-kde-26.04.2.tar.xz) = 1631f03db1712826d0e86d950dc6502b8c4946b73a3b25a0a12db1747c029ce5 -SIZE (KDE/release-service/26.04.2/colord-kde-26.04.2.tar.xz) = 121080 +TIMESTAMP = 1782826810 +SHA256 (KDE/release-service/26.04.3/colord-kde-26.04.3.tar.xz) = f788b2702b7599a908a62dc871bfc9c150d40943307abdde3e76b4a0a86c2f24 +SIZE (KDE/release-service/26.04.3/colord-kde-26.04.3.tar.xz) = 121056 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 64c385015d97..a8166091299d 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478473 -SHA256 (KDE/release-service/26.04.2/gwenview-26.04.2.tar.xz) = 150b601741f1fcf3aae5e8fa6dbd28ae83afe3e0914a1e91c84efa55312d9a69 -SIZE (KDE/release-service/26.04.2/gwenview-26.04.2.tar.xz) = 6549528 +TIMESTAMP = 1782826812 +SHA256 (KDE/release-service/26.04.3/gwenview-26.04.3.tar.xz) = dabd48e172cf78f4b42de7423de56ed474d241abb080b4d2b632c5d4d4e8dbaf +SIZE (KDE/release-service/26.04.3/gwenview-26.04.3.tar.xz) = 6549860 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 0a235b0996ca..845382c8c39d 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478475 -SHA256 (KDE/release-service/26.04.2/kamera-26.04.2.tar.xz) = 73166f0bd638a40b041715e11aca1fac606dfbc654a413efca8f864c06f04eaf -SIZE (KDE/release-service/26.04.2/kamera-26.04.2.tar.xz) = 133172 +TIMESTAMP = 1782826814 +SHA256 (KDE/release-service/26.04.3/kamera-26.04.3.tar.xz) = 6b695382b8bf27deea190c48b29c63ffeae416f84da014de105cc8f86b7a7ae6 +SIZE (KDE/release-service/26.04.3/kamera-26.04.3.tar.xz) = 133180 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 1a6e7eaffc4e..61829dbbabb5 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478476 -SHA256 (KDE/release-service/26.04.2/kcolorchooser-26.04.2.tar.xz) = c45401870771ca5cfb60ca4779975c08d490c89dd0c376d3716b3900fd33dc6f -SIZE (KDE/release-service/26.04.2/kcolorchooser-26.04.2.tar.xz) = 36848 +TIMESTAMP = 1782826816 +SHA256 (KDE/release-service/26.04.3/kcolorchooser-26.04.3.tar.xz) = eb39f2eed2fcfdd891b89a26ad51c0a435db42b68ff9a4d959211d966de651b6 +SIZE (KDE/release-service/26.04.3/kcolorchooser-26.04.3.tar.xz) = 36872 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index ef3c9b82038b..82c19eb5e0f0 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478478 -SHA256 (KDE/release-service/26.04.2/kdegraphics-mobipocket-26.04.2.tar.xz) = 118819389efd2d254e4e6586fd086ff3c4061199d77a873490cd2cc8c761e39a -SIZE (KDE/release-service/26.04.2/kdegraphics-mobipocket-26.04.2.tar.xz) = 20404 +TIMESTAMP = 1782826817 +SHA256 (KDE/release-service/26.04.3/kdegraphics-mobipocket-26.04.3.tar.xz) = 26cf058d441ec1a23768a47026960a0b7b77ca40dc7de51c89a9b4d463851f92 +SIZE (KDE/release-service/26.04.3/kdegraphics-mobipocket-26.04.3.tar.xz) = 20392 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 712d7f651d4c..9efbf44173ad 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478480 -SHA256 (KDE/release-service/26.04.2/svgpart-26.04.2.tar.xz) = 1f537e7735225ff355cd1f90f8e4fd1497f41872c8b879040d760995de1d47f7 -SIZE (KDE/release-service/26.04.2/svgpart-26.04.2.tar.xz) = 30388 +TIMESTAMP = 1782826819 +SHA256 (KDE/release-service/26.04.3/svgpart-26.04.3.tar.xz) = fbc68dcdf9107316ad26126d8ac2adb382e4ee6b8c0184feb1300686c3a9c702 +SIZE (KDE/release-service/26.04.3/svgpart-26.04.3.tar.xz) = 30152 diff --git a/graphics/kdegraphics-svgpart/pkg-plist b/graphics/kdegraphics-svgpart/pkg-plist index 226e09da1fdc..7270a880ba80 100644 --- a/graphics/kdegraphics-svgpart/pkg-plist +++ b/graphics/kdegraphics-svgpart/pkg-plist @@ -1,67 +1,66 @@ %%QT_PLUGINDIR%%/kf6/parts/svgpart.so share/locale/ar/LC_MESSAGES/svgpart.mo share/locale/ast/LC_MESSAGES/svgpart.mo share/locale/be/LC_MESSAGES/svgpart.mo -share/locale/bg/LC_MESSAGES/svgpart.mo share/locale/bs/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca@valencia/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/en_GB/LC_MESSAGES/svgpart.mo share/locale/eo/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/eu/LC_MESSAGES/svgpart.mo share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/he/LC_MESSAGES/svgpart.mo share/locale/hi/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo share/locale/id/LC_MESSAGES/svgpart.mo share/locale/ie/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/ka/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/ku/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/mk/LC_MESSAGES/svgpart.mo share/locale/ml/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/sa/LC_MESSAGES/svgpart.mo share/locale/si/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sq/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/ta/LC_MESSAGES/svgpart.mo share/locale/th/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/vi/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo share/metainfo/org.kde.svgpart.metainfo.xml diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index b14a4f71211e..2081342f4c9c 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478481 -SHA256 (KDE/release-service/26.04.2/kdegraphics-thumbnailers-26.04.2.tar.xz) = 82d7d8ae6345bdce56b39562e673c69324a3252ba3ae575e6094bf810c84a46f -SIZE (KDE/release-service/26.04.2/kdegraphics-thumbnailers-26.04.2.tar.xz) = 128796 +TIMESTAMP = 1782826821 +SHA256 (KDE/release-service/26.04.3/kdegraphics-thumbnailers-26.04.3.tar.xz) = bd44c4c13e22dc69366e76d05b3d65629d07507a38e5ba42d60267756d73edcf +SIZE (KDE/release-service/26.04.3/kdegraphics-thumbnailers-26.04.3.tar.xz) = 128668 diff --git a/graphics/kgraphviewer/distinfo b/graphics/kgraphviewer/distinfo index 394760f951e9..a1a31a5032a1 100644 --- a/graphics/kgraphviewer/distinfo +++ b/graphics/kgraphviewer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478483 -SHA256 (KDE/release-service/26.04.2/kgraphviewer-26.04.2.tar.xz) = afae2f0e4befde8125c55b52be69089ebb02b5a1fd60075ac7536c3bf0d01c7e -SIZE (KDE/release-service/26.04.2/kgraphviewer-26.04.2.tar.xz) = 1608428 +TIMESTAMP = 1782826823 +SHA256 (KDE/release-service/26.04.3/kgraphviewer-26.04.3.tar.xz) = d10266f6a98ee0234e5edf2f3ddb272a508cb72679553d0030ffebcb3e4099b9 +SIZE (KDE/release-service/26.04.3/kgraphviewer-26.04.3.tar.xz) = 1606424 diff --git a/graphics/kgraphviewer/pkg-plist b/graphics/kgraphviewer/pkg-plist index e4902f51c686..f3e10f6a4175 100644 --- a/graphics/kgraphviewer/pkg-plist +++ b/graphics/kgraphviewer/pkg-plist @@ -1,144 +1,143 @@ bin/kgraphviewer include/kgraphviewer/kgraphviewer_interface.h lib/cmake/KGraphViewerPart/KGraphViewerPartConfig.cmake lib/cmake/KGraphViewerPart/KGraphViewerPartConfigVersion.cmake lib/cmake/KGraphViewerPart/KGraphViewerPartTargets.cmake lib/libkgraphviewer.so lib/libkgraphviewer.so.0 lib/libkgraphviewer.so.%%SHLIB_VER_LONG%% %%QT_PLUGINDIR%%/kf6/parts/kgraphviewerpart.so share/applications/org.kde.kgraphviewer.desktop share/config.kcfg/kgraphviewer_partsettings.kcfg share/config.kcfg/kgraphviewersettings.kcfg share/doc/HTML/ca/kgraphviewer/index.cache.bz2 share/doc/HTML/ca/kgraphviewer/index.docbook share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config-appearance.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config-parsing.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/ca/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/en/kgraphviewer/index.cache.bz2 share/doc/HTML/en/kgraphviewer/index.docbook share/doc/HTML/en/kgraphviewer/kgraphviewer-but-layout.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-open.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-prev.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-preview.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-print.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-psetup.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-reload.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-whatsthis.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-zoomin.png share/doc/HTML/en/kgraphviewer/kgraphviewer-but-zoomout.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config-appearance.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config-parsing.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview2.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-ppview3.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-zmax.png share/doc/HTML/en/kgraphviewer/kgraphviewer-snap-zmin.png share/doc/HTML/it/kgraphviewer/index.cache.bz2 share/doc/HTML/it/kgraphviewer/index.docbook share/doc/HTML/nl/kgraphviewer/index.cache.bz2 share/doc/HTML/nl/kgraphviewer/index.docbook share/doc/HTML/pt_BR/kgraphviewer/index.cache.bz2 share/doc/HTML/pt_BR/kgraphviewer/index.docbook share/doc/HTML/sl/kgraphviewer/index.cache.bz2 share/doc/HTML/sl/kgraphviewer/index.docbook share/doc/HTML/sv/kgraphviewer/index.cache.bz2 share/doc/HTML/sv/kgraphviewer/index.docbook share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ask3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-config3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-init.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-main.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-pagesmarges.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview2.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-ppview3.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-psetup1.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-zmax.png share/doc/HTML/sv/kgraphviewer/kgraphviewer-snap-zmin.png share/doc/HTML/uk/kgraphviewer/index.cache.bz2 share/doc/HTML/uk/kgraphviewer/index.docbook share/icons/hicolor/16x16/apps/kgraphviewer.png share/icons/hicolor/32x32/apps/kgraphviewer.png share/locale/ar/LC_MESSAGES/kgraphviewer.mo share/locale/be/LC_MESSAGES/kgraphviewer.mo -share/locale/bg/LC_MESSAGES/kgraphviewer.mo share/locale/bs/LC_MESSAGES/kgraphviewer.mo share/locale/ca/LC_MESSAGES/kgraphviewer.mo share/locale/ca@valencia/LC_MESSAGES/kgraphviewer.mo share/locale/cs/LC_MESSAGES/kgraphviewer.mo share/locale/da/LC_MESSAGES/kgraphviewer.mo share/locale/de/LC_MESSAGES/kgraphviewer.mo share/locale/el/LC_MESSAGES/kgraphviewer.mo share/locale/en_GB/LC_MESSAGES/kgraphviewer.mo share/locale/eo/LC_MESSAGES/kgraphviewer.mo share/locale/es/LC_MESSAGES/kgraphviewer.mo share/locale/et/LC_MESSAGES/kgraphviewer.mo share/locale/eu/LC_MESSAGES/kgraphviewer.mo share/locale/fi/LC_MESSAGES/kgraphviewer.mo share/locale/fr/LC_MESSAGES/kgraphviewer.mo share/locale/ga/LC_MESSAGES/kgraphviewer.mo share/locale/gl/LC_MESSAGES/kgraphviewer.mo share/locale/he/LC_MESSAGES/kgraphviewer.mo share/locale/hi/LC_MESSAGES/kgraphviewer.mo share/locale/hne/LC_MESSAGES/kgraphviewer.mo share/locale/hr/LC_MESSAGES/kgraphviewer.mo share/locale/hu/LC_MESSAGES/kgraphviewer.mo share/locale/ia/LC_MESSAGES/kgraphviewer.mo share/locale/is/LC_MESSAGES/kgraphviewer.mo share/locale/it/LC_MESSAGES/kgraphviewer.mo share/locale/ja/LC_MESSAGES/kgraphviewer.mo share/locale/ka/LC_MESSAGES/kgraphviewer.mo share/locale/km/LC_MESSAGES/kgraphviewer.mo share/locale/ko/LC_MESSAGES/kgraphviewer.mo share/locale/ku/LC_MESSAGES/kgraphviewer.mo share/locale/lt/LC_MESSAGES/kgraphviewer.mo share/locale/lv/LC_MESSAGES/kgraphviewer.mo share/locale/mai/LC_MESSAGES/kgraphviewer.mo share/locale/mr/LC_MESSAGES/kgraphviewer.mo share/locale/nb/LC_MESSAGES/kgraphviewer.mo share/locale/nds/LC_MESSAGES/kgraphviewer.mo share/locale/nl/LC_MESSAGES/kgraphviewer.mo share/locale/nn/LC_MESSAGES/kgraphviewer.mo share/locale/pa/LC_MESSAGES/kgraphviewer.mo share/locale/pl/LC_MESSAGES/kgraphviewer.mo share/locale/pt/LC_MESSAGES/kgraphviewer.mo share/locale/pt_BR/LC_MESSAGES/kgraphviewer.mo share/locale/ro/LC_MESSAGES/kgraphviewer.mo share/locale/ru/LC_MESSAGES/kgraphviewer.mo share/locale/sa/LC_MESSAGES/kgraphviewer.mo share/locale/se/LC_MESSAGES/kgraphviewer.mo share/locale/sk/LC_MESSAGES/kgraphviewer.mo share/locale/sl/LC_MESSAGES/kgraphviewer.mo share/locale/sv/LC_MESSAGES/kgraphviewer.mo share/locale/th/LC_MESSAGES/kgraphviewer.mo share/locale/tr/LC_MESSAGES/kgraphviewer.mo share/locale/ug/LC_MESSAGES/kgraphviewer.mo share/locale/uk/LC_MESSAGES/kgraphviewer.mo share/locale/vi/LC_MESSAGES/kgraphviewer.mo share/locale/zh_CN/LC_MESSAGES/kgraphviewer.mo share/locale/zh_TW/LC_MESSAGES/kgraphviewer.mo share/metainfo/org.kde.kgraphviewer.appdata.xml share/qlogging-categories6/kgraphviewer.categories diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index ae287dcb041e..e34b788bfceb 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478484 -SHA256 (KDE/release-service/26.04.2/kimagemapeditor-26.04.2.tar.xz) = 5e9b4baa78c0799cf810695332ae0740deeacc0c55c1880910bf94512607567e -SIZE (KDE/release-service/26.04.2/kimagemapeditor-26.04.2.tar.xz) = 1076956 +TIMESTAMP = 1782826824 +SHA256 (KDE/release-service/26.04.3/kimagemapeditor-26.04.3.tar.xz) = 53f86706475b6c2caca6a0f77e618d605497acbb8db8345865f3856d7fc019fc +SIZE (KDE/release-service/26.04.3/kimagemapeditor-26.04.3.tar.xz) = 1076988 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 71044335fd18..8df728de0dde 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478486 -SHA256 (KDE/release-service/26.04.2/kolourpaint-26.04.2.tar.xz) = 9b65c636e30e0a376352c66bb70de74fae2b732c9d24531fcc17be863f27126b -SIZE (KDE/release-service/26.04.2/kolourpaint-26.04.2.tar.xz) = 5319748 +TIMESTAMP = 1782826826 +SHA256 (KDE/release-service/26.04.3/kolourpaint-26.04.3.tar.xz) = fece103c529290212cc7a66e9f22e894eb034d04579332a17d7f6c0e8eda6069 +SIZE (KDE/release-service/26.04.3/kolourpaint-26.04.3.tar.xz) = 5319860 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index d2582e46fda1..d6ef9c1a65e5 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478488 -SHA256 (KDE/release-service/26.04.2/kontrast-26.04.2.tar.xz) = 3d55ecdeff6350590712c42699b2a463a96666cabeeb14ef60654da6108fc6a8 -SIZE (KDE/release-service/26.04.2/kontrast-26.04.2.tar.xz) = 222612 +TIMESTAMP = 1782826828 +SHA256 (KDE/release-service/26.04.3/kontrast-26.04.3.tar.xz) = 04aeda7b16205c3cd1f65a0e4a9c99c8cdf5897ac72494db55dec01b729c7bb3 +SIZE (KDE/release-service/26.04.3/kontrast-26.04.3.tar.xz) = 222476 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 0420ec3b0bf7..2c9facb0bbc2 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478489 -SHA256 (KDE/release-service/26.04.2/kqtquickcharts-26.04.2.tar.xz) = c29190416c3215e212d939e7bd559b3cb2fe3170edcf374bd1baa1bddffa705f -SIZE (KDE/release-service/26.04.2/kqtquickcharts-26.04.2.tar.xz) = 30824 +TIMESTAMP = 1782826830 +SHA256 (KDE/release-service/26.04.3/kqtquickcharts-26.04.3.tar.xz) = f8b5f3a37a1f2c5e6c0f1eb749917d642b341502c1b1c5ba5b082ede80f2aef8 +SIZE (KDE/release-service/26.04.3/kqtquickcharts-26.04.3.tar.xz) = 30820 diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index b0bfadb060b7..cef6b15b2be6 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478491 -SHA256 (KDE/release-service/26.04.2/ksanecore-26.04.2.tar.xz) = 8f84a08f984055ced7a1a2051b9a2044d15c0a9523121a56aca66bfe5ab269d9 -SIZE (KDE/release-service/26.04.2/ksanecore-26.04.2.tar.xz) = 54756 +TIMESTAMP = 1782826831 +SHA256 (KDE/release-service/26.04.3/ksanecore-26.04.3.tar.xz) = e5c96840ba21e7afa6e0635b21cc117552898b14628d9555f2a600c77884747d +SIZE (KDE/release-service/26.04.3/ksanecore-26.04.3.tar.xz) = 54788 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 41299361837e..896820b22e98 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478493 -SHA256 (KDE/release-service/26.04.2/libkdcraw-26.04.2.tar.xz) = 0ceb4e3ae7921e25ff9e3c4ac0693321521fa8c455d3f44152d03b3ffbba391d -SIZE (KDE/release-service/26.04.2/libkdcraw-26.04.2.tar.xz) = 37236 +TIMESTAMP = 1782826833 +SHA256 (KDE/release-service/26.04.3/libkdcraw-26.04.3.tar.xz) = 7bc63591e1fc1352177849a6998030dca2fca98e902a55186afec55add326f4f +SIZE (KDE/release-service/26.04.3/libkdcraw-26.04.3.tar.xz) = 37232 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 6b3199ea11f8..800dafa78c7e 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478494 -SHA256 (KDE/release-service/26.04.2/libkexiv2-26.04.2.tar.xz) = fdd8b2ca473339281676bccd1be1d6bf7df2f7644822c52a5cb73af8535a854e -SIZE (KDE/release-service/26.04.2/libkexiv2-26.04.2.tar.xz) = 50648 +TIMESTAMP = 1782826835 +SHA256 (KDE/release-service/26.04.3/libkexiv2-26.04.3.tar.xz) = dd5ddbf107dd9a51454ae83b0537ca80ce31e65da649c0a8db745e356d0d0064 +SIZE (KDE/release-service/26.04.3/libkexiv2-26.04.3.tar.xz) = 50676 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 740dc0a353da..749594fc6d37 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478496 -SHA256 (KDE/release-service/26.04.2/libksane-26.04.2.tar.xz) = 9266e5e33384da1cd7dc8a7fe236ff938e9f075bea9a20560884efcb7fb1c63b -SIZE (KDE/release-service/26.04.2/libksane-26.04.2.tar.xz) = 156196 +TIMESTAMP = 1782826837 +SHA256 (KDE/release-service/26.04.3/libksane-26.04.3.tar.xz) = ca86e492328262cc6d89c1b131139edeb6b4e1eeb15b84fba8a172fe09a25f70 +SIZE (KDE/release-service/26.04.3/libksane-26.04.3.tar.xz) = 156200 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 3b21e3a3c719..d79aa5d48704 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478498 -SHA256 (KDE/release-service/26.04.2/okular-26.04.2.tar.xz) = d51cc5be96f6e491181608b0115af37d20ee15b080b6e42c0c00e29b9e058abe -SIZE (KDE/release-service/26.04.2/okular-26.04.2.tar.xz) = 8237996 +TIMESTAMP = 1782826839 +SHA256 (KDE/release-service/26.04.3/okular-26.04.3.tar.xz) = a6e4a571acd3b70bb67eec476834b009f710540b793091f51f707b53b6facbca +SIZE (KDE/release-service/26.04.3/okular-26.04.3.tar.xz) = 8238500 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index fe45fb24a2e7..ac3887c28ad5 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478499 -SHA256 (KDE/release-service/26.04.2/skanlite-26.04.2.tar.xz) = db358b99b097a5bd4beec9fa160080e390fa1de8748801e663029ed344b1aa47 -SIZE (KDE/release-service/26.04.2/skanlite-26.04.2.tar.xz) = 2392748 +TIMESTAMP = 1782826840 +SHA256 (KDE/release-service/26.04.3/skanlite-26.04.3.tar.xz) = dac757451b430192a00eef7a90aad14f5e59d9460e9ff5fb162922ca47403417 +SIZE (KDE/release-service/26.04.3/skanlite-26.04.3.tar.xz) = 2392760 diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index f11134f60d1a..974b4d62760c 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478501 -SHA256 (KDE/release-service/26.04.2/skanpage-26.04.2.tar.xz) = fd33ecdd76fda81d29398abd4892842c8d8d9a6e3677fd50dc95876f42519d69 -SIZE (KDE/release-service/26.04.2/skanpage-26.04.2.tar.xz) = 1373016 +TIMESTAMP = 1782826842 +SHA256 (KDE/release-service/26.04.3/skanpage-26.04.3.tar.xz) = 7e47a747877ee89d506efd3074d392870b9171749b7ba60f5aca1fd1ad5424a2 +SIZE (KDE/release-service/26.04.3/skanpage-26.04.3.tar.xz) = 1372804 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 5a9486092f49..dc1603c754d0 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478502 -SHA256 (KDE/release-service/26.04.2/konversation-26.04.2.tar.xz) = fc9ec5c697e0043ea86868068df77d7b6c60aa8ecc9664db3873b85270f1a1f5 -SIZE (KDE/release-service/26.04.2/konversation-26.04.2.tar.xz) = 4520256 +TIMESTAMP = 1782994445 +SHA256 (KDE/release-service/26.04.3/konversation-26.04.3.tar.xz) = d9d77080d4d8756ef8cc6767dbe7e59ef055eb7638cf43b129ee5db62357fa77 +SIZE (KDE/release-service/26.04.3/konversation-26.04.3.tar.xz) = 4520236 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 71d88abe62c9..214a37bee1c2 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478504 -SHA256 (KDE/release-service/26.04.2/kiten-26.04.2.tar.xz) = a04e6ab99cc78e59b38f082d4f4411eae3cd10395a79a2bd122805f8fd83afa0 -SIZE (KDE/release-service/26.04.2/kiten-26.04.2.tar.xz) = 11317956 +TIMESTAMP = 1782826846 +SHA256 (KDE/release-service/26.04.3/kiten-26.04.3.tar.xz) = 47a29bd37b8aebe46b5f7fa011a511dbe0252813bcd02fe4ffaeffa64f4418cf +SIZE (KDE/release-service/26.04.3/kiten-26.04.3.tar.xz) = 11316372 diff --git a/japanese/kiten/pkg-plist b/japanese/kiten/pkg-plist index 4c460da39db1..58ab5fa30574 100644 --- a/japanese/kiten/pkg-plist +++ b/japanese/kiten/pkg-plist @@ -1,103 +1,102 @@ bin/kiten bin/kitenkanjibrowser bin/kitenradselect include/libkiten/DictEdict/dictfileedict.h include/libkiten/DictEdict/entryedict.h include/libkiten/DictKanjidic/dictfilekanjidic.h include/libkiten/DictKanjidic/entrykanjidic.h include/libkiten/dictionarymanager.h include/libkiten/dictionarypreferencedialog.h include/libkiten/dictquery.h include/libkiten/entry.h include/libkiten/entrylist.h include/libkiten/historyptrlist.h lib/libkiten.so lib/libkiten.so.6 lib/libkiten.so.6.0.0 share/applications/org.kde.kiten.desktop share/applications/org.kde.kitenkanjibrowser.desktop share/applications/org.kde.kitenradselect.desktop share/config.kcfg/kiten.kcfg share/fonts/kanjistrokeorders/KanjiStrokeOrders.ttf share/icons/hicolor/128x128/apps/kiten.png share/icons/hicolor/16x16/apps/kiten.png share/icons/hicolor/22x22/apps/kiten.png share/icons/hicolor/32x32/apps/kiten.png share/icons/hicolor/48x48/apps/kiten.png share/icons/hicolor/64x64/apps/kiten.png share/icons/hicolor/scalable/apps/kiten.svgz %%DATADIR%%/edict %%DATADIR%%/kanjidic %%DATADIR%%/radkfile %%DATADIR%%/romkana.cnv %%DATADIR%%/vconj share/locale/af/LC_MESSAGES/kiten.mo share/locale/ar/LC_MESSAGES/kiten.mo share/locale/ast/LC_MESSAGES/kiten.mo share/locale/be/LC_MESSAGES/kiten.mo -share/locale/bg/LC_MESSAGES/kiten.mo share/locale/br/LC_MESSAGES/kiten.mo share/locale/bs/LC_MESSAGES/kiten.mo share/locale/ca/LC_MESSAGES/kiten.mo share/locale/ca@valencia/LC_MESSAGES/kiten.mo share/locale/cs/LC_MESSAGES/kiten.mo share/locale/cy/LC_MESSAGES/kiten.mo share/locale/da/LC_MESSAGES/kiten.mo share/locale/de/LC_MESSAGES/kiten.mo share/locale/el/LC_MESSAGES/kiten.mo share/locale/en_GB/LC_MESSAGES/kiten.mo share/locale/eo/LC_MESSAGES/kiten.mo share/locale/es/LC_MESSAGES/kiten.mo share/locale/et/LC_MESSAGES/kiten.mo share/locale/eu/LC_MESSAGES/kiten.mo share/locale/fa/LC_MESSAGES/kiten.mo share/locale/fi/LC_MESSAGES/kiten.mo share/locale/fr/LC_MESSAGES/kiten.mo share/locale/ga/LC_MESSAGES/kiten.mo share/locale/gl/LC_MESSAGES/kiten.mo share/locale/he/LC_MESSAGES/kiten.mo share/locale/hi/LC_MESSAGES/kiten.mo share/locale/hne/LC_MESSAGES/kiten.mo share/locale/hr/LC_MESSAGES/kiten.mo share/locale/hu/LC_MESSAGES/kiten.mo share/locale/ia/LC_MESSAGES/kiten.mo share/locale/is/LC_MESSAGES/kiten.mo share/locale/it/LC_MESSAGES/kiten.mo share/locale/ja/LC_MESSAGES/kiten.mo share/locale/ka/LC_MESSAGES/kiten.mo share/locale/kk/LC_MESSAGES/kiten.mo share/locale/km/LC_MESSAGES/kiten.mo share/locale/ko/LC_MESSAGES/kiten.mo share/locale/lt/LC_MESSAGES/kiten.mo share/locale/lv/LC_MESSAGES/kiten.mo share/locale/mk/LC_MESSAGES/kiten.mo share/locale/ml/LC_MESSAGES/kiten.mo share/locale/mr/LC_MESSAGES/kiten.mo share/locale/ms/LC_MESSAGES/kiten.mo share/locale/nb/LC_MESSAGES/kiten.mo share/locale/nds/LC_MESSAGES/kiten.mo share/locale/ne/LC_MESSAGES/kiten.mo share/locale/nl/LC_MESSAGES/kiten.mo share/locale/nn/LC_MESSAGES/kiten.mo share/locale/oc/LC_MESSAGES/kiten.mo share/locale/pl/LC_MESSAGES/kiten.mo share/locale/pt/LC_MESSAGES/kiten.mo share/locale/pt_BR/LC_MESSAGES/kiten.mo share/locale/ro/LC_MESSAGES/kiten.mo share/locale/ru/LC_MESSAGES/kiten.mo share/locale/sa/LC_MESSAGES/kiten.mo share/locale/se/LC_MESSAGES/kiten.mo share/locale/si/LC_MESSAGES/kiten.mo share/locale/sk/LC_MESSAGES/kiten.mo share/locale/sl/LC_MESSAGES/kiten.mo share/locale/sq/LC_MESSAGES/kiten.mo share/locale/sv/LC_MESSAGES/kiten.mo share/locale/ta/LC_MESSAGES/kiten.mo share/locale/tg/LC_MESSAGES/kiten.mo share/locale/tr/LC_MESSAGES/kiten.mo share/locale/ug/LC_MESSAGES/kiten.mo share/locale/uk/LC_MESSAGES/kiten.mo share/locale/xh/LC_MESSAGES/kiten.mo share/locale/zh_CN/LC_MESSAGES/kiten.mo share/locale/zh_TW/LC_MESSAGES/kiten.mo share/metainfo/org.kde.kiten.appdata.xml diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 6211d833502d..51107bae1408 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478506 -SHA256 (KDE/release-service/26.04.2/kturtle-26.04.2.tar.xz) = 42e306962f4795dba8932e00c5dfc70dc7892b6779ad97e1ac950816c44c0233 -SIZE (KDE/release-service/26.04.2/kturtle-26.04.2.tar.xz) = 1891044 +TIMESTAMP = 1782826847 +SHA256 (KDE/release-service/26.04.3/kturtle-26.04.3.tar.xz) = d5736efad2344a6936ee18367e0cd2c1b0f98cbb6ed89106144a0a7d5047ecf7 +SIZE (KDE/release-service/26.04.3/kturtle-26.04.3.tar.xz) = 1890948 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 3fae0620af1c..d4acccc680dd 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478507 -SHA256 (KDE/release-service/26.04.2/analitza-26.04.2.tar.xz) = 66e9bcdf400595a03dfadc59b45e380b1a6cbe6fbc3522af0d772edf5c35ed2a -SIZE (KDE/release-service/26.04.2/analitza-26.04.2.tar.xz) = 369820 +TIMESTAMP = 1782826849 +SHA256 (KDE/release-service/26.04.3/analitza-26.04.3.tar.xz) = 615b7c244a5baee0be5214c53b8ce37d0a54e69a6fd6b8438c30d7fda45b0746 +SIZE (KDE/release-service/26.04.3/analitza-26.04.3.tar.xz) = 369936 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 60d718ff08d2..a0d4db26b9c1 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478509 -SHA256 (KDE/release-service/26.04.2/cantor-26.04.2.tar.xz) = a1224d780ac8657dfac0f53bfc645aad8bee7f0b2beb9e373212c91dd2f4dcf6 -SIZE (KDE/release-service/26.04.2/cantor-26.04.2.tar.xz) = 10927460 +TIMESTAMP = 1782826851 +SHA256 (KDE/release-service/26.04.3/cantor-26.04.3.tar.xz) = f0e9734410070b6ecb54dfe042862405b4ef01d65533c0be0386d13b9fdf7250 +SIZE (KDE/release-service/26.04.3/cantor-26.04.3.tar.xz) = 10921248 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index 52092003feec..c0aa87b055ba 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,168 +1,167 @@ bin/cantor bin/cantor_pythonserver %%R%%bin/cantor_rserver bin/cantor_scripteditor include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/keywordsmanager.h include/cantor/latexresult.h include/cantor/mimeresult.h include/cantor/panelplugin.h include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cantor_pythonbackend.so lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% lib/libcantorlibs.so.28 %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor_plugins/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor_plugins/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_documentationpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor_plugins/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/kf6/parts/cantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octave/graphic_packages.xml %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/python/graphic_packages.xml %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/kalgebrabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg.in share/config.kcfg/pythonbackend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/128x128/apps/cantor.png share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/knsrcfiles/cantor-documentation.knsrc share/knsrcfiles/cantor.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_kalgebra.knsrc share/knsrcfiles/cantor_maxima.knsrc share/knsrcfiles/cantor_octave.knsrc share/knsrcfiles/cantor_python.knsrc share/knsrcfiles/cantor_qalculate.knsrc %%R%%share/knsrcfiles/cantor_r.knsrc share/knsrcfiles/cantor_sage.knsrc share/knsrcfiles/cantor_scilab.knsrc share/locale/ar/LC_MESSAGES/cantor.mo -share/locale/bg/LC_MESSAGES/cantor.mo share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/he/LC_MESSAGES/cantor.mo share/locale/hi/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/ka/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sa/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/ta/LC_MESSAGES/cantor.mo share/locale/th/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml share/mime/packages/cantor.xml diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index c9eda36620da..2c2501397b01 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478511 -SHA256 (KDE/release-service/26.04.2/kalgebra-26.04.2.tar.xz) = 7c33d1436f8eadec3dfd9a9f34ed665c1e298ab840b92823ba3ac01b59e03387 -SIZE (KDE/release-service/26.04.2/kalgebra-26.04.2.tar.xz) = 951740 +TIMESTAMP = 1782826853 +SHA256 (KDE/release-service/26.04.3/kalgebra-26.04.3.tar.xz) = 51901b4407fb5d6c7ae43df4ef224b0672339a7d3834a7bc470feb2f169bb3b6 +SIZE (KDE/release-service/26.04.3/kalgebra-26.04.3.tar.xz) = 951704 diff --git a/math/kalk/distinfo b/math/kalk/distinfo index e39e2000c5b9..6630605f4020 100644 --- a/math/kalk/distinfo +++ b/math/kalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478511 -SHA256 (KDE/release-service/26.04.2/kalk-26.04.2.tar.xz) = 678215a033bc13a30075304a4c344f259d5c072d15af579fa0aa74496e7a9f63 -SIZE (KDE/release-service/26.04.2/kalk-26.04.2.tar.xz) = 87816 +TIMESTAMP = 1782826853 +SHA256 (KDE/release-service/26.04.3/kalk-26.04.3.tar.xz) = f56343fbf9c198483da46375e7f17f40b8f9282a02f98131c52ad466adcf5a92 +SIZE (KDE/release-service/26.04.3/kalk-26.04.3.tar.xz) = 88400 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index a13b51cdd532..d7707eb12126 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478513 -SHA256 (KDE/release-service/26.04.2/kbruch-26.04.2.tar.xz) = af81430b703edc70091a507f911ce66377bc720eed3e88e781a4ce8b9d1db343 -SIZE (KDE/release-service/26.04.2/kbruch-26.04.2.tar.xz) = 5163104 +TIMESTAMP = 1782826855 +SHA256 (KDE/release-service/26.04.3/kbruch-26.04.3.tar.xz) = 3eae3f9a99ead74cd509f87d7c9e9c6cd91977ec8b6ee68cf0c80371d6b5e273 +SIZE (KDE/release-service/26.04.3/kbruch-26.04.3.tar.xz) = 5160824 diff --git a/math/kbruch/pkg-plist b/math/kbruch/pkg-plist index 312a4a460d6b..a27be8bb09c0 100644 --- a/math/kbruch/pkg-plist +++ b/math/kbruch/pkg-plist @@ -1,109 +1,108 @@ bin/kbruch share/applications/org.kde.kbruch.desktop share/config.kcfg/kbruch.kcfg share/icons/hicolor/128x128/apps/kbruch.png share/icons/hicolor/16x16/apps/kbruch.png share/icons/hicolor/22x22/apps/kbruch.png share/icons/hicolor/32x32/apps/kbruch.png share/icons/hicolor/48x48/apps/kbruch.png share/icons/hicolor/64x64/apps/kbruch.png share/icons/hicolor/scalable/apps/kbruch.svgz %%DATADIR%%/pics/exercise_arithmetics.png %%DATADIR%%/pics/exercise_compare.png %%DATADIR%%/pics/exercise_conversion.png %%DATADIR%%/pics/exercise_factorization.png %%DATADIR%%/pics/exercise_mixed.png %%DATADIR%%/pics/exercise_percentage.png %%DATADIR%%/pics/icon_back_arrow.png %%DATADIR%%/pics/icon_freestyle.png %%DATADIR%%/pics/icon_freestyle_1.png %%DATADIR%%/pics/icon_learning.png %%DATADIR%%/pics/icon_learning_1.png %%DATADIR%%/pics/icon_test_case.png %%DATADIR%%/pics/icon_test_case_1.png share/locale/ar/LC_MESSAGES/kbruch.mo share/locale/ast/LC_MESSAGES/kbruch.mo share/locale/be/LC_MESSAGES/kbruch.mo -share/locale/bg/LC_MESSAGES/kbruch.mo share/locale/bn/LC_MESSAGES/kbruch.mo share/locale/br/LC_MESSAGES/kbruch.mo share/locale/bs/LC_MESSAGES/kbruch.mo share/locale/ca/LC_MESSAGES/kbruch.mo share/locale/ca@valencia/LC_MESSAGES/kbruch.mo share/locale/cs/LC_MESSAGES/kbruch.mo share/locale/cy/LC_MESSAGES/kbruch.mo share/locale/da/LC_MESSAGES/kbruch.mo share/locale/de/LC_MESSAGES/kbruch.mo share/locale/el/LC_MESSAGES/kbruch.mo share/locale/en_GB/LC_MESSAGES/kbruch.mo share/locale/eo/LC_MESSAGES/kbruch.mo share/locale/es/LC_MESSAGES/kbruch.mo share/locale/et/LC_MESSAGES/kbruch.mo share/locale/eu/LC_MESSAGES/kbruch.mo share/locale/fa/LC_MESSAGES/kbruch.mo share/locale/fi/LC_MESSAGES/kbruch.mo share/locale/fr/LC_MESSAGES/kbruch.mo share/locale/ga/LC_MESSAGES/kbruch.mo share/locale/gl/LC_MESSAGES/kbruch.mo share/locale/he/LC_MESSAGES/kbruch.mo share/locale/hi/LC_MESSAGES/kbruch.mo share/locale/hne/LC_MESSAGES/kbruch.mo share/locale/hr/LC_MESSAGES/kbruch.mo share/locale/hu/LC_MESSAGES/kbruch.mo share/locale/ia/LC_MESSAGES/kbruch.mo share/locale/is/LC_MESSAGES/kbruch.mo share/locale/it/LC_MESSAGES/kbruch.mo share/locale/ja/LC_MESSAGES/kbruch.mo share/locale/ka/LC_MESSAGES/kbruch.mo share/locale/kk/LC_MESSAGES/kbruch.mo share/locale/km/LC_MESSAGES/kbruch.mo share/locale/ko/LC_MESSAGES/kbruch.mo share/locale/lt/LC_MESSAGES/kbruch.mo share/locale/lv/LC_MESSAGES/kbruch.mo share/locale/mk/LC_MESSAGES/kbruch.mo share/locale/ml/LC_MESSAGES/kbruch.mo share/locale/mr/LC_MESSAGES/kbruch.mo share/locale/ms/LC_MESSAGES/kbruch.mo share/locale/nb/LC_MESSAGES/kbruch.mo share/locale/nds/LC_MESSAGES/kbruch.mo share/locale/ne/LC_MESSAGES/kbruch.mo share/locale/nl/LC_MESSAGES/kbruch.mo share/locale/nn/LC_MESSAGES/kbruch.mo share/locale/oc/LC_MESSAGES/kbruch.mo share/locale/pa/LC_MESSAGES/kbruch.mo share/locale/pl/LC_MESSAGES/kbruch.mo share/locale/pt/LC_MESSAGES/kbruch.mo share/locale/pt_BR/LC_MESSAGES/kbruch.mo share/locale/ro/LC_MESSAGES/kbruch.mo share/locale/ru/LC_MESSAGES/kbruch.mo share/locale/sa/LC_MESSAGES/kbruch.mo share/locale/se/LC_MESSAGES/kbruch.mo share/locale/si/LC_MESSAGES/kbruch.mo share/locale/sk/LC_MESSAGES/kbruch.mo share/locale/sl/LC_MESSAGES/kbruch.mo share/locale/sq/LC_MESSAGES/kbruch.mo share/locale/sv/LC_MESSAGES/kbruch.mo share/locale/ta/LC_MESSAGES/kbruch.mo share/locale/tg/LC_MESSAGES/kbruch.mo share/locale/th/LC_MESSAGES/kbruch.mo share/locale/tr/LC_MESSAGES/kbruch.mo share/locale/ug/LC_MESSAGES/kbruch.mo share/locale/uk/LC_MESSAGES/kbruch.mo share/locale/xh/LC_MESSAGES/kbruch.mo share/locale/zh_CN/LC_MESSAGES/kbruch.mo share/locale/zh_TW/LC_MESSAGES/kbruch.mo share/man/ca/man1/kbruch.1.gz share/man/de/man1/kbruch.1.gz share/man/es/man1/kbruch.1.gz share/man/et/man1/kbruch.1.gz share/man/fr/man1/kbruch.1.gz share/man/it/man1/kbruch.1.gz share/man/man1/kbruch.1.gz share/man/nl/man1/kbruch.1.gz share/man/pt/man1/kbruch.1.gz share/man/pt_BR/man1/kbruch.1.gz share/man/ru/man1/kbruch.1.gz share/man/sl/man1/kbruch.1.gz share/man/sv/man1/kbruch.1.gz share/man/uk/man1/kbruch.1.gz share/metainfo/org.kde.kbruch.appdata.xml diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 37c26f476659..04d9cd37bfa8 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478514 -SHA256 (KDE/release-service/26.04.2/kcalc-26.04.2.tar.xz) = dbdf29db1774d884e2d7ee543c6b919cd0f578dbd517a449a794bf854509b30d -SIZE (KDE/release-service/26.04.2/kcalc-26.04.2.tar.xz) = 486320 +TIMESTAMP = 1782826857 +SHA256 (KDE/release-service/26.04.3/kcalc-26.04.3.tar.xz) = 45bd63e3791eaef421a7e0172ce26f5df8da5be5f5d1052cb23be72e25685208 +SIZE (KDE/release-service/26.04.3/kcalc-26.04.3.tar.xz) = 486420 diff --git a/math/kig/distinfo b/math/kig/distinfo index c90f10ad4ca5..ee00b2a7d641 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478516 -SHA256 (KDE/release-service/26.04.2/kig-26.04.2.tar.xz) = 083d67ee5596bcad29f35a7ca59c072610504cf89afda618c1bdba9227d4355b -SIZE (KDE/release-service/26.04.2/kig-26.04.2.tar.xz) = 3266940 +TIMESTAMP = 1782826859 +SHA256 (KDE/release-service/26.04.3/kig-26.04.3.tar.xz) = e357e5e890bd95a1a44d0d5be8ba8eec8745e018dd4e5291f778b962d1f15ee0 +SIZE (KDE/release-service/26.04.3/kig-26.04.3.tar.xz) = 3268712 diff --git a/math/kig/pkg-plist b/math/kig/pkg-plist index d7121d489a79..5dbf0ec7327f 100644 --- a/math/kig/pkg-plist +++ b/math/kig/pkg-plist @@ -1,380 +1,381 @@ bin/kig bin/pykig.py %%QT_PLUGINDIR%%/kf6/parts/kigpart.so share/applications/org.kde.kig.desktop share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/mimetypes/application-x-kig.png share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/mimetypes/application-x-kig.png share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/mimetypes/application-x-kig.png share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/mimetypes/application-x-kig.png share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/mimetypes/application-x-kig.png share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/mimetypes/application-x-kig.png share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz share/katepart5/syntax/python-kig.xml %%DATADIR%%/builtin-macros/circle_by_center_and_line.kigt %%DATADIR%%/builtin-macros/circle_by_point_and_diameter.kigt %%DATADIR%%/builtin-macros/equitriangle.kigt %%DATADIR%%/builtin-macros/evolute.kigt %%DATADIR%%/builtin-macros/osculating_circle.kigt %%DATADIR%%/builtin-macros/square.kigt %%DATADIR%%/builtin-macros/vector_difference.kigt %%DATADIR%%/icons/hicolor/16x16/actions/kig_xfig.png %%DATADIR%%/icons/hicolor/22x22/actions/angle.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_size.png %%DATADIR%%/icons/hicolor/22x22/actions/arc.png %%DATADIR%%/icons/hicolor/22x22/actions/arc_center.png %%DATADIR%%/icons/hicolor/22x22/actions/areaCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/attacher.png %%DATADIR%%/icons/hicolor/22x22/actions/baseCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/bezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/beziercurves.png %%DATADIR%%/icons/hicolor/22x22/actions/bisection.png %%DATADIR%%/icons/hicolor/22x22/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/22x22/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcl.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebpd.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebps.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebtp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/circumference.png %%DATADIR%%/icons/hicolor/22x22/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/22x22/actions/conicb5p.png %%DATADIR%%/icons/hicolor/22x22/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/convexhull.png %%DATADIR%%/icons/hicolor/22x22/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/directrix.png %%DATADIR%%/icons/hicolor/22x22/actions/distance.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/22x22/actions/en.png %%DATADIR%%/icons/hicolor/22x22/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/22x22/actions/equitriangle.png %%DATADIR%%/icons/hicolor/22x22/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/22x22/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/22x22/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/22x22/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/22x22/actions/intersection.png %%DATADIR%%/icons/hicolor/22x22/actions/inversion.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_text.png %%DATADIR%%/icons/hicolor/22x22/actions/line.png %%DATADIR%%/icons/hicolor/22x22/actions/linebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/locus.png %%DATADIR%%/icons/hicolor/22x22/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/openpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/paint.png %%DATADIR%%/icons/hicolor/22x22/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/22x22/actions/parallel.png %%DATADIR%%/icons/hicolor/22x22/actions/perpendicular.png %%DATADIR%%/icons/hicolor/22x22/actions/point.png %%DATADIR%%/icons/hicolor/22x22/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/22x22/actions/pointxy.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonsides.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/22x22/actions/projection.png %%DATADIR%%/icons/hicolor/22x22/actions/python.png %%DATADIR%%/icons/hicolor/22x22/actions/radicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/ray.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/rotation.png %%DATADIR%%/icons/hicolor/22x22/actions/scale.png %%DATADIR%%/icons/hicolor/22x22/actions/segment.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/22x22/actions/similitude.png %%DATADIR%%/icons/hicolor/22x22/actions/sizer.png %%DATADIR%%/icons/hicolor/22x22/actions/slope.png %%DATADIR%%/icons/hicolor/22x22/actions/square.png %%DATADIR%%/icons/hicolor/22x22/actions/stretch.png %%DATADIR%%/icons/hicolor/22x22/actions/tangent.png %%DATADIR%%/icons/hicolor/22x22/actions/test.png %%DATADIR%%/icons/hicolor/22x22/actions/testcollinear.png %%DATADIR%%/icons/hicolor/22x22/actions/testcontains.png %%DATADIR%%/icons/hicolor/22x22/actions/testdistance.png %%DATADIR%%/icons/hicolor/22x22/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/22x22/actions/testparallel.png %%DATADIR%%/icons/hicolor/22x22/actions/translation.png %%DATADIR%%/icons/hicolor/22x22/actions/triangle.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/vectordifference.png %%DATADIR%%/icons/hicolor/22x22/actions/vectorsum.png %%DATADIR%%/icons/hicolor/22x22/actions/view_fit_to_page.png %%DATADIR%%/icons/hicolor/22x22/actions/w.png %%DATADIR%%/icons/hicolor/32x32/actions/angle.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_size.png %%DATADIR%%/icons/hicolor/32x32/actions/arc.png %%DATADIR%%/icons/hicolor/32x32/actions/arc_center.png %%DATADIR%%/icons/hicolor/32x32/actions/areaCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/attacher.png %%DATADIR%%/icons/hicolor/32x32/actions/baseCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/bezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/beziercurves.png %%DATADIR%%/icons/hicolor/32x32/actions/bisection.png %%DATADIR%%/icons/hicolor/32x32/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/32x32/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcl.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebpd.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebps.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebtp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/circumference.png %%DATADIR%%/icons/hicolor/32x32/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/32x32/actions/conicb5p.png %%DATADIR%%/icons/hicolor/32x32/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/convexhull.png %%DATADIR%%/icons/hicolor/32x32/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/directrix.png %%DATADIR%%/icons/hicolor/32x32/actions/distance.png %%DATADIR%%/icons/hicolor/32x32/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/32x32/actions/en.png %%DATADIR%%/icons/hicolor/32x32/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/32x32/actions/equitriangle.png %%DATADIR%%/icons/hicolor/32x32/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/32x32/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/32x32/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/32x32/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/32x32/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/32x32/actions/intersection.png %%DATADIR%%/icons/hicolor/32x32/actions/inversion.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_text.png %%DATADIR%%/icons/hicolor/32x32/actions/line.png %%DATADIR%%/icons/hicolor/32x32/actions/linebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/locus.png %%DATADIR%%/icons/hicolor/32x32/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/openpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/paint.png %%DATADIR%%/icons/hicolor/32x32/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/32x32/actions/parallel.png %%DATADIR%%/icons/hicolor/32x32/actions/perpendicular.png %%DATADIR%%/icons/hicolor/32x32/actions/point.png %%DATADIR%%/icons/hicolor/32x32/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/32x32/actions/pointxy.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonsides.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/32x32/actions/projection.png %%DATADIR%%/icons/hicolor/32x32/actions/python.png %%DATADIR%%/icons/hicolor/32x32/actions/radicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/ray.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/rotation.png %%DATADIR%%/icons/hicolor/32x32/actions/scale.png %%DATADIR%%/icons/hicolor/32x32/actions/segment.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/32x32/actions/similitude.png %%DATADIR%%/icons/hicolor/32x32/actions/sizer.png %%DATADIR%%/icons/hicolor/32x32/actions/slope.png %%DATADIR%%/icons/hicolor/32x32/actions/square.png %%DATADIR%%/icons/hicolor/32x32/actions/stretch.png %%DATADIR%%/icons/hicolor/32x32/actions/tangent.png %%DATADIR%%/icons/hicolor/32x32/actions/test.png %%DATADIR%%/icons/hicolor/32x32/actions/testcollinear.png %%DATADIR%%/icons/hicolor/32x32/actions/testcontains.png %%DATADIR%%/icons/hicolor/32x32/actions/testdistance.png %%DATADIR%%/icons/hicolor/32x32/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/32x32/actions/testparallel.png %%DATADIR%%/icons/hicolor/32x32/actions/translation.png %%DATADIR%%/icons/hicolor/32x32/actions/triangle.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/actions/vectordifference.png %%DATADIR%%/icons/hicolor/32x32/actions/vectorsum.png %%DATADIR%%/icons/hicolor/32x32/actions/w.png %%DATADIR%%/icons/hicolor/scalable/actions/angle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_bisector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_size.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc_center.svgz %%DATADIR%%/icons/hicolor/scalable/actions/areaCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/attacher.svgz %%DATADIR%%/icons/hicolor/scalable/actions/baseCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/beziercurves.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bisection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centerofcurvature.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centralsymmetry.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcl.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebpd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebps.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circumference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicasymptotes.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicb5p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/coniclineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicsradicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/controlpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/convexhull.svgz %%DATADIR%%/icons/hicolor/scalable/actions/curvelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/directrix.svgz %%DATADIR%%/icons/hicolor/scalable/actions/distance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ellipsebffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/en.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equilateralhyperbolab4p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equitriangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericaffinity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericprojectivity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/halflinebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/harmonichomology.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hexagonbcv.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hyperbolabffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/intersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/inversion.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_numericvalue.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_text.svgz %%DATADIR%%/icons/hicolor/scalable/actions/line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/linebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/locus.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mirrorpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/openpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/paint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parabolabtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/perpendicular.svgz %%DATADIR%%/icons/hicolor/scalable/actions/point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointOnLine.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointxy.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonsides.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonvertices.svgz %%DATADIR%%/icons/hicolor/scalable/actions/projection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/python.svgz %%DATADIR%%/icons/hicolor/scalable/actions/radicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ray.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rotation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/scale.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_golden_point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_midpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segmentaxis.svgz %%DATADIR%%/icons/hicolor/scalable/actions/similitude.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sizer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/slope.svgz %%DATADIR%%/icons/hicolor/scalable/actions/square.svgz %%DATADIR%%/icons/hicolor/scalable/actions/stretch.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tangent.svgz %%DATADIR%%/icons/hicolor/scalable/actions/test.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcollinear.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcontains.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testdistance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testorthogonal.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testparallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/translation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/triangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectordifference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectorsum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/w.svgz share/locale/ar/LC_MESSAGES/kig.mo share/locale/be/LC_MESSAGES/kig.mo share/locale/bg/LC_MESSAGES/kig.mo share/locale/bn/LC_MESSAGES/kig.mo share/locale/br/LC_MESSAGES/kig.mo share/locale/bs/LC_MESSAGES/kig.mo share/locale/ca/LC_MESSAGES/kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo share/locale/cs/LC_MESSAGES/kig.mo share/locale/cy/LC_MESSAGES/kig.mo share/locale/da/LC_MESSAGES/kig.mo share/locale/de/LC_MESSAGES/kig.mo share/locale/el/LC_MESSAGES/kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo share/locale/eo/LC_MESSAGES/kig.mo share/locale/es/LC_MESSAGES/kig.mo share/locale/et/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/fa/LC_MESSAGES/kig.mo share/locale/fi/LC_MESSAGES/kig.mo share/locale/fr/LC_MESSAGES/kig.mo share/locale/ga/LC_MESSAGES/kig.mo share/locale/gl/LC_MESSAGES/kig.mo share/locale/hi/LC_MESSAGES/kig.mo share/locale/hne/LC_MESSAGES/kig.mo share/locale/hr/LC_MESSAGES/kig.mo share/locale/hu/LC_MESSAGES/kig.mo share/locale/is/LC_MESSAGES/kig.mo share/locale/it/LC_MESSAGES/kig.mo share/locale/ja/LC_MESSAGES/kig.mo share/locale/ka/LC_MESSAGES/kig.mo share/locale/kk/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kig.mo +share/locale/ko/LC_MESSAGES/kig.mo share/locale/lt/LC_MESSAGES/kig.mo share/locale/lv/LC_MESSAGES/kig.mo share/locale/mai/LC_MESSAGES/kig.mo share/locale/mk/LC_MESSAGES/kig.mo share/locale/ml/LC_MESSAGES/kig.mo share/locale/mr/LC_MESSAGES/kig.mo share/locale/ms/LC_MESSAGES/kig.mo share/locale/nb/LC_MESSAGES/kig.mo share/locale/nds/LC_MESSAGES/kig.mo share/locale/ne/LC_MESSAGES/kig.mo share/locale/nl/LC_MESSAGES/kig.mo share/locale/nn/LC_MESSAGES/kig.mo share/locale/oc/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pl/LC_MESSAGES/kig.mo share/locale/pt/LC_MESSAGES/kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo share/locale/ro/LC_MESSAGES/kig.mo share/locale/ru/LC_MESSAGES/kig.mo share/locale/se/LC_MESSAGES/kig.mo share/locale/si/LC_MESSAGES/kig.mo share/locale/sk/LC_MESSAGES/kig.mo share/locale/sl/LC_MESSAGES/kig.mo share/locale/sq/LC_MESSAGES/kig.mo share/locale/sv/LC_MESSAGES/kig.mo share/locale/ta/LC_MESSAGES/kig.mo share/locale/tg/LC_MESSAGES/kig.mo share/locale/tr/LC_MESSAGES/kig.mo share/locale/ug/LC_MESSAGES/kig.mo share/locale/uk/LC_MESSAGES/kig.mo share/locale/xh/LC_MESSAGES/kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/man/ca/man1/kig.1.gz share/man/de/man1/kig.1.gz share/man/es/man1/kig.1.gz share/man/et/man1/kig.1.gz share/man/fr/man1/kig.1.gz share/man/it/man1/kig.1.gz share/man/man1/kig.1.gz share/man/nl/man1/kig.1.gz share/man/pt_BR/man1/kig.1.gz share/man/ru/man1/kig.1.gz share/man/sv/man1/kig.1.gz share/man/uk/man1/kig.1.gz share/metainfo/org.kde.kig.metainfo.xml diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 87641970a5ec..a6c14f1bf583 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478518 -SHA256 (KDE/release-service/26.04.2/kmplot-26.04.2.tar.xz) = a09faca5c4285228bf36394691fcb054221a3776c29b81115014f0f34acd271b -SIZE (KDE/release-service/26.04.2/kmplot-26.04.2.tar.xz) = 3031200 +TIMESTAMP = 1782826860 +SHA256 (KDE/release-service/26.04.3/kmplot-26.04.3.tar.xz) = 259f72cce949cc3166275f2d2266db3432263ea2c5a7af0e2a9cf3b5a2c8a0de +SIZE (KDE/release-service/26.04.3/kmplot-26.04.3.tar.xz) = 3025912 diff --git a/math/kmplot/pkg-plist b/math/kmplot/pkg-plist index 159ad35ef34c..36020ac6d448 100644 --- a/math/kmplot/pkg-plist +++ b/math/kmplot/pkg-plist @@ -1,104 +1,103 @@ bin/kmplot %%QT_PLUGINDIR%%/kf6/parts/kmplotpart.so share/applications/org.kde.kmplot.desktop share/config.kcfg/kmplot.kcfg share/dbus-1/interfaces/org.kde.kmplot.KmPlot.xml share/dbus-1/interfaces/org.kde.kmplot.MainDlg.xml share/dbus-1/interfaces/org.kde.kmplot.Parser.xml share/dbus-1/interfaces/org.kde.kmplot.View.xml share/icons/hicolor/128x128/apps/kmplot.png share/icons/hicolor/16x16/apps/kmplot.png share/icons/hicolor/22x22/apps/kmplot.png share/icons/hicolor/32x32/apps/kmplot.png share/icons/hicolor/48x48/apps/kmplot.png share/icons/hicolor/64x64/apps/kmplot.png share/icons/hicolor/scalable/apps/kmplot.svgz share/locale/af/LC_MESSAGES/kmplot.mo share/locale/ar/LC_MESSAGES/kmplot.mo share/locale/be/LC_MESSAGES/kmplot.mo -share/locale/bg/LC_MESSAGES/kmplot.mo share/locale/bn/LC_MESSAGES/kmplot.mo share/locale/br/LC_MESSAGES/kmplot.mo share/locale/bs/LC_MESSAGES/kmplot.mo share/locale/ca/LC_MESSAGES/kmplot.mo share/locale/ca@valencia/LC_MESSAGES/kmplot.mo share/locale/cs/LC_MESSAGES/kmplot.mo share/locale/cy/LC_MESSAGES/kmplot.mo share/locale/da/LC_MESSAGES/kmplot.mo share/locale/de/LC_MESSAGES/kmplot.mo share/locale/el/LC_MESSAGES/kmplot.mo share/locale/en_GB/LC_MESSAGES/kmplot.mo share/locale/eo/LC_MESSAGES/kmplot.mo share/locale/es/LC_MESSAGES/kmplot.mo share/locale/et/LC_MESSAGES/kmplot.mo share/locale/eu/LC_MESSAGES/kmplot.mo share/locale/fa/LC_MESSAGES/kmplot.mo share/locale/fi/LC_MESSAGES/kmplot.mo share/locale/fr/LC_MESSAGES/kmplot.mo share/locale/ga/LC_MESSAGES/kmplot.mo share/locale/gl/LC_MESSAGES/kmplot.mo share/locale/he/LC_MESSAGES/kmplot.mo share/locale/hi/LC_MESSAGES/kmplot.mo share/locale/hne/LC_MESSAGES/kmplot.mo share/locale/hr/LC_MESSAGES/kmplot.mo share/locale/hu/LC_MESSAGES/kmplot.mo share/locale/ia/LC_MESSAGES/kmplot.mo share/locale/is/LC_MESSAGES/kmplot.mo share/locale/it/LC_MESSAGES/kmplot.mo share/locale/ja/LC_MESSAGES/kmplot.mo share/locale/ka/LC_MESSAGES/kmplot.mo share/locale/kk/LC_MESSAGES/kmplot.mo share/locale/km/LC_MESSAGES/kmplot.mo share/locale/ko/LC_MESSAGES/kmplot.mo share/locale/lt/LC_MESSAGES/kmplot.mo share/locale/lv/LC_MESSAGES/kmplot.mo share/locale/mai/LC_MESSAGES/kmplot.mo share/locale/mk/LC_MESSAGES/kmplot.mo share/locale/ml/LC_MESSAGES/kmplot.mo share/locale/mr/LC_MESSAGES/kmplot.mo share/locale/ms/LC_MESSAGES/kmplot.mo share/locale/nb/LC_MESSAGES/kmplot.mo share/locale/nds/LC_MESSAGES/kmplot.mo share/locale/ne/LC_MESSAGES/kmplot.mo share/locale/nl/LC_MESSAGES/kmplot.mo share/locale/nn/LC_MESSAGES/kmplot.mo share/locale/oc/LC_MESSAGES/kmplot.mo share/locale/pa/LC_MESSAGES/kmplot.mo share/locale/pl/LC_MESSAGES/kmplot.mo share/locale/pt/LC_MESSAGES/kmplot.mo share/locale/pt_BR/LC_MESSAGES/kmplot.mo share/locale/ro/LC_MESSAGES/kmplot.mo share/locale/ru/LC_MESSAGES/kmplot.mo share/locale/sa/LC_MESSAGES/kmplot.mo share/locale/se/LC_MESSAGES/kmplot.mo share/locale/si/LC_MESSAGES/kmplot.mo share/locale/sk/LC_MESSAGES/kmplot.mo share/locale/sl/LC_MESSAGES/kmplot.mo share/locale/sq/LC_MESSAGES/kmplot.mo share/locale/sv/LC_MESSAGES/kmplot.mo share/locale/ta/LC_MESSAGES/kmplot.mo share/locale/tg/LC_MESSAGES/kmplot.mo share/locale/tr/LC_MESSAGES/kmplot.mo share/locale/ug/LC_MESSAGES/kmplot.mo share/locale/uk/LC_MESSAGES/kmplot.mo share/locale/vi/LC_MESSAGES/kmplot.mo share/locale/xh/LC_MESSAGES/kmplot.mo share/locale/zh_CN/LC_MESSAGES/kmplot.mo share/locale/zh_TW/LC_MESSAGES/kmplot.mo share/man/ca/man1/kmplot.1.gz share/man/de/man1/kmplot.1.gz share/man/es/man1/kmplot.1.gz share/man/et/man1/kmplot.1.gz share/man/fr/man1/kmplot.1.gz share/man/gl/man1/kmplot.1.gz share/man/it/man1/kmplot.1.gz share/man/man1/kmplot.1.gz share/man/nl/man1/kmplot.1.gz share/man/pl/man1/kmplot.1.gz share/man/pt/man1/kmplot.1.gz share/man/pt_BR/man1/kmplot.1.gz share/man/ru/man1/kmplot.1.gz share/man/sl/man1/kmplot.1.gz share/man/sv/man1/kmplot.1.gz share/man/uk/man1/kmplot.1.gz share/metainfo/org.kde.kmplot.appdata.xml diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 472063a28c75..a37c55f8b062 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478519 -SHA256 (KDE/release-service/26.04.2/rocs-26.04.2.tar.xz) = dee5f9fb0e7d782e5d336174dadc43088f6235839ec5baa9e352c2e82eabd13d -SIZE (KDE/release-service/26.04.2/rocs-26.04.2.tar.xz) = 1578588 +TIMESTAMP = 1782826862 +SHA256 (KDE/release-service/26.04.3/rocs-26.04.3.tar.xz) = 603b78382fee164dd20ea2b0319ec68ce70556c720a8c0900acddb3158a91dde +SIZE (KDE/release-service/26.04.3/rocs-26.04.3.tar.xz) = 1578108 diff --git a/math/rocs/pkg-plist b/math/rocs/pkg-plist index 87b9cf5e39cf..a1fc3d9c0338 100644 --- a/math/rocs/pkg-plist +++ b/math/rocs/pkg-plist @@ -1,144 +1,142 @@ bin/rocs include/rocs/edge.h include/rocs/edgetype.h include/rocs/graphdocument.h include/rocs/graphtheory_export.h include/rocs/node.h include/rocs/nodetype.h lib/librocsgraphtheory.so lib/librocsgraphtheory.so.0 %%QT_PLUGINDIR%%/rocs/editorplugins/assignvaluesplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/generategraphplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/graphlayoutplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/transformedgesplugin.so share/applications/org.kde.rocs.desktop share/config.kcfg/rocs.kcfg share/icons/hicolor/128x128/apps/rocs.png share/icons/hicolor/16x16/apps/rocs.png share/icons/hicolor/22x22/apps/rocs.png share/icons/hicolor/32x32/apps/rocs.png share/icons/hicolor/48x48/apps/rocs.png share/icons/hicolor/64x64/apps/rocs.png share/icons/hicolor/scalable/actions/rocsadvancedsetup.svgz share/icons/hicolor/scalable/actions/rocsalignbottom.svgz share/icons/hicolor/scalable/actions/rocsaligncircle.svgz share/icons/hicolor/scalable/actions/rocsalignleft.svgz share/icons/hicolor/scalable/actions/rocsalignmiddle.svgz share/icons/hicolor/scalable/actions/rocsalignright.svgz share/icons/hicolor/scalable/actions/rocsaligntop.svgz share/icons/hicolor/scalable/actions/rocsaligntree.svgz share/icons/hicolor/scalable/actions/rocsalignvmiddle.svgz share/icons/hicolor/scalable/actions/rocsbidirectional.svgz share/icons/hicolor/scalable/actions/rocsdelete.svgz share/icons/hicolor/scalable/actions/rocsedge.svgz share/icons/hicolor/scalable/actions/rocsnode.svgz share/icons/hicolor/scalable/actions/rocsselect.svgz share/icons/hicolor/scalable/actions/rocsunidirectional.svgz share/icons/hicolor/scalable/actions/rocsvisible.svgz share/icons/hicolor/scalable/apps/rocs.svgz share/locale/ar/LC_MESSAGES/libgraphtheory.mo share/locale/ar/LC_MESSAGES/rocs.mo -share/locale/bg/LC_MESSAGES/libgraphtheory.mo -share/locale/bg/LC_MESSAGES/rocs.mo share/locale/bs/LC_MESSAGES/libgraphtheory.mo share/locale/bs/LC_MESSAGES/rocs.mo share/locale/ca/LC_MESSAGES/libgraphtheory.mo share/locale/ca/LC_MESSAGES/rocs.mo share/locale/ca@valencia/LC_MESSAGES/libgraphtheory.mo share/locale/ca@valencia/LC_MESSAGES/rocs.mo share/locale/cs/LC_MESSAGES/libgraphtheory.mo share/locale/cs/LC_MESSAGES/rocs.mo share/locale/da/LC_MESSAGES/libgraphtheory.mo share/locale/da/LC_MESSAGES/rocs.mo share/locale/de/LC_MESSAGES/libgraphtheory.mo share/locale/de/LC_MESSAGES/rocs.mo share/locale/el/LC_MESSAGES/libgraphtheory.mo share/locale/el/LC_MESSAGES/rocs.mo share/locale/en_GB/LC_MESSAGES/libgraphtheory.mo share/locale/en_GB/LC_MESSAGES/rocs.mo share/locale/eo/LC_MESSAGES/libgraphtheory.mo share/locale/eo/LC_MESSAGES/rocs.mo share/locale/es/LC_MESSAGES/libgraphtheory.mo share/locale/es/LC_MESSAGES/rocs.mo share/locale/et/LC_MESSAGES/libgraphtheory.mo share/locale/et/LC_MESSAGES/rocs.mo share/locale/eu/LC_MESSAGES/libgraphtheory.mo share/locale/eu/LC_MESSAGES/rocs.mo share/locale/fi/LC_MESSAGES/libgraphtheory.mo share/locale/fi/LC_MESSAGES/rocs.mo share/locale/fr/LC_MESSAGES/libgraphtheory.mo share/locale/fr/LC_MESSAGES/rocs.mo share/locale/ga/LC_MESSAGES/libgraphtheory.mo share/locale/ga/LC_MESSAGES/rocs.mo share/locale/gl/LC_MESSAGES/libgraphtheory.mo share/locale/gl/LC_MESSAGES/rocs.mo share/locale/he/LC_MESSAGES/libgraphtheory.mo share/locale/he/LC_MESSAGES/rocs.mo share/locale/hr/LC_MESSAGES/libgraphtheory.mo share/locale/hr/LC_MESSAGES/rocs.mo share/locale/hu/LC_MESSAGES/libgraphtheory.mo share/locale/hu/LC_MESSAGES/rocs.mo share/locale/it/LC_MESSAGES/libgraphtheory.mo share/locale/it/LC_MESSAGES/rocs.mo share/locale/ja/LC_MESSAGES/libgraphtheory.mo share/locale/ja/LC_MESSAGES/rocs.mo share/locale/ka/LC_MESSAGES/libgraphtheory.mo share/locale/ka/LC_MESSAGES/rocs.mo share/locale/kk/LC_MESSAGES/libgraphtheory.mo share/locale/kk/LC_MESSAGES/rocs.mo share/locale/ko/LC_MESSAGES/libgraphtheory.mo share/locale/ko/LC_MESSAGES/rocs.mo share/locale/lt/LC_MESSAGES/libgraphtheory.mo share/locale/lt/LC_MESSAGES/rocs.mo share/locale/lv/LC_MESSAGES/libgraphtheory.mo share/locale/lv/LC_MESSAGES/rocs.mo share/locale/ml/LC_MESSAGES/libgraphtheory.mo share/locale/ml/LC_MESSAGES/rocs.mo share/locale/mr/LC_MESSAGES/libgraphtheory.mo share/locale/mr/LC_MESSAGES/rocs.mo share/locale/nb/LC_MESSAGES/libgraphtheory.mo share/locale/nb/LC_MESSAGES/rocs.mo share/locale/nds/LC_MESSAGES/libgraphtheory.mo share/locale/nds/LC_MESSAGES/rocs.mo share/locale/nl/LC_MESSAGES/libgraphtheory.mo share/locale/nl/LC_MESSAGES/rocs.mo share/locale/nn/LC_MESSAGES/libgraphtheory.mo share/locale/nn/LC_MESSAGES/rocs.mo share/locale/pa/LC_MESSAGES/libgraphtheory.mo share/locale/pa/LC_MESSAGES/rocs.mo share/locale/pl/LC_MESSAGES/libgraphtheory.mo share/locale/pl/LC_MESSAGES/rocs.mo share/locale/pt/LC_MESSAGES/libgraphtheory.mo share/locale/pt/LC_MESSAGES/rocs.mo share/locale/pt_BR/LC_MESSAGES/libgraphtheory.mo share/locale/pt_BR/LC_MESSAGES/rocs.mo share/locale/ro/LC_MESSAGES/libgraphtheory.mo share/locale/ro/LC_MESSAGES/rocs.mo share/locale/ru/LC_MESSAGES/libgraphtheory.mo share/locale/ru/LC_MESSAGES/rocs.mo share/locale/sk/LC_MESSAGES/libgraphtheory.mo share/locale/sk/LC_MESSAGES/rocs.mo share/locale/sl/LC_MESSAGES/libgraphtheory.mo share/locale/sl/LC_MESSAGES/rocs.mo share/locale/sv/LC_MESSAGES/libgraphtheory.mo share/locale/sv/LC_MESSAGES/rocs.mo share/locale/th/LC_MESSAGES/libgraphtheory.mo share/locale/th/LC_MESSAGES/rocs.mo share/locale/tr/LC_MESSAGES/libgraphtheory.mo share/locale/tr/LC_MESSAGES/rocs.mo share/locale/ug/LC_MESSAGES/libgraphtheory.mo share/locale/ug/LC_MESSAGES/rocs.mo share/locale/uk/LC_MESSAGES/libgraphtheory.mo share/locale/uk/LC_MESSAGES/rocs.mo share/locale/zh_CN/LC_MESSAGES/libgraphtheory.mo share/locale/zh_CN/LC_MESSAGES/rocs.mo share/locale/zh_TW/LC_MESSAGES/libgraphtheory.mo share/locale/zh_TW/LC_MESSAGES/rocs.mo share/metainfo/org.kde.rocs.appdata.xml %%DATADIR%%/kernelapi/console.xml %%DATADIR%%/kernelapi/document.xml %%DATADIR%%/kernelapi/edge.xml %%DATADIR%%/kernelapi/node.xml %%DATADIR%%/plugin/apidoc/objectApi.html %%DATADIR%%/plugin/apidoc/overview.html %%DATADIR%%/schemes/kernelapi.xsd diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 261f937730af..4032f57e4ee7 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478521 -SHA256 (KDE/release-service/26.04.2/artikulate-26.04.2.tar.xz) = bf134e1b2df358ba19120ae124da3763642f0007426ec3e7a97c81d2bcc694c5 -SIZE (KDE/release-service/26.04.2/artikulate-26.04.2.tar.xz) = 1058688 +TIMESTAMP = 1782826864 +SHA256 (KDE/release-service/26.04.3/artikulate-26.04.3.tar.xz) = 21168b0e16c7ce8af783fc28dfb3024b2e1a1295d8d436cfd684c572171035d2 +SIZE (KDE/release-service/26.04.3/artikulate-26.04.3.tar.xz) = 1058744 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index a4d127a04780..5c559bff92d3 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478521 -SHA256 (KDE/release-service/26.04.2/kdeedu-data-26.04.2.tar.xz) = be7e26a14ec91053f407709ab48edffe9c437d374bebf0cadc10d9fd31b29722 -SIZE (KDE/release-service/26.04.2/kdeedu-data-26.04.2.tar.xz) = 338788 +TIMESTAMP = 1782826864 +SHA256 (KDE/release-service/26.04.3/kdeedu-data-26.04.3.tar.xz) = e7b7f90aa23ee5b2b5943003a376f96fa75591716cb7d99a22b5ef08020fa519 +SIZE (KDE/release-service/26.04.3/kdeedu-data-26.04.3.tar.xz) = 338760 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index fd9cd672cb98..65d139bebcbe 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478523 -SHA256 (KDE/release-service/26.04.2/kgeography-26.04.2.tar.xz) = 3bd27fe577ece70dc63c942c5635c035c00d7743236c259e4abc92e3c29a8e8c -SIZE (KDE/release-service/26.04.2/kgeography-26.04.2.tar.xz) = 12468636 +TIMESTAMP = 1782826866 +SHA256 (KDE/release-service/26.04.3/kgeography-26.04.3.tar.xz) = 610044230df482718ed9476c66905a5200e40d78d6484e88bb1d61ef7a4d6ae2 +SIZE (KDE/release-service/26.04.3/kgeography-26.04.3.tar.xz) = 12471400 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 8320e9c6ce1e..e1181a618f1e 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478525 -SHA256 (KDE/release-service/26.04.2/klettres-26.04.2.tar.xz) = 4f6b6758119c2869949d1288c9b344bc97f27dfa74179c5a7167860962b3ac02 -SIZE (KDE/release-service/26.04.2/klettres-26.04.2.tar.xz) = 47192692 +TIMESTAMP = 1782826868 +SHA256 (KDE/release-service/26.04.3/klettres-26.04.3.tar.xz) = 7e52d8215df8cd47c91b64f70df474658b783258060aa61e7fffa25b1b1150c1 +SIZE (KDE/release-service/26.04.3/klettres-26.04.3.tar.xz) = 47189112 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index d205986aa4ee..21654487609c 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478525 -SHA256 (KDE/release-service/26.04.2/ktouch-26.04.2.tar.xz) = fde4463b9623ff11b4926ce31d42717ba997d14c0b902ae65060a63d62c2b3ab -SIZE (KDE/release-service/26.04.2/ktouch-26.04.2.tar.xz) = 4788792 +TIMESTAMP = 1782826868 +SHA256 (KDE/release-service/26.04.3/ktouch-26.04.3.tar.xz) = d3460642df3de3934eb94c41d934234d53a7aaf429a8fb95535c754f6e4cd68a +SIZE (KDE/release-service/26.04.3/ktouch-26.04.3.tar.xz) = 4784844 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index c55aa3cb3959..17f9049f3d4f 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478527 -SHA256 (KDE/release-service/26.04.2/kwordquiz-26.04.2.tar.xz) = 4bd9ea9e05f00ac2b276457335aee5d48c32b77558e4f802c6433056047f55dd -SIZE (KDE/release-service/26.04.2/kwordquiz-26.04.2.tar.xz) = 3615296 +TIMESTAMP = 1782826870 +SHA256 (KDE/release-service/26.04.3/kwordquiz-26.04.3.tar.xz) = 08b11359d1d0aae16dc94faa2a41395d6fee4683a2a0a8d1e4337ea95f65f3e5 +SIZE (KDE/release-service/26.04.3/kwordquiz-26.04.3.tar.xz) = 3614436 diff --git a/misc/kwordquiz/pkg-plist b/misc/kwordquiz/pkg-plist index 005780911458..161f3bed6385 100644 --- a/misc/kwordquiz/pkg-plist +++ b/misc/kwordquiz/pkg-plist @@ -1,238 +1,237 @@ bin/kwordquiz share/applications/org.kde.kwordquiz.desktop share/config.kcfg/kwordquiz.kcfg share/icons/hicolor/128x128/apps/kwordquiz.png share/icons/hicolor/128x128/mimetypes/application-x-kwordquiz.png share/icons/hicolor/16x16/apps/kwordquiz.png share/icons/hicolor/16x16/mimetypes/application-x-kwordquiz.png share/icons/hicolor/22x22/apps/kwordquiz.png share/icons/hicolor/22x22/mimetypes/application-x-kwordquiz.png share/icons/hicolor/32x32/apps/kwordquiz.png share/icons/hicolor/32x32/mimetypes/application-x-kwordquiz.png share/icons/hicolor/48x48/apps/kwordquiz.png share/icons/hicolor/48x48/mimetypes/application-x-kwordquiz.png share/icons/hicolor/64x64/apps/kwordquiz.png share/icons/hicolor/scalable/apps/org.kde.kwordquiz.svg share/knsrcfiles/kwordquiz.knsrc %%DATADIR%%/examples/example.kvtml %%DATADIR%%/examples/fill_in_the_blank.kvtml %%DATADIR%%/examples/french_verbs.kvtml %%DATADIR%%/examples/us_states_and_capitals.kvtml %%DATADIR%%/icons/hicolor/128x128/actions/answer-correct.png %%DATADIR%%/icons/hicolor/128x128/actions/answer.png %%DATADIR%%/icons/hicolor/128x128/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/editor.png %%DATADIR%%/icons/hicolor/128x128/actions/error.png %%DATADIR%%/icons/hicolor/128x128/actions/flash.png %%DATADIR%%/icons/hicolor/128x128/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/languages.png %%DATADIR%%/icons/hicolor/128x128/actions/mode1.png %%DATADIR%%/icons/hicolor/128x128/actions/mode2.png %%DATADIR%%/icons/hicolor/128x128/actions/mode3.png %%DATADIR%%/icons/hicolor/128x128/actions/mode4.png %%DATADIR%%/icons/hicolor/128x128/actions/mode5.png %%DATADIR%%/icons/hicolor/128x128/actions/multiple.png %%DATADIR%%/icons/hicolor/128x128/actions/qa.png %%DATADIR%%/icons/hicolor/128x128/actions/question.png %%DATADIR%%/icons/hicolor/128x128/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/answer-correct.png %%DATADIR%%/icons/hicolor/16x16/actions/answer.png %%DATADIR%%/icons/hicolor/16x16/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/dontknow.png %%DATADIR%%/icons/hicolor/16x16/actions/editor.png %%DATADIR%%/icons/hicolor/16x16/actions/error.png %%DATADIR%%/icons/hicolor/16x16/actions/flash.png %%DATADIR%%/icons/hicolor/16x16/actions/hint.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/know.png %%DATADIR%%/icons/hicolor/16x16/actions/languages.png %%DATADIR%%/icons/hicolor/16x16/actions/markasblank.png %%DATADIR%%/icons/hicolor/16x16/actions/mode1.png %%DATADIR%%/icons/hicolor/16x16/actions/mode2.png %%DATADIR%%/icons/hicolor/16x16/actions/mode3.png %%DATADIR%%/icons/hicolor/16x16/actions/mode4.png %%DATADIR%%/icons/hicolor/16x16/actions/mode5.png %%DATADIR%%/icons/hicolor/16x16/actions/multiple.png %%DATADIR%%/icons/hicolor/16x16/actions/qa.png %%DATADIR%%/icons/hicolor/16x16/actions/question.png %%DATADIR%%/icons/hicolor/16x16/actions/repeat.png %%DATADIR%%/icons/hicolor/16x16/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/shuffle.png %%DATADIR%%/icons/hicolor/16x16/actions/sort_incr.png %%DATADIR%%/icons/hicolor/16x16/actions/start-over.png %%DATADIR%%/icons/hicolor/16x16/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/answer-correct.png %%DATADIR%%/icons/hicolor/22x22/actions/answer.png %%DATADIR%%/icons/hicolor/22x22/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/dontknow.png %%DATADIR%%/icons/hicolor/22x22/actions/editor.png %%DATADIR%%/icons/hicolor/22x22/actions/error.png %%DATADIR%%/icons/hicolor/22x22/actions/flash.png %%DATADIR%%/icons/hicolor/22x22/actions/hint.png %%DATADIR%%/icons/hicolor/22x22/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/know.png %%DATADIR%%/icons/hicolor/22x22/actions/languages.png %%DATADIR%%/icons/hicolor/22x22/actions/markasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/mode1.png %%DATADIR%%/icons/hicolor/22x22/actions/mode2.png %%DATADIR%%/icons/hicolor/22x22/actions/mode3.png %%DATADIR%%/icons/hicolor/22x22/actions/mode4.png %%DATADIR%%/icons/hicolor/22x22/actions/mode5.png %%DATADIR%%/icons/hicolor/22x22/actions/multiple.png %%DATADIR%%/icons/hicolor/22x22/actions/qa.png %%DATADIR%%/icons/hicolor/22x22/actions/question.png %%DATADIR%%/icons/hicolor/22x22/actions/repeat.png %%DATADIR%%/icons/hicolor/22x22/actions/rowcol.png %%DATADIR%%/icons/hicolor/22x22/actions/shuffle.png %%DATADIR%%/icons/hicolor/22x22/actions/sort_incr.png %%DATADIR%%/icons/hicolor/22x22/actions/start-over.png %%DATADIR%%/icons/hicolor/22x22/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/answer-correct.png %%DATADIR%%/icons/hicolor/32x32/actions/answer.png %%DATADIR%%/icons/hicolor/32x32/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/dontknow.png %%DATADIR%%/icons/hicolor/32x32/actions/editor.png %%DATADIR%%/icons/hicolor/32x32/actions/error.png %%DATADIR%%/icons/hicolor/32x32/actions/flash.png %%DATADIR%%/icons/hicolor/32x32/actions/hint.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/know.png %%DATADIR%%/icons/hicolor/32x32/actions/languages.png %%DATADIR%%/icons/hicolor/32x32/actions/markasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/mode1.png %%DATADIR%%/icons/hicolor/32x32/actions/mode2.png %%DATADIR%%/icons/hicolor/32x32/actions/mode3.png %%DATADIR%%/icons/hicolor/32x32/actions/mode4.png %%DATADIR%%/icons/hicolor/32x32/actions/mode5.png %%DATADIR%%/icons/hicolor/32x32/actions/multiple.png %%DATADIR%%/icons/hicolor/32x32/actions/qa.png %%DATADIR%%/icons/hicolor/32x32/actions/question.png %%DATADIR%%/icons/hicolor/32x32/actions/question_mark.png %%DATADIR%%/icons/hicolor/32x32/actions/repeat.png %%DATADIR%%/icons/hicolor/32x32/actions/rowcol.png %%DATADIR%%/icons/hicolor/32x32/actions/shuffle.png %%DATADIR%%/icons/hicolor/32x32/actions/sort_incr.png %%DATADIR%%/icons/hicolor/32x32/actions/start-over.png %%DATADIR%%/icons/hicolor/32x32/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/48x48/actions/answer-correct.png %%DATADIR%%/icons/hicolor/48x48/actions/answer.png %%DATADIR%%/icons/hicolor/48x48/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/editor.png %%DATADIR%%/icons/hicolor/48x48/actions/error.png %%DATADIR%%/icons/hicolor/48x48/actions/flash.png %%DATADIR%%/icons/hicolor/48x48/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/languages.png %%DATADIR%%/icons/hicolor/48x48/actions/mode1.png %%DATADIR%%/icons/hicolor/48x48/actions/mode2.png %%DATADIR%%/icons/hicolor/48x48/actions/mode3.png %%DATADIR%%/icons/hicolor/48x48/actions/mode4.png %%DATADIR%%/icons/hicolor/48x48/actions/mode5.png %%DATADIR%%/icons/hicolor/48x48/actions/multiple.png %%DATADIR%%/icons/hicolor/48x48/actions/qa.png %%DATADIR%%/icons/hicolor/48x48/actions/question.png %%DATADIR%%/icons/hicolor/48x48/actions/rowcol.png %%DATADIR%%/icons/hicolor/64x64/actions/answer-correct.png %%DATADIR%%/icons/hicolor/64x64/actions/answer.png %%DATADIR%%/icons/hicolor/64x64/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/editor.png %%DATADIR%%/icons/hicolor/64x64/actions/error.png %%DATADIR%%/icons/hicolor/64x64/actions/flash.png %%DATADIR%%/icons/hicolor/64x64/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/languages.png %%DATADIR%%/icons/hicolor/64x64/actions/mode1.png %%DATADIR%%/icons/hicolor/64x64/actions/mode2.png %%DATADIR%%/icons/hicolor/64x64/actions/mode3.png %%DATADIR%%/icons/hicolor/64x64/actions/mode4.png %%DATADIR%%/icons/hicolor/64x64/actions/mode5.png %%DATADIR%%/icons/hicolor/64x64/actions/multiple.png %%DATADIR%%/icons/hicolor/64x64/actions/qa.png %%DATADIR%%/icons/hicolor/64x64/actions/question.png %%DATADIR%%/icons/hicolor/64x64/actions/rowcol.png %%DATADIR%%/icons/hicolor/scalable/actions/answer-correct.svgz %%DATADIR%%/icons/hicolor/scalable/actions/answer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/delete-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/editor.svgz %%DATADIR%%/icons/hicolor/scalable/actions/error.svgz %%DATADIR%%/icons/hicolor/scalable/actions/flash.svgz %%DATADIR%%/icons/hicolor/scalable/actions/insert-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/languages.svgz %%DATADIR%%/icons/hicolor/scalable/actions/markasblank.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode1.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode2.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode5.svgz %%DATADIR%%/icons/hicolor/scalable/actions/multiple.svgz %%DATADIR%%/icons/hicolor/scalable/actions/qa.svgz %%DATADIR%%/icons/hicolor/scalable/actions/question.svgz %%DATADIR%%/icons/hicolor/scalable/actions/unmarkasblank.svgz share/locale/ar/LC_MESSAGES/kwordquiz.mo share/locale/ast/LC_MESSAGES/kwordquiz.mo share/locale/be/LC_MESSAGES/kwordquiz.mo -share/locale/bg/LC_MESSAGES/kwordquiz.mo share/locale/bn/LC_MESSAGES/kwordquiz.mo share/locale/br/LC_MESSAGES/kwordquiz.mo share/locale/bs/LC_MESSAGES/kwordquiz.mo share/locale/ca/LC_MESSAGES/kwordquiz.mo share/locale/ca@valencia/LC_MESSAGES/kwordquiz.mo share/locale/cs/LC_MESSAGES/kwordquiz.mo share/locale/cy/LC_MESSAGES/kwordquiz.mo share/locale/da/LC_MESSAGES/kwordquiz.mo share/locale/de/LC_MESSAGES/kwordquiz.mo share/locale/el/LC_MESSAGES/kwordquiz.mo share/locale/en_GB/LC_MESSAGES/kwordquiz.mo share/locale/eo/LC_MESSAGES/kwordquiz.mo share/locale/es/LC_MESSAGES/kwordquiz.mo share/locale/et/LC_MESSAGES/kwordquiz.mo share/locale/eu/LC_MESSAGES/kwordquiz.mo share/locale/fa/LC_MESSAGES/kwordquiz.mo share/locale/fi/LC_MESSAGES/kwordquiz.mo share/locale/fr/LC_MESSAGES/kwordquiz.mo share/locale/ga/LC_MESSAGES/kwordquiz.mo share/locale/gl/LC_MESSAGES/kwordquiz.mo share/locale/he/LC_MESSAGES/kwordquiz.mo share/locale/hi/LC_MESSAGES/kwordquiz.mo share/locale/hne/LC_MESSAGES/kwordquiz.mo share/locale/hr/LC_MESSAGES/kwordquiz.mo share/locale/hu/LC_MESSAGES/kwordquiz.mo share/locale/ia/LC_MESSAGES/kwordquiz.mo share/locale/it/LC_MESSAGES/kwordquiz.mo share/locale/ja/LC_MESSAGES/kwordquiz.mo share/locale/ka/LC_MESSAGES/kwordquiz.mo share/locale/kk/LC_MESSAGES/kwordquiz.mo share/locale/km/LC_MESSAGES/kwordquiz.mo share/locale/ko/LC_MESSAGES/kwordquiz.mo share/locale/lt/LC_MESSAGES/kwordquiz.mo share/locale/lv/LC_MESSAGES/kwordquiz.mo share/locale/mai/LC_MESSAGES/kwordquiz.mo share/locale/mk/LC_MESSAGES/kwordquiz.mo share/locale/ml/LC_MESSAGES/kwordquiz.mo share/locale/mr/LC_MESSAGES/kwordquiz.mo share/locale/ms/LC_MESSAGES/kwordquiz.mo share/locale/nb/LC_MESSAGES/kwordquiz.mo share/locale/nds/LC_MESSAGES/kwordquiz.mo share/locale/ne/LC_MESSAGES/kwordquiz.mo share/locale/nl/LC_MESSAGES/kwordquiz.mo share/locale/nn/LC_MESSAGES/kwordquiz.mo share/locale/oc/LC_MESSAGES/kwordquiz.mo share/locale/pa/LC_MESSAGES/kwordquiz.mo share/locale/pl/LC_MESSAGES/kwordquiz.mo share/locale/pt/LC_MESSAGES/kwordquiz.mo share/locale/pt_BR/LC_MESSAGES/kwordquiz.mo share/locale/ro/LC_MESSAGES/kwordquiz.mo share/locale/ru/LC_MESSAGES/kwordquiz.mo share/locale/sa/LC_MESSAGES/kwordquiz.mo share/locale/se/LC_MESSAGES/kwordquiz.mo share/locale/si/LC_MESSAGES/kwordquiz.mo share/locale/sk/LC_MESSAGES/kwordquiz.mo share/locale/sl/LC_MESSAGES/kwordquiz.mo share/locale/sq/LC_MESSAGES/kwordquiz.mo share/locale/sv/LC_MESSAGES/kwordquiz.mo share/locale/ta/LC_MESSAGES/kwordquiz.mo share/locale/tg/LC_MESSAGES/kwordquiz.mo share/locale/tr/LC_MESSAGES/kwordquiz.mo share/locale/ug/LC_MESSAGES/kwordquiz.mo share/locale/uk/LC_MESSAGES/kwordquiz.mo share/locale/zh_CN/LC_MESSAGES/kwordquiz.mo share/locale/zh_TW/LC_MESSAGES/kwordquiz.mo share/metainfo/org.kde.kwordquiz.appdata.xml diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 567ac912e72a..2fb58ec21594 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478528 -SHA256 (KDE/release-service/26.04.2/libkeduvocdocument-26.04.2.tar.xz) = da1fa33f918a177e60bf51fa589748d8ff42fc230a7ab0d555d0eb8a01c09ff7 -SIZE (KDE/release-service/26.04.2/libkeduvocdocument-26.04.2.tar.xz) = 222392 +TIMESTAMP = 1782826872 +SHA256 (KDE/release-service/26.04.3/libkeduvocdocument-26.04.3.tar.xz) = 023c9bb69a98ddb897bc15dd0e526f98817f20acb6cf34068a8382d850003b64 +SIZE (KDE/release-service/26.04.3/libkeduvocdocument-26.04.3.tar.xz) = 222336 diff --git a/misc/minuet/distinfo b/misc/minuet/distinfo index 8f81a72127a4..2956368d02f4 100644 --- a/misc/minuet/distinfo +++ b/misc/minuet/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478530 -SHA256 (KDE/release-service/26.04.2/minuet-26.04.2.tar.xz) = d870e4a36d748d603268d6aab90f2e0005beb743b8d3cfd7a93ccd65e2682dee -SIZE (KDE/release-service/26.04.2/minuet-26.04.2.tar.xz) = 27688528 +TIMESTAMP = 1782826874 +SHA256 (KDE/release-service/26.04.3/minuet-26.04.3.tar.xz) = 2fdbc21f80090274181bef800b15e6c3583c535768c1a5a66a9b00417f6462b1 +SIZE (KDE/release-service/26.04.3/minuet-26.04.3.tar.xz) = 27691132 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index 37d9cb674209..48b6b9613f39 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478530 -SHA256 (KDE/release-service/26.04.2/parley-26.04.2.tar.xz) = 1207690ca4aaf5cc7fe299b12173a3d2eeeb558826b81544da5280472fdd00fc -SIZE (KDE/release-service/26.04.2/parley-26.04.2.tar.xz) = 8447908 +TIMESTAMP = 1782826874 +SHA256 (KDE/release-service/26.04.3/parley-26.04.3.tar.xz) = cecbbb130ef203b3bc53b758bb0635b4c9843a914056d7268554e3693c589cbc +SIZE (KDE/release-service/26.04.3/parley-26.04.3.tar.xz) = 8441644 diff --git a/misc/parley/pkg-plist b/misc/parley/pkg-plist index 5a269d859c95..750d8db65930 100644 --- a/misc/parley/pkg-plist +++ b/misc/parley/pkg-plist @@ -1,162 +1,162 @@ bin/parley share/applications/org.kde.parley.desktop share/config.kcfg/documentsettings.kcfg share/config.kcfg/languagesettings.kcfg share/config.kcfg/parley.kcfg share/icons/hicolor/128x128/apps/parley.png share/icons/hicolor/16x16/apps/parley.png share/icons/hicolor/32x32/apps/parley.png share/icons/hicolor/48x48/apps/parley.png share/icons/hicolor/64x64/apps/parley.png share/icons/hicolor/scalable/apps/parley-parley.svgz share/icons/hicolor/scalable/apps/parley-simple.svgz share/icons/hicolor/scalable/apps/parley.svgz share/icons/oxygen/16x16/actions/cards-block.png share/icons/oxygen/16x16/actions/edit-entry.png share/icons/oxygen/16x16/actions/edit-table-row.png share/icons/oxygen/16x16/actions/lesson-add.png share/icons/oxygen/16x16/actions/lesson-remove.png share/icons/oxygen/16x16/actions/list-add-card.png share/icons/oxygen/16x16/actions/list-remove-card.png share/icons/oxygen/16x16/actions/multiple-choice.png share/icons/oxygen/16x16/actions/practice-setup.png share/icons/oxygen/16x16/actions/practice-start.png share/icons/oxygen/16x16/actions/practice-stop.png share/icons/oxygen/16x16/actions/remove-duplicates.png share/icons/oxygen/16x16/actions/set-language.png share/icons/oxygen/16x16/actions/specific-setup.png share/icons/oxygen/22x22/actions/cards-block.png share/icons/oxygen/22x22/actions/edit-entry.png share/icons/oxygen/22x22/actions/edit-table-row.png share/icons/oxygen/22x22/actions/lesson-add.png share/icons/oxygen/22x22/actions/lesson-remove.png share/icons/oxygen/22x22/actions/list-add-card.png share/icons/oxygen/22x22/actions/list-remove-card.png share/icons/oxygen/22x22/actions/multiple-choice.png share/icons/oxygen/22x22/actions/practice-setup.png share/icons/oxygen/22x22/actions/practice-start.png share/icons/oxygen/22x22/actions/practice-stop.png share/icons/oxygen/22x22/actions/remove-duplicates.png share/icons/oxygen/22x22/actions/set-language.png share/icons/oxygen/22x22/actions/specific-setup.png share/icons/oxygen/32x32/actions/cards-block.png share/icons/oxygen/32x32/actions/edit-entry.png share/icons/oxygen/32x32/actions/edit-table-row.png share/icons/oxygen/32x32/actions/lesson-add.png share/icons/oxygen/32x32/actions/lesson-remove.png share/icons/oxygen/32x32/actions/list-add-card.png share/icons/oxygen/32x32/actions/list-remove-card.png share/icons/oxygen/32x32/actions/multiple-choice.png share/icons/oxygen/32x32/actions/practice-setup.png share/icons/oxygen/32x32/actions/practice-start.png share/icons/oxygen/32x32/actions/practice-stop.png share/icons/oxygen/32x32/actions/remove-duplicates.png share/icons/oxygen/32x32/actions/set-language.png share/icons/oxygen/32x32/actions/specific-setup.png share/icons/oxygen/48x48/actions/cards-block.png share/icons/oxygen/48x48/actions/edit-entry.png share/icons/oxygen/48x48/actions/edit-table-row.png share/icons/oxygen/48x48/actions/lesson-add.png share/icons/oxygen/48x48/actions/lesson-remove.png share/icons/oxygen/48x48/actions/list-add-card.png share/icons/oxygen/48x48/actions/list-remove-card.png share/icons/oxygen/48x48/actions/multiple-choice.png share/icons/oxygen/48x48/actions/practice-setup.png share/icons/oxygen/48x48/actions/practice-start.png share/icons/oxygen/48x48/actions/practice-stop.png share/icons/oxygen/48x48/actions/remove-duplicates.png share/icons/oxygen/48x48/actions/set-language.png share/icons/oxygen/48x48/actions/specific-setup.png share/icons/oxygen/scalable/actions/cards-block.svgz share/icons/oxygen/scalable/actions/edit-entry.svgz share/icons/oxygen/scalable/actions/edit-table-row.svgz share/icons/oxygen/scalable/actions/lesson-add.svgz share/icons/oxygen/scalable/actions/lesson-remove.svgz share/icons/oxygen/scalable/actions/list-add-card.svgz share/icons/oxygen/scalable/actions/list-remove-card.svgz share/icons/oxygen/scalable/actions/practice-setup.svgz share/icons/oxygen/scalable/actions/practice-start.svgz share/icons/oxygen/scalable/actions/remove-duplicates.svgz share/icons/oxygen/scalable/actions/set-language.svgz share/icons/oxygen/scalable/actions/specific-setup.svgz share/knsrcfiles/parley-themes.knsrc share/knsrcfiles/parley.knsrc share/locale/af/LC_MESSAGES/parley.mo share/locale/ar/LC_MESSAGES/parley.mo share/locale/ast/LC_MESSAGES/parley.mo share/locale/be/LC_MESSAGES/parley.mo -share/locale/bg/LC_MESSAGES/parley.mo share/locale/bn/LC_MESSAGES/parley.mo share/locale/br/LC_MESSAGES/parley.mo share/locale/bs/LC_MESSAGES/parley.mo share/locale/ca/LC_MESSAGES/parley.mo share/locale/ca@valencia/LC_MESSAGES/parley.mo share/locale/cs/LC_MESSAGES/parley.mo share/locale/cy/LC_MESSAGES/parley.mo share/locale/da/LC_MESSAGES/parley.mo share/locale/de/LC_MESSAGES/parley.mo share/locale/el/LC_MESSAGES/parley.mo share/locale/en_GB/LC_MESSAGES/parley.mo share/locale/eo/LC_MESSAGES/parley.mo share/locale/es/LC_MESSAGES/parley.mo share/locale/et/LC_MESSAGES/parley.mo share/locale/eu/LC_MESSAGES/parley.mo share/locale/fa/LC_MESSAGES/parley.mo share/locale/fi/LC_MESSAGES/parley.mo share/locale/fr/LC_MESSAGES/parley.mo share/locale/ga/LC_MESSAGES/parley.mo share/locale/gl/LC_MESSAGES/parley.mo share/locale/he/LC_MESSAGES/parley.mo share/locale/hi/LC_MESSAGES/parley.mo share/locale/hne/LC_MESSAGES/parley.mo share/locale/hr/LC_MESSAGES/parley.mo share/locale/hu/LC_MESSAGES/parley.mo share/locale/ia/LC_MESSAGES/parley.mo share/locale/is/LC_MESSAGES/parley.mo share/locale/it/LC_MESSAGES/parley.mo share/locale/ja/LC_MESSAGES/parley.mo share/locale/ka/LC_MESSAGES/parley.mo share/locale/kk/LC_MESSAGES/parley.mo share/locale/km/LC_MESSAGES/parley.mo +share/locale/ko/LC_MESSAGES/parley.mo share/locale/lt/LC_MESSAGES/parley.mo share/locale/lv/LC_MESSAGES/parley.mo share/locale/mk/LC_MESSAGES/parley.mo share/locale/ml/LC_MESSAGES/parley.mo share/locale/mr/LC_MESSAGES/parley.mo share/locale/ms/LC_MESSAGES/parley.mo share/locale/nb/LC_MESSAGES/parley.mo share/locale/nds/LC_MESSAGES/parley.mo share/locale/ne/LC_MESSAGES/parley.mo share/locale/nl/LC_MESSAGES/parley.mo share/locale/nn/LC_MESSAGES/parley.mo share/locale/oc/LC_MESSAGES/parley.mo share/locale/pa/LC_MESSAGES/parley.mo share/locale/pl/LC_MESSAGES/parley.mo share/locale/pt/LC_MESSAGES/parley.mo share/locale/pt_BR/LC_MESSAGES/parley.mo share/locale/ro/LC_MESSAGES/parley.mo share/locale/ru/LC_MESSAGES/parley.mo share/locale/sa/LC_MESSAGES/parley.mo share/locale/se/LC_MESSAGES/parley.mo share/locale/si/LC_MESSAGES/parley.mo share/locale/sk/LC_MESSAGES/parley.mo share/locale/sl/LC_MESSAGES/parley.mo share/locale/sq/LC_MESSAGES/parley.mo share/locale/sv/LC_MESSAGES/parley.mo share/locale/ta/LC_MESSAGES/parley.mo share/locale/tg/LC_MESSAGES/parley.mo share/locale/tr/LC_MESSAGES/parley.mo share/locale/ug/LC_MESSAGES/parley.mo share/locale/uk/LC_MESSAGES/parley.mo share/locale/xh/LC_MESSAGES/parley.mo share/locale/zh_CN/LC_MESSAGES/parley.mo share/locale/zh_TW/LC_MESSAGES/parley.mo share/metainfo/org.kde.parley.appdata.xml %%DATADIR%%/themes/bees_theme.desktop %%DATADIR%%/themes/bees_theme.svgz %%DATADIR%%/themes/bees_theme_preview.jpg %%DATADIR%%/themes/theme_reference.desktop %%DATADIR%%/themes/theme_reference.svgz %%DATADIR%%/themes/theme_reference_preview.jpg %%DATADIR%%/xslt/flashcards.xsl %%DATADIR%%/xslt/table.xsl diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 4ea50f9c3c3d..22d9be21adb4 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478532 -SHA256 (KDE/release-service/26.04.2/dragon-26.04.2.tar.xz) = 5778ea4c3064e1e868d55e2166fe3df743c4aff6b5e153b24a14f1ce780281e3 -SIZE (KDE/release-service/26.04.2/dragon-26.04.2.tar.xz) = 152928 +TIMESTAMP = 1782826876 +SHA256 (KDE/release-service/26.04.3/dragon-26.04.3.tar.xz) = 263fff59c7ef58cfe887bfae7c953ae223fce14be4f8556565b43adc7026799e +SIZE (KDE/release-service/26.04.3/dragon-26.04.3.tar.xz) = 153524 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 05f618aed86f..84ce83e91188 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478534 -SHA256 (KDE/release-service/26.04.2/kamoso-26.04.2.tar.xz) = 4ad64bda6a07427932df22f0115e7ba5ac588f3333b56908e71871721228448f -SIZE (KDE/release-service/26.04.2/kamoso-26.04.2.tar.xz) = 213532 +TIMESTAMP = 1782826878 +SHA256 (KDE/release-service/26.04.3/kamoso-26.04.3.tar.xz) = 11c361923764e5d33db524e204b45b83d1a84d223bcf605c2bd9c8b653e9cb66 +SIZE (KDE/release-service/26.04.3/kamoso-26.04.3.tar.xz) = 213456 diff --git a/multimedia/kasts/distinfo b/multimedia/kasts/distinfo index d2aef79859ea..e2cdcbfa144b 100644 --- a/multimedia/kasts/distinfo +++ b/multimedia/kasts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478534 -SHA256 (KDE/release-service/26.04.2/kasts-26.04.2.tar.xz) = fa7f98a68f856d93d4e479ab0344c219b3aed9779eff1c3cdfcab48323a6a491 -SIZE (KDE/release-service/26.04.2/kasts-26.04.2.tar.xz) = 703996 +TIMESTAMP = 1782826878 +SHA256 (KDE/release-service/26.04.3/kasts-26.04.3.tar.xz) = 086e61a1d05b94a50e27b5412b01b35c89158c27ff8601f9d59e94c52e931a5e +SIZE (KDE/release-service/26.04.3/kasts-26.04.3.tar.xz) = 704612 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index ceb9ad4b3908..4af5e32affdd 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478536 -SHA256 (KDE/release-service/26.04.2/ffmpegthumbs-26.04.2.tar.xz) = 865a1904b1f664c7118976603e38ffcb0a5873782d40eb684268767a303d8d48 -SIZE (KDE/release-service/26.04.2/ffmpegthumbs-26.04.2.tar.xz) = 35328 +TIMESTAMP = 1782826880 +SHA256 (KDE/release-service/26.04.3/ffmpegthumbs-26.04.3.tar.xz) = a6d7a12a57f24113789203413d40a4355ce4c0aff516384ecd2c548ce42f389b +SIZE (KDE/release-service/26.04.3/ffmpegthumbs-26.04.3.tar.xz) = 35324 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index dbfef3c7281b..c2bbf2374605 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478537 -SHA256 (KDE/release-service/26.04.2/kdenlive-26.04.2.tar.xz) = 272dbf81fc4b85d270dedbe38bc57fd37540b812baa3f2b48535031f2c37ab18 -SIZE (KDE/release-service/26.04.2/kdenlive-26.04.2.tar.xz) = 19733508 +TIMESTAMP = 1782826881 +SHA256 (KDE/release-service/26.04.3/kdenlive-26.04.3.tar.xz) = c8dbc88f6c0fb739e38fa3840f3212a0e36aa9dc273911bc19ebddb1f83f2e4e +SIZE (KDE/release-service/26.04.3/kdenlive-26.04.3.tar.xz) = 19748836 diff --git a/multimedia/plasmatube/distinfo b/multimedia/plasmatube/distinfo index aa3c4bd7640c..9e22dab319ab 100644 --- a/multimedia/plasmatube/distinfo +++ b/multimedia/plasmatube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478538 -SHA256 (KDE/release-service/26.04.2/plasmatube-26.04.2.tar.xz) = 44b261c2b858b981c0f63cab0aa8da3cf4f2f3bc9ec5d8bc513224e6d2332de0 -SIZE (KDE/release-service/26.04.2/plasmatube-26.04.2.tar.xz) = 228956 +TIMESTAMP = 1782826882 +SHA256 (KDE/release-service/26.04.3/plasmatube-26.04.3.tar.xz) = 91a997e40f7c21da2ed081050cdde8b007626627b8d1d74c20ad6b8a17e1a597 +SIZE (KDE/release-service/26.04.3/plasmatube-26.04.3.tar.xz) = 229100 diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index 1be24c615a79..a51ab4c7dd11 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaccounts-integration DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= System to administer web accounts for the KDE desktop WWW= https://projects.kde.org/projects/kdereview/kaccounts-integration LIB_DEPENDS= libQCoro6Core.so:devel/qcoro \ libaccounts-qt6.so:net-im/libaccounts-qt \ libsignon-qt6.so:sysutils/signond USES= cmake compiler:c++11-lang gettext-tools kde:6 pkgconfig qt:6 \ tar:xz USE_KDE= config coreaddons dbusaddons i18n kcmutils kdeclarative kio \ service wallet \ ecm:build package:build \ iconthemes:run USE_QT= base declarative .include diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 0177e9c832a2..807de861d632 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478539 -SHA256 (KDE/release-service/26.04.2/kaccounts-integration-26.04.2.tar.xz) = 7fbbb5b8b009588b114b84f4c5913b3e429fb004f9ad7ce1bbd8564530df9e96 -SIZE (KDE/release-service/26.04.2/kaccounts-integration-26.04.2.tar.xz) = 94788 +TIMESTAMP = 1782826884 +SHA256 (KDE/release-service/26.04.3/kaccounts-integration-26.04.3.tar.xz) = efdf9f14f7fa917863effd47b0c7ebd0b49687e9205049ff8cb868405f16334c +SIZE (KDE/release-service/26.04.3/kaccounts-integration-26.04.3.tar.xz) = 94880 diff --git a/net-im/kaccounts-providers/Makefile b/net-im/kaccounts-providers/Makefile index 5f179714dc8d..e6330f724491 100644 --- a/net-im/kaccounts-providers/Makefile +++ b/net-im/kaccounts-providers/Makefile @@ -1,29 +1,28 @@ PORTNAME= kaccounts-providers DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= System to administer web accounts for the KDE desktop WWW= https://projects.kde.org/projects/kdereview/kaccounts-providers LIB_DEPENDS= libaccounts-glib.so:net-im/libaccounts-glib \ libkaccounts6.so:net-im/kaccounts-integration \ libaccounts-qt6.so:net-im/libaccounts-qt \ libsignon-qt6.so:sysutils/signond USES= cmake compiler:c++11-lang gettext gnome kde:6 pkgconfig qt:6 \ tar:xz USE_GNOME= intltool USE_KDE= config coreaddons i18n kdeclarative kio package service \ ecm:build USE_QT= base declarative webchannel webengine OPTIONS_DEFINE= DOCS #install to ${LOCALBASE}: pre-configure: ${REINPLACE_CMD} -e 's,/etc,${PREFIX}/etc,' \ ${WRKSRC}/webkit-options/CMakeLists.txt .include diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 22618a54ceaf..cc9963c51102 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478541 -SHA256 (KDE/release-service/26.04.2/kaccounts-providers-26.04.2.tar.xz) = 0d3f278ffac88af2db4c7ba7d9cab4622a2e19dbb39fbd144f1daa1075caf8a0 -SIZE (KDE/release-service/26.04.2/kaccounts-providers-26.04.2.tar.xz) = 69176 +TIMESTAMP = 1782826885 +SHA256 (KDE/release-service/26.04.3/kaccounts-providers-26.04.3.tar.xz) = 7b364e75a562052932d8b2e8faecb7cd8716a35e7177e409e36e3e631e1f6775 +SIZE (KDE/release-service/26.04.3/kaccounts-providers-26.04.3.tar.xz) = 69188 diff --git a/net-im/neochat/distinfo b/net-im/neochat/distinfo index 7585db8bc748..c627bd1b85bb 100644 --- a/net-im/neochat/distinfo +++ b/net-im/neochat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478542 -SHA256 (KDE/release-service/26.04.2/neochat-26.04.2.tar.xz) = b73724b30121ed7e2d61f1820a586398c85107d49f87641bb5f1c46c07015786 -SIZE (KDE/release-service/26.04.2/neochat-26.04.2.tar.xz) = 1424792 +TIMESTAMP = 1782826887 +SHA256 (KDE/release-service/26.04.3/neochat-26.04.3.tar.xz) = 7813106878bde5286f45c005647048217b2e46444c8ac2ef76480a2de88e7f0f +SIZE (KDE/release-service/26.04.3/neochat-26.04.3.tar.xz) = 1427272 diff --git a/net-im/tokodon/distinfo b/net-im/tokodon/distinfo index c36fb97710a1..dd2a657a17d1 100644 --- a/net-im/tokodon/distinfo +++ b/net-im/tokodon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478543 -SHA256 (KDE/release-service/26.04.2/tokodon-26.04.2.tar.xz) = 7ec4a2bf6e4825e814bd3230fae620852ce81d163704dcbde2bf3d1979993d0b -SIZE (KDE/release-service/26.04.2/tokodon-26.04.2.tar.xz) = 869092 +TIMESTAMP = 1782826887 +SHA256 (KDE/release-service/26.04.3/tokodon-26.04.3.tar.xz) = 79c3ea3902fff20705e3fcda104f19f5b0c1b94c751a0fee995068f17fe2524f +SIZE (KDE/release-service/26.04.3/tokodon-26.04.3.tar.xz) = 871008 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index fe9cefbf81d6..88092731ceb9 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478544 -SHA256 (KDE/release-service/26.04.2/ktorrent-26.04.2.tar.xz) = bdf5ddcfab8cd952d772c5acd801992db0e333f19677c8e803bfa8ca06a61912 -SIZE (KDE/release-service/26.04.2/ktorrent-26.04.2.tar.xz) = 2250840 +TIMESTAMP = 1782826889 +SHA256 (KDE/release-service/26.04.3/ktorrent-26.04.3.tar.xz) = 5d3c143e2b157a7b11b214fa95d67c4e2d3d366580a62f965c7f10b9f1523fc9 +SIZE (KDE/release-service/26.04.3/ktorrent-26.04.3.tar.xz) = 2251560 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 41dea32ae973..3fc7fe85617a 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478546 -SHA256 (KDE/release-service/26.04.2/libktorrent-26.04.2.tar.xz) = a6f5bac0083182e7e0d9a5034ff68b538afb6b0ee822d64980593e89ebc18e31 -SIZE (KDE/release-service/26.04.2/libktorrent-26.04.2.tar.xz) = 603360 +TIMESTAMP = 1782826891 +SHA256 (KDE/release-service/26.04.3/libktorrent-26.04.3.tar.xz) = d059d3f82a4fca9292cd97d1138e30c22b5875d0a9a593a4211d2f02552e8361 +SIZE (KDE/release-service/26.04.3/libktorrent-26.04.3.tar.xz) = 603424 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 3b284c8b4643..fb61d4e675ee 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478548 -SHA256 (KDE/release-service/26.04.2/akonadi-calendar-26.04.2.tar.xz) = 8300ea894acdbdd7496feff870ecfdd368687104a3442ed82abef09f58e774fa -SIZE (KDE/release-service/26.04.2/akonadi-calendar-26.04.2.tar.xz) = 553952 +TIMESTAMP = 1782826893 +SHA256 (KDE/release-service/26.04.3/akonadi-calendar-26.04.3.tar.xz) = 9769bb77600f4228cd3d2a74b4ed486bbc820e36d8edb3b203df9afd4805c779 +SIZE (KDE/release-service/26.04.3/akonadi-calendar-26.04.3.tar.xz) = 554108 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 68b32b82f743..4d42119819a1 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478549 -SHA256 (KDE/release-service/26.04.2/akonadi-contacts-26.04.2.tar.xz) = 188f0fb51c756c133c03f95c316f16b947c492b49871e11daa27d095a50a8c15 -SIZE (KDE/release-service/26.04.2/akonadi-contacts-26.04.2.tar.xz) = 445488 +TIMESTAMP = 1782826894 +SHA256 (KDE/release-service/26.04.3/akonadi-contacts-26.04.3.tar.xz) = 8b31ab21f118b20fce2826904e3f15e30080a69143519a544285606cf031bcde +SIZE (KDE/release-service/26.04.3/akonadi-contacts-26.04.3.tar.xz) = 445444 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 5348d1f5423d..68fca77067f9 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478551 -SHA256 (KDE/release-service/26.04.2/akonadi-mime-26.04.2.tar.xz) = fcad2a4b4ab3f2deec9f8f0694d11e9620092b33e0923a47bf434569a89bac14 -SIZE (KDE/release-service/26.04.2/akonadi-mime-26.04.2.tar.xz) = 185320 +TIMESTAMP = 1782826896 +SHA256 (KDE/release-service/26.04.3/akonadi-mime-26.04.3.tar.xz) = 7bad7bfc07672635ba0ead6ab66f031f2b3a800be021d5b0c069997cdc83f58b +SIZE (KDE/release-service/26.04.3/akonadi-mime-26.04.3.tar.xz) = 185364 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index cc7fecb7d1d2..8a09f289b5d5 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478553 -SHA256 (KDE/release-service/26.04.2/akonadi-search-26.04.2.tar.xz) = 142ce46f3dae262f43263f80a13ba532767910a39e442fdc4b92693870839c04 -SIZE (KDE/release-service/26.04.2/akonadi-search-26.04.2.tar.xz) = 120268 +TIMESTAMP = 1782826898 +SHA256 (KDE/release-service/26.04.3/akonadi-search-26.04.3.tar.xz) = 86b8a2381f641e96a9de61ca10605effb0be735f1342f4c2205eaf60bf47cc0e +SIZE (KDE/release-service/26.04.3/akonadi-search-26.04.3.tar.xz) = 120180 diff --git a/net/alligator/distinfo b/net/alligator/distinfo index 9ec5c7764342..b8ff94d057cb 100644 --- a/net/alligator/distinfo +++ b/net/alligator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478553 -SHA256 (KDE/release-service/26.04.2/alligator-26.04.2.tar.xz) = 6502c1763c43bc6e6e79d9c313dd67a72b87a3571d79bfd86084da0de5913d40 -SIZE (KDE/release-service/26.04.2/alligator-26.04.2.tar.xz) = 250680 +TIMESTAMP = 1782826898 +SHA256 (KDE/release-service/26.04.3/alligator-26.04.3.tar.xz) = 21c6bac672903c48c978c1f13aae5afc58f845f76d54b8d2c0bae66e8b3fcaa3 +SIZE (KDE/release-service/26.04.3/alligator-26.04.3.tar.xz) = 250952 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index bb958da551b7..8f73d1572017 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478555 -SHA256 (KDE/release-service/26.04.2/calendarsupport-26.04.2.tar.xz) = 7720a72f3f4180873d407c56cb076db268158f2a8d20dcd066a615d8285e35b9 -SIZE (KDE/release-service/26.04.2/calendarsupport-26.04.2.tar.xz) = 994724 +TIMESTAMP = 1782826900 +SHA256 (KDE/release-service/26.04.3/calendarsupport-26.04.3.tar.xz) = cb0fe6531a4811ccc368e0c3f1d59118f4524bc051976707188c55bcea0c643b +SIZE (KDE/release-service/26.04.3/calendarsupport-26.04.3.tar.xz) = 994692 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 53ed360b6ee6..3f1db9f51b7d 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478556 -SHA256 (KDE/release-service/26.04.2/eventviews-26.04.2.tar.xz) = d1d0b1bc17bab880bd7e91c1670db9d41148f19b1c2f92b7f3ba8c212f8f5149 -SIZE (KDE/release-service/26.04.2/eventviews-26.04.2.tar.xz) = 545648 +TIMESTAMP = 1782826902 +SHA256 (KDE/release-service/26.04.3/eventviews-26.04.3.tar.xz) = 84fc3901f320f435bbff7c94859eeb84f056839d1aeeac5c6390a75dcc624d2f +SIZE (KDE/release-service/26.04.3/eventviews-26.04.3.tar.xz) = 545720 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 029e344506e1..f27b833471f3 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478558 -SHA256 (KDE/release-service/26.04.2/incidenceeditor-26.04.2.tar.xz) = ad3da4dd53a47f072c16e277fe3b841ad0e3dddf29906cf9492fef32ee7eb664 -SIZE (KDE/release-service/26.04.2/incidenceeditor-26.04.2.tar.xz) = 611888 +TIMESTAMP = 1782826904 +SHA256 (KDE/release-service/26.04.3/incidenceeditor-26.04.3.tar.xz) = a14342bbc4531153802d74d3405df459f4611554571f559824811e52b2886d36 +SIZE (KDE/release-service/26.04.3/incidenceeditor-26.04.3.tar.xz) = 611824 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index ecc2ad1eb3ac..d7b2aa008953 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478559 -SHA256 (KDE/release-service/26.04.2/kcalutils-26.04.2.tar.xz) = 515c30f7357255e22db98870c37956cc315df14ecb18ab0f4781b219f21ff7bc -SIZE (KDE/release-service/26.04.2/kcalutils-26.04.2.tar.xz) = 371356 +TIMESTAMP = 1782826905 +SHA256 (KDE/release-service/26.04.3/kcalutils-26.04.3.tar.xz) = a822d1cc8c2b08ae7944c6a574f32f91abe3a1b86adecf70e8bea4b353de88f6 +SIZE (KDE/release-service/26.04.3/kcalutils-26.04.3.tar.xz) = 371392 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index e15df2b9b490..8370b401f27c 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478561 -SHA256 (KDE/release-service/26.04.2/kdenetwork-filesharing-26.04.2.tar.xz) = d05b43808dd8de0c8b36ad6f76af447ad7525c9c37fbc2969f72dfc4a5c4712a -SIZE (KDE/release-service/26.04.2/kdenetwork-filesharing-26.04.2.tar.xz) = 531880 +TIMESTAMP = 1782826907 +SHA256 (KDE/release-service/26.04.3/kdenetwork-filesharing-26.04.3.tar.xz) = f563502143e294633a69ddd8fecc9bed91af6c6894ca831e60937edf6b05583b +SIZE (KDE/release-service/26.04.3/kdenetwork-filesharing-26.04.3.tar.xz) = 532548 diff --git a/net/kget/distinfo b/net/kget/distinfo index 9626f2da42ad..8cf961d90796 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478563 -SHA256 (KDE/release-service/26.04.2/kget-26.04.2.tar.xz) = e4643214ddc3c43eada345eeb33418963c9f880903a0410db2320423521be669 -SIZE (KDE/release-service/26.04.2/kget-26.04.2.tar.xz) = 4851028 +TIMESTAMP = 1782826909 +SHA256 (KDE/release-service/26.04.3/kget-26.04.3.tar.xz) = 590dcb9f40f9f5bb12a67c1b1c690dc29d183c952da2d76aa93f89d8b89c41d8 +SIZE (KDE/release-service/26.04.3/kget-26.04.3.tar.xz) = 4851116 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index b33dff14637b..397787210673 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478564 -SHA256 (KDE/release-service/26.04.2/kidentitymanagement-26.04.2.tar.xz) = f5d10bc2e20863892c0a78e707790a5691cfdc2dfe7debaaa749bfce2e4bf7ff -SIZE (KDE/release-service/26.04.2/kidentitymanagement-26.04.2.tar.xz) = 205292 +TIMESTAMP = 1782826911 +SHA256 (KDE/release-service/26.04.3/kidentitymanagement-26.04.3.tar.xz) = 4399db39573e59218ca8bc03b0adf7d1ebdddb7cf87f6e6f55390ab4fa0edaad +SIZE (KDE/release-service/26.04.3/kidentitymanagement-26.04.3.tar.xz) = 205488 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 2cee2857b9d0..68d17e7b6150 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478566 -SHA256 (KDE/release-service/26.04.2/kimap-26.04.2.tar.xz) = 0cdb8c01869f82891375f5c7587f02ef8a751e68031aed94e3d0b47f301fc9a8 -SIZE (KDE/release-service/26.04.2/kimap-26.04.2.tar.xz) = 134580 +TIMESTAMP = 1782826912 +SHA256 (KDE/release-service/26.04.3/kimap-26.04.3.tar.xz) = 208bdf7b5cb97c2b2e328e97d107bac00bc53685998bebc64ba1e2033c3e7ecf +SIZE (KDE/release-service/26.04.3/kimap-26.04.3.tar.xz) = 134752 diff --git a/net/kio-gdrive/Makefile b/net/kio-gdrive/Makefile index 01bb2c05d398..c0525cc2748b 100644 --- a/net/kio-gdrive/Makefile +++ b/net/kio-gdrive/Makefile @@ -1,27 +1,26 @@ PORTNAME= kio-gdrive DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE IOSlave for accessing gdrive WWW= https://www.kde.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libqt6keychain.so:security/qtkeychain@qt6 \ libaccounts-qt6.so:net-im/libaccounts-qt \ libkaccounts6.so:net-im/kaccounts-integration RUN_DEPENDS= kaccounts-providers>=0:net-im/kaccounts-providers USES= cmake gettext gnome kde:6 pkgconfig qt:6 tar:xz USE_GNOME= intltool USE_KDE= completion config coreaddons gapi i18n jobwidgets kio \ notifications purpose service solid widgetsaddons windowsystem \ ecm:build USE_QT= base OPTIONS_DEFINE= DOCS .include diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index fd029592f43a..ed5f0e92b2cc 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478566 -SHA256 (KDE/release-service/26.04.2/kio-gdrive-26.04.2.tar.xz) = 69ffb8de72b97deec4986756d6a2cee50b3fdc0385a88a72b3927bbad18a3e3c -SIZE (KDE/release-service/26.04.2/kio-gdrive-26.04.2.tar.xz) = 84332 +TIMESTAMP = 1782826913 +SHA256 (KDE/release-service/26.04.3/kio-gdrive-26.04.3.tar.xz) = 2781f7d920186c9e73fb269f5962ee2224d1308b191ccb3d20f081722ac82387 +SIZE (KDE/release-service/26.04.3/kio-gdrive-26.04.3.tar.xz) = 84340 diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index fae2bb360d34..03986f628307 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478568 -SHA256 (KDE/release-service/26.04.2/kio-zeroconf-26.04.2.tar.xz) = 93087764e1773139e32ab1dd5e8a69b6154317f34d2bc371345d2e6757769d56 -SIZE (KDE/release-service/26.04.2/kio-zeroconf-26.04.2.tar.xz) = 45516 +TIMESTAMP = 1782826915 +SHA256 (KDE/release-service/26.04.3/kio-zeroconf-26.04.3.tar.xz) = 82c091819ac42188b7032138068759a56cf66fc06f3a9a3fe0195f9ecf943edb +SIZE (KDE/release-service/26.04.3/kio-zeroconf-26.04.3.tar.xz) = 45560 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 55b98f2f9e87..6951b0c96c21 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478570 -SHA256 (KDE/release-service/26.04.2/kitinerary-26.04.2.tar.xz) = 86eea983c969fa1fed2bdc22a46f800c02b66c512087da6f0072324d28e6d5c6 -SIZE (KDE/release-service/26.04.2/kitinerary-26.04.2.tar.xz) = 2178572 +TIMESTAMP = 1782826916 +SHA256 (KDE/release-service/26.04.3/kitinerary-26.04.3.tar.xz) = 2a072650508a95a99647d0ad7d23e658d092270412573f5f819372149cb49f8c +SIZE (KDE/release-service/26.04.3/kitinerary-26.04.3.tar.xz) = 2179116 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index fc7af5062601..56059b8402f6 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478571 -SHA256 (KDE/release-service/26.04.2/kldap-26.04.2.tar.xz) = 5988a3e160ee7c5e4edffd442225a4685a55bbe8d81a7b12c290fb980899120f -SIZE (KDE/release-service/26.04.2/kldap-26.04.2.tar.xz) = 198040 +TIMESTAMP = 1782826918 +SHA256 (KDE/release-service/26.04.3/kldap-26.04.3.tar.xz) = 50d0f6675c13323023fc4305ce516d37884e244231ff82b09be00324e6c9bdbe +SIZE (KDE/release-service/26.04.3/kldap-26.04.3.tar.xz) = 198052 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 2f6ff1996a31..0dbf20f74f05 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478573 -SHA256 (KDE/release-service/26.04.2/kmailtransport-26.04.2.tar.xz) = b8a74f3a4b94f2278e570c29107e80599e48a34c3db9bc70780bedc3e3f24e7b -SIZE (KDE/release-service/26.04.2/kmailtransport-26.04.2.tar.xz) = 197016 +TIMESTAMP = 1782826920 +SHA256 (KDE/release-service/26.04.3/kmailtransport-26.04.3.tar.xz) = fea7cd107ddc2199e8c104eba00eb8469ffaaccd67ce4e403917971d23e4c675 +SIZE (KDE/release-service/26.04.3/kmailtransport-26.04.3.tar.xz) = 197032 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 8ed3db8c629e..66b69e5aa24b 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478575 -SHA256 (KDE/release-service/26.04.2/kmbox-26.04.2.tar.xz) = 27e796610b7e7a2249b4673fd8a27b59c92d5a6fe1a9af9e35ecd6308cde8f15 -SIZE (KDE/release-service/26.04.2/kmbox-26.04.2.tar.xz) = 33964 +TIMESTAMP = 1782826922 +SHA256 (KDE/release-service/26.04.3/kmbox-26.04.3.tar.xz) = ff39d6616f9d56a318cbb4e029bd42960f8a115579bdce7785e0af6f1fe5ee59 +SIZE (KDE/release-service/26.04.3/kmbox-26.04.3.tar.xz) = 33952 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 97f8d04cfe0e..7bc1c817c015 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478576 -SHA256 (KDE/release-service/26.04.2/kmime-26.04.2.tar.xz) = 7473522f42d84684cd71fe7549cc668a1fcfd91716a72860dc9bcbaa8569ed6d -SIZE (KDE/release-service/26.04.2/kmime-26.04.2.tar.xz) = 168000 +TIMESTAMP = 1782826924 +SHA256 (KDE/release-service/26.04.3/kmime-26.04.3.tar.xz) = a118b0d3b3ad2ebb35f73c675cffff575cd1b36ff5875d4f9fd4bce884bbae8a +SIZE (KDE/release-service/26.04.3/kmime-26.04.3.tar.xz) = 167964 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index b0cc704d3926..4aa47c3f81be 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478578 -SHA256 (KDE/release-service/26.04.2/kontactinterface-26.04.2.tar.xz) = c19001670dea36f6182f65e7cdd5d61c57f88ad3ac5ae99416023d0d151e7ff8 -SIZE (KDE/release-service/26.04.2/kontactinterface-26.04.2.tar.xz) = 44956 +TIMESTAMP = 1782826925 +SHA256 (KDE/release-service/26.04.3/kontactinterface-26.04.3.tar.xz) = ec67aad623d3d80bfad1157a7be863d8f7a0eed3e8c620c59c5cd7ff276bb76a +SIZE (KDE/release-service/26.04.3/kontactinterface-26.04.3.tar.xz) = 44956 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 8827181f8ef8..c1eeb90eeb52 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478580 -SHA256 (KDE/release-service/26.04.2/kpimtextedit-26.04.2.tar.xz) = d937c4e5bc2bbbecb86f9b31e86d5afb14783a88b096640f74ab138a69f30e4e -SIZE (KDE/release-service/26.04.2/kpimtextedit-26.04.2.tar.xz) = 188284 +TIMESTAMP = 1782826927 +SHA256 (KDE/release-service/26.04.3/kpimtextedit-26.04.3.tar.xz) = 4ded190adebacdd024dd12f730a26dcf9159c5dcb21f8af18cda973c78cac3b9 +SIZE (KDE/release-service/26.04.3/kpimtextedit-26.04.3.tar.xz) = 188320 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index f61d932b0aa4..c36990432fb6 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478581 -SHA256 (KDE/release-service/26.04.2/krdc-26.04.2.tar.xz) = 21cea1b78978b017290e9df71823149da534e97f6f964ca9d62de767fa1e01f3 -SIZE (KDE/release-service/26.04.2/krdc-26.04.2.tar.xz) = 1600040 +TIMESTAMP = 1782826929 +SHA256 (KDE/release-service/26.04.3/krdc-26.04.3.tar.xz) = 74cd7e55f2a0a72a8211043122bdaaf1d15fe8393466baa57b593feb3ae1fd04 +SIZE (KDE/release-service/26.04.3/krdc-26.04.3.tar.xz) = 1600052 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index da243f7f523a..785694b718e2 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478583 -SHA256 (KDE/release-service/26.04.2/krfb-26.04.2.tar.xz) = f71c6a995fb6e1b07084bb8770f7dbd12da76c2f3fe8d7d9f91d7024ef199d5c -SIZE (KDE/release-service/26.04.2/krfb-26.04.2.tar.xz) = 1220592 +TIMESTAMP = 1782826931 +SHA256 (KDE/release-service/26.04.3/krfb-26.04.3.tar.xz) = fa2a0d4c7058fff729a2eb04d2a5f46a3a9192a6f472eac3e669c72d62ab3cf7 +SIZE (KDE/release-service/26.04.3/krfb-26.04.3.tar.xz) = 1220572 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index a3266033c4ff..337f0bf01e03 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478584 -SHA256 (KDE/release-service/26.04.2/ksmtp-26.04.2.tar.xz) = 2facacb2009588da2283695d9a351048d478920aeb9188c932164985fc7ef686 -SIZE (KDE/release-service/26.04.2/ksmtp-26.04.2.tar.xz) = 57664 +TIMESTAMP = 1782826932 +SHA256 (KDE/release-service/26.04.3/ksmtp-26.04.3.tar.xz) = 6e1bcb1094b38f536c89e7c1005a493c267b2402f3a4f456181769bf2f300992 +SIZE (KDE/release-service/26.04.3/ksmtp-26.04.3.tar.xz) = 57204 diff --git a/net/ksmtp/pkg-plist b/net/ksmtp/pkg-plist index 1f77589ec4f4..f898ad9c2af5 100644 --- a/net/ksmtp/pkg-plist +++ b/net/ksmtp/pkg-plist @@ -1,71 +1,70 @@ include/KPim6/KSMTP/KSMTP/Job include/KPim6/KSMTP/KSMTP/LoginJob include/KPim6/KSMTP/KSMTP/SendJob include/KPim6/KSMTP/KSMTP/Session include/KPim6/KSMTP/KSMTP/SessionUiProxy include/KPim6/KSMTP/ksmtp/job.h include/KPim6/KSMTP/ksmtp/ksmtp_export.h include/KPim6/KSMTP/ksmtp/loginjob.h include/KPim6/KSMTP/ksmtp/sendjob.h include/KPim6/KSMTP/ksmtp/session.h include/KPim6/KSMTP/ksmtp/sessionuiproxy.h include/KPim6/KSMTP/ksmtp_version.h lib/cmake/KPim6SMTP/KPim6SMTPConfig.cmake lib/cmake/KPim6SMTP/KPim6SMTPConfigVersion.cmake lib/cmake/KPim6SMTP/KPim6SMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPim6SMTP/KPim6SMTPTargets.cmake lib/libKPim6SMTP.so lib/libKPim6SMTP.so.6 lib/libKPim6SMTP.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/locale/ar/LC_MESSAGES/libksmtp6.mo share/locale/ast/LC_MESSAGES/libksmtp6.mo -share/locale/bg/LC_MESSAGES/libksmtp6.mo share/locale/bs/LC_MESSAGES/libksmtp6.mo share/locale/ca/LC_MESSAGES/libksmtp6.mo share/locale/ca@valencia/LC_MESSAGES/libksmtp6.mo share/locale/cs/LC_MESSAGES/libksmtp6.mo share/locale/de/LC_MESSAGES/libksmtp6.mo share/locale/en_GB/LC_MESSAGES/libksmtp6.mo share/locale/eo/LC_MESSAGES/libksmtp6.mo share/locale/es/LC_MESSAGES/libksmtp6.mo share/locale/et/LC_MESSAGES/libksmtp6.mo share/locale/eu/LC_MESSAGES/libksmtp6.mo share/locale/fi/LC_MESSAGES/libksmtp6.mo share/locale/fr/LC_MESSAGES/libksmtp6.mo share/locale/ga/LC_MESSAGES/libksmtp6.mo share/locale/gl/LC_MESSAGES/libksmtp6.mo share/locale/he/LC_MESSAGES/libksmtp6.mo share/locale/hi/LC_MESSAGES/libksmtp6.mo share/locale/hu/LC_MESSAGES/libksmtp6.mo share/locale/ia/LC_MESSAGES/libksmtp6.mo share/locale/it/LC_MESSAGES/libksmtp6.mo share/locale/ja/LC_MESSAGES/libksmtp6.mo share/locale/ka/LC_MESSAGES/libksmtp6.mo share/locale/km/LC_MESSAGES/libksmtp6.mo share/locale/ko/LC_MESSAGES/libksmtp6.mo share/locale/lt/LC_MESSAGES/libksmtp6.mo share/locale/lv/LC_MESSAGES/libksmtp6.mo share/locale/mr/LC_MESSAGES/libksmtp6.mo share/locale/nds/LC_MESSAGES/libksmtp6.mo share/locale/nl/LC_MESSAGES/libksmtp6.mo share/locale/nn/LC_MESSAGES/libksmtp6.mo share/locale/pl/LC_MESSAGES/libksmtp6.mo share/locale/pt/LC_MESSAGES/libksmtp6.mo share/locale/pt_BR/LC_MESSAGES/libksmtp6.mo share/locale/ro/LC_MESSAGES/libksmtp6.mo share/locale/ru/LC_MESSAGES/libksmtp6.mo share/locale/sa/LC_MESSAGES/libksmtp6.mo share/locale/sk/LC_MESSAGES/libksmtp6.mo share/locale/sl/LC_MESSAGES/libksmtp6.mo share/locale/sr/LC_MESSAGES/libksmtp6.mo share/locale/sr@ijekavian/LC_MESSAGES/libksmtp6.mo share/locale/sr@ijekavianlatin/LC_MESSAGES/libksmtp6.mo share/locale/sr@latin/LC_MESSAGES/libksmtp6.mo share/locale/sv/LC_MESSAGES/libksmtp6.mo share/locale/ta/LC_MESSAGES/libksmtp6.mo share/locale/tr/LC_MESSAGES/libksmtp6.mo share/locale/ug/LC_MESSAGES/libksmtp6.mo share/locale/uk/LC_MESSAGES/libksmtp6.mo share/locale/zh_CN/LC_MESSAGES/libksmtp6.mo share/locale/zh_TW/LC_MESSAGES/libksmtp6.mo share/qlogging-categories6/ksmtp.categories diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 97d9978968e6..21b6f0554964 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478586 -SHA256 (KDE/release-service/26.04.2/ktnef-26.04.2.tar.xz) = 0fb838f125c7e952c95eb4eca5a0dd83b52b9fc9f5c91476df56c37e04b1ee56 -SIZE (KDE/release-service/26.04.2/ktnef-26.04.2.tar.xz) = 318588 +TIMESTAMP = 1782826934 +SHA256 (KDE/release-service/26.04.3/ktnef-26.04.3.tar.xz) = 09d45fbd407ab9a9ecb1b45d203732a7460e25e93aa3b5f30b1df198f3f0ce28 +SIZE (KDE/release-service/26.04.3/ktnef-26.04.3.tar.xz) = 318528 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index f8ec992f6f65..79f5fca5901f 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478588 -SHA256 (KDE/release-service/26.04.2/libgravatar-26.04.2.tar.xz) = 84bf34bf05b0823534b9cb40cef8803ae2e654a9c7aa5e823296edc4a002bc6c -SIZE (KDE/release-service/26.04.2/libgravatar-26.04.2.tar.xz) = 43700 +TIMESTAMP = 1782826936 +SHA256 (KDE/release-service/26.04.3/libgravatar-26.04.3.tar.xz) = 4e46acbd21c2a817247fea5ff66a89ebab2b824466e8939e7dc565f299dd9a81 +SIZE (KDE/release-service/26.04.3/libgravatar-26.04.3.tar.xz) = 43672 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 1c97bb763e4d..31b390f5d2f7 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478589 -SHA256 (KDE/release-service/26.04.2/libkgapi-26.04.2.tar.xz) = ff52aabaa388e9a57be2510ccedb0c514ef5e35c02c0cc256217a1e4d876ebf1 -SIZE (KDE/release-service/26.04.2/libkgapi-26.04.2.tar.xz) = 343816 +TIMESTAMP = 1782826938 +SHA256 (KDE/release-service/26.04.3/libkgapi-26.04.3.tar.xz) = ad43a76a774cd21c9ed899fbea4959042d66747296e1e521ec2b313713b12bee +SIZE (KDE/release-service/26.04.3/libkgapi-26.04.3.tar.xz) = 343776 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 5b544e0a0dd2..7b26bae1ce27 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478591 -SHA256 (KDE/release-service/26.04.2/libksieve-26.04.2.tar.xz) = bb878aecfe261572718f2594ab6ca6dda188cbb0672b4b1b269841199b4d1452 -SIZE (KDE/release-service/26.04.2/libksieve-26.04.2.tar.xz) = 641748 +TIMESTAMP = 1782826940 +SHA256 (KDE/release-service/26.04.3/libksieve-26.04.3.tar.xz) = b49b46fbb43c8a4b7c4e9a383389ad93719194140e7d910d25f2165f66b91ad9 +SIZE (KDE/release-service/26.04.3/libksieve-26.04.3.tar.xz) = 641768 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 8594be5faef4..52c7731e3e69 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478593 -SHA256 (KDE/release-service/26.04.2/mailcommon-26.04.2.tar.xz) = b65177ebaee6447a1d60cfb994eb2a03e3afd62b6010504ce45d99439ccc9ccc -SIZE (KDE/release-service/26.04.2/mailcommon-26.04.2.tar.xz) = 843120 +TIMESTAMP = 1782826941 +SHA256 (KDE/release-service/26.04.3/mailcommon-26.04.3.tar.xz) = 9aa486a65f311c4e6b4013fa446780f08bc889658724e0c51c479bdf9d945a7b +SIZE (KDE/release-service/26.04.3/mailcommon-26.04.3.tar.xz) = 843212 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index e5f4df75d0ee..652133acc4aa 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478594 -SHA256 (KDE/release-service/26.04.2/mailimporter-26.04.2.tar.xz) = 4ba31c1e91ee917a96dea553dcc38c2a8473e77a17e9ce543beb6b0d4217bf93 -SIZE (KDE/release-service/26.04.2/mailimporter-26.04.2.tar.xz) = 607432 +TIMESTAMP = 1782826943 +SHA256 (KDE/release-service/26.04.3/mailimporter-26.04.3.tar.xz) = 47face1e8f0b2ad7158f6a1f033338856848a5599faf5a286887c69be8114b69 +SIZE (KDE/release-service/26.04.3/mailimporter-26.04.3.tar.xz) = 607452 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index a6cd08e8882b..1ec087ef2fb3 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478596 -SHA256 (KDE/release-service/26.04.2/messagelib-26.04.2.tar.xz) = abf7bf08d9bf82fad7886e29877f1e26b762345026c667de56b4f70e69166f85 -SIZE (KDE/release-service/26.04.2/messagelib-26.04.2.tar.xz) = 7471108 +TIMESTAMP = 1782826945 +SHA256 (KDE/release-service/26.04.3/messagelib-26.04.3.tar.xz) = 45b6e7c933bc63688ebfa643a75c7f0b8d827577a977b597931d9af9bbbcc1cf +SIZE (KDE/release-service/26.04.3/messagelib-26.04.3.tar.xz) = 7588192 diff --git a/net/mimetreeparser/distinfo b/net/mimetreeparser/distinfo index 9ee59b18170c..787e1f89420f 100644 --- a/net/mimetreeparser/distinfo +++ b/net/mimetreeparser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478598 -SHA256 (KDE/release-service/26.04.2/mimetreeparser-26.04.2.tar.xz) = f15b6268261255888e3e986d67b8f39f0d57144e87d99b46e8fabe78cad300dc -SIZE (KDE/release-service/26.04.2/mimetreeparser-26.04.2.tar.xz) = 689880 +TIMESTAMP = 1782826947 +SHA256 (KDE/release-service/26.04.3/mimetreeparser-26.04.3.tar.xz) = 88750429310e9dc60e1f962dc9d7e58e1936e878db54aa41cb7f5c4b4fc524dc +SIZE (KDE/release-service/26.04.3/mimetreeparser-26.04.3.tar.xz) = 690008 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 8dcfa9d3b798..16ab3f93c3eb 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478599 -SHA256 (KDE/release-service/26.04.2/pimcommon-26.04.2.tar.xz) = a3558fb4cf677b07f73ac3e5f0c74c179c898b455115a62e6f44cb064cfe2f62 -SIZE (KDE/release-service/26.04.2/pimcommon-26.04.2.tar.xz) = 373892 +TIMESTAMP = 1782826948 +SHA256 (KDE/release-service/26.04.3/pimcommon-26.04.3.tar.xz) = 2a04a6e2514d98dea977ebb4c6f091ca6bb99404136cbee0011f19ffb711b2cf +SIZE (KDE/release-service/26.04.3/pimcommon-26.04.3.tar.xz) = 373932 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index a07642823846..d3cc5f95b1c4 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478601 -SHA256 (KDE/release-service/26.04.2/kalzium-26.04.2.tar.xz) = 19deaf831a91168b9e6a20deae1d678c149a5312a9391d261af40ef2c1eba0a6 -SIZE (KDE/release-service/26.04.2/kalzium-26.04.2.tar.xz) = 22681436 +TIMESTAMP = 1782826950 +SHA256 (KDE/release-service/26.04.3/kalzium-26.04.3.tar.xz) = d79114a42fc3582962bec85ac2d877217708a9491d51f731b166c36c87ed1a23 +SIZE (KDE/release-service/26.04.3/kalzium-26.04.3.tar.xz) = 22681676 diff --git a/science/step/distinfo b/science/step/distinfo index 58e2a8cc6d6d..8ca2cf32d303 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478603 -SHA256 (KDE/release-service/26.04.2/step-26.04.2.tar.xz) = 4eb2130f6f5316df1b25d44c58787a527b24a57b2b0f5dcb577e456f45b8393f -SIZE (KDE/release-service/26.04.2/step-26.04.2.tar.xz) = 1029836 +TIMESTAMP = 1782826952 +SHA256 (KDE/release-service/26.04.3/step-26.04.3.tar.xz) = 37abc38d7f1931842d2b910ee28f8788b40d8a021a926c4a1b9b7f0aedd05fa4 +SIZE (KDE/release-service/26.04.3/step-26.04.3.tar.xz) = 1021296 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index dd0b555d7b27..3aca74f0dece 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1756 +1,1711 @@ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/knsrcfiles/step.knsrc share/locale/ar/LC_MESSAGES/step.mo share/locale/ar/LC_MESSAGES/step_example_files.mo share/locale/ar/LC_MESSAGES/step_objinfo_files.mo share/locale/ar/LC_MESSAGES/step_qt.qm share/locale/be/LC_MESSAGES/step.mo share/locale/be/LC_MESSAGES/step_qt.qm -share/locale/bg/LC_MESSAGES/step.mo -share/locale/bg/LC_MESSAGES/step_example_files.mo -share/locale/bg/LC_MESSAGES/step_objinfo_files.mo -share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo share/locale/eo/LC_MESSAGES/step_example_files.mo share/locale/eo/LC_MESSAGES/step_objinfo_files.mo share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/et/LC_MESSAGES/step_qt.qm share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/eu/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo share/locale/fi/LC_MESSAGES/step_example_files.mo share/locale/fi/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo share/locale/ga/LC_MESSAGES/step_example_files.mo share/locale/ga/LC_MESSAGES/step_objinfo_files.mo share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step_example_files.mo share/locale/gl/LC_MESSAGES/step_objinfo_files.mo share/locale/gl/LC_MESSAGES/step_qt.qm share/locale/gu/LC_MESSAGES/step.mo share/locale/gu/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/ia/LC_MESSAGES/step.mo share/locale/ia/LC_MESSAGES/step_example_files.mo share/locale/ia/LC_MESSAGES/step_objinfo_files.mo share/locale/ia/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/ja/LC_MESSAGES/step_qt.qm share/locale/ka/LC_MESSAGES/step.mo share/locale/ka/LC_MESSAGES/step_example_files.mo share/locale/ka/LC_MESSAGES/step_objinfo_files.mo share/locale/ka/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step_qt.qm share/locale/ko/LC_MESSAGES/step.mo share/locale/ko/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo share/locale/lv/LC_MESSAGES/step_example_files.mo share/locale/lv/LC_MESSAGES/step_objinfo_files.mo share/locale/lv/LC_MESSAGES/step_qt.qm share/locale/mai/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js share/locale/oc/LC_MESSAGES/step.mo share/locale/oc/LC_MESSAGES/step_qt.qm share/locale/pa/LC_MESSAGES/step.mo share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_example_files.mo share/locale/pl/LC_MESSAGES/step_objinfo_files.mo share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo share/locale/ru/LC_MESSAGES/step_qt.qm share/locale/si/LC_MESSAGES/step.mo share/locale/si/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_example_files.mo share/locale/sl/LC_MESSAGES/step_objinfo_files.mo share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sq/LC_MESSAGES/step.mo share/locale/sq/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/sv/LC_MESSAGES/step_qt.qm share/locale/th/LC_MESSAGES/step.mo share/locale/th/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo share/locale/tr/LC_MESSAGES/step_example_files.mo share/locale/tr/LC_MESSAGES/step_objinfo_files.mo share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/ar/brownian.step %%DATADIR%%/examples/ar/doublependulum.step %%DATADIR%%/examples/ar/eightpendula.step %%DATADIR%%/examples/ar/first.step %%DATADIR%%/examples/ar/fourpendula.step %%DATADIR%%/examples/ar/gas.step %%DATADIR%%/examples/ar/graph.step %%DATADIR%%/examples/ar/liquid.step %%DATADIR%%/examples/ar/lissajous.step %%DATADIR%%/examples/ar/motor.step %%DATADIR%%/examples/ar/motor1.step %%DATADIR%%/examples/ar/note.step %%DATADIR%%/examples/ar/resonance.step %%DATADIR%%/examples/ar/softbody.step %%DATADIR%%/examples/ar/solar.step %%DATADIR%%/examples/ar/springs.step %%DATADIR%%/examples/ar/wave.step -%%DATADIR%%/examples/bg/brownian.step -%%DATADIR%%/examples/bg/doublependulum.step -%%DATADIR%%/examples/bg/eightpendula.step -%%DATADIR%%/examples/bg/first.step -%%DATADIR%%/examples/bg/fourpendula.step -%%DATADIR%%/examples/bg/gas.step -%%DATADIR%%/examples/bg/graph.step -%%DATADIR%%/examples/bg/liquid.step -%%DATADIR%%/examples/bg/lissajous.step -%%DATADIR%%/examples/bg/motor.step -%%DATADIR%%/examples/bg/motor1.step -%%DATADIR%%/examples/bg/note.step -%%DATADIR%%/examples/bg/resonance.step -%%DATADIR%%/examples/bg/softbody.step -%%DATADIR%%/examples/bg/solar.step -%%DATADIR%%/examples/bg/springs.step -%%DATADIR%%/examples/bg/wave.step %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/eo/brownian.step %%DATADIR%%/examples/eo/doublependulum.step %%DATADIR%%/examples/eo/eightpendula.step %%DATADIR%%/examples/eo/first.step %%DATADIR%%/examples/eo/fourpendula.step %%DATADIR%%/examples/eo/gas.step %%DATADIR%%/examples/eo/graph.step %%DATADIR%%/examples/eo/liquid.step %%DATADIR%%/examples/eo/lissajous.step %%DATADIR%%/examples/eo/motor.step %%DATADIR%%/examples/eo/motor1.step %%DATADIR%%/examples/eo/note.step %%DATADIR%%/examples/eo/resonance.step %%DATADIR%%/examples/eo/softbody.step %%DATADIR%%/examples/eo/solar.step %%DATADIR%%/examples/eo/springs.step %%DATADIR%%/examples/eo/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/eu/brownian.step %%DATADIR%%/examples/eu/doublependulum.step %%DATADIR%%/examples/eu/eightpendula.step %%DATADIR%%/examples/eu/first.step %%DATADIR%%/examples/eu/fourpendula.step %%DATADIR%%/examples/eu/gas.step %%DATADIR%%/examples/eu/graph.step %%DATADIR%%/examples/eu/liquid.step %%DATADIR%%/examples/eu/lissajous.step %%DATADIR%%/examples/eu/motor.step %%DATADIR%%/examples/eu/motor1.step %%DATADIR%%/examples/eu/note.step %%DATADIR%%/examples/eu/resonance.step %%DATADIR%%/examples/eu/softbody.step %%DATADIR%%/examples/eu/solar.step %%DATADIR%%/examples/eu/springs.step %%DATADIR%%/examples/eu/wave.step %%DATADIR%%/examples/fi/brownian.step %%DATADIR%%/examples/fi/doublependulum.step %%DATADIR%%/examples/fi/eightpendula.step %%DATADIR%%/examples/fi/first.step %%DATADIR%%/examples/fi/fourpendula.step %%DATADIR%%/examples/fi/gas.step %%DATADIR%%/examples/fi/graph.step %%DATADIR%%/examples/fi/liquid.step %%DATADIR%%/examples/fi/lissajous.step %%DATADIR%%/examples/fi/motor.step %%DATADIR%%/examples/fi/motor1.step %%DATADIR%%/examples/fi/note.step %%DATADIR%%/examples/fi/resonance.step %%DATADIR%%/examples/fi/softbody.step %%DATADIR%%/examples/fi/solar.step %%DATADIR%%/examples/fi/springs.step %%DATADIR%%/examples/fi/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/ga/brownian.step %%DATADIR%%/examples/ga/doublependulum.step %%DATADIR%%/examples/ga/eightpendula.step %%DATADIR%%/examples/ga/first.step %%DATADIR%%/examples/ga/fourpendula.step %%DATADIR%%/examples/ga/gas.step %%DATADIR%%/examples/ga/graph.step %%DATADIR%%/examples/ga/liquid.step %%DATADIR%%/examples/ga/lissajous.step %%DATADIR%%/examples/ga/motor.step %%DATADIR%%/examples/ga/motor1.step %%DATADIR%%/examples/ga/note.step %%DATADIR%%/examples/ga/resonance.step %%DATADIR%%/examples/ga/softbody.step %%DATADIR%%/examples/ga/solar.step %%DATADIR%%/examples/ga/springs.step %%DATADIR%%/examples/ga/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/gl/brownian.step %%DATADIR%%/examples/gl/doublependulum.step %%DATADIR%%/examples/gl/eightpendula.step %%DATADIR%%/examples/gl/first.step %%DATADIR%%/examples/gl/fourpendula.step %%DATADIR%%/examples/gl/gas.step %%DATADIR%%/examples/gl/graph.step %%DATADIR%%/examples/gl/liquid.step %%DATADIR%%/examples/gl/lissajous.step %%DATADIR%%/examples/gl/motor.step %%DATADIR%%/examples/gl/motor1.step %%DATADIR%%/examples/gl/note.step %%DATADIR%%/examples/gl/resonance.step %%DATADIR%%/examples/gl/softbody.step %%DATADIR%%/examples/gl/solar.step %%DATADIR%%/examples/gl/springs.step %%DATADIR%%/examples/gl/wave.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/ia/brownian.step %%DATADIR%%/examples/ia/doublependulum.step %%DATADIR%%/examples/ia/eightpendula.step %%DATADIR%%/examples/ia/first.step %%DATADIR%%/examples/ia/fourpendula.step %%DATADIR%%/examples/ia/gas.step %%DATADIR%%/examples/ia/graph.step %%DATADIR%%/examples/ia/liquid.step %%DATADIR%%/examples/ia/lissajous.step %%DATADIR%%/examples/ia/motor.step %%DATADIR%%/examples/ia/motor1.step %%DATADIR%%/examples/ia/note.step %%DATADIR%%/examples/ia/resonance.step %%DATADIR%%/examples/ia/softbody.step %%DATADIR%%/examples/ia/solar.step %%DATADIR%%/examples/ia/springs.step %%DATADIR%%/examples/ia/wave.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/ka/brownian.step %%DATADIR%%/examples/ka/doublependulum.step %%DATADIR%%/examples/ka/eightpendula.step %%DATADIR%%/examples/ka/first.step %%DATADIR%%/examples/ka/fourpendula.step %%DATADIR%%/examples/ka/gas.step %%DATADIR%%/examples/ka/graph.step %%DATADIR%%/examples/ka/liquid.step %%DATADIR%%/examples/ka/lissajous.step %%DATADIR%%/examples/ka/motor.step %%DATADIR%%/examples/ka/motor1.step %%DATADIR%%/examples/ka/note.step %%DATADIR%%/examples/ka/resonance.step %%DATADIR%%/examples/ka/softbody.step %%DATADIR%%/examples/ka/solar.step %%DATADIR%%/examples/ka/springs.step %%DATADIR%%/examples/ka/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/lv/brownian.step %%DATADIR%%/examples/lv/doublependulum.step %%DATADIR%%/examples/lv/eightpendula.step %%DATADIR%%/examples/lv/first.step %%DATADIR%%/examples/lv/fourpendula.step %%DATADIR%%/examples/lv/gas.step %%DATADIR%%/examples/lv/graph.step %%DATADIR%%/examples/lv/liquid.step %%DATADIR%%/examples/lv/lissajous.step %%DATADIR%%/examples/lv/motor.step %%DATADIR%%/examples/lv/motor1.step %%DATADIR%%/examples/lv/note.step %%DATADIR%%/examples/lv/resonance.step %%DATADIR%%/examples/lv/softbody.step %%DATADIR%%/examples/lv/solar.step %%DATADIR%%/examples/lv/springs.step %%DATADIR%%/examples/lv/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pl/brownian.step %%DATADIR%%/examples/pl/doublependulum.step %%DATADIR%%/examples/pl/eightpendula.step %%DATADIR%%/examples/pl/first.step %%DATADIR%%/examples/pl/fourpendula.step %%DATADIR%%/examples/pl/gas.step %%DATADIR%%/examples/pl/graph.step %%DATADIR%%/examples/pl/liquid.step %%DATADIR%%/examples/pl/lissajous.step %%DATADIR%%/examples/pl/motor.step %%DATADIR%%/examples/pl/motor1.step %%DATADIR%%/examples/pl/note.step %%DATADIR%%/examples/pl/resonance.step %%DATADIR%%/examples/pl/softbody.step %%DATADIR%%/examples/pl/solar.step %%DATADIR%%/examples/pl/springs.step %%DATADIR%%/examples/pl/wave.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/sl/brownian.step %%DATADIR%%/examples/sl/doublependulum.step %%DATADIR%%/examples/sl/eightpendula.step %%DATADIR%%/examples/sl/first.step %%DATADIR%%/examples/sl/fourpendula.step %%DATADIR%%/examples/sl/gas.step %%DATADIR%%/examples/sl/graph.step %%DATADIR%%/examples/sl/liquid.step %%DATADIR%%/examples/sl/lissajous.step %%DATADIR%%/examples/sl/motor.step %%DATADIR%%/examples/sl/motor1.step %%DATADIR%%/examples/sl/note.step %%DATADIR%%/examples/sl/resonance.step %%DATADIR%%/examples/sl/softbody.step %%DATADIR%%/examples/sl/solar.step %%DATADIR%%/examples/sl/springs.step %%DATADIR%%/examples/sl/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/tr/brownian.step %%DATADIR%%/examples/tr/doublependulum.step %%DATADIR%%/examples/tr/eightpendula.step %%DATADIR%%/examples/tr/first.step %%DATADIR%%/examples/tr/fourpendula.step %%DATADIR%%/examples/tr/gas.step %%DATADIR%%/examples/tr/graph.step %%DATADIR%%/examples/tr/liquid.step %%DATADIR%%/examples/tr/lissajous.step %%DATADIR%%/examples/tr/motor.step %%DATADIR%%/examples/tr/motor1.step %%DATADIR%%/examples/tr/note.step %%DATADIR%%/examples/tr/resonance.step %%DATADIR%%/examples/tr/softbody.step %%DATADIR%%/examples/tr/solar.step %%DATADIR%%/examples/tr/springs.step %%DATADIR%%/examples/tr/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ar/anchor.html %%DATADIR%%/objinfo/l10n/ar/box.html %%DATADIR%%/objinfo/l10n/ar/chargedparticle.html %%DATADIR%%/objinfo/l10n/ar/coulombforce.html %%DATADIR%%/objinfo/l10n/ar/disk.html %%DATADIR%%/objinfo/l10n/ar/gas.html %%DATADIR%%/objinfo/l10n/ar/gasljforce.html %%DATADIR%%/objinfo/l10n/ar/gasparticle.html %%DATADIR%%/objinfo/l10n/ar/gravitationforce.html %%DATADIR%%/objinfo/l10n/ar/linearmotor.html %%DATADIR%%/objinfo/l10n/ar/meter.html %%DATADIR%%/objinfo/l10n/ar/note.html %%DATADIR%%/objinfo/l10n/ar/particle.html %%DATADIR%%/objinfo/l10n/ar/pin.html %%DATADIR%%/objinfo/l10n/ar/polygon.html %%DATADIR%%/objinfo/l10n/ar/softbody.html %%DATADIR%%/objinfo/l10n/ar/spring.html %%DATADIR%%/objinfo/l10n/ar/weightforce.html %%DATADIR%%/objinfo/l10n/ar/world.html -%%DATADIR%%/objinfo/l10n/bg/anchor.html -%%DATADIR%%/objinfo/l10n/bg/box.html -%%DATADIR%%/objinfo/l10n/bg/chargedparticle.html -%%DATADIR%%/objinfo/l10n/bg/coulombforce.html -%%DATADIR%%/objinfo/l10n/bg/disk.html -%%DATADIR%%/objinfo/l10n/bg/gas.html -%%DATADIR%%/objinfo/l10n/bg/gasljforce.html -%%DATADIR%%/objinfo/l10n/bg/gasparticle.html -%%DATADIR%%/objinfo/l10n/bg/gravitationforce.html -%%DATADIR%%/objinfo/l10n/bg/linearmotor.html -%%DATADIR%%/objinfo/l10n/bg/meter.html -%%DATADIR%%/objinfo/l10n/bg/note.html -%%DATADIR%%/objinfo/l10n/bg/particle.html -%%DATADIR%%/objinfo/l10n/bg/pin.html -%%DATADIR%%/objinfo/l10n/bg/polygon.html -%%DATADIR%%/objinfo/l10n/bg/softbody.html -%%DATADIR%%/objinfo/l10n/bg/spring.html -%%DATADIR%%/objinfo/l10n/bg/weightforce.html -%%DATADIR%%/objinfo/l10n/bg/world.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/eo/anchor.html %%DATADIR%%/objinfo/l10n/eo/box.html %%DATADIR%%/objinfo/l10n/eo/chargedparticle.html %%DATADIR%%/objinfo/l10n/eo/coulombforce.html %%DATADIR%%/objinfo/l10n/eo/disk.html %%DATADIR%%/objinfo/l10n/eo/gas.html %%DATADIR%%/objinfo/l10n/eo/gasljforce.html %%DATADIR%%/objinfo/l10n/eo/gasparticle.html %%DATADIR%%/objinfo/l10n/eo/gravitationforce.html %%DATADIR%%/objinfo/l10n/eo/linearmotor.html %%DATADIR%%/objinfo/l10n/eo/meter.html %%DATADIR%%/objinfo/l10n/eo/note.html %%DATADIR%%/objinfo/l10n/eo/particle.html %%DATADIR%%/objinfo/l10n/eo/pin.html %%DATADIR%%/objinfo/l10n/eo/polygon.html %%DATADIR%%/objinfo/l10n/eo/softbody.html %%DATADIR%%/objinfo/l10n/eo/spring.html %%DATADIR%%/objinfo/l10n/eo/weightforce.html %%DATADIR%%/objinfo/l10n/eo/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/world.html %%DATADIR%%/objinfo/l10n/fi/anchor.html %%DATADIR%%/objinfo/l10n/fi/box.html %%DATADIR%%/objinfo/l10n/fi/chargedparticle.html %%DATADIR%%/objinfo/l10n/fi/coulombforce.html %%DATADIR%%/objinfo/l10n/fi/disk.html %%DATADIR%%/objinfo/l10n/fi/gas.html %%DATADIR%%/objinfo/l10n/fi/gasljforce.html %%DATADIR%%/objinfo/l10n/fi/gasparticle.html %%DATADIR%%/objinfo/l10n/fi/gravitationforce.html %%DATADIR%%/objinfo/l10n/fi/linearmotor.html %%DATADIR%%/objinfo/l10n/fi/meter.html %%DATADIR%%/objinfo/l10n/fi/note.html %%DATADIR%%/objinfo/l10n/fi/particle.html %%DATADIR%%/objinfo/l10n/fi/pin.html %%DATADIR%%/objinfo/l10n/fi/polygon.html %%DATADIR%%/objinfo/l10n/fi/softbody.html %%DATADIR%%/objinfo/l10n/fi/spring.html %%DATADIR%%/objinfo/l10n/fi/weightforce.html %%DATADIR%%/objinfo/l10n/fi/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/ga/anchor.html %%DATADIR%%/objinfo/l10n/ga/box.html %%DATADIR%%/objinfo/l10n/ga/chargedparticle.html %%DATADIR%%/objinfo/l10n/ga/coulombforce.html %%DATADIR%%/objinfo/l10n/ga/disk.html %%DATADIR%%/objinfo/l10n/ga/gas.html %%DATADIR%%/objinfo/l10n/ga/gasljforce.html %%DATADIR%%/objinfo/l10n/ga/gasparticle.html %%DATADIR%%/objinfo/l10n/ga/gravitationforce.html %%DATADIR%%/objinfo/l10n/ga/linearmotor.html %%DATADIR%%/objinfo/l10n/ga/meter.html %%DATADIR%%/objinfo/l10n/ga/note.html %%DATADIR%%/objinfo/l10n/ga/particle.html %%DATADIR%%/objinfo/l10n/ga/pin.html %%DATADIR%%/objinfo/l10n/ga/polygon.html %%DATADIR%%/objinfo/l10n/ga/softbody.html %%DATADIR%%/objinfo/l10n/ga/spring.html %%DATADIR%%/objinfo/l10n/ga/weightforce.html %%DATADIR%%/objinfo/l10n/ga/world.html %%DATADIR%%/objinfo/l10n/gl/anchor.html %%DATADIR%%/objinfo/l10n/gl/box.html %%DATADIR%%/objinfo/l10n/gl/chargedparticle.html %%DATADIR%%/objinfo/l10n/gl/coulombforce.html %%DATADIR%%/objinfo/l10n/gl/disk.html %%DATADIR%%/objinfo/l10n/gl/gas.html %%DATADIR%%/objinfo/l10n/gl/gasljforce.html %%DATADIR%%/objinfo/l10n/gl/gasparticle.html %%DATADIR%%/objinfo/l10n/gl/gravitationforce.html %%DATADIR%%/objinfo/l10n/gl/linearmotor.html %%DATADIR%%/objinfo/l10n/gl/meter.html %%DATADIR%%/objinfo/l10n/gl/note.html %%DATADIR%%/objinfo/l10n/gl/particle.html %%DATADIR%%/objinfo/l10n/gl/pin.html %%DATADIR%%/objinfo/l10n/gl/polygon.html %%DATADIR%%/objinfo/l10n/gl/softbody.html %%DATADIR%%/objinfo/l10n/gl/spring.html %%DATADIR%%/objinfo/l10n/gl/weightforce.html %%DATADIR%%/objinfo/l10n/gl/world.html %%DATADIR%%/objinfo/l10n/ia/anchor.html %%DATADIR%%/objinfo/l10n/ia/box.html %%DATADIR%%/objinfo/l10n/ia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ia/coulombforce.html %%DATADIR%%/objinfo/l10n/ia/disk.html %%DATADIR%%/objinfo/l10n/ia/gas.html %%DATADIR%%/objinfo/l10n/ia/gasljforce.html %%DATADIR%%/objinfo/l10n/ia/gasparticle.html %%DATADIR%%/objinfo/l10n/ia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ia/linearmotor.html %%DATADIR%%/objinfo/l10n/ia/meter.html %%DATADIR%%/objinfo/l10n/ia/note.html %%DATADIR%%/objinfo/l10n/ia/particle.html %%DATADIR%%/objinfo/l10n/ia/pin.html %%DATADIR%%/objinfo/l10n/ia/polygon.html %%DATADIR%%/objinfo/l10n/ia/softbody.html %%DATADIR%%/objinfo/l10n/ia/spring.html %%DATADIR%%/objinfo/l10n/ia/weightforce.html %%DATADIR%%/objinfo/l10n/ia/world.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/ka/anchor.html %%DATADIR%%/objinfo/l10n/ka/box.html %%DATADIR%%/objinfo/l10n/ka/chargedparticle.html %%DATADIR%%/objinfo/l10n/ka/coulombforce.html %%DATADIR%%/objinfo/l10n/ka/disk.html %%DATADIR%%/objinfo/l10n/ka/gas.html %%DATADIR%%/objinfo/l10n/ka/gasljforce.html %%DATADIR%%/objinfo/l10n/ka/gasparticle.html %%DATADIR%%/objinfo/l10n/ka/gravitationforce.html %%DATADIR%%/objinfo/l10n/ka/linearmotor.html %%DATADIR%%/objinfo/l10n/ka/meter.html %%DATADIR%%/objinfo/l10n/ka/note.html %%DATADIR%%/objinfo/l10n/ka/particle.html %%DATADIR%%/objinfo/l10n/ka/pin.html %%DATADIR%%/objinfo/l10n/ka/polygon.html %%DATADIR%%/objinfo/l10n/ka/softbody.html %%DATADIR%%/objinfo/l10n/ka/spring.html %%DATADIR%%/objinfo/l10n/ka/weightforce.html %%DATADIR%%/objinfo/l10n/ka/world.html %%DATADIR%%/objinfo/l10n/ko/anchor.html %%DATADIR%%/objinfo/l10n/ko/box.html %%DATADIR%%/objinfo/l10n/ko/chargedparticle.html %%DATADIR%%/objinfo/l10n/ko/coulombforce.html %%DATADIR%%/objinfo/l10n/ko/disk.html %%DATADIR%%/objinfo/l10n/ko/gas.html %%DATADIR%%/objinfo/l10n/ko/gasljforce.html %%DATADIR%%/objinfo/l10n/ko/gasparticle.html %%DATADIR%%/objinfo/l10n/ko/gravitationforce.html %%DATADIR%%/objinfo/l10n/ko/linearmotor.html %%DATADIR%%/objinfo/l10n/ko/meter.html %%DATADIR%%/objinfo/l10n/ko/note.html %%DATADIR%%/objinfo/l10n/ko/particle.html %%DATADIR%%/objinfo/l10n/ko/pin.html %%DATADIR%%/objinfo/l10n/ko/polygon.html %%DATADIR%%/objinfo/l10n/ko/softbody.html %%DATADIR%%/objinfo/l10n/ko/spring.html %%DATADIR%%/objinfo/l10n/ko/weightforce.html %%DATADIR%%/objinfo/l10n/ko/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/lv/anchor.html %%DATADIR%%/objinfo/l10n/lv/box.html %%DATADIR%%/objinfo/l10n/lv/chargedparticle.html %%DATADIR%%/objinfo/l10n/lv/coulombforce.html %%DATADIR%%/objinfo/l10n/lv/disk.html %%DATADIR%%/objinfo/l10n/lv/gas.html %%DATADIR%%/objinfo/l10n/lv/gasljforce.html %%DATADIR%%/objinfo/l10n/lv/gasparticle.html %%DATADIR%%/objinfo/l10n/lv/gravitationforce.html %%DATADIR%%/objinfo/l10n/lv/linearmotor.html %%DATADIR%%/objinfo/l10n/lv/meter.html %%DATADIR%%/objinfo/l10n/lv/note.html %%DATADIR%%/objinfo/l10n/lv/particle.html %%DATADIR%%/objinfo/l10n/lv/pin.html %%DATADIR%%/objinfo/l10n/lv/polygon.html %%DATADIR%%/objinfo/l10n/lv/softbody.html %%DATADIR%%/objinfo/l10n/lv/spring.html %%DATADIR%%/objinfo/l10n/lv/weightforce.html %%DATADIR%%/objinfo/l10n/lv/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pl/anchor.html %%DATADIR%%/objinfo/l10n/pl/box.html %%DATADIR%%/objinfo/l10n/pl/chargedparticle.html %%DATADIR%%/objinfo/l10n/pl/coulombforce.html %%DATADIR%%/objinfo/l10n/pl/disk.html %%DATADIR%%/objinfo/l10n/pl/gas.html %%DATADIR%%/objinfo/l10n/pl/gasljforce.html %%DATADIR%%/objinfo/l10n/pl/gasparticle.html %%DATADIR%%/objinfo/l10n/pl/gravitationforce.html %%DATADIR%%/objinfo/l10n/pl/linearmotor.html %%DATADIR%%/objinfo/l10n/pl/meter.html %%DATADIR%%/objinfo/l10n/pl/note.html %%DATADIR%%/objinfo/l10n/pl/particle.html %%DATADIR%%/objinfo/l10n/pl/pin.html %%DATADIR%%/objinfo/l10n/pl/polygon.html %%DATADIR%%/objinfo/l10n/pl/softbody.html %%DATADIR%%/objinfo/l10n/pl/spring.html %%DATADIR%%/objinfo/l10n/pl/weightforce.html %%DATADIR%%/objinfo/l10n/pl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/tr/anchor.html %%DATADIR%%/objinfo/l10n/tr/box.html %%DATADIR%%/objinfo/l10n/tr/chargedparticle.html %%DATADIR%%/objinfo/l10n/tr/coulombforce.html %%DATADIR%%/objinfo/l10n/tr/disk.html %%DATADIR%%/objinfo/l10n/tr/gas.html %%DATADIR%%/objinfo/l10n/tr/gasljforce.html %%DATADIR%%/objinfo/l10n/tr/gasparticle.html %%DATADIR%%/objinfo/l10n/tr/gravitationforce.html %%DATADIR%%/objinfo/l10n/tr/linearmotor.html %%DATADIR%%/objinfo/l10n/tr/meter.html %%DATADIR%%/objinfo/l10n/tr/note.html %%DATADIR%%/objinfo/l10n/tr/particle.html %%DATADIR%%/objinfo/l10n/tr/pin.html %%DATADIR%%/objinfo/l10n/tr/polygon.html %%DATADIR%%/objinfo/l10n/tr/softbody.html %%DATADIR%%/objinfo/l10n/tr/spring.html %%DATADIR%%/objinfo/l10n/tr/weightforce.html %%DATADIR%%/objinfo/l10n/tr/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ar/tutorial1.step %%DATADIR%%/tutorials/ar/tutorial2.step %%DATADIR%%/tutorials/ar/tutorial3.step %%DATADIR%%/tutorials/ar/tutorial4.step %%DATADIR%%/tutorials/ar/tutorial5.step -%%DATADIR%%/tutorials/bg/tutorial1.step -%%DATADIR%%/tutorials/bg/tutorial2.step -%%DATADIR%%/tutorials/bg/tutorial3.step -%%DATADIR%%/tutorials/bg/tutorial4.step -%%DATADIR%%/tutorials/bg/tutorial5.step %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/eo/tutorial1.step %%DATADIR%%/tutorials/eo/tutorial2.step %%DATADIR%%/tutorials/eo/tutorial3.step %%DATADIR%%/tutorials/eo/tutorial4.step %%DATADIR%%/tutorials/eo/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fi/tutorial1.step %%DATADIR%%/tutorials/fi/tutorial2.step %%DATADIR%%/tutorials/fi/tutorial3.step %%DATADIR%%/tutorials/fi/tutorial4.step %%DATADIR%%/tutorials/fi/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/ga/tutorial1.step %%DATADIR%%/tutorials/ga/tutorial2.step %%DATADIR%%/tutorials/ga/tutorial3.step %%DATADIR%%/tutorials/ga/tutorial4.step %%DATADIR%%/tutorials/ga/tutorial5.step %%DATADIR%%/tutorials/gl/tutorial1.step %%DATADIR%%/tutorials/gl/tutorial2.step %%DATADIR%%/tutorials/gl/tutorial3.step %%DATADIR%%/tutorials/gl/tutorial4.step %%DATADIR%%/tutorials/gl/tutorial5.step %%DATADIR%%/tutorials/ia/tutorial1.step %%DATADIR%%/tutorials/ia/tutorial2.step %%DATADIR%%/tutorials/ia/tutorial3.step %%DATADIR%%/tutorials/ia/tutorial4.step %%DATADIR%%/tutorials/ia/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/ka/tutorial1.step %%DATADIR%%/tutorials/ka/tutorial2.step %%DATADIR%%/tutorials/ka/tutorial3.step %%DATADIR%%/tutorials/ka/tutorial4.step %%DATADIR%%/tutorials/ka/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/lv/tutorial1.step %%DATADIR%%/tutorials/lv/tutorial2.step %%DATADIR%%/tutorials/lv/tutorial3.step %%DATADIR%%/tutorials/lv/tutorial4.step %%DATADIR%%/tutorials/lv/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pl/tutorial1.step %%DATADIR%%/tutorials/pl/tutorial2.step %%DATADIR%%/tutorials/pl/tutorial3.step %%DATADIR%%/tutorials/pl/tutorial4.step %%DATADIR%%/tutorials/pl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sl/tutorial1.step %%DATADIR%%/tutorials/sl/tutorial2.step %%DATADIR%%/tutorials/sl/tutorial3.step %%DATADIR%%/tutorials/sl/tutorial4.step %%DATADIR%%/tutorials/sl/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step %%DATADIR%%/tutorials/tr/tutorial1.step %%DATADIR%%/tutorials/tr/tutorial2.step %%DATADIR%%/tutorials/tr/tutorial3.step %%DATADIR%%/tutorials/tr/tutorial4.step %%DATADIR%%/tutorials/tr/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step diff --git a/security/keysmith/distinfo b/security/keysmith/distinfo index 25b52841e3c3..12e052dce553 100644 --- a/security/keysmith/distinfo +++ b/security/keysmith/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478603 -SHA256 (KDE/release-service/26.04.2/keysmith-26.04.2.tar.xz) = 5f4d64362f2cadfbcb118a2c88bd632710769f3dfc9fb05f94cd60f73d9fa99e -SIZE (KDE/release-service/26.04.2/keysmith-26.04.2.tar.xz) = 250376 +TIMESTAMP = 1782826952 +SHA256 (KDE/release-service/26.04.3/keysmith-26.04.3.tar.xz) = cfbd003512ae94dc1778e6655cea9d77cfb5c860b5bf3016015f8286205573b5 +SIZE (KDE/release-service/26.04.3/keysmith-26.04.3.tar.xz) = 251188 diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index 5c7bc868ebda..8f5dccb72f90 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478604 -SHA256 (KDE/release-service/26.04.2/kgpg-26.04.2.tar.xz) = cd74f3339bfe01908fc297d8770bfaae74602ddc5a31b70b70dedbd831d9bbbf -SIZE (KDE/release-service/26.04.2/kgpg-26.04.2.tar.xz) = 3049156 +TIMESTAMP = 1782826954 +SHA256 (KDE/release-service/26.04.3/kgpg-26.04.3.tar.xz) = ef53918510a4b9d32a5ea524c84cb66212d3f70067bf7217ef4355b081eb9b04 +SIZE (KDE/release-service/26.04.3/kgpg-26.04.3.tar.xz) = 3052292 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 7ce73e1c8f1e..d40e15710f87 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478606 -SHA256 (KDE/release-service/26.04.2/kleopatra-26.04.2.tar.xz) = cafaec7975ef28d557fe1f280c2c62beae86f4c642cf969d7cbc9c05e0ff7aee -SIZE (KDE/release-service/26.04.2/kleopatra-26.04.2.tar.xz) = 2924588 +TIMESTAMP = 1782826956 +SHA256 (KDE/release-service/26.04.3/kleopatra-26.04.3.tar.xz) = 67d1c3786076de19f1005d0b3d75f6b44cfd2027a73615659093e192b9df8e1b +SIZE (KDE/release-service/26.04.3/kleopatra-26.04.3.tar.xz) = 2940428 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 07b6d89d2813..3958e3beb7a0 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478608 -SHA256 (KDE/release-service/26.04.2/kpkpass-26.04.2.tar.xz) = 75e5d6a591d35edb56ff5a03793d50be7c62790b2cfccb88d72ecc68742323d0 -SIZE (KDE/release-service/26.04.2/kpkpass-26.04.2.tar.xz) = 36136 +TIMESTAMP = 1782826958 +SHA256 (KDE/release-service/26.04.3/kpkpass-26.04.3.tar.xz) = fb03b04fa7d9b9097ff3570a45ca03aafd5da5f33ead17e5ceecb7b3ecc5cb87 +SIZE (KDE/release-service/26.04.3/kpkpass-26.04.3.tar.xz) = 36124 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index b6078dce5fbe..d41eb49208ca 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478609 -SHA256 (KDE/release-service/26.04.2/kwalletmanager-26.04.2.tar.xz) = 9693258df56bc08dc0fc122ce36eb79ee04498d3be7706635af134f3c9ebe5ea -SIZE (KDE/release-service/26.04.2/kwalletmanager-26.04.2.tar.xz) = 1011468 +TIMESTAMP = 1782826959 +SHA256 (KDE/release-service/26.04.3/kwalletmanager-26.04.3.tar.xz) = e38925ff514ca8fc219762a0d82b62920f4df62cab025af95035ff5af429df4b +SIZE (KDE/release-service/26.04.3/kwalletmanager-26.04.3.tar.xz) = 1011492 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 3450db826da6..f80ed2ed61ea 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478611 -SHA256 (KDE/release-service/26.04.2/libkleo-26.04.2.tar.xz) = fa2ee37491410508db5eb05bbd2f657be081271b8e0e7183849e9657249ac49f -SIZE (KDE/release-service/26.04.2/libkleo-26.04.2.tar.xz) = 686648 +TIMESTAMP = 1782826961 +SHA256 (KDE/release-service/26.04.3/libkleo-26.04.3.tar.xz) = 47772211be61a31947474f871e190f36344a87defec7bc97a468ed6a15b50c09 +SIZE (KDE/release-service/26.04.3/libkleo-26.04.3.tar.xz) = 686836 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 5cb6f87ffe9b..25a426281b66 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478613 -SHA256 (KDE/release-service/26.04.2/baloo-widgets-26.04.2.tar.xz) = 7daf3e6821b9988c171a316cb547591fba2caca78818c2da1d409603ea93c00a -SIZE (KDE/release-service/26.04.2/baloo-widgets-26.04.2.tar.xz) = 278736 +TIMESTAMP = 1782826963 +SHA256 (KDE/release-service/26.04.3/baloo-widgets-26.04.3.tar.xz) = fa5288d216d3ed9ed0926385dbc0b266b60317a60c231a6dccaff4bcd810d9fc +SIZE (KDE/release-service/26.04.3/baloo-widgets-26.04.3.tar.xz) = 278816 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 2042ea78653a..c09691442891 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478614 -SHA256 (KDE/release-service/26.04.2/filelight-26.04.2.tar.xz) = e8c8f686814363d321107fc70db1d34eaed3d757bb79767c43e7976c08bd6ff8 -SIZE (KDE/release-service/26.04.2/filelight-26.04.2.tar.xz) = 693520 +TIMESTAMP = 1782826965 +SHA256 (KDE/release-service/26.04.3/filelight-26.04.3.tar.xz) = b3fb2947253566bda42a15c111ccf1df0cff7003e90c29acfa05f50ac9bc03f6 +SIZE (KDE/release-service/26.04.3/filelight-26.04.3.tar.xz) = 693508 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 30560b2323da..1d6b9f5e4239 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478616 -SHA256 (KDE/release-service/26.04.2/k3b-26.04.2.tar.xz) = 080c144d537708dc864045d62adc72006cf1bdc61df0beb75446fcfb90dbc2ea -SIZE (KDE/release-service/26.04.2/k3b-26.04.2.tar.xz) = 10798396 +TIMESTAMP = 1782826967 +SHA256 (KDE/release-service/26.04.3/k3b-26.04.3.tar.xz) = d5caeecca1b62a72d6cd9c09526294b1c5cde4a25bbb147da7721a8fccf2317e +SIZE (KDE/release-service/26.04.3/k3b-26.04.3.tar.xz) = 10800804 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 6fdcff0d1540..9cce0ec5170a 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478618 -SHA256 (KDE/release-service/26.04.2/kbackup-26.04.2.tar.xz) = 75c37cb19ee0b39b138fe800d8de44cdad5067413f8e6b251db2778c52b540b4 -SIZE (KDE/release-service/26.04.2/kbackup-26.04.2.tar.xz) = 447400 +TIMESTAMP = 1782826968 +SHA256 (KDE/release-service/26.04.3/kbackup-26.04.3.tar.xz) = 95d4313938289e520a94b7ef54c78e5d5b9d1a0ffb617ae5bb86300267e9a075 +SIZE (KDE/release-service/26.04.3/kbackup-26.04.3.tar.xz) = 447424 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 6286bce2751b..7c69cca05d88 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478619 -SHA256 (KDE/release-service/26.04.2/kcron-26.04.2.tar.xz) = 04a3732418df1e98e0d51743aed5452b6890162083198eeaaab81289b63b9a13 -SIZE (KDE/release-service/26.04.2/kcron-26.04.2.tar.xz) = 902664 +TIMESTAMP = 1782826970 +SHA256 (KDE/release-service/26.04.3/kcron-26.04.3.tar.xz) = d1089808ff789db0d5615851317753a0a446f5c6adb947c9ddd3f0496d25eda9 +SIZE (KDE/release-service/26.04.3/kcron-26.04.3.tar.xz) = 902984 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 5ba4b8fd1f7f..46ff3c0ce50e 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478621 -SHA256 (KDE/release-service/26.04.2/kdebugsettings-26.04.2.tar.xz) = d459d7d218e19ef9c9f0439bf0e409d5effb900efb30dcc829ff9bd49433bf73 -SIZE (KDE/release-service/26.04.2/kdebugsettings-26.04.2.tar.xz) = 124276 +TIMESTAMP = 1782826972 +SHA256 (KDE/release-service/26.04.3/kdebugsettings-26.04.3.tar.xz) = 13ee5dbf92fbb9d7a037e7af0d4d8e8282191545bedc4843434ca9a38caedee9 +SIZE (KDE/release-service/26.04.3/kdebugsettings-26.04.3.tar.xz) = 124308 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 97044549cd71..77b4c5c78258 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478622 -SHA256 (KDE/release-service/26.04.2/kdf-26.04.2.tar.xz) = f688f29b7421ef5d0635c34795d77c32dafb6f83d1683ae1eb7142fd034f7d97 -SIZE (KDE/release-service/26.04.2/kdf-26.04.2.tar.xz) = 481652 +TIMESTAMP = 1782826974 +SHA256 (KDE/release-service/26.04.3/kdf-26.04.3.tar.xz) = 9d59815cbcc7e61c730df57944112014785b702d6c715a63e19ba271fb0fcb8e +SIZE (KDE/release-service/26.04.3/kdf-26.04.3.tar.xz) = 481908 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index a850d63d46bc..bed42b0a06cc 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478624 -SHA256 (KDE/release-service/26.04.2/kdialog-26.04.2.tar.xz) = 527ecfd4a9af19078f55f5758977821dbcef47a1b496b1a1b680d681228ade6d -SIZE (KDE/release-service/26.04.2/kdialog-26.04.2.tar.xz) = 149624 +TIMESTAMP = 1782826975 +SHA256 (KDE/release-service/26.04.3/kdialog-26.04.3.tar.xz) = e8b6dd4f54b6b9d0051a5014af069332327717c0e36bbc36430eddcbb76f226e +SIZE (KDE/release-service/26.04.3/kdialog-26.04.3.tar.xz) = 149612 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 6be4a7561393..328537380288 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478626 -SHA256 (KDE/release-service/26.04.2/khelpcenter-26.04.2.tar.xz) = e3f95b6c8eaa6d7e3479652a762ded77384af8747961731b414fac3414d59799 -SIZE (KDE/release-service/26.04.2/khelpcenter-26.04.2.tar.xz) = 4254736 +TIMESTAMP = 1782826977 +SHA256 (KDE/release-service/26.04.3/khelpcenter-26.04.3.tar.xz) = b1101a10cee699cc2cfcebdda2c7fd0d0b444998a50886845ae057acddca6c79 +SIZE (KDE/release-service/26.04.3/khelpcenter-26.04.3.tar.xz) = 4254764 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index ca48268c3d54..e7960b645939 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478626 -SHA256 (KDE/release-service/26.04.2/kpmcore-26.04.2.tar.xz) = 38ad9c1b52115858cd78fe76355d81bb4db84ad2c31b0933bcf58f4c85b51023 -SIZE (KDE/release-service/26.04.2/kpmcore-26.04.2.tar.xz) = 671064 +TIMESTAMP = 1782826978 +SHA256 (KDE/release-service/26.04.3/kpmcore-26.04.3.tar.xz) = 08018d9465fccaf9f56ee8178f2aa3419d6bcfef667308bb558e387516216e6d +SIZE (KDE/release-service/26.04.3/kpmcore-26.04.3.tar.xz) = 674072 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 18c665fb5943..aad3ae52e1d4 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478628 -SHA256 (KDE/release-service/26.04.2/ksystemlog-26.04.2.tar.xz) = 00815b5318b916ba733d6e8305b6618bfe4c9fb3736140df8ee024dac485009f -SIZE (KDE/release-service/26.04.2/ksystemlog-26.04.2.tar.xz) = 1884392 +TIMESTAMP = 1782826979 +SHA256 (KDE/release-service/26.04.3/ksystemlog-26.04.3.tar.xz) = a93b84c398be0f85ee5b4d54214f306f86f21c168f93791c7a809f6108d28c82 +SIZE (KDE/release-service/26.04.3/ksystemlog-26.04.3.tar.xz) = 1884452 diff --git a/sysutils/signon-kwallet-extension/Makefile b/sysutils/signon-kwallet-extension/Makefile index c4efd402876b..647315379a36 100644 --- a/sysutils/signon-kwallet-extension/Makefile +++ b/sysutils/signon-kwallet-extension/Makefile @@ -1,20 +1,19 @@ PORTNAME= signon-kwallet-extension DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KWallet integration for signon framework WWW= https://projects.kde.org/projects/kde/kdenetwork/signon-kwallet-extension LIB_DEPENDS= libsignon-qt6.so:sysutils/signond USES= cmake compiler:c++11-lang kde:6 pkgconfig qt:6 tar:xz USE_KDE= wallet \ ecm:build USE_QT= base USE_LDCONFIG= ${KDE_PREFIX}/${SE_DIR} PLIST_FILES= ${SE_DIR}/libkeyring-kwallet.so SE_DIR= lib/signon/extensions .include diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index eae2796fdb4f..856b3780fed0 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478629 -SHA256 (KDE/release-service/26.04.2/signon-kwallet-extension-26.04.2.tar.xz) = a8795fa827a6996b91c100d10e8a0c302ae7f8c731c5cc540d50f5a723a2891f -SIZE (KDE/release-service/26.04.2/signon-kwallet-extension-26.04.2.tar.xz) = 11268 +TIMESTAMP = 1782826981 +SHA256 (KDE/release-service/26.04.3/signon-kwallet-extension-26.04.3.tar.xz) = 329bd9bc50504eb6bd7d431f7db6725287832550d60f7189ef8d0201092753c7 +SIZE (KDE/release-service/26.04.3/signon-kwallet-extension-26.04.3.tar.xz) = 11268 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 64509df18771..3d9306d65e8a 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478631 -SHA256 (KDE/release-service/26.04.2/sweeper-26.04.2.tar.xz) = f87b9fb6f0091beb34c229ba0e05da1871955d5f003bb2b109b091a98dce0c97 -SIZE (KDE/release-service/26.04.2/sweeper-26.04.2.tar.xz) = 386836 +TIMESTAMP = 1782826983 +SHA256 (KDE/release-service/26.04.3/sweeper-26.04.3.tar.xz) = 79dafe214e7ca1256ecfc4ab51d13db462dd7736cc656da40822eb00bc7297cd +SIZE (KDE/release-service/26.04.3/sweeper-26.04.3.tar.xz) = 386816 diff --git a/textproc/arianna/distinfo b/textproc/arianna/distinfo index e24effee2fe5..fa38abd318ab 100644 --- a/textproc/arianna/distinfo +++ b/textproc/arianna/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478631 -SHA256 (KDE/release-service/26.04.2/arianna-26.04.2.tar.xz) = c4a09cbd963ed88f20427a9354d27eff3cde075ba53367cdd2c362a54ca766d8 -SIZE (KDE/release-service/26.04.2/arianna-26.04.2.tar.xz) = 1188680 +TIMESTAMP = 1782826983 +SHA256 (KDE/release-service/26.04.3/arianna-26.04.3.tar.xz) = ad34fbc90ffc5e3676c7d316f402095cee3739d2e382985dd3da158cc0a2398e +SIZE (KDE/release-service/26.04.3/arianna-26.04.3.tar.xz) = 1188608 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 12e05a99b139..d1f5452e2663 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478633 -SHA256 (KDE/release-service/26.04.2/kompare-26.04.2.tar.xz) = 7130ee492da6b12f0b33e705b70514cd5eb11019b5799c96376f995ca052fa37 -SIZE (KDE/release-service/26.04.2/kompare-26.04.2.tar.xz) = 963080 +TIMESTAMP = 1782826985 +SHA256 (KDE/release-service/26.04.3/kompare-26.04.3.tar.xz) = fc1299b3cfcad81ec8488a5ea25f189fe7cf727ef91242972cc04e6635d52005 +SIZE (KDE/release-service/26.04.3/kompare-26.04.3.tar.xz) = 963088 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index cdf6b7d4569f..2392730009e7 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478635 -SHA256 (KDE/release-service/26.04.2/libkomparediff2-26.04.2.tar.xz) = 31fed1758f80e560852ad15bc24d6e9778c1a5983ea2fb7ee0081795a0175010 -SIZE (KDE/release-service/26.04.2/libkomparediff2-26.04.2.tar.xz) = 185328 +TIMESTAMP = 1782826987 +SHA256 (KDE/release-service/26.04.3/libkomparediff2-26.04.3.tar.xz) = dd77529a93ac3f9aefe571961e8f7ab14c416f3164a524c6588284bcc1ac817b +SIZE (KDE/release-service/26.04.3/libkomparediff2-26.04.3.tar.xz) = 185516 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index f0a76cdf6f2c..26f7c9a85fd0 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478636 -SHA256 (KDE/release-service/26.04.2/markdownpart-26.04.2.tar.xz) = 094c4c97c5e60ef9e91ccb49a9926a5c84cc9dafd6da33bec833f1dd9695deba -SIZE (KDE/release-service/26.04.2/markdownpart-26.04.2.tar.xz) = 34940 +TIMESTAMP = 1782826988 +SHA256 (KDE/release-service/26.04.3/markdownpart-26.04.3.tar.xz) = 573b9168dbb4184040c6bbbdc93bd21e9b6c43606c5dea23dda30defa35eeab9 +SIZE (KDE/release-service/26.04.3/markdownpart-26.04.3.tar.xz) = 35248 diff --git a/www/angelfish/distinfo b/www/angelfish/distinfo index a5ddbd38b261..e8da6a1ba491 100644 --- a/www/angelfish/distinfo +++ b/www/angelfish/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478636 -SHA256 (KDE/release-service/26.04.2/angelfish-26.04.2.tar.xz) = 7e91b722277c390954bd6dc39e095cf3ea319a922f473011e765b9cebb213d03 -SIZE (KDE/release-service/26.04.2/angelfish-26.04.2.tar.xz) = 311644 +TIMESTAMP = 1782826989 +SHA256 (KDE/release-service/26.04.3/angelfish-26.04.3.tar.xz) = 1283ea5dda7715267b8f66ed0bea214f69db80cbe010ac89b87962351f52f099 +SIZE (KDE/release-service/26.04.3/angelfish-26.04.3.tar.xz) = 312184 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 81134e92ffb5..7460d96c99b1 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478637 -SHA256 (KDE/release-service/26.04.2/falkon-26.04.2.tar.xz) = 8f9a6e3650b6ee3e22664cfd78207148ab7bf39c4a421193f69cd5bbccd819e2 -SIZE (KDE/release-service/26.04.2/falkon-26.04.2.tar.xz) = 2712068 +TIMESTAMP = 1782826989 +SHA256 (KDE/release-service/26.04.3/falkon-26.04.3.tar.xz) = dc924854caa8cceaa578dea083e44630ec48cf3d0b4f638bd7c92c7baecab90f +SIZE (KDE/release-service/26.04.3/falkon-26.04.3.tar.xz) = 2733088 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index 658596f060d7..bb84a3ca8e94 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,972 +1,989 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo share/locale/ar/LC_MESSAGES/falkon_helloqml.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ar/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ast/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ast/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ast/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ast/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ast/LC_MESSAGES/falkon_hellopython.mo share/locale/ast/LC_MESSAGES/falkon_helloqml.mo share/locale/ast/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ast/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ast/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ast/LC_MESSAGES/falkon_pim_qt.qm share/locale/ast/LC_MESSAGES/falkon_qt.qm share/locale/ast/LC_MESSAGES/falkon_runaction.mo share/locale/ast/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ast/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ast/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ast/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo share/locale/bg/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/en/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eo/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eo/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eo/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eo/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eo/LC_MESSAGES/falkon_hellopython.mo share/locale/eo/LC_MESSAGES/falkon_helloqml.mo share/locale/eo/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eo/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eo/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eo/LC_MESSAGES/falkon_pim_qt.qm share/locale/eo/LC_MESSAGES/falkon_qt.qm share/locale/eo/LC_MESSAGES/falkon_runaction.mo share/locale/eo/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/eo/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eo/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eo/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eo/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ga/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ga/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ga/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ga/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ga/LC_MESSAGES/falkon_hellopython.mo share/locale/ga/LC_MESSAGES/falkon_helloqml.mo share/locale/ga/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ga/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ga/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ga/LC_MESSAGES/falkon_pim_qt.qm share/locale/ga/LC_MESSAGES/falkon_qt.qm share/locale/ga/LC_MESSAGES/falkon_runaction.mo share/locale/ga/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ga/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ga/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ga/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ga/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/he/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/he/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/he/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/he/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/he/LC_MESSAGES/falkon_hellopython.mo share/locale/he/LC_MESSAGES/falkon_helloqml.mo share/locale/he/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/he/LC_MESSAGES/falkon_middleclickloader.mo share/locale/he/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/he/LC_MESSAGES/falkon_pim_qt.qm share/locale/he/LC_MESSAGES/falkon_qt.qm share/locale/he/LC_MESSAGES/falkon_runaction.mo share/locale/he/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/he/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/he/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/he/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/he/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/hi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/hi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hi/LC_MESSAGES/falkon_hellopython.mo share/locale/hi/LC_MESSAGES/falkon_helloqml.mo share/locale/hi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/hi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/hi/LC_MESSAGES/falkon_pim_qt.qm share/locale/hi/LC_MESSAGES/falkon_qt.qm share/locale/hi/LC_MESSAGES/falkon_runaction.mo share/locale/hi/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/hi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/hi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/hi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/hi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/hu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_hellopython.mo share/locale/hu/LC_MESSAGES/falkon_helloqml.mo share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/hu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_runaction.mo share/locale/hu/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/hu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/hu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/hu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/is/LC_MESSAGES/falkon_hellopython.mo share/locale/is/LC_MESSAGES/falkon_helloqml.mo share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/is/LC_MESSAGES/falkon_middleclickloader.mo share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm share/locale/is/LC_MESSAGES/falkon_runaction.mo share/locale/is/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/is/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ka/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ka/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ka/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ka/LC_MESSAGES/falkon_hellopython.mo share/locale/ka/LC_MESSAGES/falkon_helloqml.mo share/locale/ka/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ka/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ka/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ka/LC_MESSAGES/falkon_pim_qt.qm share/locale/ka/LC_MESSAGES/falkon_qt.qm share/locale/ka/LC_MESSAGES/falkon_runaction.mo share/locale/ka/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ka/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ka/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ka/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ka/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm +share/locale/lg/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/lg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/lg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm +share/locale/lg/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/lg/LC_MESSAGES/falkon_hellopython.mo +share/locale/lg/LC_MESSAGES/falkon_helloqml.mo +share/locale/lg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/lg/LC_MESSAGES/falkon_middleclickloader.mo +share/locale/lg/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/lg/LC_MESSAGES/falkon_pim_qt.qm +share/locale/lg/LC_MESSAGES/falkon_qt.qm +share/locale/lg/LC_MESSAGES/falkon_runaction.mo +share/locale/lg/LC_MESSAGES/falkon_sitesettingsview_qt.qm +share/locale/lg/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/lg/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/lg/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/lg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_hellopython.mo share/locale/lv/LC_MESSAGES/falkon_helloqml.mo share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_runaction.mo share/locale/lv/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo share/locale/pt_BR/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sa/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sa/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sa/LC_MESSAGES/falkon_hellopython.mo share/locale/sa/LC_MESSAGES/falkon_helloqml.mo share/locale/sa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sa/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sa/LC_MESSAGES/falkon_pim_qt.qm share/locale/sa/LC_MESSAGES/falkon_qt.qm share/locale/sa/LC_MESSAGES/falkon_runaction.mo share/locale/sa/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sa/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavian/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr@latin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ta/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_HK/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_sitesettingsview_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 79939fbfc633..b03ed2f3cac7 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478638 -SHA256 (KDE/release-service/26.04.2/kteatime-26.04.2.tar.xz) = dfce79ec71b89ef73fad909870b04a9f33b530b4767a73dff04132604de71ef7 -SIZE (KDE/release-service/26.04.2/kteatime-26.04.2.tar.xz) = 311492 +TIMESTAMP = 1782826991 +SHA256 (KDE/release-service/26.04.3/kteatime-26.04.3.tar.xz) = 02bf46dd0cc7bec37cb7726db7b55c7834ae0e532955bf23947609647ed16ee9 +SIZE (KDE/release-service/26.04.3/kteatime-26.04.3.tar.xz) = 311480 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index c664a5601388..15d21a09b8a1 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478640 -SHA256 (KDE/release-service/26.04.2/ktimer-26.04.2.tar.xz) = ab41a5e16e82d7a926187bb802d3ad754e37120791c8a6957b3e455a182b3789 -SIZE (KDE/release-service/26.04.2/ktimer-26.04.2.tar.xz) = 454932 +TIMESTAMP = 1782826993 +SHA256 (KDE/release-service/26.04.3/ktimer-26.04.3.tar.xz) = 16b8b748859112feff386022bb5b3991199f3555272c46b01932dec3029c7011 +SIZE (KDE/release-service/26.04.3/ktimer-26.04.3.tar.xz) = 454868 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index f69ae8d7f073..d2456b503d3c 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478642 -SHA256 (KDE/release-service/26.04.2/dolphin-26.04.2.tar.xz) = c7e90beb8ce13aea091494ae7ddfabde999b1297986a596403828010bec59346 -SIZE (KDE/release-service/26.04.2/dolphin-26.04.2.tar.xz) = 5896240 +TIMESTAMP = 1782826994 +SHA256 (KDE/release-service/26.04.3/dolphin-26.04.3.tar.xz) = d18579587f841ca5a571c3614bda0beed6e53bf5ded4d456009e187cbb9d0b44 +SIZE (KDE/release-service/26.04.3/dolphin-26.04.3.tar.xz) = 5896212 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 611fe6085700..7819290ea0ab 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478643 -SHA256 (KDE/release-service/26.04.2/konqueror-26.04.2.tar.xz) = aa9a35f81fa1f30aac1d77b9008d074fb041b2a7c12319d1f8c9b194137e57de -SIZE (KDE/release-service/26.04.2/konqueror-26.04.2.tar.xz) = 9849700 +TIMESTAMP = 1782826996 +SHA256 (KDE/release-service/26.04.3/konqueror-26.04.3.tar.xz) = c5ad4e700f9f43f9c647e3c011d7918911cf5c0e4d7811875967cb37a34692e3 +SIZE (KDE/release-service/26.04.3/konqueror-26.04.3.tar.xz) = 9852692 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index ee1fb61f3619..dc00183e277e 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478645 -SHA256 (KDE/release-service/26.04.2/konsole-26.04.2.tar.xz) = d81a696d6a316d0c8fabe3cecd83783f656ee97c70ced89513b3fd16e9d216ac -SIZE (KDE/release-service/26.04.2/konsole-26.04.2.tar.xz) = 1903564 +TIMESTAMP = 1782826998 +SHA256 (KDE/release-service/26.04.3/konsole-26.04.3.tar.xz) = fe54d0297c24a52b2ec8ebf45bf75b22736f65301663846b8f3539044943e1ac +SIZE (KDE/release-service/26.04.3/konsole-26.04.3.tar.xz) = 1903604 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 987a6343ccc9..7eebdfb36691 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1780478647 -SHA256 (KDE/release-service/26.04.2/yakuake-26.04.2.tar.xz) = dd853206eb325b96866cf14d2804088a0988d80fe2236f5240fb7a8f4f71676f -SIZE (KDE/release-service/26.04.2/yakuake-26.04.2.tar.xz) = 411356 +TIMESTAMP = 1782827000 +SHA256 (KDE/release-service/26.04.3/yakuake-26.04.3.tar.xz) = ed5676a65ed99e57b7bfd73fbd31f93e7f5a8d4dc54551d3c2a6668f78b5b5b2 +SIZE (KDE/release-service/26.04.3/yakuake-26.04.3.tar.xz) = 411384