diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 4141782636d4..156e21136965 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,914 +1,914 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 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 . 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 ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.23.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.89.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 21.12.0 -KDE_APPLICATIONS_SHLIB_VER?= 5.19.0 +KDE_APPLICATIONS_VERSION?= 21.12.1 +KDE_APPLICATIONS_SHLIB_VER?= 5.19.1 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 21.12.0 +KDE_APPLICATIONS_SHLIB_G_VER?= 21.12.1 KDE_APPLICATIONS_BRANCH?= stable # Extended KDE universe applications. CALLIGRA_VERSION?= 2.9.11 CALLIGRA_BRANCH?= stable # ============================================================================== # === 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 . for cat in ${_KDE_CATEGORIES_SUPPORTED} . 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_COMMIT= ${_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}" DIST_SUBDIR?= KDE/release-service/${KDE_APPLICATIONS_VERSION} . elif ${_KDE_CATEGORY:Mkde-plasma} PORTVERSION?= ${KDE_PLASMA_VERSION} PKGNAMEPREFIX?= plasma5- MASTER_SITES?= KDE/${KDE_PLASMA_BRANCH}/plasma/${KDE_PLASMA_VERSION} DIST_SUBDIR?= KDE/plasma/${KDE_PLASMA_VERSION} . elif ${_KDE_CATEGORY:Mkde-frameworks} PORTVERSION?= ${KDE_FRAMEWORKS_VERSION} PKGNAMEPREFIX?= kf5- # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . 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 DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . 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 # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # 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}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.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-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes 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-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # 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 05291949a38d..2e6f61ca4108 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570881 -SHA256 (KDE/release-service/21.12.0/kmag-21.12.0.tar.xz) = ae5505588eaa569ca00a4ff344d6aa514e64d23877aa69cd951fb1f928ff3525 -SIZE (KDE/release-service/21.12.0/kmag-21.12.0.tar.xz) = 706568 +TIMESTAMP = 1641292358 +SHA256 (KDE/release-service/21.12.1/kmag-21.12.1.tar.xz) = 10e18eb26b7c19cbf91d036570ceba95cc1a3a413b678f9a4df1c68187afbfec +SIZE (KDE/release-service/21.12.1/kmag-21.12.1.tar.xz) = 709004 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index ade3e051bd25..7dbe5eebd335 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570882 -SHA256 (KDE/release-service/21.12.0/kmousetool-21.12.0.tar.xz) = c6342f6c41d6e6f24c4058ffb7208da639b1ac6122d3faf28f82c9da98873977 -SIZE (KDE/release-service/21.12.0/kmousetool-21.12.0.tar.xz) = 121488 +TIMESTAMP = 1641292360 +SHA256 (KDE/release-service/21.12.1/kmousetool-21.12.1.tar.xz) = fdfb29656a348002d865d2272163a3801b4e9bbaa5f64524890f1ecf5b4e7347 +SIZE (KDE/release-service/21.12.1/kmousetool-21.12.1.tar.xz) = 121508 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index e4ca7eb93e40..c97a1c43b4d4 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570880 -SHA256 (KDE/release-service/21.12.0/kmouth-21.12.0.tar.xz) = 559965b738a6427aeadda3b3c3cec9b791386c30f75a47e5a6332926fb59e895 -SIZE (KDE/release-service/21.12.0/kmouth-21.12.0.tar.xz) = 2103464 +TIMESTAMP = 1641292359 +SHA256 (KDE/release-service/21.12.1/kmouth-21.12.1.tar.xz) = 5e23b327b4b21f64177178adb2a29ddfffea07db345a47234c91b9ed5b7c6dd6 +SIZE (KDE/release-service/21.12.1/kmouth-21.12.1.tar.xz) = 2107524 diff --git a/accessibility/kmouth/pkg-plist b/accessibility/kmouth/pkg-plist index 9f6fa72bcbf8..65ef76e22f00 100644 --- a/accessibility/kmouth/pkg-plist +++ b/accessibility/kmouth/pkg-plist @@ -1,108 +1,109 @@ bin/kmouth etc/xdg/kmouthrc man/ca/man1/kmouth.1.gz man/da/man1/kmouth.1.gz man/de/man1/kmouth.1.gz man/es/man1/kmouth.1.gz man/et/man1/kmouth.1.gz man/fr/man1/kmouth.1.gz man/it/man1/kmouth.1.gz man/man1/kmouth.1.gz man/nl/man1/kmouth.1.gz man/pt/man1/kmouth.1.gz man/pt_BR/man1/kmouth.1.gz +man/ru/man1/kmouth.1.gz man/sv/man1/kmouth.1.gz man/uk/man1/kmouth.1.gz share/applications/org.kde.kmouth.desktop share/icons/hicolor/16x16/actions/phrase.png share/icons/hicolor/16x16/actions/phrasebook.png share/icons/hicolor/16x16/apps/kmouth.png share/icons/hicolor/22x22/actions/phrase.png share/icons/hicolor/22x22/actions/phrasebook.png share/icons/hicolor/22x22/apps/kmouth.png share/icons/hicolor/32x32/actions/phrase.png share/icons/hicolor/32x32/actions/phrasebook.png share/icons/hicolor/32x32/apps/kmouth.png share/icons/hicolor/48x48/apps/kmouth.png %%DATADIR%%/books/ca/ca-courteousness.phrasebook %%DATADIR%%/books/ca/ca-greetings.phrasebook %%DATADIR%%/books/ca/ca-howareyou.phrasebook %%DATADIR%%/books/ca/ca-personal.phrasebook %%DATADIR%%/books/ca/ca.desktop %%DATADIR%%/books/de/de-courteousness.phrasebook %%DATADIR%%/books/de/de-greetings.phrasebook %%DATADIR%%/books/de/de-howareyou.phrasebook %%DATADIR%%/books/de/de-personal.phrasebook %%DATADIR%%/books/de/de.desktop %%DATADIR%%/books/en/en-courteousness.phrasebook %%DATADIR%%/books/en/en-greetings.phrasebook %%DATADIR%%/books/en/en-howareyou.phrasebook %%DATADIR%%/books/en/en-personal.phrasebook %%DATADIR%%/books/en/en.desktop %%DATADIR%%/books/sv/sv-courteousness.phrasebook %%DATADIR%%/books/sv/sv-greetings.phrasebook %%DATADIR%%/books/sv/sv-howareyou.phrasebook %%DATADIR%%/books/sv/sv-personal.phrasebook %%DATADIR%%/books/sv/sv.desktop share/kxmlgui5/kmouth/kmouthui.rc share/kxmlgui5/kmouth/phrasebookdialogui.rc share/locale/ar/LC_MESSAGES/kmouth.mo share/locale/be/LC_MESSAGES/kmouth.mo share/locale/bg/LC_MESSAGES/kmouth.mo share/locale/bs/LC_MESSAGES/kmouth.mo share/locale/ca/LC_MESSAGES/kmouth.mo share/locale/ca@valencia/LC_MESSAGES/kmouth.mo share/locale/cs/LC_MESSAGES/kmouth.mo share/locale/da/LC_MESSAGES/kmouth.mo share/locale/de/LC_MESSAGES/kmouth.mo share/locale/el/LC_MESSAGES/kmouth.mo share/locale/en_GB/LC_MESSAGES/kmouth.mo share/locale/eo/LC_MESSAGES/kmouth.mo share/locale/es/LC_MESSAGES/kmouth.mo share/locale/et/LC_MESSAGES/kmouth.mo share/locale/eu/LC_MESSAGES/kmouth.mo share/locale/fa/LC_MESSAGES/kmouth.mo share/locale/fi/LC_MESSAGES/kmouth.mo share/locale/fr/LC_MESSAGES/kmouth.mo share/locale/ga/LC_MESSAGES/kmouth.mo share/locale/gl/LC_MESSAGES/kmouth.mo share/locale/he/LC_MESSAGES/kmouth.mo share/locale/hi/LC_MESSAGES/kmouth.mo share/locale/hr/LC_MESSAGES/kmouth.mo share/locale/hu/LC_MESSAGES/kmouth.mo share/locale/ia/LC_MESSAGES/kmouth.mo share/locale/is/LC_MESSAGES/kmouth.mo share/locale/it/LC_MESSAGES/kmouth.mo share/locale/ja/LC_MESSAGES/kmouth.mo share/locale/kk/LC_MESSAGES/kmouth.mo share/locale/km/LC_MESSAGES/kmouth.mo share/locale/ko/LC_MESSAGES/kmouth.mo share/locale/lt/LC_MESSAGES/kmouth.mo share/locale/lv/LC_MESSAGES/kmouth.mo share/locale/ml/LC_MESSAGES/kmouth.mo share/locale/mr/LC_MESSAGES/kmouth.mo share/locale/nb/LC_MESSAGES/kmouth.mo share/locale/nds/LC_MESSAGES/kmouth.mo share/locale/nl/LC_MESSAGES/kmouth.mo share/locale/nn/LC_MESSAGES/kmouth.mo share/locale/pa/LC_MESSAGES/kmouth.mo share/locale/pl/LC_MESSAGES/kmouth.mo share/locale/pt/LC_MESSAGES/kmouth.mo share/locale/pt_BR/LC_MESSAGES/kmouth.mo share/locale/ro/LC_MESSAGES/kmouth.mo share/locale/ru/LC_MESSAGES/kmouth.mo share/locale/se/LC_MESSAGES/kmouth.mo share/locale/sk/LC_MESSAGES/kmouth.mo share/locale/sl/LC_MESSAGES/kmouth.mo share/locale/sq/LC_MESSAGES/kmouth.mo share/locale/sr/LC_MESSAGES/kmouth.mo share/locale/sv/LC_MESSAGES/kmouth.mo share/locale/ta/LC_MESSAGES/kmouth.mo share/locale/tg/LC_MESSAGES/kmouth.mo share/locale/tr/LC_MESSAGES/kmouth.mo share/locale/ug/LC_MESSAGES/kmouth.mo share/locale/uk/LC_MESSAGES/kmouth.mo share/locale/vi/LC_MESSAGES/kmouth.mo share/locale/zh_CN/LC_MESSAGES/kmouth.mo share/locale/zh_TW/LC_MESSAGES/kmouth.mo share/metainfo/org.kde.kmouth.appdata.xml diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 219a8715d860..d9e3f74d6a7e 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570876 -SHA256 (KDE/release-service/21.12.0/ark-21.12.0.tar.xz) = dd647821993fa553d94778ace172418cab55bdca6f35142df9a092a520ec30cf -SIZE (KDE/release-service/21.12.0/ark-21.12.0.tar.xz) = 2771364 +TIMESTAMP = 1641292271 +SHA256 (KDE/release-service/21.12.1/ark-21.12.1.tar.xz) = a07654af5a3d7714a485027765ea29a94f62b3aef670cb78532a1561afb978d6 +SIZE (KDE/release-service/21.12.1/ark-21.12.1.tar.xz) = 2771552 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index ae72fd173491..2aaddf474390 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570895 -SHA256 (KDE/release-service/21.12.0/kosmindoormap-21.12.0.tar.xz) = 0332fc8fd9926e4a2799f158144d6c744fc2ba7fd2b1da76e41d4fb3d09723d2 -SIZE (KDE/release-service/21.12.0/kosmindoormap-21.12.0.tar.xz) = 351028 +TIMESTAMP = 1641292347 +SHA256 (KDE/release-service/21.12.1/kosmindoormap-21.12.1.tar.xz) = 13f58f1f76fb3a80b72279c033d8302b7de9fbd16b864f117e9078ff2203327f +SIZE (KDE/release-service/21.12.1/kosmindoormap-21.12.1.tar.xz) = 351084 diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 606851feda05..a2413fed9ac2 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570896 -SHA256 (KDE/release-service/21.12.0/marble-21.12.0.tar.xz) = bc66e9e80480bd281ffbc9263139806349316bbd8eea9baaa59b008aa6d901b0 -SIZE (KDE/release-service/21.12.0/marble-21.12.0.tar.xz) = 53657600 +TIMESTAMP = 1641292348 +SHA256 (KDE/release-service/21.12.1/marble-21.12.1.tar.xz) = 568b6d9ab39683f6a2ca4ea78daaf4ca66db7eb13ca587333f54291e17831c49 +SIZE (KDE/release-service/21.12.1/marble-21.12.1.tar.xz) = 53656024 diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 74c90af8e14b..22e1be1685d8 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570938 -SHA256 (KDE/release-service/21.12.0/audiocd-kio-21.12.0.tar.xz) = a1ed9136a8c7944243a52bf2acdd8fc19502a8af2b8da7f8448ab06b82f7dd8a -SIZE (KDE/release-service/21.12.0/audiocd-kio-21.12.0.tar.xz) = 522820 +TIMESTAMP = 1641292276 +SHA256 (KDE/release-service/21.12.1/audiocd-kio-21.12.1.tar.xz) = dbf9da8c9af73b857652893834ed00fb842606eec709cf317946b01ac86c4248 +SIZE (KDE/release-service/21.12.1/audiocd-kio-21.12.1.tar.xz) = 522708 diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 264c34b6849d..2dc5b81e3eff 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570940 -SHA256 (KDE/release-service/21.12.0/elisa-21.12.0.tar.xz) = dcbbd33f258e3150a0a8c28019c4a5c90ec44257ddc0f3b508e434fdd60c4867 -SIZE (KDE/release-service/21.12.0/elisa-21.12.0.tar.xz) = 1745688 +TIMESTAMP = 1641292273 +SHA256 (KDE/release-service/21.12.1/elisa-21.12.1.tar.xz) = 1aca4a62253185306c725fbdd6954fbe53cd0bb68dd46a02b0164ff2927a90d8 +SIZE (KDE/release-service/21.12.1/elisa-21.12.1.tar.xz) = 1745640 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 1695793ade88..ec42a9884d96 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570939 -SHA256 (KDE/release-service/21.12.0/juk-21.12.0.tar.xz) = 82c3a6d71476c668d4226eed894553c3b247e140a891c1c414b39646b58f4d3f -SIZE (KDE/release-service/21.12.0/juk-21.12.0.tar.xz) = 2014088 +TIMESTAMP = 1641292276 +SHA256 (KDE/release-service/21.12.1/juk-21.12.1.tar.xz) = 27bc1c3c3bb5d516621cfd42916a0f2e81a55968da44dbbe23951522fde97b02 +SIZE (KDE/release-service/21.12.1/juk-21.12.1.tar.xz) = 2014028 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index b1e8ddc9d958..7843a7208688 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570941 -SHA256 (KDE/release-service/21.12.0/kmix-21.12.0.tar.xz) = 609d220c63750c0c2fe8aea570a5deee7592c0b2a1f4e40e1e2c76f0085c990b -SIZE (KDE/release-service/21.12.0/kmix-21.12.0.tar.xz) = 1164124 +TIMESTAMP = 1641292275 +SHA256 (KDE/release-service/21.12.1/kmix-21.12.1.tar.xz) = c424425a4dfed4153abf9a583f2cdb6528e01c0d27d452313eed8897c2b331b1 +SIZE (KDE/release-service/21.12.1/kmix-21.12.1.tar.xz) = 1164220 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index cdb17224676b..f7db929feae3 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570942 -SHA256 (KDE/release-service/21.12.0/kwave-21.12.0.tar.xz) = 9b34913779fe7775f677829df92875f30697e38612e142cf0240ec725829f7b1 -SIZE (KDE/release-service/21.12.0/kwave-21.12.0.tar.xz) = 6954740 +TIMESTAMP = 1641292272 +SHA256 (KDE/release-service/21.12.1/kwave-21.12.1.tar.xz) = 85c74147079a3502dc97a4aa37c6513106152a1c6c4c7dacbf01786ac5a18861 +SIZE (KDE/release-service/21.12.1/kwave-21.12.1.tar.xz) = 6954332 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 8b4f131a4753..f6e6992300f3 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570937 -SHA256 (KDE/release-service/21.12.0/libkcddb-21.12.0.tar.xz) = cd6c05bfae0d9b0ba37e30a34a3e995492a82bb9d370ff68db85c39406c83762 -SIZE (KDE/release-service/21.12.0/libkcddb-21.12.0.tar.xz) = 435804 +TIMESTAMP = 1641292273 +SHA256 (KDE/release-service/21.12.1/libkcddb-21.12.1.tar.xz) = 4b2acd5a945de27e81e518e9613641e1244149a6c2413c906cddebd70891460a +SIZE (KDE/release-service/21.12.1/libkcddb-21.12.1.tar.xz) = 435812 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 753ac5be74d3..333723044848 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570939 -SHA256 (KDE/release-service/21.12.0/libkcompactdisc-21.12.0.tar.xz) = 3504a9916ad918183be6a84929a39067475715ea1255067c5a05423c00470b0f -SIZE (KDE/release-service/21.12.0/libkcompactdisc-21.12.0.tar.xz) = 97208 +TIMESTAMP = 1641292274 +SHA256 (KDE/release-service/21.12.1/libkcompactdisc-21.12.1.tar.xz) = 384ba619d4f4f0e6abba517d76e0f6073457a32facb5b3d539de2999c60ba1aa +SIZE (KDE/release-service/21.12.1/libkcompactdisc-21.12.1.tar.xz) = 97192 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 9f6c75fcef83..9a85411a4fa5 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571028 -SHA256 (KDE/release-service/21.12.0/akonadi-21.12.0.tar.xz) = 23bf7036b9b6f5d8ce01535c2698d54768bfa7c70c9257e4c92dca4d319cb8f3 -SIZE (KDE/release-service/21.12.0/akonadi-21.12.0.tar.xz) = 1611036 +TIMESTAMP = 1641292278 +SHA256 (KDE/release-service/21.12.1/akonadi-21.12.1.tar.xz) = d43833f1e587aacb758ed42b7431eea908dc6c69cf89183afcd9059d511b08c6 +SIZE (KDE/release-service/21.12.1/akonadi-21.12.1.tar.xz) = 1611076 diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index 1c1632e2b1a1..ad803b4828e0 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570920 -SHA256 (KDE/release-service/21.12.0/akonadi-calendar-tools-21.12.0.tar.xz) = 9e41418ac3cee20bb28814b9d8bb1ece0ad17bbd118ea60d38c064bec37eac5b -SIZE (KDE/release-service/21.12.0/akonadi-calendar-tools-21.12.0.tar.xz) = 236244 +TIMESTAMP = 1641292341 +SHA256 (KDE/release-service/21.12.1/akonadi-calendar-tools-21.12.1.tar.xz) = 311764b4d0733060e33ae4047b36613c4d98701f364f5e4850b268dca27c4acf +SIZE (KDE/release-service/21.12.1/akonadi-calendar-tools-21.12.1.tar.xz) = 236228 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 5a585270cbfa..f41c382557d5 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570929 -SHA256 (KDE/release-service/21.12.0/akonadi-import-wizard-21.12.0.tar.xz) = b1977d691d4b8b89772d10b711ee9307178f47bd82d9819ad2646678d5ac3b53 -SIZE (KDE/release-service/21.12.0/akonadi-import-wizard-21.12.0.tar.xz) = 510796 +TIMESTAMP = 1641292328 +SHA256 (KDE/release-service/21.12.1/akonadi-import-wizard-21.12.1.tar.xz) = 57388979ee68e8d7bd4f2b7101f8d843d4ea36d71d07b45e2f4a2d3175d2bf25 +SIZE (KDE/release-service/21.12.1/akonadi-import-wizard-21.12.1.tar.xz) = 510720 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 224ca316c565..46a689d42bf6 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570935 -SHA256 (KDE/release-service/21.12.0/akonadiconsole-21.12.0.tar.xz) = cd7ae9577da0a3ddd64ee74db725501f04eb2a8f1aae0a85cc10df16f7f8a151 -SIZE (KDE/release-service/21.12.0/akonadiconsole-21.12.0.tar.xz) = 200372 +TIMESTAMP = 1641292338 +SHA256 (KDE/release-service/21.12.1/akonadiconsole-21.12.1.tar.xz) = 3f5169cb2d572d9e6f8b6bd9bbf6302769da39a9e0db934596a0af2b17655cb4 +SIZE (KDE/release-service/21.12.1/akonadiconsole-21.12.1.tar.xz) = 200384 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 2fcc63bc027e..52fb9659b36d 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570930 -SHA256 (KDE/release-service/21.12.0/akregator-21.12.0.tar.xz) = 9b9952c799e9469193c1e78aa733c6c25f41362129a68c92ec679fa05eb3a170 -SIZE (KDE/release-service/21.12.0/akregator-21.12.0.tar.xz) = 2252636 +TIMESTAMP = 1641292341 +SHA256 (KDE/release-service/21.12.1/akregator-21.12.1.tar.xz) = c4ed63c612f5ab371a766d3e06f226e05d76520275a145e45082e1b0c330c7f9 +SIZE (KDE/release-service/21.12.1/akregator-21.12.1.tar.xz) = 2252640 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index ce806a97bf71..f2245fe97129 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570932 -SHA256 (KDE/release-service/21.12.0/grantlee-editor-21.12.0.tar.xz) = 22f4c9bd29951c1ef0b705cd5ec1ebefa5309e992922db5f1dfb06800c1bdbd3 -SIZE (KDE/release-service/21.12.0/grantlee-editor-21.12.0.tar.xz) = 111100 +TIMESTAMP = 1641292346 +SHA256 (KDE/release-service/21.12.1/grantlee-editor-21.12.1.tar.xz) = 8b332465900531d8dbce0844c2b41de5a6418962326dfcf0a9dc0b173e8278e4 +SIZE (KDE/release-service/21.12.1/grantlee-editor-21.12.1.tar.xz) = 111120 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index a8e8193afa92..027f498dd8fc 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570920 -SHA256 (KDE/release-service/21.12.0/grantleetheme-21.12.0.tar.xz) = 545db22246d95c47a53fcf9c54c8b42060bbbcf3844a443a0963c52472c6f3a9 -SIZE (KDE/release-service/21.12.0/grantleetheme-21.12.0.tar.xz) = 59864 +TIMESTAMP = 1641292339 +SHA256 (KDE/release-service/21.12.1/grantleetheme-21.12.1.tar.xz) = e222b5ebcc8c8422a2cb6535e4ef4dd8c902dd55852e4dd6400920b561114246 +SIZE (KDE/release-service/21.12.1/grantleetheme-21.12.1.tar.xz) = 59852 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 6d69a7522567..fd0852c9d642 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570921 -SHA256 (KDE/release-service/21.12.0/itinerary-21.12.0.tar.xz) = 9a36b32542b23e9f3e087d15860ef7aefcb54d20f56d67a4f2abd3f9ed5797b7 -SIZE (KDE/release-service/21.12.0/itinerary-21.12.0.tar.xz) = 468704 +TIMESTAMP = 1641292329 +SHA256 (KDE/release-service/21.12.1/itinerary-21.12.1.tar.xz) = f65e94e46088a018a38123f2450e0a35e905cf3c8148b960396e65c99630be9f +SIZE (KDE/release-service/21.12.1/itinerary-21.12.1.tar.xz) = 470084 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 35dd5251cd13..fd1797495b3e 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570928 -SHA256 (KDE/release-service/21.12.0/kaddressbook-21.12.0.tar.xz) = 3a86dfddcf2e522a7eafd60f0cd6ac558b371712edae4df06c488af71472da88 -SIZE (KDE/release-service/21.12.0/kaddressbook-21.12.0.tar.xz) = 3325672 +TIMESTAMP = 1641292340 +SHA256 (KDE/release-service/21.12.1/kaddressbook-21.12.1.tar.xz) = 2634271f6b9f07b5ca7b7b3bd3ed988c5cdd33d0e0bf619a51e30835371f62db +SIZE (KDE/release-service/21.12.1/kaddressbook-21.12.1.tar.xz) = 3325648 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index a007273de7f0..adfc90d8d066 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570913 -SHA256 (KDE/release-service/21.12.0/kalarm-21.12.0.tar.xz) = 353fa8c78426e6f92facae1b5e37f000442441bb981cf828895240f6cdec8142 -SIZE (KDE/release-service/21.12.0/kalarm-21.12.0.tar.xz) = 2159796 +TIMESTAMP = 1641292343 +SHA256 (KDE/release-service/21.12.1/kalarm-21.12.1.tar.xz) = a1f768e0414b6cb3dc48f10c12a4699e93ac599fcfbb85f16af12299d1d8fd98 +SIZE (KDE/release-service/21.12.1/kalarm-21.12.1.tar.xz) = 2193880 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 0312b186464a..80541fee849f 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570936 -SHA256 (KDE/release-service/21.12.0/kcharselect-21.12.0.tar.xz) = 7a8e919f78e4d092337b9975eeea26e5c3107ab9eabe588b0c4be7550dd17ed9 -SIZE (KDE/release-service/21.12.0/kcharselect-21.12.0.tar.xz) = 372848 +TIMESTAMP = 1641292337 +SHA256 (KDE/release-service/21.12.1/kcharselect-21.12.1.tar.xz) = b58171b5eda54f9bef9bb82dcb24d40f833adf89e0efa470ab44d4a8a39a7983 +SIZE (KDE/release-service/21.12.1/kcharselect-21.12.1.tar.xz) = 372868 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 9a1acdb8d6e1..9e23aeaf1c6b 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570915 -SHA256 (KDE/release-service/21.12.0/kdeconnect-kde-21.12.0.tar.xz) = 519e1d03cef6c8b68902be7907fada4988b34c20816a977077576bf168369d4a -SIZE (KDE/release-service/21.12.0/kdeconnect-kde-21.12.0.tar.xz) = 608688 +TIMESTAMP = 1641292333 +SHA256 (KDE/release-service/21.12.1/kdeconnect-kde-21.12.1.tar.xz) = 4c70baecf581b1d4aa0569ebe2161b95f1973d6421b321b8ae87ace461b481d7 +SIZE (KDE/release-service/21.12.1/kdeconnect-kde-21.12.1.tar.xz) = 608952 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 781e7b7df3ae..c23bf5c12c71 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,731 +1,731 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop -share/applications/org.kde.kdeconnect.settings.desktop +share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-kcm.mo share/locale/it/LC_MESSAGES/kdeconnect-kded.mo share/locale/it/LC_MESSAGES/kdeconnect-kio.mo share/locale/it/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/it/LC_MESSAGES/kdeconnect-plugins.mo share/locale/it/LC_MESSAGES/kdeconnect-settings.mo share/locale/it/LC_MESSAGES/kdeconnect-sms.mo share/locale/it/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ja/LC_MESSAGES/kdeconnect-app.mo share/locale/ja/LC_MESSAGES/kdeconnect-cli.mo share/locale/ja/LC_MESSAGES/kdeconnect-core.mo share/locale/ja/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ja/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ja/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ja/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ja/LC_MESSAGES/kdeconnect-kded.mo share/locale/ja/LC_MESSAGES/kdeconnect-kio.mo share/locale/ja/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ja/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ja/LC_MESSAGES/kdeconnect-settings.mo share/locale/ja/LC_MESSAGES/kdeconnect-sms.mo share/locale/ja/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ko/LC_MESSAGES/kdeconnect-kded.mo share/locale/ko/LC_MESSAGES/kdeconnect-kio.mo share/locale/ko/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ko/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ko/LC_MESSAGES/kdeconnect-settings.mo share/locale/ko/LC_MESSAGES/kdeconnect-sms.mo share/locale/ko/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/lt/LC_MESSAGES/kdeconnect-app.mo share/locale/lt/LC_MESSAGES/kdeconnect-cli.mo share/locale/lt/LC_MESSAGES/kdeconnect-core.mo share/locale/lt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/lt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/lt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/lt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/lt/LC_MESSAGES/kdeconnect-kded.mo share/locale/lt/LC_MESSAGES/kdeconnect-kio.mo share/locale/lt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/lt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/lt/LC_MESSAGES/kdeconnect-settings.mo share/locale/lt/LC_MESSAGES/kdeconnect-sms.mo share/locale/lt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ml/LC_MESSAGES/kdeconnect-app.mo share/locale/ml/LC_MESSAGES/kdeconnect-cli.mo share/locale/ml/LC_MESSAGES/kdeconnect-core.mo share/locale/ml/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ml/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ml/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ml/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ml/LC_MESSAGES/kdeconnect-kded.mo share/locale/ml/LC_MESSAGES/kdeconnect-kio.mo share/locale/ml/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ml/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ml/LC_MESSAGES/kdeconnect-settings.mo share/locale/ml/LC_MESSAGES/kdeconnect-sms.mo share/locale/ml/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nl/LC_MESSAGES/kdeconnect-app.mo share/locale/nl/LC_MESSAGES/kdeconnect-cli.mo share/locale/nl/LC_MESSAGES/kdeconnect-core.mo share/locale/nl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nl/LC_MESSAGES/kdeconnect-kded.mo share/locale/nl/LC_MESSAGES/kdeconnect-kio.mo share/locale/nl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nl/LC_MESSAGES/kdeconnect-settings.mo share/locale/nl/LC_MESSAGES/kdeconnect-sms.mo share/locale/nl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/nn/LC_MESSAGES/kdeconnect-app.mo share/locale/nn/LC_MESSAGES/kdeconnect-cli.mo share/locale/nn/LC_MESSAGES/kdeconnect-core.mo share/locale/nn/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/nn/LC_MESSAGES/kdeconnect-indicator.mo share/locale/nn/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/nn/LC_MESSAGES/kdeconnect-kcm.mo share/locale/nn/LC_MESSAGES/kdeconnect-kded.mo share/locale/nn/LC_MESSAGES/kdeconnect-kio.mo share/locale/nn/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/nn/LC_MESSAGES/kdeconnect-plugins.mo share/locale/nn/LC_MESSAGES/kdeconnect-settings.mo share/locale/nn/LC_MESSAGES/kdeconnect-sms.mo share/locale/nn/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pl/LC_MESSAGES/kdeconnect-app.mo share/locale/pl/LC_MESSAGES/kdeconnect-cli.mo share/locale/pl/LC_MESSAGES/kdeconnect-core.mo share/locale/pl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pl/LC_MESSAGES/kdeconnect-kded.mo share/locale/pl/LC_MESSAGES/kdeconnect-kio.mo share/locale/pl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pl/LC_MESSAGES/kdeconnect-settings.mo share/locale/pl/LC_MESSAGES/kdeconnect-sms.mo share/locale/pl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt/LC_MESSAGES/kdeconnect-app.mo share/locale/pt/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt/LC_MESSAGES/kdeconnect-core.mo share/locale/pt/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-app.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-cli.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-core.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-indicator.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kcm.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kded.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-kio.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-plugins.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-settings.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-sms.mo share/locale/pt_BR/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ro/LC_MESSAGES/kdeconnect-app.mo share/locale/ro/LC_MESSAGES/kdeconnect-cli.mo share/locale/ro/LC_MESSAGES/kdeconnect-core.mo share/locale/ro/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ro/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ro/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ro/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ro/LC_MESSAGES/kdeconnect-kded.mo share/locale/ro/LC_MESSAGES/kdeconnect-kio.mo share/locale/ro/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ro/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ro/LC_MESSAGES/kdeconnect-settings.mo share/locale/ro/LC_MESSAGES/kdeconnect-sms.mo share/locale/ro/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ru/LC_MESSAGES/kdeconnect-app.mo share/locale/ru/LC_MESSAGES/kdeconnect-cli.mo share/locale/ru/LC_MESSAGES/kdeconnect-core.mo share/locale/ru/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ru/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ru/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ru/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ru/LC_MESSAGES/kdeconnect-kded.mo share/locale/ru/LC_MESSAGES/kdeconnect-kio.mo share/locale/ru/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ru/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ru/LC_MESSAGES/kdeconnect-settings.mo share/locale/ru/LC_MESSAGES/kdeconnect-sms.mo share/locale/ru/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sk/LC_MESSAGES/kdeconnect-app.mo share/locale/sk/LC_MESSAGES/kdeconnect-cli.mo share/locale/sk/LC_MESSAGES/kdeconnect-core.mo share/locale/sk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sk/LC_MESSAGES/kdeconnect-kded.mo share/locale/sk/LC_MESSAGES/kdeconnect-kio.mo share/locale/sk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sk/LC_MESSAGES/kdeconnect-settings.mo share/locale/sk/LC_MESSAGES/kdeconnect-sms.mo share/locale/sk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sl/LC_MESSAGES/kdeconnect-app.mo share/locale/sl/LC_MESSAGES/kdeconnect-cli.mo share/locale/sl/LC_MESSAGES/kdeconnect-core.mo share/locale/sl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sl/LC_MESSAGES/kdeconnect-kded.mo share/locale/sl/LC_MESSAGES/kdeconnect-kio.mo share/locale/sl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sl/LC_MESSAGES/kdeconnect-settings.mo share/locale/sl/LC_MESSAGES/kdeconnect-sms.mo share/locale/sl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sr/LC_MESSAGES/kdeconnect-cli.mo share/locale/sr/LC_MESSAGES/kdeconnect-core.mo share/locale/sr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sr/LC_MESSAGES/kdeconnect-kded.mo share/locale/sr/LC_MESSAGES/kdeconnect-kio.mo share/locale/sr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index d909eda9d05c..33d37c69416d 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570910 -SHA256 (KDE/release-service/21.12.0/kdepim-addons-21.12.0.tar.xz) = f00ae7ac3311bf31377830f44a44fe0a6b9c09a0749529aefd81254b0a1db603 -SIZE (KDE/release-service/21.12.0/kdepim-addons-21.12.0.tar.xz) = 2296220 +TIMESTAMP = 1641292338 +SHA256 (KDE/release-service/21.12.1/kdepim-addons-21.12.1.tar.xz) = 18d2d16bc23fcdd5e92a3bec5907eaae3698b2c94996714d8649cda778014ecf +SIZE (KDE/release-service/21.12.1/kdepim-addons-21.12.1.tar.xz) = 2296440 diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index b4265b21debe..2de19585b0f2 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -1,47 +1,44 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications -PATCH_SITES= https://invent.kde.org/pim/kdepim-runtime/-/commit/ -PATCHFILES= f14fabcefb45790175e209ef8ae394def4a805e9.patch:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE PIM tools and services LICENSE= LGPL21 DEPRECATED= Uses EOL Python 2.7 via www/qt5-webengine EXPIRATION_DATE=2021-06-23 LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \ libcurl.so:ftp/curl \ libkolabxml.so:textproc/libkolabxml \ libsasl2.so:security/cyrus-sasl2 \ libxerces-c-3.2.so:textproc/xerces-c3 \ libqt5keychain.so:security/qtkeychain USES= cmake:noninja compiler:c++11-lib gettext kde:5 qca qt:5 \ shared-mime-info tar:xz USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons holidays i18n iconthemes \ itemmodels itemviews jobwidgets kcmutils kdav kdelibs4support kio \ kross notifications notifyconfig parts service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem \ xmlgui # pim components USE_KDE+= akonadi akonadicontacts akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar calendarcore \ calendarutils contacts gapi grantleetheme identitymanagement imap \ kontactinterface ldap libkdepim mailtransport mbox mime pimcommon \ pimtextedit syndication USE_QT= concurrent core dbus declarative gui location network networkauth printsupport speech \ script webchannel webengine widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index 2d0de91f590e..9e75f549dc8f 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1639312899 -SHA256 (KDE/release-service/21.12.0/kdepim-runtime-21.12.0.tar.xz) = 2a0c0caa75aa0aef2f790b044a49d84ff5de22de6e07a4ffe45b990a2947b7d6 -SIZE (KDE/release-service/21.12.0/kdepim-runtime-21.12.0.tar.xz) = 1807008 -SHA256 (KDE/release-service/21.12.0/f14fabcefb45790175e209ef8ae394def4a805e9.patch) = 0731e305a0acb90a0617d6e5c053fd5850fc9860e57a68b77e45096abd2e1a38 -SIZE (KDE/release-service/21.12.0/f14fabcefb45790175e209ef8ae394def4a805e9.patch) = 5468 +TIMESTAMP = 1641304855 +SHA256 (KDE/release-service/21.12.1/kdepim-runtime-21.12.1.tar.xz) = 3df4111f3a443f0562c3b7a33b76ba1ad14872138ca2a45f67d7293528f869df +SIZE (KDE/release-service/21.12.1/kdepim-runtime-21.12.1.tar.xz) = 1807168 diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 8903162a3a6b..ac0b8147b9d5 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570918 -SHA256 (KDE/release-service/21.12.0/keditbookmarks-21.12.0.tar.xz) = 4158996f881f6901a65d3292a88b3cfcfde2a192242afc1fa4070608919ef4dd -SIZE (KDE/release-service/21.12.0/keditbookmarks-21.12.0.tar.xz) = 203992 +TIMESTAMP = 1641292331 +SHA256 (KDE/release-service/21.12.1/keditbookmarks-21.12.1.tar.xz) = a1d2cf9d4eddd553f39539359500d4fe9adfab265cb0a61b9470d315ee4a74f5 +SIZE (KDE/release-service/21.12.1/keditbookmarks-21.12.1.tar.xz) = 203992 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 89e4a1e51045..1ac0f0e1a86f 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570922 -SHA256 (KDE/release-service/21.12.0/kfind-21.12.0.tar.xz) = c5bdcf7b93aee88e10ec6f9b8d1e0448f28e544ee4de834ae08414368e41b7a8 -SIZE (KDE/release-service/21.12.0/kfind-21.12.0.tar.xz) = 286792 +TIMESTAMP = 1641292336 +SHA256 (KDE/release-service/21.12.1/kfind-21.12.1.tar.xz) = 10071d6a047447ab6bffede44149a41124392a10d3ed3a5c80cc1c8287a1c68c +SIZE (KDE/release-service/21.12.1/kfind-21.12.1.tar.xz) = 286836 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 1c085116033c..faed825fe692 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570916 -SHA256 (KDE/release-service/21.12.0/kmail-account-wizard-21.12.0.tar.xz) = 72cbb9509d72625dd19eca1e64fcc52213629666438105c7f4a524edc8367421 -SIZE (KDE/release-service/21.12.0/kmail-account-wizard-21.12.0.tar.xz) = 168864 +TIMESTAMP = 1641292334 +SHA256 (KDE/release-service/21.12.1/kmail-account-wizard-21.12.1.tar.xz) = 76e265116cacea6326049f0545beac2e76ec372d27b1eefa368de9c2406952c4 +SIZE (KDE/release-service/21.12.1/kmail-account-wizard-21.12.1.tar.xz) = 168888 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index f3d6b6b39901..345893daf199 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570917 -SHA256 (KDE/release-service/21.12.0/kmail-21.12.0.tar.xz) = e08018e1c74cea5361a449a799a6a689886643842a460c3916c12c4311438a86 -SIZE (KDE/release-service/21.12.0/kmail-21.12.0.tar.xz) = 7056260 +TIMESTAMP = 1641292330 +SHA256 (KDE/release-service/21.12.1/kmail-21.12.1.tar.xz) = 3ddb93feb575eb430092e928f347e0b59a0a3053d40a0839d18d756a68cb9e9f +SIZE (KDE/release-service/21.12.1/kmail-21.12.1.tar.xz) = 7058636 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 00ce63bfab90..f4bd1688636f 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570925 -SHA256 (KDE/release-service/21.12.0/knotes-21.12.0.tar.xz) = afeb17534fe609255785770cd883947ccff805908a9ab9ad3250a6739775bc61 -SIZE (KDE/release-service/21.12.0/knotes-21.12.0.tar.xz) = 340796 +TIMESTAMP = 1641292344 +SHA256 (KDE/release-service/21.12.1/knotes-21.12.1.tar.xz) = bc45ae2f4a169e143e733c9ddb36dbc9ee5098d010a40db16fcb3bcd7d6bdb97 +SIZE (KDE/release-service/21.12.1/knotes-21.12.1.tar.xz) = 344380 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 2bc92624500d..7d08065dc237 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570911 -SHA256 (KDE/release-service/21.12.0/kontact-21.12.0.tar.xz) = 4996ad097b97cf25506a68fc5b06304bcee50ae0bfed596510e1f6258390599e -SIZE (KDE/release-service/21.12.0/kontact-21.12.0.tar.xz) = 823936 +TIMESTAMP = 1641292336 +SHA256 (KDE/release-service/21.12.1/kontact-21.12.1.tar.xz) = 1d70fd0a0c6c0fab945bae8336add330e345b5a82ce01a00721da07f10cf1636 +SIZE (KDE/release-service/21.12.1/kontact-21.12.1.tar.xz) = 823884 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index f3094f1f03d6..50b6ee2f3434 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570924 -SHA256 (KDE/release-service/21.12.0/korganizer-21.12.0.tar.xz) = 28cd09bec0559b66199d57f95201ba1f12aad6002f419a6620297148e920cce1 -SIZE (KDE/release-service/21.12.0/korganizer-21.12.0.tar.xz) = 2397396 +TIMESTAMP = 1641292342 +SHA256 (KDE/release-service/21.12.1/korganizer-21.12.1.tar.xz) = cd3cc977c0dcefc3a43ab04c8713690c34ca5c4c57e5689a654c1d1df7d8c164 +SIZE (KDE/release-service/21.12.1/korganizer-21.12.1.tar.xz) = 2397604 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 254bce664efe..dc9ce176ceab 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570933 -SHA256 (KDE/release-service/21.12.0/kruler-21.12.0.tar.xz) = b192dae359b20345f5d4ce1e67df5a3748fd3332637733b14bfbf7fbe17925ce -SIZE (KDE/release-service/21.12.0/kruler-21.12.0.tar.xz) = 276928 +TIMESTAMP = 1641292332 +SHA256 (KDE/release-service/21.12.1/kruler-21.12.1.tar.xz) = a2b9aedd39d1a1ac858bbf8bfe1217a878868dd032f970cb01a5e6ec01be9e25 +SIZE (KDE/release-service/21.12.1/kruler-21.12.1.tar.xz) = 276892 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index bd0dd42e4d65..cdda1bf3c78c 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570912 -SHA256 (KDE/release-service/21.12.0/libkdepim-21.12.0.tar.xz) = d1330781d2689481f408d1b1c0f3cf1d4adfc231b4a3fe1d5d6d6662cf3ca6cd -SIZE (KDE/release-service/21.12.0/libkdepim-21.12.0.tar.xz) = 253556 +TIMESTAMP = 1641292330 +SHA256 (KDE/release-service/21.12.1/libkdepim-21.12.1.tar.xz) = d6ad6c6efe130390f854969c420a91d5a87c6fe89fee14e8ca8b32cca358bb3c +SIZE (KDE/release-service/21.12.1/libkdepim-21.12.1.tar.xz) = 253512 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index d9cdcc58b65c..21d0e620c305 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570923 -SHA256 (KDE/release-service/21.12.0/mbox-importer-21.12.0.tar.xz) = 613b2118a554dba72345071b96c5f15fb5fb274808fa17032e44baa87c023f65 -SIZE (KDE/release-service/21.12.0/mbox-importer-21.12.0.tar.xz) = 28460 +TIMESTAMP = 1641292344 +SHA256 (KDE/release-service/21.12.1/mbox-importer-21.12.1.tar.xz) = 321cedd6a5d9a317c9fd9f09c2eba288aacc8a1fe7fc431b231258a951bb2078 +SIZE (KDE/release-service/21.12.1/mbox-importer-21.12.1.tar.xz) = 28476 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index ea722a0381b3..b1f3c70e4e44 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570931 -SHA256 (KDE/release-service/21.12.0/pim-data-exporter-21.12.0.tar.xz) = 1770587412aa8ac118e3cd37f44b47968074b420ad4214455095743140d31aa7 -SIZE (KDE/release-service/21.12.0/pim-data-exporter-21.12.0.tar.xz) = 402552 +TIMESTAMP = 1641292333 +SHA256 (KDE/release-service/21.12.1/pim-data-exporter-21.12.1.tar.xz) = 698cd14a7d4b3401226ad78944c6b7cfa75448a94d3c22631af649e29a45e4d0 +SIZE (KDE/release-service/21.12.1/pim-data-exporter-21.12.1.tar.xz) = 402552 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 9523cdf62b54..47bb32da9279 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570919 -SHA256 (KDE/release-service/21.12.0/pim-sieve-editor-21.12.0.tar.xz) = 0723dba9c9978da1afcd02c45b4ed142c3519e5961bb35f4cf11793d6971f3ba -SIZE (KDE/release-service/21.12.0/pim-sieve-editor-21.12.0.tar.xz) = 457416 +TIMESTAMP = 1641292328 +SHA256 (KDE/release-service/21.12.1/pim-sieve-editor-21.12.1.tar.xz) = 2e82fb42dffb89984dce45b40ab06b6ec0f4a5910757367cbccc2f55a95ad432 +SIZE (KDE/release-service/21.12.1/pim-sieve-editor-21.12.1.tar.xz) = 457520 diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index 0e5e02bc9fe3..77bc3c577b99 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570927 -SHA256 (KDE/release-service/21.12.0/zanshin-21.12.0.tar.xz) = 97c5b8eed4bbabbe3b7e44801f71c97703ecaa331f0b2c73977c4911e0177a1d -SIZE (KDE/release-service/21.12.0/zanshin-21.12.0.tar.xz) = 350888 +TIMESTAMP = 1641292345 +SHA256 (KDE/release-service/21.12.1/zanshin-21.12.1.tar.xz) = 8586c9c269c3f62fd22f9113dadf5880fc491c952901b319e1aeb65a58e1a47c +SIZE (KDE/release-service/21.12.1/zanshin-21.12.1.tar.xz) = 351744 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 6bfcaa754ce7..f40777a418c7 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570857 -SHA256 (KDE/release-service/21.12.0/cervisia-21.12.0.tar.xz) = 97291b9bc3bd3e6e8d2b9c0691b6735c38ab255ffd5451016942ef45bc09619d -SIZE (KDE/release-service/21.12.0/cervisia-21.12.0.tar.xz) = 1912332 +TIMESTAMP = 1641292253 +SHA256 (KDE/release-service/21.12.1/cervisia-21.12.1.tar.xz) = 28dd44c523cea981af244d144cda32c718bf975ddf77ee93c0ede89b3ee637e1 +SIZE (KDE/release-service/21.12.1/cervisia-21.12.1.tar.xz) = 1912524 diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 3df7a6b02dc9..d890fc04325f 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570856 -SHA256 (KDE/release-service/21.12.0/dolphin-plugins-21.12.0.tar.xz) = f2bc5b9874e36376afc3bcdaaa558ae7277cea724597353026dd403c2a741394 -SIZE (KDE/release-service/21.12.0/dolphin-plugins-21.12.0.tar.xz) = 254764 +TIMESTAMP = 1641292248 +SHA256 (KDE/release-service/21.12.1/dolphin-plugins-21.12.1.tar.xz) = 7ca1acc82ae1fb1909b1f98797a1a6f5d74ad78cc969f96cb65bb7e5f7062279 +SIZE (KDE/release-service/21.12.1/dolphin-plugins-21.12.1.tar.xz) = 254672 diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 7d22c38df9f8..ecab5a05db41 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570852 -SHA256 (KDE/release-service/21.12.0/kapptemplate-21.12.0.tar.xz) = 87464e492508332d2acd644d4e23e435eafcca7c24f451041666aa85d6cb5908 -SIZE (KDE/release-service/21.12.0/kapptemplate-21.12.0.tar.xz) = 334064 +TIMESTAMP = 1641292244 +SHA256 (KDE/release-service/21.12.1/kapptemplate-21.12.1.tar.xz) = 58feb2c63836b88ebbcf496748f4ef25f0413db93dfb0692845deb5e3d8fa099 +SIZE (KDE/release-service/21.12.1/kapptemplate-21.12.1.tar.xz) = 335208 diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index d34195d53d29..fe2b980b3852 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570851 -SHA256 (KDE/release-service/21.12.0/kcachegrind-21.12.0.tar.xz) = 9e8a59946d54508217f865ab343d26c50165c8d593b651bc4ac798d33c7eaecc -SIZE (KDE/release-service/21.12.0/kcachegrind-21.12.0.tar.xz) = 854776 +TIMESTAMP = 1641292243 +SHA256 (KDE/release-service/21.12.1/kcachegrind-21.12.1.tar.xz) = 325669fe0d33d819207b72e9b77c7c131d24685ee1586aeb54e1ecac6942a547 +SIZE (KDE/release-service/21.12.1/kcachegrind-21.12.1.tar.xz) = 865684 diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 61af9c33bc2b..06a987f1ce79 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570858 -SHA256 (KDE/release-service/21.12.0/kde-dev-scripts-21.12.0.tar.xz) = 9831b4a339da0bb703b50800136d71e10662f5db34a608a53c7cd60ee6b41d2d -SIZE (KDE/release-service/21.12.0/kde-dev-scripts-21.12.0.tar.xz) = 366184 +TIMESTAMP = 1641292252 +SHA256 (KDE/release-service/21.12.1/kde-dev-scripts-21.12.1.tar.xz) = 0a5f801f06906d7eb5fc07a24cd9d6c40838754ecaee9d7935dbed8754defa01 +SIZE (KDE/release-service/21.12.1/kde-dev-scripts-21.12.1.tar.xz) = 366216 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 52d20fb4439f..76549fdc679b 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570854 -SHA256 (KDE/release-service/21.12.0/kde-dev-utils-21.12.0.tar.xz) = a4a84b9d87d6e092c60653fd5b31f69242407199fdefab4e6384df976353cdc9 -SIZE (KDE/release-service/21.12.0/kde-dev-utils-21.12.0.tar.xz) = 68096 +TIMESTAMP = 1641292252 +SHA256 (KDE/release-service/21.12.1/kde-dev-utils-21.12.1.tar.xz) = 31b5bcae3ec029eced9918b3e264b560dc2ce7f1fa3206158b1280f3955f9ddd +SIZE (KDE/release-service/21.12.1/kde-dev-utils-21.12.1.tar.xz) = 68088 diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index b367973320ad..7bd8f3fe0bf8 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570853 -SHA256 (KDE/release-service/21.12.0/kdesdk-thumbnailers-21.12.0.tar.xz) = 4399b5e1b0fade9b28ebd25480f130211624b9b45eb60a992c4d53c4120c87d4 -SIZE (KDE/release-service/21.12.0/kdesdk-thumbnailers-21.12.0.tar.xz) = 26016 +TIMESTAMP = 1641292242 +SHA256 (KDE/release-service/21.12.1/kdesdk-thumbnailers-21.12.1.tar.xz) = 8583f2568d8819104db8e4f63d442080e4e0742152a9d98c0fbfc0e70067d66a +SIZE (KDE/release-service/21.12.1/kdesdk-thumbnailers-21.12.1.tar.xz) = 26000 diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 1f90e19990e2..3df1fd4185f7 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570860 -SHA256 (KDE/release-service/21.12.0/kdev-php-21.12.0.tar.xz) = ff94674413f4f1eec4c631675e413bc733565934eb65e44998fbc2b6ba09410b -SIZE (KDE/release-service/21.12.0/kdev-php-21.12.0.tar.xz) = 1080196 +TIMESTAMP = 1641292251 +SHA256 (KDE/release-service/21.12.1/kdev-php-21.12.1.tar.xz) = fbbf9a15c41105257ecdceb520fe60ddeb75b01689d56faf76518e6040c02adc +SIZE (KDE/release-service/21.12.1/kdev-php-21.12.1.tar.xz) = 1080100 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index e790079616b6..35791d51885e 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570852 -SHA256 (KDE/release-service/21.12.0/kdev-python-21.12.0.tar.xz) = 9dddb76e6d7bb61605839217609cc864b95e8f4524c4f2499f5911c9d76ece0a -SIZE (KDE/release-service/21.12.0/kdev-python-21.12.0.tar.xz) = 1090020 +TIMESTAMP = 1641292247 +SHA256 (KDE/release-service/21.12.1/kdev-python-21.12.1.tar.xz) = 78a2e5d7d81138e8cf178a4e8c061b4635c338e69441ca5a099ad96dc05f27b5 +SIZE (KDE/release-service/21.12.1/kdev-python-21.12.1.tar.xz) = 1089964 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index c4108f2f8d48..ba367139462c 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,70 +1,70 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cmake compiler:c++11-lib desktop-file-utils \ gettext grantlee:5 kde:5 qt:5 shared-mime-info shebangfix tar:xz USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons emoticons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdeclarative \ kio libksysguard newstuff notifications \ notifyconfig package parts plasma-framework purpose \ runner service solid sonnet texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network \ script sql widgets xml buildtools_build qmake_build SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm_build, testlib_build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm USE_QT+= testlib CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW -DLLVM_ROOT=${LOCALBASE}/llvm${LLVM_DEFAULT} # Versioning values, to reduce plist churn PLATFORM_VER= 35 SO_VER= 57 -SO_VER_LONG= 5.7.211200 +SO_VER_LONG= 5.7.211201 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} OPTIONS_DEFINE= WEBENGINE WEBENGINE_DESC= Use WebEngine as help reader WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_USE_OFF= QT=webkit WEBENGINE_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include .if ${PORT_OPTIONS:MWEBENGINE} DEPRECATED= Uses EOL Pyton 2.7 via www/qt5-webengine EXPIRATION_DATE=2021-06-23 .endif .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 57166535574d..8326903aba2c 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570859 -SHA256 (KDE/release-service/21.12.0/kdevelop-21.12.0.tar.xz) = 64337d5a3141171be920bb2c1be23556c0d2d6361b461a5ce4266f490f19619f -SIZE (KDE/release-service/21.12.0/kdevelop-21.12.0.tar.xz) = 8387568 +TIMESTAMP = 1641292248 +SHA256 (KDE/release-service/21.12.1/kdevelop-21.12.1.tar.xz) = 87f7edabea172c69fb7bfaf9272109fdce2f4f1b423fa38d0c2a9ac0613a52a8 +SIZE (KDE/release-service/21.12.1/kdevelop-21.12.1.tar.xz) = 8395924 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index c8a755169dac..7b80bf73bf1c 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3055 +1,3063 @@ 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/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/applychangeswidget.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/safetycounter.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/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/checkerstatus.h include/kdevplatform/shell/colorschemechooser.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/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/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/objectlist.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/stack.h include/kdevplatform/util/texteditorhelpers.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.%%SO_VER_LONG%% lib/libKDevPlatformDebugger.so.%%SO_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SO_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%SO_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SO_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%SO_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SO_VER_LONG%% lib/libKDevPlatformLanguage.so.%%SO_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SO_VER_LONG%% lib/libKDevPlatformOutputView.so.%%SO_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SO_VER_LONG%% lib/libKDevPlatformProject.so.%%SO_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SO_VER_LONG%% lib/libKDevPlatformSerialization.so.%%SO_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SO_VER_LONG%% lib/libKDevPlatformShell.so.%%SO_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SO_VER_LONG%% lib/libKDevPlatformSublime.so.%%SO_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SO_VER_LONG%% lib/libKDevPlatformUtil.so.%%SO_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SO_VER_LONG%% lib/libKDevPlatformVcs.so.%%SO_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/grantlee/%%GRANTLEE_VERSION_SHORT%%/kdev_filters.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%%/kdevcmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcmakedocumentation.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcmakemanager.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%%/kdevcustombuildsystem.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustommakemanager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustomscript.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdefinesandincludesmanager.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%%/kdevgenericmanager.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%%/kdevmakebuilder.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevmanpage.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevmesonmanager.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevninja.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevokteta.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevopenwith.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevoutlineview.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%%/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%%/kdevqmljslanguagesupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqthelp.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevquickopen.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevscratchpad.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsourceformatter.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevstandardoutputview.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%%/kdevwelcomepage.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kdevelopsessions.so %%QT_QMLDIR%%/org/kde/kdevplatform/libkdevelopdashboarddeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdevplatform/qmldir %%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-%%PLATFORM_VER%%.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/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png share/icons/hicolor/16x16/apps/subversion.png share/icons/hicolor/22x22/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/subversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/icons/hicolor/scalable/apps/subversion.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt5-qml2.tar.bz2 share/kdevappwizard/templates/cmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 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_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/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/kdevqmljssupport/nodejsmodules/__builtin_dom.js share/kdevqmljssupport/nodejsmodules/__builtin_ecmascript.js share/kdevqmljssupport/nodejsmodules/__builtin_qml.qml share/kdevqmljssupport/nodejsmodules/buffer.js share/kdevqmljssupport/nodejsmodules/child_process.js share/kdevqmljssupport/nodejsmodules/common.js share/kdevqmljssupport/nodejsmodules/console.js share/kdevqmljssupport/nodejsmodules/crypto.js share/kdevqmljssupport/nodejsmodules/dgram.js share/kdevqmljssupport/nodejsmodules/dns.js share/kdevqmljssupport/nodejsmodules/domain.js share/kdevqmljssupport/nodejsmodules/event.js share/kdevqmljssupport/nodejsmodules/fs.js share/kdevqmljssupport/nodejsmodules/http.js share/kdevqmljssupport/nodejsmodules/https.js share/kdevqmljssupport/nodejsmodules/net.js share/kdevqmljssupport/nodejsmodules/os.js share/kdevqmljssupport/nodejsmodules/path.js share/kdevqmljssupport/nodejsmodules/punycode.js share/kdevqmljssupport/nodejsmodules/querystring.js share/kdevqmljssupport/nodejsmodules/readline.js share/kdevqmljssupport/nodejsmodules/stream.js share/kdevqmljssupport/nodejsmodules/string_decoder.js share/kdevqmljssupport/nodejsmodules/tls.js share/kdevqmljssupport/nodejsmodules/tty.js share/kdevqmljssupport/nodejsmodules/url.js share/kdevqmljssupport/nodejsmodules/util.js share/kdevqmljssupport/nodejsmodules/vm.js share/kdevqmljssupport/nodejsmodules/zlib.js share/kdevqmljssupport/propertywidgets/ColorPicker.qml share/kdevqmljssupport/propertywidgets/Duration.qml share/kdevqmljssupport/propertywidgets/FontFamily.qml share/kdevqmljssupport/propertywidgets/FontSize.qml share/kdevqmljssupport/propertywidgets/Height.qml share/kdevqmljssupport/propertywidgets/Opacity.qml share/kdevqmljssupport/propertywidgets/PropertyWidget.qml share/kdevqmljssupport/propertywidgets/README share/kdevqmljssupport/propertywidgets/Spacing.qml share/kdevqmljssupport/propertywidgets/Width.qml share/knotifications5/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/kservices5/plasma-applet-kdevelopsessions.desktop share/kservicetypes5/kdevelopplugin.desktop share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo share/locale/ast/LC_MESSAGES/kdevkonsole.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/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevquickopen.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/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/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/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.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/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.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/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/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.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/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.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/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.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/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevplatform.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/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/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.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/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/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/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/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/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/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/kdevappwizard.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/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.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/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/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/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/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/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/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/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/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/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.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/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/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/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/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/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.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/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/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/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/kdevelopsessions/contents/ui/kdevelopsessions.qml share/plasma/plasmoids/kdevelopsessions/metadata.desktop share/qlogging-categories5/kdevelop.categories share/qlogging-categories5/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index fd9e58fa313e..f60d1564b1a6 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570848 -SHA256 (KDE/release-service/21.12.0/kio-extras-21.12.0.tar.xz) = 246234481d7a8ad4047b46cd7dde6b3eb4a7507122a0eb6df73893749ad19c96 -SIZE (KDE/release-service/21.12.0/kio-extras-21.12.0.tar.xz) = 633524 +TIMESTAMP = 1641292250 +SHA256 (KDE/release-service/21.12.1/kio-extras-21.12.1.tar.xz) = cc7d5465602c0cd26577a30572ebfa3141414828a360f17e6e456a2d6faa505f +SIZE (KDE/release-service/21.12.1/kio-extras-21.12.1.tar.xz) = 633924 diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index ae397780be22..b979db7b39dc 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570849 -SHA256 (KDE/release-service/21.12.0/kirigami-gallery-21.12.0.tar.xz) = c74f319cd565ac1d2996f03ca2eadbab2380f4bc060e953fd9da9a2a99f54db0 -SIZE (KDE/release-service/21.12.0/kirigami-gallery-21.12.0.tar.xz) = 331092 +TIMESTAMP = 1641292245 +SHA256 (KDE/release-service/21.12.1/kirigami-gallery-21.12.1.tar.xz) = 5320aa19880709ecf8d56cd9d0710b8a99e24c27172ffe9e15150aa65190b768 +SIZE (KDE/release-service/21.12.1/kirigami-gallery-21.12.1.tar.xz) = 331356 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 9b2fb9a1376f..6082e8c9f1e9 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570862 -SHA256 (KDE/release-service/21.12.0/kpublictransport-21.12.0.tar.xz) = ca1442d83e42a7736e5271c755b6bf781623f22dc7c3fbbf70e82d02c832f9b7 -SIZE (KDE/release-service/21.12.0/kpublictransport-21.12.0.tar.xz) = 478936 +TIMESTAMP = 1641292251 +SHA256 (KDE/release-service/21.12.1/kpublictransport-21.12.1.tar.xz) = ee57ab490ba2878bfcc423abbd572195913914259f0a39fd4cb0401469fe4fee +SIZE (KDE/release-service/21.12.1/kpublictransport-21.12.1.tar.xz) = 480640 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 08ad0c3bcc6e..9f61e6f81c52 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570861 -SHA256 (KDE/release-service/21.12.0/lokalize-21.12.0.tar.xz) = ce7eb29bd6250bf2c4537eb80b544c811e317a0ed627628ac6b4b13fcc033c87 -SIZE (KDE/release-service/21.12.0/lokalize-21.12.0.tar.xz) = 2054812 +TIMESTAMP = 1641292249 +SHA256 (KDE/release-service/21.12.1/lokalize-21.12.1.tar.xz) = 7f30f32c53b2682dd3664ffb0a9af131c1530e48666759c4c49b8496c0d53722 +SIZE (KDE/release-service/21.12.1/lokalize-21.12.1.tar.xz) = 2055388 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index b0f616f1023b..7fb9631e541b 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570855 -SHA256 (KDE/release-service/21.12.0/poxml-21.12.0.tar.xz) = ad02aedc75d60411f8c403ae7c3dbadf78d8fdb57b5f08f24ed5b8f2c9837c43 -SIZE (KDE/release-service/21.12.0/poxml-21.12.0.tar.xz) = 43548 +TIMESTAMP = 1641292244 +SHA256 (KDE/release-service/21.12.1/poxml-21.12.1.tar.xz) = 6880e0c95aa2e38065a6cb57b5851126f9c577a6c9d2c91f7ae9e054c086d8de +SIZE (KDE/release-service/21.12.1/poxml-21.12.1.tar.xz) = 43520 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 55cdd2c01842..4eb194a7d049 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570850 -SHA256 (KDE/release-service/21.12.0/umbrello-21.12.0.tar.xz) = 4e8c76d48a9cdc7f03171590825a01d0573e04cfdc95f971474442a41a69d468 -SIZE (KDE/release-service/21.12.0/umbrello-21.12.0.tar.xz) = 5651284 +TIMESTAMP = 1641292246 +SHA256 (KDE/release-service/21.12.1/umbrello-21.12.1.tar.xz) = 49e7c9a67fb68a3095dc14c4ca343bde7fc8cec6f965ade089c195025ab6907c +SIZE (KDE/release-service/21.12.1/umbrello-21.12.1.tar.xz) = 5653104 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index cf54fd0ac340..0e8d3c6dcb05 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,182 +1,183 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/be/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/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_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/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_kdevphp.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/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_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.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/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.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/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.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_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/component-horizontal.desktop share/umbrello5/layouts/component-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-horizontal.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/simple4125/sdbcent.mod share/umbrello5/simple4125/sdbhier.mod share/umbrello5/simple4125/sdbpool.mod share/umbrello5/simple4125/sdocbook-custom.dtd share/umbrello5/simple4125/sdocbook.css share/umbrello5/simple4125/sdocbook.dtd share/umbrello5/simple4125/sdocbookref-custom.dtd share/umbrello5/simple4125/sdocbookref.dtd share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 4403b615c61e..edb2c324cb4e 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571006 -SHA256 (KDE/release-service/21.12.0/kate-21.12.0.tar.xz) = b4122e7c7078a853bde82a4177f19148d2c1cb952dca0636c07f741989146f7b -SIZE (KDE/release-service/21.12.0/kate-21.12.0.tar.xz) = 7381344 +TIMESTAMP = 1641292264 +SHA256 (KDE/release-service/21.12.1/kate-21.12.1.tar.xz) = 7e48ccfdb58a41252566b5d6f263db16d6c88af60e2a15aef305bc0fa305a011 +SIZE (KDE/release-service/21.12.1/kate-21.12.1.tar.xz) = 7392532 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index cb354694aaba..30b55a26e26a 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1347 +1,1354 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so +%%QT_PLUGINDIR%%/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz 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/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/310x310/apps/kate.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/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.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.svgz 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/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop 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/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.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/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/kwrite.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.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/katefilebrowserplugin.mo share/locale/ast/LC_MESSAGES/katefiletree.mo share/locale/ast/LC_MESSAGES/kategdbplugin.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/kwrite.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/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/kwrite.mo share/locale/az/LC_MESSAGES/lspclient.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/be/LC_MESSAGES/kwrite.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.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/kwrite.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bs/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/ca/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ca/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/ca/LC_MESSAGES/lspclient.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca/LC_MESSAGES/tabswitcherplugin.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/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/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/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/kwrite.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/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/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/kwrite.mo share/locale/cs/LC_MESSAGES/lspclient.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.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/kwrite.mo share/locale/da/LC_MESSAGES/lspclient.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/da/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/de/LC_MESSAGES/katecloseexceptplugin.mo share/locale/de/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/de/LC_MESSAGES/lspclient.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/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/kwrite.mo share/locale/el/LC_MESSAGES/lspclient.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/el/LC_MESSAGES/tabswitcherplugin.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/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/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/kwrite.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-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/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/eo/LC_MESSAGES/kwrite.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/katebuild-plugin.mo share/locale/es/LC_MESSAGES/katecloseexceptplugin.mo share/locale/es/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/es/LC_MESSAGES/lspclient.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/kwrite.mo share/locale/et/LC_MESSAGES/lspclient.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/eu/LC_MESSAGES/lspclient.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/fa/LC_MESSAGES/kwrite.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/katebuild-plugin.mo share/locale/fi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fi/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/fi/LC_MESSAGES/lspclient.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fi/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/fr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fr/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/fr/LC_MESSAGES/lspclient.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kwrite.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/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.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/kwrite.mo share/locale/gl/LC_MESSAGES/lspclient.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.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/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo share/locale/he/LC_MESSAGES/kwrite.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo share/locale/hi/LC_MESSAGES/kwrite.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/hr/LC_MESSAGES/kwrite.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/kwrite.mo +share/locale/hu/LC_MESSAGES/lspclient.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hu/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/ia/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ia/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/ia/LC_MESSAGES/lspclient.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/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/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/kwrite.mo share/locale/id/LC_MESSAGES/lspclient.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.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/kwrite.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/katebuild-plugin.mo share/locale/it/LC_MESSAGES/katecloseexceptplugin.mo share/locale/it/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/it/LC_MESSAGES/lspclient.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/it/LC_MESSAGES/tabswitcherplugin.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/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/kwrite.mo share/locale/ja/LC_MESSAGES/lspclient.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/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/kk/LC_MESSAGES/kwrite.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/km/LC_MESSAGES/kwrite.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/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/ko/LC_MESSAGES/lspclient.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/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/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/kwrite.mo share/locale/lt/LC_MESSAGES/lspclient.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/katesearch.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/katexmltools.mo share/locale/lv/LC_MESSAGES/kwrite.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/kwrite.mo share/locale/ml/LC_MESSAGES/lspclient.mo share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/mr/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo share/locale/nb/LC_MESSAGES/kwrite.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/kwrite.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/nl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nl/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/nl/LC_MESSAGES/lspclient.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/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/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/kwrite.mo share/locale/nn/LC_MESSAGES/lspclient.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.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/kwrite.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pa/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/pl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pl/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/pl/LC_MESSAGES/lspclient.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/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/kwrite.mo share/locale/pt/LC_MESSAGES/lspclient.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt/LC_MESSAGES/tabswitcherplugin.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/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/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/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/kwrite.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/kwrite.mo share/locale/ro/LC_MESSAGES/lspclient.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ro/LC_MESSAGES/tabswitcherplugin.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/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/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/kwrite.mo share/locale/ru/LC_MESSAGES/lspclient.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/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/se/LC_MESSAGES/kwrite.mo share/locale/sk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sk/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sk/LC_MESSAGES/kate.mo share/locale/sk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sk/LC_MESSAGES/katebuild-plugin.mo share/locale/sk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sk/LC_MESSAGES/katecolorpickerplugin.mo share/locale/sk/LC_MESSAGES/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/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/kwrite.mo share/locale/sk/LC_MESSAGES/lspclient.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sk/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/sl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sl/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/sl/LC_MESSAGES/lspclient.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/sq/LC_MESSAGES/kwrite.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/kwrite.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/sv/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sv/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/sv/LC_MESSAGES/lspclient.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sv/LC_MESSAGES/tabswitcherplugin.mo share/locale/ta/LC_MESSAGES/kate.mo share/locale/ta/LC_MESSAGES/katesymbolviewer.mo share/locale/ta/LC_MESSAGES/katetextfilter.mo share/locale/ta/LC_MESSAGES/katexmltools.mo share/locale/ta/LC_MESSAGES/kwrite.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/tg/LC_MESSAGES/kwrite.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/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.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/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/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.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/ug/LC_MESSAGES/kwrite.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/katebuild-plugin.mo share/locale/uk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/uk/LC_MESSAGES/katecolorpickerplugin.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/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/kwrite.mo share/locale/uk/LC_MESSAGES/lspclient.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.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/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/kwrite.mo share/locale/vi/LC_MESSAGES/lspclient.mo share/locale/vi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/vi/LC_MESSAGES/tabswitcherplugin.mo share/locale/wa/LC_MESSAGES/kate.mo share/locale/wa/LC_MESSAGES/katekonsoleplugin.mo share/locale/wa/LC_MESSAGES/kwrite.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/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/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/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/kwrite.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_CN/LC_MESSAGES/tabswitcherplugin.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/katebuild-plugin.mo share/locale/zh_TW/LC_MESSAGES/katecloseexceptplugin.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/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/kwrite.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/zh_TW/LC_MESSAGES/tabswitcherplugin.mo share/metainfo/org.kde.kate.appdata.xml share/metainfo/org.kde.kwrite.appdata.xml share/metainfo/org.kde.plasma.katesessions.appdata.xml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/KateSessionsItemDelegate.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/Menu.qml share/plasma/plasmoids/org.kde.plasma.katesessions/contents/ui/katesessions.qml share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.desktop share/plasma/plasmoids/org.kde.plasma.katesessions/metadata.json share/plasma/services/org.kde.plasma.katesessions.operations diff --git a/games/blinken/distinfo b/games/blinken/distinfo index b374fa7a5374..49b47d94dba2 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570983 -SHA256 (KDE/release-service/21.12.0/blinken-21.12.0.tar.xz) = 87a0dd7d9151fd0535ba41de268b9f02a4b7dec6400857ed9770f681c617a404 -SIZE (KDE/release-service/21.12.0/blinken-21.12.0.tar.xz) = 2714084 +TIMESTAMP = 1641292285 +SHA256 (KDE/release-service/21.12.1/blinken-21.12.1.tar.xz) = cef8884f63533e3ffd679a1041aa635651b25a85067d5577b0e71226686a621b +SIZE (KDE/release-service/21.12.1/blinken-21.12.1.tar.xz) = 2714232 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index feea4e805ac4..3950272696b2 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570986 -SHA256 (KDE/release-service/21.12.0/bomber-21.12.0.tar.xz) = 4c47a6fd361f59ed6b45f8ccde2e6479ae9a0dd1b0d7d3e442626cebca0293c7 -SIZE (KDE/release-service/21.12.0/bomber-21.12.0.tar.xz) = 831096 +TIMESTAMP = 1641292308 +SHA256 (KDE/release-service/21.12.1/bomber-21.12.1.tar.xz) = 50b5b858ec28d497d985dd1ab4fa33f7c96e48d8b41d910fde698285436dd5a3 +SIZE (KDE/release-service/21.12.1/bomber-21.12.1.tar.xz) = 831232 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 86476dc23f90..e851546ab5d0 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570988 -SHA256 (KDE/release-service/21.12.0/bovo-21.12.0.tar.xz) = e904a3b19d32e8d42f0c624511780ec541b42f1d7735b261be7c9ae570c5df59 -SIZE (KDE/release-service/21.12.0/bovo-21.12.0.tar.xz) = 209508 +TIMESTAMP = 1641292292 +SHA256 (KDE/release-service/21.12.1/bovo-21.12.1.tar.xz) = c465e6e166f479db7ae349ee835cf2c047adbfdccf1e472dbe4faddab6f7b70c +SIZE (KDE/release-service/21.12.1/bovo-21.12.1.tar.xz) = 209504 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index 795b34f66666..1b8120acab68 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570999 -SHA256 (KDE/release-service/21.12.0/granatier-21.12.0.tar.xz) = 0f323320cec22132b42d97ce5f3fa32c03f287eeac94aada3aff2af968a425a7 -SIZE (KDE/release-service/21.12.0/granatier-21.12.0.tar.xz) = 2097920 +TIMESTAMP = 1641292281 +SHA256 (KDE/release-service/21.12.1/granatier-21.12.1.tar.xz) = b5de644b3fad3997d14dca4432846009082bf022da16fbe787d10b06ae717035 +SIZE (KDE/release-service/21.12.1/granatier-21.12.1.tar.xz) = 2097504 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 18617e16b5d9..b7eb261ee71e 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570993 -SHA256 (KDE/release-service/21.12.0/kanagram-21.12.0.tar.xz) = 8671517faa36a394a2bfbaa43935b20804fa04908325621d12cdafb0ae7aea48 -SIZE (KDE/release-service/21.12.0/kanagram-21.12.0.tar.xz) = 8044068 +TIMESTAMP = 1641292289 +SHA256 (KDE/release-service/21.12.1/kanagram-21.12.1.tar.xz) = 35773560b3b54433e86836a9072d9b627584b64252986423eeb84bef8658de02 +SIZE (KDE/release-service/21.12.1/kanagram-21.12.1.tar.xz) = 8043800 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 9471700d4f95..064110454904 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570990 -SHA256 (KDE/release-service/21.12.0/kapman-21.12.0.tar.xz) = e4111df72a7fe25251f0c9edc887c77ae988f9baf5b05e7a046fb22c15aa7687 -SIZE (KDE/release-service/21.12.0/kapman-21.12.0.tar.xz) = 2471824 +TIMESTAMP = 1641292300 +SHA256 (KDE/release-service/21.12.1/kapman-21.12.1.tar.xz) = 3420b5000b4127f6475f320861bf6941cc0a9dd5f33bcaa64e55ca0fd48f9818 +SIZE (KDE/release-service/21.12.1/kapman-21.12.1.tar.xz) = 2471856 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index ded6628eb30b..292a11e8f798 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570971 -SHA256 (KDE/release-service/21.12.0/katomic-21.12.0.tar.xz) = 0ce8fda8a8a5c38a666e83f46ed5ebc5d453fd1776b16f8be5bfba64ef8e0acd -SIZE (KDE/release-service/21.12.0/katomic-21.12.0.tar.xz) = 1435080 +TIMESTAMP = 1641292291 +SHA256 (KDE/release-service/21.12.1/katomic-21.12.1.tar.xz) = c1dbc4e6dec18957c8637cce66c95e324184e0c0247bbde49ffc183fe4797479 +SIZE (KDE/release-service/21.12.1/katomic-21.12.1.tar.xz) = 1435124 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index 55041f521ef1..81eea52c0bd5 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570964 -SHA256 (KDE/release-service/21.12.0/kblackbox-21.12.0.tar.xz) = 892d457bd7a2726e009ed54d799ec6f66f0c2480178b236a03853a93bd728a26 -SIZE (KDE/release-service/21.12.0/kblackbox-21.12.0.tar.xz) = 524232 +TIMESTAMP = 1641292304 +SHA256 (KDE/release-service/21.12.1/kblackbox-21.12.1.tar.xz) = b107986746e9b767738260dd7e043453060c582058da9e6c18a2162ee9403e95 +SIZE (KDE/release-service/21.12.1/kblackbox-21.12.1.tar.xz) = 524180 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index b386e7d387ba..1741e7dde2c3 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570966 -SHA256 (KDE/release-service/21.12.0/kblocks-21.12.0.tar.xz) = 8f6fcf34daa88ea9b8e786f8e5c374aa703ddac452290f893fa81fb05ee58451 -SIZE (KDE/release-service/21.12.0/kblocks-21.12.0.tar.xz) = 2100392 +TIMESTAMP = 1641292310 +SHA256 (KDE/release-service/21.12.1/kblocks-21.12.1.tar.xz) = adc4c9ec09815d6b91c882cc8693913bfd91d6f94d68050fc030238aa7f78929 +SIZE (KDE/release-service/21.12.1/kblocks-21.12.1.tar.xz) = 2100336 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 77e4c53710ab..64be89506829 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570962 -SHA256 (KDE/release-service/21.12.0/kbounce-21.12.0.tar.xz) = db01764cabe0de588550ec1889726b34ded93f1013335157b60b07ca06b063e1 -SIZE (KDE/release-service/21.12.0/kbounce-21.12.0.tar.xz) = 3527528 +TIMESTAMP = 1641292302 +SHA256 (KDE/release-service/21.12.1/kbounce-21.12.1.tar.xz) = 15619e91bd4bfe840d5be37d5f12b215033312853c2ddeb4914eacfe10454df4 +SIZE (KDE/release-service/21.12.1/kbounce-21.12.1.tar.xz) = 3527792 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 256953b2ee42..6b9917fccaa7 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571000 -SHA256 (KDE/release-service/21.12.0/kbreakout-21.12.0.tar.xz) = de68ca03ef387c63be9a7ac2e91535a66f747a5d7f8aaae3566de1b3bf19ed8b -SIZE (KDE/release-service/21.12.0/kbreakout-21.12.0.tar.xz) = 2552300 +TIMESTAMP = 1641292280 +SHA256 (KDE/release-service/21.12.1/kbreakout-21.12.1.tar.xz) = 656e0aa175ee5d2a77a1e1d5784f456a60b0613bfe979ca0fc5d0d4c7d1a994d +SIZE (KDE/release-service/21.12.1/kbreakout-21.12.1.tar.xz) = 2552404 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index fcc2a349282a..d2909a42c75e 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570961 -SHA256 (KDE/release-service/21.12.0/kdiamond-21.12.0.tar.xz) = eef6138ed53b81279a04c4ca2ef126488d5c7194cfa0ab8c43096c6f8b537800 -SIZE (KDE/release-service/21.12.0/kdiamond-21.12.0.tar.xz) = 4700296 +TIMESTAMP = 1641292285 +SHA256 (KDE/release-service/21.12.1/kdiamond-21.12.1.tar.xz) = 6147b873f21ef78575dfcadda372c8eaee8f17aa62b996d0bc58e159d461a9c3 +SIZE (KDE/release-service/21.12.1/kdiamond-21.12.1.tar.xz) = 4700248 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 1caa59d60097..897fcdb17167 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570972 -SHA256 (KDE/release-service/21.12.0/kfourinline-21.12.0.tar.xz) = a420db2a3cae72892f76fb631eb7437de9edc4833188ed5a55f52532e32bd4a2 -SIZE (KDE/release-service/21.12.0/kfourinline-21.12.0.tar.xz) = 719000 +TIMESTAMP = 1641292305 +SHA256 (KDE/release-service/21.12.1/kfourinline-21.12.1.tar.xz) = 4b93205ec5ad913b78fd511dfbb75832d8524b2bdf65c5ad23f8cf93be09989e +SIZE (KDE/release-service/21.12.1/kfourinline-21.12.1.tar.xz) = 718964 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 519cc4f8c442..c7e244bf47e2 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570974 -SHA256 (KDE/release-service/21.12.0/kgoldrunner-21.12.0.tar.xz) = 2754a97c6318ff0c6e6652c3ef7f8fa1c600137ba0ac142f07dd85d7650aa1f8 -SIZE (KDE/release-service/21.12.0/kgoldrunner-21.12.0.tar.xz) = 4768776 +TIMESTAMP = 1641292303 +SHA256 (KDE/release-service/21.12.1/kgoldrunner-21.12.1.tar.xz) = 886290f6c28a2cb01da8179fedbc8d4baced56b2e2a13db7999e46f83af1aa06 +SIZE (KDE/release-service/21.12.1/kgoldrunner-21.12.1.tar.xz) = 4768780 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 805617001fe6..a6568fa108d5 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571000 -SHA256 (KDE/release-service/21.12.0/khangman-21.12.0.tar.xz) = 96048ec86909f44cb1735727b6b422790d030645eaee84675881e8414e1b7ccb -SIZE (KDE/release-service/21.12.0/khangman-21.12.0.tar.xz) = 7432140 +TIMESTAMP = 1641292295 +SHA256 (KDE/release-service/21.12.1/khangman-21.12.1.tar.xz) = 34c82c7884efc2746d19b8fd9ff5d19c5bdbaee323b0852b0b11cb6262724c85 +SIZE (KDE/release-service/21.12.1/khangman-21.12.1.tar.xz) = 7434004 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 8cb168ceb2a9..f2dadfbd7006 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570987 -SHA256 (KDE/release-service/21.12.0/kigo-21.12.0.tar.xz) = fda802277f7f064e424706f3a832864f575e4cc286d80925bcca8cf67b8720e5 -SIZE (KDE/release-service/21.12.0/kigo-21.12.0.tar.xz) = 5252332 +TIMESTAMP = 1641292293 +SHA256 (KDE/release-service/21.12.1/kigo-21.12.1.tar.xz) = bdce1a46fcb20f2142ecc95147d82cd95d1d68d8f331b12ba3a6fc90ede22e29 +SIZE (KDE/release-service/21.12.1/kigo-21.12.1.tar.xz) = 5252548 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index e716791444ae..72498647201b 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570992 -SHA256 (KDE/release-service/21.12.0/killbots-21.12.0.tar.xz) = dd9fd9b622e92dff78706100c89c7d20b7b16af46fe9c01cb4f8c30f890db9a5 -SIZE (KDE/release-service/21.12.0/killbots-21.12.0.tar.xz) = 1193756 +TIMESTAMP = 1641292290 +SHA256 (KDE/release-service/21.12.1/killbots-21.12.1.tar.xz) = 063822a74befa5971e4c9409f8d9bb821b7236f54130aa428e5f64a80308fe6b +SIZE (KDE/release-service/21.12.1/killbots-21.12.1.tar.xz) = 1193804 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 207da17f3c77..8df319e80326 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570994 -SHA256 (KDE/release-service/21.12.0/kiriki-21.12.0.tar.xz) = 386a22cc7c0867a31f7f563139fb96e1f54706164553ac965b3d1bb3420202a9 -SIZE (KDE/release-service/21.12.0/kiriki-21.12.0.tar.xz) = 365480 +TIMESTAMP = 1641292296 +SHA256 (KDE/release-service/21.12.1/kiriki-21.12.1.tar.xz) = 8f05264dc7918b88b66d8eb4228fb61630da5d1b813ac3f825dc280db0062427 +SIZE (KDE/release-service/21.12.1/kiriki-21.12.1.tar.xz) = 365488 diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index cc71b20a1e4e..e1c26698c45f 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570976 -SHA256 (KDE/release-service/21.12.0/kjumpingcube-21.12.0.tar.xz) = 1524f4dd35ef37fde89da509b19f734974faceca3c752bf7f053712c3f3418f8 -SIZE (KDE/release-service/21.12.0/kjumpingcube-21.12.0.tar.xz) = 322892 +TIMESTAMP = 1641292286 +SHA256 (KDE/release-service/21.12.1/kjumpingcube-21.12.1.tar.xz) = b905cc43c2b42089170edc78c4d7cf59a3a5f6ab29c43a8d3ce674862ddcdb2e +SIZE (KDE/release-service/21.12.1/kjumpingcube-21.12.1.tar.xz) = 322928 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index 013c1ee78aad..5b896e96a02e 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570989 -SHA256 (KDE/release-service/21.12.0/klickety-21.12.0.tar.xz) = b1e4d60efcea076f99343b8e41e3abe1af26c4b94af8b24f561f2a5116241ffc -SIZE (KDE/release-service/21.12.0/klickety-21.12.0.tar.xz) = 1492180 +TIMESTAMP = 1641292309 +SHA256 (KDE/release-service/21.12.1/klickety-21.12.1.tar.xz) = 7bf8e91d4edbaec39d521ed79c88c5d28b98cf6388147d0627c38bda9b7cfbd7 +SIZE (KDE/release-service/21.12.1/klickety-21.12.1.tar.xz) = 1492248 diff --git a/games/klines/distinfo b/games/klines/distinfo index d748947c697c..6cc27c83bcdb 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570970 -SHA256 (KDE/release-service/21.12.0/klines-21.12.0.tar.xz) = 537f6f96421d042e3e45479c087a7059dbdd5f0184e339f6a9afd5256cc05ec2 -SIZE (KDE/release-service/21.12.0/klines-21.12.0.tar.xz) = 1724144 +TIMESTAMP = 1641292282 +SHA256 (KDE/release-service/21.12.1/klines-21.12.1.tar.xz) = e8a7a8ea6326b05b94f6cb4c3b5b9ef9a7c966890dc7c4e5af7617d0b5b38ba2 +SIZE (KDE/release-service/21.12.1/klines-21.12.1.tar.xz) = 1724868 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index f77b0b272fb6..642e15b3c2d4 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570965 -SHA256 (KDE/release-service/21.12.0/kmahjongg-21.12.0.tar.xz) = e748eced99962f0fb41fb0f00592bbbace86145924b848dea03185ade3853b3e -SIZE (KDE/release-service/21.12.0/kmahjongg-21.12.0.tar.xz) = 4068272 +TIMESTAMP = 1641292307 +SHA256 (KDE/release-service/21.12.1/kmahjongg-21.12.1.tar.xz) = f426cc7091339eaf73de5f41fc1fa677f3d3e156035e52dcd601de0f297ece0a +SIZE (KDE/release-service/21.12.1/kmahjongg-21.12.1.tar.xz) = 4068528 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 9f46de6c49b3..c6aab48c75bb 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570960 -SHA256 (KDE/release-service/21.12.0/kmines-21.12.0.tar.xz) = ff683fbe2cfe372ff53f894e7463e82df93a5115a22d6615daf100efa869e44a -SIZE (KDE/release-service/21.12.0/kmines-21.12.0.tar.xz) = 990676 +TIMESTAMP = 1641292288 +SHA256 (KDE/release-service/21.12.1/kmines-21.12.1.tar.xz) = eca3c2d163e0cb023195c5901793859166fa08bcbd2c95494e059178a4f5e1de +SIZE (KDE/release-service/21.12.1/kmines-21.12.1.tar.xz) = 991096 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index e3df04eb4ac6..8cf0c3884869 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570985 -SHA256 (KDE/release-service/21.12.0/knavalbattle-21.12.0.tar.xz) = f919d3aa7842da80905efab50d9802b615aa727e70f85292cafbfe026ad908e6 -SIZE (KDE/release-service/21.12.0/knavalbattle-21.12.0.tar.xz) = 1376168 +TIMESTAMP = 1641292297 +SHA256 (KDE/release-service/21.12.1/knavalbattle-21.12.1.tar.xz) = 7e3d482250ecc39599c1dc4ca36cad370159a5ea7af1e5539b82a0008cbfafa8 +SIZE (KDE/release-service/21.12.1/knavalbattle-21.12.1.tar.xz) = 1376016 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index 190b19c4fd3f..3284e2010fe8 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571003 -SHA256 (KDE/release-service/21.12.0/knetwalk-21.12.0.tar.xz) = 8c00a0eac84c6c1cd20aab3396e6b0cafd6b5082392b31cf54ad11a24562732a -SIZE (KDE/release-service/21.12.0/knetwalk-21.12.0.tar.xz) = 1094448 +TIMESTAMP = 1641292294 +SHA256 (KDE/release-service/21.12.1/knetwalk-21.12.1.tar.xz) = d0900d12439beeb4663bd12738cbe1c3ac5b21c74abc4dc643a949a71362cfc5 +SIZE (KDE/release-service/21.12.1/knetwalk-21.12.1.tar.xz) = 1094476 diff --git a/games/knights/distinfo b/games/knights/distinfo index 6a3e17c52304..7f68875f525f 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570975 -SHA256 (KDE/release-service/21.12.0/knights-21.12.0.tar.xz) = 69245840e2cbb2f1ea17ee74fa6d7a5468c23983da111057e5705ba2ff092c9d -SIZE (KDE/release-service/21.12.0/knights-21.12.0.tar.xz) = 3320268 +TIMESTAMP = 1641292301 +SHA256 (KDE/release-service/21.12.1/knights-21.12.1.tar.xz) = 12845f0bdaf030ff28bab0f144773f1d3b3c04d32eae63033b24a7824c02cbd9 +SIZE (KDE/release-service/21.12.1/knights-21.12.1.tar.xz) = 3320212 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 70762b11041d..e24ed3b88d40 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570980 -SHA256 (KDE/release-service/21.12.0/kolf-21.12.0.tar.xz) = 755fa76ab8681bab920fbb761b5ff32c668caa7baef1ac3a33b00da262b71383 -SIZE (KDE/release-service/21.12.0/kolf-21.12.0.tar.xz) = 1047476 +TIMESTAMP = 1641292299 +SHA256 (KDE/release-service/21.12.1/kolf-21.12.1.tar.xz) = c934b5ce48b5a736f02a4af294df758911743f9c0b3294dc14da0553b2fe731c +SIZE (KDE/release-service/21.12.1/kolf-21.12.1.tar.xz) = 1049056 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 08f22967afd1..ac933b644ffe 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570998 -SHA256 (KDE/release-service/21.12.0/kollision-21.12.0.tar.xz) = 5c3b80f0e68f6f6b6c160698b71e325e4f3d3e1557cd82949a6b7c8b7508512e -SIZE (KDE/release-service/21.12.0/kollision-21.12.0.tar.xz) = 298832 +TIMESTAMP = 1641292279 +SHA256 (KDE/release-service/21.12.1/kollision-21.12.1.tar.xz) = 9e8d8282d0735bbe471c1b0ab819a10cb5d09c72de1b48fc67f57cdc192fe687 +SIZE (KDE/release-service/21.12.1/kollision-21.12.1.tar.xz) = 298800 diff --git a/games/konquest/distinfo b/games/konquest/distinfo index da776a207906..3c4db7bb6238 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570982 -SHA256 (KDE/release-service/21.12.0/konquest-21.12.0.tar.xz) = bc371db53f2f677751b994a86d5495902fa95c4ba91b3c1fbb27c69e907edf73 -SIZE (KDE/release-service/21.12.0/konquest-21.12.0.tar.xz) = 860508 +TIMESTAMP = 1641292306 +SHA256 (KDE/release-service/21.12.1/konquest-21.12.1.tar.xz) = 5e7da98175bbd4aab3fc972a7c10e158d84361b14711de9aee9d117edbe42514 +SIZE (KDE/release-service/21.12.1/konquest-21.12.1.tar.xz) = 860444 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 98590a0ad72d..c994e54b6e53 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570979 -SHA256 (KDE/release-service/21.12.0/kpat-21.12.0.tar.xz) = e24f697a6cdba583c4628f39571b477160686236bb89e6a615653f45f96e4a0c -SIZE (KDE/release-service/21.12.0/kpat-21.12.0.tar.xz) = 3730308 +TIMESTAMP = 1641292300 +SHA256 (KDE/release-service/21.12.1/kpat-21.12.1.tar.xz) = c24bc57ab0f0f13e26498561be1b8bf880415f9fb2e8f9357929e4e14b2a5d92 +SIZE (KDE/release-service/21.12.1/kpat-21.12.1.tar.xz) = 3730432 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index cf96432baaf3..250afb58cf06 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570991 -SHA256 (KDE/release-service/21.12.0/kreversi-21.12.0.tar.xz) = fc73c83723e97d0ae235672c08ee4c42b480671d950feac5e376064a48814fe8 -SIZE (KDE/release-service/21.12.0/kreversi-21.12.0.tar.xz) = 1060608 +TIMESTAMP = 1641292290 +SHA256 (KDE/release-service/21.12.1/kreversi-21.12.1.tar.xz) = 4fff4c9d31ffeddc1cb41b572a5a8f872026793278dba8d657c777d83e72bff1 +SIZE (KDE/release-service/21.12.1/kreversi-21.12.1.tar.xz) = 1060632 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 2251348a5a57..ac6d7672b81f 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570967 -SHA256 (KDE/release-service/21.12.0/kshisen-21.12.0.tar.xz) = e3f8d89c8adf3180de50df3f8c7f2d612d3b9083766088d44c2a6cba8c5567d0 -SIZE (KDE/release-service/21.12.0/kshisen-21.12.0.tar.xz) = 987840 +TIMESTAMP = 1641292288 +SHA256 (KDE/release-service/21.12.1/kshisen-21.12.1.tar.xz) = 0e9b401703af64ae3d5b1047530321461c9f2f41d2a926e0a701c37c132d025a +SIZE (KDE/release-service/21.12.1/kshisen-21.12.1.tar.xz) = 988160 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 3ce1dc0ff2e1..3b97d762bb51 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570995 -SHA256 (KDE/release-service/21.12.0/ksirk-21.12.0.tar.xz) = fd9a82e09688088883f1a90f19caa1531595edcd22df804044b35f3566b65505 -SIZE (KDE/release-service/21.12.0/ksirk-21.12.0.tar.xz) = 7002384 +TIMESTAMP = 1641292294 +SHA256 (KDE/release-service/21.12.1/ksirk-21.12.1.tar.xz) = d57e10de2259a78c8fc16804ea3cc4b5f8852f4b755f224e5a6dacbdb5d0a0e3 +SIZE (KDE/release-service/21.12.1/ksirk-21.12.1.tar.xz) = 7003504 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 4bf2cebe8b4b..3ac46665d12a 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570997 -SHA256 (KDE/release-service/21.12.0/ksnakeduel-21.12.0.tar.xz) = 3c39149e8421431f5dda44b0030477e4043ac0c349c386052dda7172a8433e3f -SIZE (KDE/release-service/21.12.0/ksnakeduel-21.12.0.tar.xz) = 603196 +TIMESTAMP = 1641292284 +SHA256 (KDE/release-service/21.12.1/ksnakeduel-21.12.1.tar.xz) = b4d5cee797f6a26408aee8817441261141bcd0d2164d08017beff9ec33288b23 +SIZE (KDE/release-service/21.12.1/ksnakeduel-21.12.1.tar.xz) = 603564 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 24d21b60afd3..5df29188e1d4 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570978 -SHA256 (KDE/release-service/21.12.0/kspaceduel-21.12.0.tar.xz) = 7a6a9a4cca178c8b22f8eb98c5d75b3caa1256b94391076c9928e0852c0a7cbb -SIZE (KDE/release-service/21.12.0/kspaceduel-21.12.0.tar.xz) = 649064 +TIMESTAMP = 1641292281 +SHA256 (KDE/release-service/21.12.1/kspaceduel-21.12.1.tar.xz) = 4c9623e516f9c3d488f9b0ba7c691c004d9b72d021202e3bf43a196237d0d8e2 +SIZE (KDE/release-service/21.12.1/kspaceduel-21.12.1.tar.xz) = 649048 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index c715ee4904cd..4c7ac301d2dd 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570963 -SHA256 (KDE/release-service/21.12.0/ksquares-21.12.0.tar.xz) = b51ef5f2da5f5dfeb5f561d9946178ef40ab8978e39f04b5a6cdd98758e1759a -SIZE (KDE/release-service/21.12.0/ksquares-21.12.0.tar.xz) = 304896 +TIMESTAMP = 1641292283 +SHA256 (KDE/release-service/21.12.1/ksquares-21.12.1.tar.xz) = bb4644ebf8f29d556e63ffdbb15fb170bade8d00a14b6484d20538e9887e3d04 +SIZE (KDE/release-service/21.12.1/ksquares-21.12.1.tar.xz) = 304896 diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 54f84c5c94fd..d989532f0d97 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570977 -SHA256 (KDE/release-service/21.12.0/ksudoku-21.12.0.tar.xz) = 86e74f9d27c522efdbda74339d3ae2645f70386b9349999635efd30934e3d5e7 -SIZE (KDE/release-service/21.12.0/ksudoku-21.12.0.tar.xz) = 1685644 +TIMESTAMP = 1641292298 +SHA256 (KDE/release-service/21.12.1/ksudoku-21.12.1.tar.xz) = 5af8bae8e253c4b9b83101944364abc5aae091deed27205613172564aab75615 +SIZE (KDE/release-service/21.12.1/ksudoku-21.12.1.tar.xz) = 1685488 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 67ecd39e8a9e..8b9a42084832 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570968 -SHA256 (KDE/release-service/21.12.0/ktuberling-21.12.0.tar.xz) = 54e02dac7eaa5a453174e9e2ca38a1860835e66613cf6e242aac08b18fa45058 -SIZE (KDE/release-service/21.12.0/ktuberling-21.12.0.tar.xz) = 70825224 +TIMESTAMP = 1641292311 +SHA256 (KDE/release-service/21.12.1/ktuberling-21.12.1.tar.xz) = 06d7d04626087e684455a0daaabd5d32aad053508468903008d2fd932aaad260 +SIZE (KDE/release-service/21.12.1/ktuberling-21.12.1.tar.xz) = 70821124 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index ad063cb15a94..4266efa73bc3 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570984 -SHA256 (KDE/release-service/21.12.0/kubrick-21.12.0.tar.xz) = 02f57a33effeb3530db7ec706eb672c7acce2a0919450eed910a7880dc1f3ded -SIZE (KDE/release-service/21.12.0/kubrick-21.12.0.tar.xz) = 343396 +TIMESTAMP = 1641292287 +SHA256 (KDE/release-service/21.12.1/kubrick-21.12.1.tar.xz) = 41cc6ac103752b08e7b9f6e89c2357f9b083ef849a88dc7eff62042f4f468abf +SIZE (KDE/release-service/21.12.1/kubrick-21.12.1.tar.xz) = 343296 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index aee4be1bfef1..722f88d5cc95 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570973 -SHA256 (KDE/release-service/21.12.0/libkdegames-21.12.0.tar.xz) = 821b5e4fe68e8a3a5ab72caec240dd603baf100aae0e48658bba0aa6b5db9426 -SIZE (KDE/release-service/21.12.0/libkdegames-21.12.0.tar.xz) = 5977256 +TIMESTAMP = 1641292303 +SHA256 (KDE/release-service/21.12.1/libkdegames-21.12.1.tar.xz) = 9e7152d377b916feba04dcdea723e8c52888f0ca24604fea8aa274539c3fad40 +SIZE (KDE/release-service/21.12.1/libkdegames-21.12.1.tar.xz) = 5973228 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 33034d81f09f..834c9fd91342 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571002 -SHA256 (KDE/release-service/21.12.0/libkmahjongg-21.12.0.tar.xz) = 4dbda968e47c35136316037996ded0b648f29539f021785a5f15111bbf96620f -SIZE (KDE/release-service/21.12.0/libkmahjongg-21.12.0.tar.xz) = 1682560 +TIMESTAMP = 1641292308 +SHA256 (KDE/release-service/21.12.1/libkmahjongg-21.12.1.tar.xz) = 04f9234443f5185ad0e61ddb41a375bbec4a43f662c30c375755ec1294aba508 +SIZE (KDE/release-service/21.12.1/libkmahjongg-21.12.1.tar.xz) = 1682608 diff --git a/games/lskat/distinfo b/games/lskat/distinfo index ecc88d9d8112..b54f39039a5f 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570996 -SHA256 (KDE/release-service/21.12.0/lskat-21.12.0.tar.xz) = d7a75bc82811dddfac3a0b5123e088859edd02f8c7eaeb3d03bed169284e8f3e -SIZE (KDE/release-service/21.12.0/lskat-21.12.0.tar.xz) = 1233300 +TIMESTAMP = 1641292296 +SHA256 (KDE/release-service/21.12.1/lskat-21.12.1.tar.xz) = 5f861538840af7a3155283b7de67c83469890ff642257dbed1ced6342e59b7c3 +SIZE (KDE/release-service/21.12.1/lskat-21.12.1.tar.xz) = 1232532 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 1073d98637f1..839983f9b0b1 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570969 -SHA256 (KDE/release-service/21.12.0/palapeli-21.12.0.tar.xz) = 998ca785cdc53a1afc5a29bcaf2af8618c4d544199144f6dd84c58d922f4d7eb -SIZE (KDE/release-service/21.12.0/palapeli-21.12.0.tar.xz) = 2094816 +TIMESTAMP = 1641292279 +SHA256 (KDE/release-service/21.12.1/palapeli-21.12.1.tar.xz) = c61bd9bc7204732e41f65549ae7eaac499a24816cec4e2ddc95edf30a600470c +SIZE (KDE/release-service/21.12.1/palapeli-21.12.1.tar.xz) = 2097600 diff --git a/games/picmi/distinfo b/games/picmi/distinfo index bdaa81e9288a..1bdfddda2c8c 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570981 -SHA256 (KDE/release-service/21.12.0/picmi-21.12.0.tar.xz) = fafaf5e34dee9e4eff271dd5eed923684a851125418b7d27571f1859eb8921d1 -SIZE (KDE/release-service/21.12.0/picmi-21.12.0.tar.xz) = 1537996 +TIMESTAMP = 1641292306 +SHA256 (KDE/release-service/21.12.1/picmi-21.12.1.tar.xz) = a034577149ba7aadc5f29a9bdec57b0a6686243242f74eb9a47e2537066caa49 +SIZE (KDE/release-service/21.12.1/picmi-21.12.1.tar.xz) = 1537724 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index cdc899c4f242..c68e2d380019 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570958 -SHA256 (KDE/release-service/21.12.0/gwenview-21.12.0.tar.xz) = 0f711c51f8497591552785f77dc9afc7a632c6046abb96f10942daed8e2388f8 -SIZE (KDE/release-service/21.12.0/gwenview-21.12.0.tar.xz) = 6791828 +TIMESTAMP = 1641292326 +SHA256 (KDE/release-service/21.12.1/gwenview-21.12.1.tar.xz) = cb52ae1aad0c62072d5ad0d0bdd2e2fbb89b2dd4dead1d5e44d5cbac0b34a8be +SIZE (KDE/release-service/21.12.1/gwenview-21.12.1.tar.xz) = 6792764 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 5f31bcaf8e1d..b1216ed52eaf 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570954 -SHA256 (KDE/release-service/21.12.0/kamera-21.12.0.tar.xz) = b6ab12dc4a286d24b6b3a0877b928808d89832e1cb714d602364049fc12a0cee -SIZE (KDE/release-service/21.12.0/kamera-21.12.0.tar.xz) = 116992 +TIMESTAMP = 1641292316 +SHA256 (KDE/release-service/21.12.1/kamera-21.12.1.tar.xz) = 6c75f9b482e0f7dcf7e2800848e12479924f2d4293962e886b4d3721d08dfa43 +SIZE (KDE/release-service/21.12.1/kamera-21.12.1.tar.xz) = 117132 diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index d58a98136d40..506a38710a72 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570951 -SHA256 (KDE/release-service/21.12.0/kcolorchooser-21.12.0.tar.xz) = 53fa98c2f2eeb338bf52a913080e5f549c3d148477ea0ded1a71e6f0bcb9c637 -SIZE (KDE/release-service/21.12.0/kcolorchooser-21.12.0.tar.xz) = 30132 +TIMESTAMP = 1641292321 +SHA256 (KDE/release-service/21.12.1/kcolorchooser-21.12.1.tar.xz) = a3b34c3fe699435664f99a5fad7960f7b38147ecd17010faafd3d03e49cabeb2 +SIZE (KDE/release-service/21.12.1/kcolorchooser-21.12.1.tar.xz) = 30144 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index fd8747970d6c..b54c976895b2 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570949 -SHA256 (KDE/release-service/21.12.0/kdegraphics-mobipocket-21.12.0.tar.xz) = c2a31b030024b000772ef2d913afe8b6e4829594b56c081e65ea415c21952c13 -SIZE (KDE/release-service/21.12.0/kdegraphics-mobipocket-21.12.0.tar.xz) = 17328 +TIMESTAMP = 1641292319 +SHA256 (KDE/release-service/21.12.1/kdegraphics-mobipocket-21.12.1.tar.xz) = 3d24b549d36e30fc34e29c5b338408e6ec07040031d27a07b306851106a40c55 +SIZE (KDE/release-service/21.12.1/kdegraphics-mobipocket-21.12.1.tar.xz) = 17320 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 92f9a057a056..d0cf9e5a421a 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570952 -SHA256 (KDE/release-service/21.12.0/svgpart-21.12.0.tar.xz) = c1c6cf7cedca6d2deec765bcf678e2f267a9f3063ca56865d2cc6637789e1be3 -SIZE (KDE/release-service/21.12.0/svgpart-21.12.0.tar.xz) = 25136 +TIMESTAMP = 1641292323 +SHA256 (KDE/release-service/21.12.1/svgpart-21.12.1.tar.xz) = 9cd7f1580fcd01d2c7a7b67e05800ef305b8afe0100ddc32c78bbc60c3933b0e +SIZE (KDE/release-service/21.12.1/svgpart-21.12.1.tar.xz) = 25180 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 5f44daf0bd06..e68749f368c4 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570945 -SHA256 (KDE/release-service/21.12.0/kdegraphics-thumbnailers-21.12.0.tar.xz) = 70dcb030731b7844fabbba6b67ac9bb1495981911f7e0782a7927ea15422917e -SIZE (KDE/release-service/21.12.0/kdegraphics-thumbnailers-21.12.0.tar.xz) = 47188 +TIMESTAMP = 1641292314 +SHA256 (KDE/release-service/21.12.1/kdegraphics-thumbnailers-21.12.1.tar.xz) = a62bd8342627137a99da4b0b86a7f03be7e9a47af5c55def2845dbc8680a4678 +SIZE (KDE/release-service/21.12.1/kdegraphics-thumbnailers-21.12.1.tar.xz) = 47192 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 62cd84087961..686cee21ce0c 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570953 -SHA256 (KDE/release-service/21.12.0/kimagemapeditor-21.12.0.tar.xz) = 6aa9f8a8fdf7871d9b8513ea00bfa9c03c93ee804523e467b4f6dcc51d990738 -SIZE (KDE/release-service/21.12.0/kimagemapeditor-21.12.0.tar.xz) = 1088864 +TIMESTAMP = 1641292320 +SHA256 (KDE/release-service/21.12.1/kimagemapeditor-21.12.1.tar.xz) = a9783f560fe013aa5fe388feb64f96d65189e79e835cd8226d3338ed341eede5 +SIZE (KDE/release-service/21.12.1/kimagemapeditor-21.12.1.tar.xz) = 1090024 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index c0e675159508..da51b647f533 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570943 -SHA256 (KDE/release-service/21.12.0/kipi-plugins-21.12.0.tar.xz) = e9ebb9cffbe549e913f62ff0ca7b532616860f62973caf82a309660a69744b11 -SIZE (KDE/release-service/21.12.0/kipi-plugins-21.12.0.tar.xz) = 1546692 +TIMESTAMP = 1641292319 +SHA256 (KDE/release-service/21.12.1/kipi-plugins-21.12.1.tar.xz) = 70babcd4c4b16ab6111d9787750dc48018751eb17bc0813557f486d6d0cb4db5 +SIZE (KDE/release-service/21.12.1/kipi-plugins-21.12.1.tar.xz) = 1546732 diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index fba5aa350eec..057221a30589 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570946 -SHA256 (KDE/release-service/21.12.0/kolourpaint-21.12.0.tar.xz) = 55b9064d5c476f04bb911582fc34ae552b9e5e04b8312862289f3ca8e34feb98 -SIZE (KDE/release-service/21.12.0/kolourpaint-21.12.0.tar.xz) = 5716184 +TIMESTAMP = 1641292321 +SHA256 (KDE/release-service/21.12.1/kolourpaint-21.12.1.tar.xz) = 59dbb86ded22c31f87d565c9cc02f3e19ad5e0ed4ccaa4f39892bf099b877c4c +SIZE (KDE/release-service/21.12.1/kolourpaint-21.12.1.tar.xz) = 5716452 diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 42540ca3ef26..81f7ea93a60c 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570956 -SHA256 (KDE/release-service/21.12.0/kontrast-21.12.0.tar.xz) = e86545425c2ded10c670f0fbe795ef4721ff9128272297b423ed8a748a4d67b7 -SIZE (KDE/release-service/21.12.0/kontrast-21.12.0.tar.xz) = 124948 +TIMESTAMP = 1641292324 +SHA256 (KDE/release-service/21.12.1/kontrast-21.12.1.tar.xz) = 5fffd235334ec3dfe1f5f38cd8cc9164236c1c87a1c18c396c7ce2836bf1f999 +SIZE (KDE/release-service/21.12.1/kontrast-21.12.1.tar.xz) = 124940 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index a45b9320b6a0..c9876b30385b 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570958 -SHA256 (KDE/release-service/21.12.0/kqtquickcharts-21.12.0.tar.xz) = 36769928c967d05bbdeffc375798c6ade4b21e8c16042be206269cc5d5fddc2e -SIZE (KDE/release-service/21.12.0/kqtquickcharts-21.12.0.tar.xz) = 29928 +TIMESTAMP = 1641292325 +SHA256 (KDE/release-service/21.12.1/kqtquickcharts-21.12.1.tar.xz) = 7aab42d0932bb18880f937fe06b733aed5a38ac611a2b8043fb3f77ca5220136 +SIZE (KDE/release-service/21.12.1/kqtquickcharts-21.12.1.tar.xz) = 29932 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index 6b205d86c370..8cce58f9bd96 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570955 -SHA256 (KDE/release-service/21.12.0/libkdcraw-21.12.0.tar.xz) = 2e8a7a1b7924283c71e84355375f9ac92eda43cc043aea063169061edc8bfc33 -SIZE (KDE/release-service/21.12.0/libkdcraw-21.12.0.tar.xz) = 37372 +TIMESTAMP = 1641292324 +SHA256 (KDE/release-service/21.12.1/libkdcraw-21.12.1.tar.xz) = 9a6b20220b94144d495351e8ed65b61291a13dc6e59716fa599b93de027f4ebc +SIZE (KDE/release-service/21.12.1/libkdcraw-21.12.1.tar.xz) = 37356 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 424c2947ea02..970c592036aa 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570950 -SHA256 (KDE/release-service/21.12.0/libkexiv2-21.12.0.tar.xz) = 9064a900dbad287dbdf2b6dd6b1202695f9409706040b43c5cad3f77490afed6 -SIZE (KDE/release-service/21.12.0/libkexiv2-21.12.0.tar.xz) = 59564 +TIMESTAMP = 1641292315 +SHA256 (KDE/release-service/21.12.1/libkexiv2-21.12.1.tar.xz) = ab30b86ad489faf1feea2949c74844c6d3f4c46219974b924e157bae2012aafb +SIZE (KDE/release-service/21.12.1/libkexiv2-21.12.1.tar.xz) = 59572 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index df16d95623e2..d3671ff2663c 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570957 -SHA256 (KDE/release-service/21.12.0/libkipi-21.12.0.tar.xz) = ecd6390143f997b62b7f2698332ca6fc79b03e438b6ce9522694f7933c096ede -SIZE (KDE/release-service/21.12.0/libkipi-21.12.0.tar.xz) = 103608 +TIMESTAMP = 1641292315 +SHA256 (KDE/release-service/21.12.1/libkipi-21.12.1.tar.xz) = 7eb5921935c41f58d8ebde6d9ce3aa5d76320fe32beb5f76c3ab9e260e1ce51a +SIZE (KDE/release-service/21.12.1/libkipi-21.12.1.tar.xz) = 103660 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 60980e2804de..63762ff77709 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570947 -SHA256 (KDE/release-service/21.12.0/libksane-21.12.0.tar.xz) = 94bd3ff023cfa91f5e168e49fd54e98a251fcab7cc1f1137253236147fbf1665 -SIZE (KDE/release-service/21.12.0/libksane-21.12.0.tar.xz) = 162780 +TIMESTAMP = 1641292317 +SHA256 (KDE/release-service/21.12.1/libksane-21.12.1.tar.xz) = 9ddbff9aaecb74a84cf740b4031ecfc20693d1a0fceb21ce8d331bd325018cca +SIZE (KDE/release-service/21.12.1/libksane-21.12.1.tar.xz) = 163108 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 0781d146f13d..73ee9d7ecafa 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570948 -SHA256 (KDE/release-service/21.12.0/okular-21.12.0.tar.xz) = c8d487e5f86cd951ae0f8d0b057393c3a1d4136c8d2f99e04a0e2ec0e85d7e23 -SIZE (KDE/release-service/21.12.0/okular-21.12.0.tar.xz) = 8124792 +TIMESTAMP = 1641292322 +SHA256 (KDE/release-service/21.12.1/okular-21.12.1.tar.xz) = 04bd61cec2b794cce0f6381cf7c4db7778a8cefc5716d8a4bfd3efaafd212ba1 +SIZE (KDE/release-service/21.12.1/okular-21.12.1.tar.xz) = 8143148 diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 936ce70e4f48..e7e6c342a760 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570959 -SHA256 (KDE/release-service/21.12.0/skanlite-21.12.0.tar.xz) = 81a7e9cd446ace05d39ef41e78f0e5cbd2de40adf622e4eb0298f80485c33a60 -SIZE (KDE/release-service/21.12.0/skanlite-21.12.0.tar.xz) = 2439796 +TIMESTAMP = 1641292327 +SHA256 (KDE/release-service/21.12.1/skanlite-21.12.1.tar.xz) = 1d1d993195e6bca7bd02ab5d1018851b93cdb38273a54859b9e976802ae3a368 +SIZE (KDE/release-service/21.12.1/skanlite-21.12.1.tar.xz) = 2439780 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 7613c32ef3c9..27ef07f5c985 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570948 -SHA256 (KDE/release-service/21.12.0/spectacle-21.12.0.tar.xz) = 568f4029bcb3959ab6d8a088e4853256cd4edda06d8f85b9531a727865362968 -SIZE (KDE/release-service/21.12.0/spectacle-21.12.0.tar.xz) = 1253472 +TIMESTAMP = 1641292317 +SHA256 (KDE/release-service/21.12.1/spectacle-21.12.1.tar.xz) = e2c0c4b8a7936f85a741ce816aced38aa626ccfd89015a7bdb3d942d7cd7178f +SIZE (KDE/release-service/21.12.1/spectacle-21.12.1.tar.xz) = 1253820 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 5f55bfcacded..3c37df52502e 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571012 -SHA256 (KDE/release-service/21.12.0/konversation-21.12.0.tar.xz) = 540e4ed10453e250fc5f887b98745b4b7c9f6e9fde04c1cbf0e4fe6813afaed2 -SIZE (KDE/release-service/21.12.0/konversation-21.12.0.tar.xz) = 4251764 +TIMESTAMP = 1641292226 +SHA256 (KDE/release-service/21.12.1/konversation-21.12.1.tar.xz) = 2eb800c95b205053feb0abb1124855d32a17372bdb9d01bc692c52467c3f8c69 +SIZE (KDE/release-service/21.12.1/konversation-21.12.1.tar.xz) = 4254944 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index e64735d29663..0f795f100a31 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571029 -SHA256 (KDE/release-service/21.12.0/kiten-21.12.0.tar.xz) = 8429e8553f2c892ab70644291158e8863f5a42eceae7950909e78d1bbb80adb0 -SIZE (KDE/release-service/21.12.0/kiten-21.12.0.tar.xz) = 11314100 +TIMESTAMP = 1641292277 +SHA256 (KDE/release-service/21.12.1/kiten-21.12.1.tar.xz) = 4c159e80be6c5672ff83eab9cca470acc1884b62c9a74414ab3de97b52263424 +SIZE (KDE/release-service/21.12.1/kiten-21.12.1.tar.xz) = 11314212 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 8b005a28b9ed..26f72b0a0866 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571032 -SHA256 (KDE/release-service/21.12.0/kross-interpreters-21.12.0.tar.xz) = 4f8418a3fc717fe4d67da1eea78a28d800e11391227c61099aef8cbf213403dd -SIZE (KDE/release-service/21.12.0/kross-interpreters-21.12.0.tar.xz) = 151480 +TIMESTAMP = 1641292242 +SHA256 (KDE/release-service/21.12.1/kross-interpreters-21.12.1.tar.xz) = 75be8332701f86ac2640bebbbfe238411dd201d5d8d671e927e7a7275c76ed21 +SIZE (KDE/release-service/21.12.1/kross-interpreters-21.12.1.tar.xz) = 151480 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 8d1eda6f51e4..782a5d91e668 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571030 -SHA256 (KDE/release-service/21.12.0/kturtle-21.12.0.tar.xz) = 1794ff87b288a80705012f251eddefac6effffcf25b581e2dd389605aec44cd5 -SIZE (KDE/release-service/21.12.0/kturtle-21.12.0.tar.xz) = 1971752 +TIMESTAMP = 1641292241 +SHA256 (KDE/release-service/21.12.1/kturtle-21.12.1.tar.xz) = 1da6aeac23d132df7857057693dd1f4e70151152c1fbab4b8a15eb5878726b14 +SIZE (KDE/release-service/21.12.1/kturtle-21.12.1.tar.xz) = 1971792 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index dd457dee496b..76ad0c3ba6f0 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570902 -SHA256 (KDE/release-service/21.12.0/analitza-21.12.0.tar.xz) = 75803adb8573232ef70623557b380cce2145c9eca36f24e6d8032b20f226285b -SIZE (KDE/release-service/21.12.0/analitza-21.12.0.tar.xz) = 347868 +TIMESTAMP = 1641292221 +SHA256 (KDE/release-service/21.12.1/analitza-21.12.1.tar.xz) = 75fbd9f310a37e5ad245277ac58193b87e7e4a1f747590a4233092f03ee18d36 +SIZE (KDE/release-service/21.12.1/analitza-21.12.1.tar.xz) = 347832 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 1867bfa65075..49180baa43b7 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639120380 -SHA256 (KDE/release-service/21.12.0/cantor-21.12.0.tar.xz) = a920eafc3eb67ef075eaf8cdb3171fd106a2258c488deba3d1e1412f4a188110 -SIZE (KDE/release-service/21.12.0/cantor-21.12.0.tar.xz) = 9185684 +TIMESTAMP = 1641292224 +SHA256 (KDE/release-service/21.12.1/cantor-21.12.1.tar.xz) = e1ed91e0488ea8483ed9ddc6ab88a8e486fddfe4cb8176831c652fc445a79b50 +SIZE (KDE/release-service/21.12.1/cantor-21.12.1.tar.xz) = 9186212 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index b4f878f9c572..c4be3b156c73 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570909 -SHA256 (KDE/release-service/21.12.0/kalgebra-21.12.0.tar.xz) = 7315352052570d6bee2630c25e0cd29cff012b3f1ed2eb09090f50c403922b62 -SIZE (KDE/release-service/21.12.0/kalgebra-21.12.0.tar.xz) = 1026376 +TIMESTAMP = 1641292223 +SHA256 (KDE/release-service/21.12.1/kalgebra-21.12.1.tar.xz) = 8b546230580f62a238a1971dc4fb7e636a4fd0749c08ef5291884afb69c698e9 +SIZE (KDE/release-service/21.12.1/kalgebra-21.12.1.tar.xz) = 1026520 diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index 8bb286f4f913..ceea553a6f66 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570908 -SHA256 (KDE/release-service/21.12.0/kbruch-21.12.0.tar.xz) = cd3e2c1bafed1cdfcf23d5f4532455ebe3eb0304455a3b12faf86274ff7868f6 -SIZE (KDE/release-service/21.12.0/kbruch-21.12.0.tar.xz) = 5628696 +TIMESTAMP = 1641292219 +SHA256 (KDE/release-service/21.12.1/kbruch-21.12.1.tar.xz) = 4096cfb1f3658422a60d2d9f6741db474711ddda110f9818ef2342452651042d +SIZE (KDE/release-service/21.12.1/kbruch-21.12.1.tar.xz) = 5628764 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 8a27c7f9ed3a..fcbe35e38fa9 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570903 -SHA256 (KDE/release-service/21.12.0/kcalc-21.12.0.tar.xz) = 458b876758e01a82fcae7695c0f0e41c775339c9f9c63e52a469d4df68ed00c6 -SIZE (KDE/release-service/21.12.0/kcalc-21.12.0.tar.xz) = 383988 +TIMESTAMP = 1641292220 +SHA256 (KDE/release-service/21.12.1/kcalc-21.12.1.tar.xz) = d65e6c83cf623a96a07491ea074a3c4f8120dc914993c4609456436894ecf45c +SIZE (KDE/release-service/21.12.1/kcalc-21.12.1.tar.xz) = 384076 diff --git a/math/kig/distinfo b/math/kig/distinfo index 256d73ea5f3d..fe268fae24c8 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570906 -SHA256 (KDE/release-service/21.12.0/kig-21.12.0.tar.xz) = 8c763c66348ef8f3b1e99ff06df38210e21ba1eddb3cb19a80c63dcdd2b32702 -SIZE (KDE/release-service/21.12.0/kig-21.12.0.tar.xz) = 3175116 +TIMESTAMP = 1641292222 +SHA256 (KDE/release-service/21.12.1/kig-21.12.1.tar.xz) = 9a62ac2fe00c4ac99f5d0018e6ffa46db1f54c78f2de62fbb280b9472fed8508 +SIZE (KDE/release-service/21.12.1/kig-21.12.1.tar.xz) = 3175340 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 415ffc5b022e..5868a21052c9 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570904 -SHA256 (KDE/release-service/21.12.0/kmplot-21.12.0.tar.xz) = 962f792a6587216a4af5cc955da68d0baf80a2f905acd3e829dd69b2064a184a -SIZE (KDE/release-service/21.12.0/kmplot-21.12.0.tar.xz) = 3043256 +TIMESTAMP = 1641292224 +SHA256 (KDE/release-service/21.12.1/kmplot-21.12.1.tar.xz) = 250f325c60fe6011bb2a044c89f8ce9562b0ba96cb1c403012774c1471d7c3b6 +SIZE (KDE/release-service/21.12.1/kmplot-21.12.1.tar.xz) = 3043376 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 6260794c5c26..dae525a366b9 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570907 -SHA256 (KDE/release-service/21.12.0/rocs-21.12.0.tar.xz) = dcaac2476bd781e70091771dced1ba9073c7779994fc5c986538688c896a24c1 -SIZE (KDE/release-service/21.12.0/rocs-21.12.0.tar.xz) = 1559120 +TIMESTAMP = 1641292220 +SHA256 (KDE/release-service/21.12.1/rocs-21.12.1.tar.xz) = 711a0ffa26434b153860056e7fd489a3b3b12f8a7feb2d456471be3aaa169454 +SIZE (KDE/release-service/21.12.1/rocs-21.12.1.tar.xz) = 1558900 diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 9390eed28346..59213d090d5a 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570891 -SHA256 (KDE/release-service/21.12.0/artikulate-21.12.0.tar.xz) = c1cc736a8e4cdc89bd4a87246741150b947a72826d48b12cdb30b38cf75b5b8e -SIZE (KDE/release-service/21.12.0/artikulate-21.12.0.tar.xz) = 1091464 +TIMESTAMP = 1641292355 +SHA256 (KDE/release-service/21.12.1/artikulate-21.12.1.tar.xz) = bd3c74f4f2b48ae9a1312eb64baa868f4ff7b2fc8c090f49b5b61e8f95a99d10 +SIZE (KDE/release-service/21.12.1/artikulate-21.12.1.tar.xz) = 1091512 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 1ad8d168be5a..08e4088b18d2 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570888 -SHA256 (KDE/release-service/21.12.0/kdeedu-data-21.12.0.tar.xz) = 366e92b031c30093e81bc0aed2322b02eddaab0d47f4bff69d54ed3622659887 -SIZE (KDE/release-service/21.12.0/kdeedu-data-21.12.0.tar.xz) = 335708 +TIMESTAMP = 1641292352 +SHA256 (KDE/release-service/21.12.1/kdeedu-data-21.12.1.tar.xz) = 037ec4a89784cf5fa0151d947965f1bb51539d1037cd0835c85811c368867dcd +SIZE (KDE/release-service/21.12.1/kdeedu-data-21.12.1.tar.xz) = 335660 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index b60cc9f9c4ec..e111b321e6d2 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570892 -SHA256 (KDE/release-service/21.12.0/kgeography-21.12.0.tar.xz) = f8f742c4d6d3bc14a27e81a8bc37096e0fb9500e55673b8fd38937ac54211b37 -SIZE (KDE/release-service/21.12.0/kgeography-21.12.0.tar.xz) = 11088852 +TIMESTAMP = 1641292354 +SHA256 (KDE/release-service/21.12.1/kgeography-21.12.1.tar.xz) = bde2bce922361589d27c44b506e3f1d118d2e608f9ac0b4d9917a9f747233dbb +SIZE (KDE/release-service/21.12.1/kgeography-21.12.1.tar.xz) = 11088692 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index eb08acca26cd..246c1a6f3854 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570890 -SHA256 (KDE/release-service/21.12.0/klettres-21.12.0.tar.xz) = 8723594f9cee3ff17973d51fae76d5315ad51a81879f3187788addc73249e873 -SIZE (KDE/release-service/21.12.0/klettres-21.12.0.tar.xz) = 47136420 +TIMESTAMP = 1641292357 +SHA256 (KDE/release-service/21.12.1/klettres-21.12.1.tar.xz) = a4dd57174a9a578d5202296bc31370070e21462db7a76b967f3b9801aca1bc12 +SIZE (KDE/release-service/21.12.1/klettres-21.12.1.tar.xz) = 47138816 diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 7976335b978d..945548a6de13 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570887 -SHA256 (KDE/release-service/21.12.0/ktouch-21.12.0.tar.xz) = 908d36410a2759a938932f8714b07f09d930a4d338d71008843d5c67a3b95e25 -SIZE (KDE/release-service/21.12.0/ktouch-21.12.0.tar.xz) = 4966828 +TIMESTAMP = 1641292353 +SHA256 (KDE/release-service/21.12.1/ktouch-21.12.1.tar.xz) = 747c4c8a20f61ebc24f33185ca37e4effe9c8cf4b4b4f6589071b0a3548ce520 +SIZE (KDE/release-service/21.12.1/ktouch-21.12.1.tar.xz) = 4967872 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 5a8c07d10c07..ac2302641ce0 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570891 -SHA256 (KDE/release-service/21.12.0/kwordquiz-21.12.0.tar.xz) = 95765bf1f1a32397be42ae20bc176bac3374ebe0148d744b07a5ea3acaf19a79 -SIZE (KDE/release-service/21.12.0/kwordquiz-21.12.0.tar.xz) = 4207052 +TIMESTAMP = 1641292358 +SHA256 (KDE/release-service/21.12.1/kwordquiz-21.12.1.tar.xz) = 456324e8df8de44ee7955b3137928d239f3e263db644ed95407095d383057920 +SIZE (KDE/release-service/21.12.1/kwordquiz-21.12.1.tar.xz) = 4207572 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 2f0b01f432ab..7627e3b2bc26 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570888 -SHA256 (KDE/release-service/21.12.0/libkeduvocdocument-21.12.0.tar.xz) = 8bd2f36be74cc1345002a381ca914b2624c9e357e9400de0e98fee4e4441dbbf -SIZE (KDE/release-service/21.12.0/libkeduvocdocument-21.12.0.tar.xz) = 217988 +TIMESTAMP = 1641292356 +SHA256 (KDE/release-service/21.12.1/libkeduvocdocument-21.12.1.tar.xz) = 2810c6d91b10b9eb987b5eedf0e5d6f75fe4dc2f2967301204131e60200c48f1 +SIZE (KDE/release-service/21.12.1/libkeduvocdocument-21.12.1.tar.xz) = 217960 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index d726cbf6e21d..84db5a8d71f8 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570886 -SHA256 (KDE/release-service/21.12.0/parley-21.12.0.tar.xz) = 9d502784e3e9d9be8d1a067f65833bca264268509343611c3b52532c815fb478 -SIZE (KDE/release-service/21.12.0/parley-21.12.0.tar.xz) = 8485776 +TIMESTAMP = 1641292352 +SHA256 (KDE/release-service/21.12.1/parley-21.12.1.tar.xz) = c04763d2904e9fa2984f30a12e0820540de01dd2f79d877bcd219a14ab5632c1 +SIZE (KDE/release-service/21.12.1/parley-21.12.1.tar.xz) = 8485976 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 2f512447ed9e..6ca0c04ba0e0 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570885 -SHA256 (KDE/release-service/21.12.0/dragon-21.12.0.tar.xz) = 101dfce62050491845a425edf0f95c2c7a13d81956b90462621d6911672ef590 -SIZE (KDE/release-service/21.12.0/dragon-21.12.0.tar.xz) = 1665264 +TIMESTAMP = 1641292227 +SHA256 (KDE/release-service/21.12.1/dragon-21.12.1.tar.xz) = 3f94ceaf4560b1d5fdf58c2a10daf6a4d94924470f08fd2df1387f65ea0d3f13 +SIZE (KDE/release-service/21.12.1/dragon-21.12.1.tar.xz) = 1665320 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 3eb1f759261f..bc81d19949ca 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570883 -SHA256 (KDE/release-service/21.12.0/kamoso-21.12.0.tar.xz) = 0d35986fb1a093023f2242b54a4db1e7ce0e6a91eac51dbe29f910c37e993d3a -SIZE (KDE/release-service/21.12.0/kamoso-21.12.0.tar.xz) = 214916 +TIMESTAMP = 1641292228 +SHA256 (KDE/release-service/21.12.1/kamoso-21.12.1.tar.xz) = 380c9f0aa53029269f4a8c1e2b46834ac6da5c16eeef6aca4e524e522bde7428 +SIZE (KDE/release-service/21.12.1/kamoso-21.12.1.tar.xz) = 215888 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 30a001bc14f4..a95fe1796307 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570884 -SHA256 (KDE/release-service/21.12.0/ffmpegthumbs-21.12.0.tar.xz) = 2b3ce90c799afe73d3417b51cbd7a62f160d859144f077f0a447185a5fafb192 -SIZE (KDE/release-service/21.12.0/ffmpegthumbs-21.12.0.tar.xz) = 29952 +TIMESTAMP = 1641292229 +SHA256 (KDE/release-service/21.12.1/ffmpegthumbs-21.12.1.tar.xz) = e39df38df15171acced19588195e5c137c115bf35e31085aa74fe6e8fb03e1d5 +SIZE (KDE/release-service/21.12.1/ffmpegthumbs-21.12.1.tar.xz) = 29956 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 65b350c4c028..10e7cd84cda3 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1639120378 -SHA256 (KDE/release-service/21.12.0/kdenlive-21.12.0.tar.xz) = e11d2ee058d89ad1c7b8bb230bf3e26e9c4b8fdf7fb98fc790de7e4a1bd77420 -SIZE (KDE/release-service/21.12.0/kdenlive-21.12.0.tar.xz) = 11676572 +TIMESTAMP = 1641292229 +SHA256 (KDE/release-service/21.12.1/kdenlive-21.12.1.tar.xz) = dcd56718b2db687f9d4c63974a648c2b6641173d011362d2d9619442baef6fe4 +SIZE (KDE/release-service/21.12.1/kdenlive-21.12.1.tar.xz) = 11685960 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index 5a532c74c338..d2a3b4ed03b4 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,547 +1,548 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/add-subtitle.svg share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/actions/keyframe-add.svg share/icons/hicolor/16x16/actions/keyframe-disable.svg share/icons/hicolor/16x16/actions/keyframe-duplicate.svg share/icons/hicolor/16x16/actions/keyframe-next.svg share/icons/hicolor/16x16/actions/keyframe-previous.svg share/icons/hicolor/16x16/actions/keyframe-record.svg share/icons/hicolor/16x16/actions/keyframe-remove.svg share/icons/hicolor/16x16/actions/keyframe.svg share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/keyframe-add.svg share/icons/hicolor/22x22/actions/keyframe-disable.svg share/icons/hicolor/22x22/actions/keyframe-duplicate.svg share/icons/hicolor/22x22/actions/keyframe-next.svg share/icons/hicolor/22x22/actions/keyframe-previous.svg share/icons/hicolor/22x22/actions/keyframe-record.svg share/icons/hicolor/22x22/actions/keyframe-remove.svg share/icons/hicolor/22x22/actions/keyframe.svg share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/add-subtitle.svg share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz share/knsrcfiles/kdenlive_luts.knsrc %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml +%%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/scripts/checkvosk.py %%DATADIR%%/scripts/speech.py %%DATADIR%%/scripts/speechtotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 9c8b8f6f1f9a..ffbbca46af00 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571019 -SHA256 (KDE/release-service/21.12.0/kaccounts-integration-21.12.0.tar.xz) = c71237afb05be595d4ef308694476d1b9f491637f98decfa7023b22f5fb08a36 -SIZE (KDE/release-service/21.12.0/kaccounts-integration-21.12.0.tar.xz) = 87904 +TIMESTAMP = 1641292235 +SHA256 (KDE/release-service/21.12.1/kaccounts-integration-21.12.1.tar.xz) = 28ff0e9fc35670a375bf20464d808e2761ec0c44014e0836c4fb1f90d1394996 +SIZE (KDE/release-service/21.12.1/kaccounts-integration-21.12.1.tar.xz) = 87952 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index 84ea4f4adf24..acb214ada27b 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571020 -SHA256 (KDE/release-service/21.12.0/kaccounts-providers-21.12.0.tar.xz) = 5121c11837830b234a563ff9a9a0fa8051bfbaa781cc115d9e3760a07f8e7078 -SIZE (KDE/release-service/21.12.0/kaccounts-providers-21.12.0.tar.xz) = 64052 +TIMESTAMP = 1641292231 +SHA256 (KDE/release-service/21.12.1/kaccounts-providers-21.12.1.tar.xz) = 6413be53fbb2229a55ec73161d53791a7c4e3ccbc70ea1a2e14d8d49a32d948a +SIZE (KDE/release-service/21.12.1/kaccounts-providers-21.12.1.tar.xz) = 64040 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index fd1d60506470..dd5ddff269ac 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571018 -SHA256 (KDE/release-service/21.12.0/kopete-21.12.0.tar.xz) = 5e6715a7422827c0241fff30f41f7faed1288a4a8047f37051bb77b208818754 -SIZE (KDE/release-service/21.12.0/kopete-21.12.0.tar.xz) = 9666680 +TIMESTAMP = 1641292238 +SHA256 (KDE/release-service/21.12.1/kopete-21.12.1.tar.xz) = 67c32e67e20c49a5c11148c736e4dfd3b4dd4c7ab0cbde86baab18acfa306c8d +SIZE (KDE/release-service/21.12.1/kopete-21.12.1.tar.xz) = 9667800 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 0216eb907480..10571c81a5f4 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571026 -SHA256 (KDE/release-service/21.12.0/ktp-accounts-kcm-21.12.0.tar.xz) = 7eb7ee197cb17a5b7e0f13a851a6e5196277d0266cea8e03eb37745a207f1eee -SIZE (KDE/release-service/21.12.0/ktp-accounts-kcm-21.12.0.tar.xz) = 266236 +TIMESTAMP = 1641292236 +SHA256 (KDE/release-service/21.12.1/ktp-accounts-kcm-21.12.1.tar.xz) = 0bc427c8d78ea502fd3f45a37b272aa328282ac0fd119b8eaf45f76d369fea1b +SIZE (KDE/release-service/21.12.1/ktp-accounts-kcm-21.12.1.tar.xz) = 266408 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index c0280ae35950..301d61f71d56 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571026 -SHA256 (KDE/release-service/21.12.0/ktp-approver-21.12.0.tar.xz) = f9a8029e8ce50b185086c0438ec7b930b915e317016a81968771dd53bd634ee3 -SIZE (KDE/release-service/21.12.0/ktp-approver-21.12.0.tar.xz) = 38148 +TIMESTAMP = 1641292232 +SHA256 (KDE/release-service/21.12.1/ktp-approver-21.12.1.tar.xz) = 2fad8579e0951867bb57a8849fc30be34f2d44ea3f694ee32c37d67fd5687836 +SIZE (KDE/release-service/21.12.1/ktp-approver-21.12.1.tar.xz) = 38168 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 336206761261..ee764f69388f 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571015 -SHA256 (KDE/release-service/21.12.0/ktp-auth-handler-21.12.0.tar.xz) = a15e1f9c7d0b64295b35301d41fdeabc715b73ea8773784ec36df4e929e67454 -SIZE (KDE/release-service/21.12.0/ktp-auth-handler-21.12.0.tar.xz) = 47820 +TIMESTAMP = 1641292234 +SHA256 (KDE/release-service/21.12.1/ktp-auth-handler-21.12.1.tar.xz) = 20ba303586164deccce797977b913ad86f0b8d7d0e63b588a7011577f6cf03c5 +SIZE (KDE/release-service/21.12.1/ktp-auth-handler-21.12.1.tar.xz) = 47812 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index 4bb13c06faf6..d6942b5faee7 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571027 -SHA256 (KDE/release-service/21.12.0/ktp-call-ui-21.12.0.tar.xz) = c8c3c516ae4ac15c042eb16e1fb8ce7cfa8f292cafd1947f1231a1473b32db7c -SIZE (KDE/release-service/21.12.0/ktp-call-ui-21.12.0.tar.xz) = 98604 +TIMESTAMP = 1641292234 +SHA256 (KDE/release-service/21.12.1/ktp-call-ui-21.12.1.tar.xz) = 3fbf467023381318d15b65cca47619526cf103e0c8b59a6a7797ff526ccb9e72 +SIZE (KDE/release-service/21.12.1/ktp-call-ui-21.12.1.tar.xz) = 98544 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index f14dd617cbce..baa06bc44fde 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571014 -SHA256 (KDE/release-service/21.12.0/ktp-common-internals-21.12.0.tar.xz) = e453463958ad9a2634c6cea2b04345c2bc25793c1fa80e18e2c519e6573a50f1 -SIZE (KDE/release-service/21.12.0/ktp-common-internals-21.12.0.tar.xz) = 450632 +TIMESTAMP = 1641292237 +SHA256 (KDE/release-service/21.12.1/ktp-common-internals-21.12.1.tar.xz) = 0b1150218eca694d7a9d5f74e79c3a987f9d6428a9c8483b09f812d4b4134a53 +SIZE (KDE/release-service/21.12.1/ktp-common-internals-21.12.1.tar.xz) = 450616 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index f69625a6b4d7..57b537b6eab6 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571020 -SHA256 (KDE/release-service/21.12.0/ktp-contact-list-21.12.0.tar.xz) = e475ebee3c6140550d04434ac5d12299344e4e71af6b991a33f5885e0a26c564 -SIZE (KDE/release-service/21.12.0/ktp-contact-list-21.12.0.tar.xz) = 153672 +TIMESTAMP = 1641292230 +SHA256 (KDE/release-service/21.12.1/ktp-contact-list-21.12.1.tar.xz) = ac0f6678aac2698f3eeb45ca35a89c87cf79700986ea5fa90f34ea324dbd82f0 +SIZE (KDE/release-service/21.12.1/ktp-contact-list-21.12.1.tar.xz) = 153696 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index b3b78e584a19..1c699efdbbbb 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571017 -SHA256 (KDE/release-service/21.12.0/ktp-contact-runner-21.12.0.tar.xz) = 2d5feedd19260b691b10dad890c5502aaf1040547a42f450a93ebe192f717ccd -SIZE (KDE/release-service/21.12.0/ktp-contact-runner-21.12.0.tar.xz) = 43852 +TIMESTAMP = 1641292239 +SHA256 (KDE/release-service/21.12.1/ktp-contact-runner-21.12.1.tar.xz) = a213d9466149ae033ed9c750c2e2eec285155bd6ed2c92c8c60ba9dbf6569b66 +SIZE (KDE/release-service/21.12.1/ktp-contact-runner-21.12.1.tar.xz) = 43880 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 7fbd134097d9..2f82595356c0 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571025 -SHA256 (KDE/release-service/21.12.0/ktp-desktop-applets-21.12.0.tar.xz) = 9bd1eea3031fc72d909a60d131a549b9adc420cf6116de99808d0dadea50fc00 -SIZE (KDE/release-service/21.12.0/ktp-desktop-applets-21.12.0.tar.xz) = 44492 +TIMESTAMP = 1641292239 +SHA256 (KDE/release-service/21.12.1/ktp-desktop-applets-21.12.1.tar.xz) = 6a853bd9db077a115cb23d1a8ee55c213907d3c4a2c99a454f3f53b3392a2faa +SIZE (KDE/release-service/21.12.1/ktp-desktop-applets-21.12.1.tar.xz) = 44440 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index c4de3cfee880..fd1df4973eed 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571024 -SHA256 (KDE/release-service/21.12.0/ktp-filetransfer-handler-21.12.0.tar.xz) = dd0729f5694682f5d3d5f0a57a55319cac7a78b08ab769c1c23a43183f48eba6 -SIZE (KDE/release-service/21.12.0/ktp-filetransfer-handler-21.12.0.tar.xz) = 46420 +TIMESTAMP = 1641292233 +SHA256 (KDE/release-service/21.12.1/ktp-filetransfer-handler-21.12.1.tar.xz) = 2cc1f4cbc98cb361f1ad3f36f9d61263e997206c65140b5eeb3a1c7f9ef6009a +SIZE (KDE/release-service/21.12.1/ktp-filetransfer-handler-21.12.1.tar.xz) = 46428 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index e2640b3d3e28..d2fa20893220 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571016 -SHA256 (KDE/release-service/21.12.0/ktp-kded-module-21.12.0.tar.xz) = 9bde992d08a154db0758a4a27374686c3d32248de65ec43ddfc37967d458c4a2 -SIZE (KDE/release-service/21.12.0/ktp-kded-module-21.12.0.tar.xz) = 99760 +TIMESTAMP = 1641292237 +SHA256 (KDE/release-service/21.12.1/ktp-kded-module-21.12.1.tar.xz) = 45429dc9173b88e83dc5af6d765faae3e765a5a28539a97b65c2418ec8841328 +SIZE (KDE/release-service/21.12.1/ktp-kded-module-21.12.1.tar.xz) = 99732 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index 8472daf96691..c78eea902fab 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571022 -SHA256 (KDE/release-service/21.12.0/ktp-send-file-21.12.0.tar.xz) = 0d495612f17403d2597ae7c6492ba2d51686c1078a60a967a778c7cfde6263a8 -SIZE (KDE/release-service/21.12.0/ktp-send-file-21.12.0.tar.xz) = 28700 +TIMESTAMP = 1641292231 +SHA256 (KDE/release-service/21.12.1/ktp-send-file-21.12.1.tar.xz) = 3dd20a75cf3d153152409eb3b5e1fb18a52eabf8686bf6ff5cdd2ae8a9af690e +SIZE (KDE/release-service/21.12.1/ktp-send-file-21.12.1.tar.xz) = 28688 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index fb19bf7a7361..c9c6be75e41b 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571023 -SHA256 (KDE/release-service/21.12.0/ktp-text-ui-21.12.0.tar.xz) = cdf50f4d8789b7d2c5c1934a8b52414ef75d593c67de0685fb7e84cbf6b424f6 -SIZE (KDE/release-service/21.12.0/ktp-text-ui-21.12.0.tar.xz) = 474584 +TIMESTAMP = 1641292240 +SHA256 (KDE/release-service/21.12.1/ktp-text-ui-21.12.1.tar.xz) = f107d84b4879d549f46a91bae5fdc45a341124181fb17e9410454c8ea12b07d8 +SIZE (KDE/release-service/21.12.1/ktp-text-ui-21.12.1.tar.xz) = 474604 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 9c00c413a6e0..2f17eeb1d4a8 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571033 -SHA256 (KDE/release-service/21.12.0/ktorrent-21.12.0.tar.xz) = 4450ebcb76486c39903cc211905c3cc08539ff7d4b30e09354826e924812c0ca -SIZE (KDE/release-service/21.12.0/ktorrent-21.12.0.tar.xz) = 2064536 +TIMESTAMP = 1641292270 +SHA256 (KDE/release-service/21.12.1/ktorrent-21.12.1.tar.xz) = 47766be51dd67f3acd19786e7224d630f9abcf08f37fb9858ed7b71907d58d2e +SIZE (KDE/release-service/21.12.1/ktorrent-21.12.1.tar.xz) = 2064396 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index d96ccf089676..c8244a84a86a 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571034 -SHA256 (KDE/release-service/21.12.0/libktorrent-21.12.0.tar.xz) = 5ec0b6b676d96b9b552e04a9c042804ec0c559c9e56f7b28c50b80c2ed1eeb53 -SIZE (KDE/release-service/21.12.0/libktorrent-21.12.0.tar.xz) = 605896 +TIMESTAMP = 1641292271 +SHA256 (KDE/release-service/21.12.1/libktorrent-21.12.1.tar.xz) = fbb57cdb079c93e70f12c1ccdd135d9989c5a7f15dc2043d09a1bbecaee77309 +SIZE (KDE/release-service/21.12.1/libktorrent-21.12.1.tar.xz) = 605932 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index a4225e3d504a..1cb6f6b1c517 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570840 -SHA256 (KDE/release-service/21.12.0/akonadi-calendar-21.12.0.tar.xz) = 7a5df066f330b1dfdd290c579132f7e84d3f8cea941da4b2f6830b170ec07f4a -SIZE (KDE/release-service/21.12.0/akonadi-calendar-21.12.0.tar.xz) = 352724 +TIMESTAMP = 1641292375 +SHA256 (KDE/release-service/21.12.1/akonadi-calendar-21.12.1.tar.xz) = e743797c2909c93cc513946e0ba719db07888d26e6f35a134d04da4254abe10c +SIZE (KDE/release-service/21.12.1/akonadi-calendar-21.12.1.tar.xz) = 352764 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 12ed86d55461..2c5301bc36b7 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570836 -SHA256 (KDE/release-service/21.12.0/akonadi-contacts-21.12.0.tar.xz) = e46350eff479e22f14e6a95fb0e8de0f823c5921b58c305ba4c1c1b4bdd8842a -SIZE (KDE/release-service/21.12.0/akonadi-contacts-21.12.0.tar.xz) = 426008 +TIMESTAMP = 1641292378 +SHA256 (KDE/release-service/21.12.1/akonadi-contacts-21.12.1.tar.xz) = 43598a2075613297ca08cdd4a3227749779fbca7a15244c029efcd76705903fa +SIZE (KDE/release-service/21.12.1/akonadi-contacts-21.12.1.tar.xz) = 425852 diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index b32605f6a55f..91783fb6af09 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570835 -SHA256 (KDE/release-service/21.12.0/akonadi-mime-21.12.0.tar.xz) = d86b6d72be0e046bc56dfe9c29256f5dfd727da1f542659144c3c3979fa6351f -SIZE (KDE/release-service/21.12.0/akonadi-mime-21.12.0.tar.xz) = 142296 +TIMESTAMP = 1641292384 +SHA256 (KDE/release-service/21.12.1/akonadi-mime-21.12.1.tar.xz) = a6016f9c58fa899773c3f79f61aaae179a508e37405771a836bafcde72c22fca +SIZE (KDE/release-service/21.12.1/akonadi-mime-21.12.1.tar.xz) = 142288 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 552dba10ed42..ea05479e5d8a 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570847 -SHA256 (KDE/release-service/21.12.0/akonadi-notes-21.12.0.tar.xz) = 42d87fa2bf4ba4316917b90745089b446da1120d86dcd32709d0c34273b22f5c -SIZE (KDE/release-service/21.12.0/akonadi-notes-21.12.0.tar.xz) = 26572 +TIMESTAMP = 1641292361 +SHA256 (KDE/release-service/21.12.1/akonadi-notes-21.12.1.tar.xz) = db4a8435ae63f935d05d60313c849652c7e61dfe2d88efbfc9a56328cfaa2cd1 +SIZE (KDE/release-service/21.12.1/akonadi-notes-21.12.1.tar.xz) = 26568 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 65be0c7aea4b..69aa74329124 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570825 -SHA256 (KDE/release-service/21.12.0/akonadi-search-21.12.0.tar.xz) = 3305dea1b1c1844fd15dc2cc3a631264beb9b00106e62ddfbecd260c41feca1d -SIZE (KDE/release-service/21.12.0/akonadi-search-21.12.0.tar.xz) = 97712 +TIMESTAMP = 1641292366 +SHA256 (KDE/release-service/21.12.1/akonadi-search-21.12.1.tar.xz) = 5608ff3b0f3b131c556a9502223e887d7a9f78945d31e6b983b1e02828f9142d +SIZE (KDE/release-service/21.12.1/akonadi-search-21.12.1.tar.xz) = 97776 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 4f9915ece60e..5881c3c0fb56 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570846 -SHA256 (KDE/release-service/21.12.0/calendarsupport-21.12.0.tar.xz) = 345ce151c2811dd9172b79a142b8f3384e19b55920f56022bc9446f18aef79a8 -SIZE (KDE/release-service/21.12.0/calendarsupport-21.12.0.tar.xz) = 765520 +TIMESTAMP = 1641292381 +SHA256 (KDE/release-service/21.12.1/calendarsupport-21.12.1.tar.xz) = d0cb28f180b760ed5314e55dda9083be024c019e170962ccdcdc2bbf8a468b3e +SIZE (KDE/release-service/21.12.1/calendarsupport-21.12.1.tar.xz) = 765280 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index c0ce5441ef04..c5893237e09a 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570842 -SHA256 (KDE/release-service/21.12.0/eventviews-21.12.0.tar.xz) = dedcd7583c8522a85561f544d67a25809bc533cd47cffe94c2522165d364c798 -SIZE (KDE/release-service/21.12.0/eventviews-21.12.0.tar.xz) = 454648 +TIMESTAMP = 1641292380 +SHA256 (KDE/release-service/21.12.1/eventviews-21.12.1.tar.xz) = a3f13127220428dd3519dae7d5dd4fb10cc234145dfe36be1481c564d085cbbc +SIZE (KDE/release-service/21.12.1/eventviews-21.12.1.tar.xz) = 454592 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 50c7a18e1fd6..df38201bab2c 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570822 -SHA256 (KDE/release-service/21.12.0/incidenceeditor-21.12.0.tar.xz) = 57df77be28e81f5b1b15cd1e65dc5b7f549f32e5e4c0be37768f0000c5502de7 -SIZE (KDE/release-service/21.12.0/incidenceeditor-21.12.0.tar.xz) = 546476 +TIMESTAMP = 1641292364 +SHA256 (KDE/release-service/21.12.1/incidenceeditor-21.12.1.tar.xz) = b300a0e5dcd621d9b987dbb61e7bd4c9159c31e3aaa152f299029b5b650855c5 +SIZE (KDE/release-service/21.12.1/incidenceeditor-21.12.1.tar.xz) = 546384 diff --git a/net/kalarmcal/distinfo b/net/kalarmcal/distinfo index 97386f85c61a..8cfbfa472b32 100644 --- a/net/kalarmcal/distinfo +++ b/net/kalarmcal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570830 -SHA256 (KDE/release-service/21.12.0/kalarmcal-21.12.0.tar.xz) = 1dc2619888c33757a39d9ba2bd204159e47aae01cde963c7e9439d6c1b3a6066 -SIZE (KDE/release-service/21.12.0/kalarmcal-21.12.0.tar.xz) = 629776 +TIMESTAMP = 1641292377 +SHA256 (KDE/release-service/21.12.1/kalarmcal-21.12.1.tar.xz) = e58fdd64dd7c9ee7cc098878cb750a89eaba3338239dc817908317e688eff7e4 +SIZE (KDE/release-service/21.12.1/kalarmcal-21.12.1.tar.xz) = 629808 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 1bd5a84f7b95..649acb8b9c74 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570820 -SHA256 (KDE/release-service/21.12.0/kcalutils-21.12.0.tar.xz) = de2ef3a3532d0a474fb22834b14c3a40e5bd4284806eda7229fc5ffedc9a2426 -SIZE (KDE/release-service/21.12.0/kcalutils-21.12.0.tar.xz) = 338620 +TIMESTAMP = 1641292368 +SHA256 (KDE/release-service/21.12.1/kcalutils-21.12.1.tar.xz) = 35c3d088ce989bf885bedf741e70bc00a4d1537d6f835d77df284e2bf29b7cc6 +SIZE (KDE/release-service/21.12.1/kcalutils-21.12.1.tar.xz) = 338684 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index af40af1a9f17..fa73ee9328ad 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570845 -SHA256 (KDE/release-service/21.12.0/kdenetwork-filesharing-21.12.0.tar.xz) = d55c2bb2452e42e9f2f31b26fe2c356717cff9422b75d9fe373371eb27ee5b97 -SIZE (KDE/release-service/21.12.0/kdenetwork-filesharing-21.12.0.tar.xz) = 378692 +TIMESTAMP = 1641292383 +SHA256 (KDE/release-service/21.12.1/kdenetwork-filesharing-21.12.1.tar.xz) = 9e8dc8f6680d6477819df06d1cbbeac7313a15d308879e05ccd4578b3010e713 +SIZE (KDE/release-service/21.12.1/kdenetwork-filesharing-21.12.1.tar.xz) = 379736 diff --git a/net/kget/distinfo b/net/kget/distinfo index 667d73815b08..96a318f3df35 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570823 -SHA256 (KDE/release-service/21.12.0/kget-21.12.0.tar.xz) = 5f55ea13f150ac063f9b2e04ffad9c0b86477a39158adcf4a319ec2a483aa535 -SIZE (KDE/release-service/21.12.0/kget-21.12.0.tar.xz) = 5634272 +TIMESTAMP = 1641292370 +SHA256 (KDE/release-service/21.12.1/kget-21.12.1.tar.xz) = 7be820e6a8ec8ec0cdedb94705503b2d8a00e9f06043cbe95b6f6fbb40f776c9 +SIZE (KDE/release-service/21.12.1/kget-21.12.1.tar.xz) = 5634608 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index c75aaa5186ce..99107fb8b916 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570814 -SHA256 (KDE/release-service/21.12.0/kidentitymanagement-21.12.0.tar.xz) = fc653adf022fb4c0c2f8ec8f910dbed7e6a713f6d7570d27148841fd71874d3e -SIZE (KDE/release-service/21.12.0/kidentitymanagement-21.12.0.tar.xz) = 158236 +TIMESTAMP = 1641292385 +SHA256 (KDE/release-service/21.12.1/kidentitymanagement-21.12.1.tar.xz) = 9c37162dd4dfbca096d0b656e0ea9b49ae43c30cf92f1cd82ba8b5300d536ae4 +SIZE (KDE/release-service/21.12.1/kidentitymanagement-21.12.1.tar.xz) = 158208 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index b66212e6581d..65eb6772771c 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570831 -SHA256 (KDE/release-service/21.12.0/kimap-21.12.0.tar.xz) = cd21661089ee22d8b189dd79f5b22c8d53763bd5d7d5f0f03a87703329c05a39 -SIZE (KDE/release-service/21.12.0/kimap-21.12.0.tar.xz) = 127708 +TIMESTAMP = 1641292371 +SHA256 (KDE/release-service/21.12.1/kimap-21.12.1.tar.xz) = 9780d770a158cf3415fe7238892498d2dc81ae19bc314adb3d8098dffa7d7ef2 +SIZE (KDE/release-service/21.12.1/kimap-21.12.1.tar.xz) = 127740 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index f7c5ec4eca22..a9d110a295a5 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570828 -SHA256 (KDE/release-service/21.12.0/kio-gdrive-21.12.0.tar.xz) = b2c3e280a852e0210ce89056ac975a27f74a24d49b4629127384aa87cc084d7b -SIZE (KDE/release-service/21.12.0/kio-gdrive-21.12.0.tar.xz) = 70460 +TIMESTAMP = 1641292369 +SHA256 (KDE/release-service/21.12.1/kio-gdrive-21.12.1.tar.xz) = 468a92aff34725fa3a871b25a40a04d12892aa9cb52e504c9ca5ce70abc81405 +SIZE (KDE/release-service/21.12.1/kio-gdrive-21.12.1.tar.xz) = 70416 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index bc027db0f23f..ba18587b8d79 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570832 -SHA256 (KDE/release-service/21.12.0/kitinerary-21.12.0.tar.xz) = 33f19570aaabe9340bb6f8c8d37e33d1c943644eee5275b9ffc59dfa64dcef37 -SIZE (KDE/release-service/21.12.0/kitinerary-21.12.0.tar.xz) = 1855596 +TIMESTAMP = 1641292375 +SHA256 (KDE/release-service/21.12.1/kitinerary-21.12.1.tar.xz) = 9c0330c13ca2842ff1f902973f2ac8ea0eb8f95417730ba4f4308a86c59d3936 +SIZE (KDE/release-service/21.12.1/kitinerary-21.12.1.tar.xz) = 1856888 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 77cbed2b9252..c0f908f55e65 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570834 -SHA256 (KDE/release-service/21.12.0/kldap-21.12.0.tar.xz) = 6f78eadf6e0bc7a6c4bb0ddea699393f5506f093163cc803194d75024d3ed760 -SIZE (KDE/release-service/21.12.0/kldap-21.12.0.tar.xz) = 172212 +TIMESTAMP = 1641292376 +SHA256 (KDE/release-service/21.12.1/kldap-21.12.1.tar.xz) = 7d61b4d4dc31870054e984ec34304fbd2f804f63125c4b2df04003f48aa60c8a +SIZE (KDE/release-service/21.12.1/kldap-21.12.1.tar.xz) = 172080 diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index 3236dbb07716..d11db916385a 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570841 -SHA256 (KDE/release-service/21.12.0/kmailtransport-21.12.0.tar.xz) = f021ea644ad649fb680b61ed498124c1dc089db6b0b8a72726ec2049da323f98 -SIZE (KDE/release-service/21.12.0/kmailtransport-21.12.0.tar.xz) = 173424 +TIMESTAMP = 1641292379 +SHA256 (KDE/release-service/21.12.1/kmailtransport-21.12.1.tar.xz) = a2ada2ecf6532cd347b8cc630d6ba1429b02402cc6f95a3a4b72d1dd012ecf56 +SIZE (KDE/release-service/21.12.1/kmailtransport-21.12.1.tar.xz) = 173484 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 769f6f09be2e..71820a8b096c 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570837 -SHA256 (KDE/release-service/21.12.0/kmbox-21.12.0.tar.xz) = 139fbe4bfff0fdc07436e4af2d00915534f7b1b34b28793cfc0d3f6cf285a280 -SIZE (KDE/release-service/21.12.0/kmbox-21.12.0.tar.xz) = 27980 +TIMESTAMP = 1641292374 +SHA256 (KDE/release-service/21.12.1/kmbox-21.12.1.tar.xz) = 8aa4e44ba2713e4b70cc8d6b79fb11057e1839f451196b21452c7e50c3e2bcb4 +SIZE (KDE/release-service/21.12.1/kmbox-21.12.1.tar.xz) = 27984 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index a2374aca7a51..51f22d33f75d 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570826 -SHA256 (KDE/release-service/21.12.0/kmime-21.12.0.tar.xz) = 75bb5cc9da5fbaa2be4797e372cff47fb426cbeab9581ccdde48a92285f2d858 -SIZE (KDE/release-service/21.12.0/kmime-21.12.0.tar.xz) = 155356 +TIMESTAMP = 1641292365 +SHA256 (KDE/release-service/21.12.1/kmime-21.12.1.tar.xz) = c1f4c06c61f6b4ddde7395b1cfb1f2411a32638e09c6f0a58c6557a7dffe4120 +SIZE (KDE/release-service/21.12.1/kmime-21.12.1.tar.xz) = 155328 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 4a18171005de..dc6f1cdff153 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570808 -SHA256 (KDE/release-service/21.12.0/kontactinterface-21.12.0.tar.xz) = 7b4849eab07b26ef9406fe7afcfe011116502dbc1eaffa1ea8a819575d4c9f07 -SIZE (KDE/release-service/21.12.0/kontactinterface-21.12.0.tar.xz) = 39884 +TIMESTAMP = 1641292366 +SHA256 (KDE/release-service/21.12.1/kontactinterface-21.12.1.tar.xz) = ca5e0e907b73472d68b8322a6d6c008f0e8b61087a70d5dbefab0d8afe2cf713 +SIZE (KDE/release-service/21.12.1/kontactinterface-21.12.1.tar.xz) = 39944 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 672211a6637f..16d622356de9 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570830 -SHA256 (KDE/release-service/21.12.0/kpimtextedit-21.12.0.tar.xz) = 4157a163a9ecb339baecc19176f03f0478371b1b635187adef4d5ec98681d09f -SIZE (KDE/release-service/21.12.0/kpimtextedit-21.12.0.tar.xz) = 211400 +TIMESTAMP = 1641292382 +SHA256 (KDE/release-service/21.12.1/kpimtextedit-21.12.1.tar.xz) = d92ace9e4f38b40c6278e813c92e02c90d9a615e541a3efbd92b358a34235ad2 +SIZE (KDE/release-service/21.12.1/kpimtextedit-21.12.1.tar.xz) = 211648 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 1beaae394d49..3e9a163e7ad8 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570824 -SHA256 (KDE/release-service/21.12.0/krdc-21.12.0.tar.xz) = c1a4bc7be2391ff2e7e8088a18cd50483d2037b6febe698f68eb4d5b5c73a96c -SIZE (KDE/release-service/21.12.0/krdc-21.12.0.tar.xz) = 1583712 +TIMESTAMP = 1641292370 +SHA256 (KDE/release-service/21.12.1/krdc-21.12.1.tar.xz) = 547cf6226118d2aead49e864730ff26d12e4b58a207ed426fa4d388ab90cf52b +SIZE (KDE/release-service/21.12.1/krdc-21.12.1.tar.xz) = 1583952 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 26e2de3e96c0..1fb356f9b576 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570829 -SHA256 (KDE/release-service/21.12.0/krfb-21.12.0.tar.xz) = 6d4659fc936573941dd8d429ca3605229f362192a12ace3ac516d738c1fc7487 -SIZE (KDE/release-service/21.12.0/krfb-21.12.0.tar.xz) = 1302220 +TIMESTAMP = 1641292372 +SHA256 (KDE/release-service/21.12.1/krfb-21.12.1.tar.xz) = 7ebf2ba04119646bf2db2adca6602dc1a18f5bc4b95497d32a2933cff420ef50 +SIZE (KDE/release-service/21.12.1/krfb-21.12.1.tar.xz) = 1302128 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 47fa7d439ac2..4d4d25841ffb 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570838 -SHA256 (KDE/release-service/21.12.0/ksmtp-21.12.0.tar.xz) = 2cda0ac5a355e2828770fb34e5684a01db306918a9fe748a897471bf3552055d -SIZE (KDE/release-service/21.12.0/ksmtp-21.12.0.tar.xz) = 47752 +TIMESTAMP = 1641292372 +SHA256 (KDE/release-service/21.12.1/ksmtp-21.12.1.tar.xz) = 981273efff8f47aaca1672aabdc0f40d5cbfd5d730d35dd25758d58bdd320c89 +SIZE (KDE/release-service/21.12.1/ksmtp-21.12.1.tar.xz) = 47776 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 3fdc8c2c14af..9ea18741f9b8 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570809 -SHA256 (KDE/release-service/21.12.0/ktnef-21.12.0.tar.xz) = 08e6565ba81d93154f8fca8f500c1570e357c28b48997713d3f519eaaafc650d -SIZE (KDE/release-service/21.12.0/ktnef-21.12.0.tar.xz) = 305652 +TIMESTAMP = 1641292362 +SHA256 (KDE/release-service/21.12.1/ktnef-21.12.1.tar.xz) = 7ac7bdf6e7261ae09b621f1f563f746baf288d291c285c1cda97c200bb3d1447 +SIZE (KDE/release-service/21.12.1/ktnef-21.12.1.tar.xz) = 305716 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 94e4a85c2f5b..730bd5774a92 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570839 -SHA256 (KDE/release-service/21.12.0/libgravatar-21.12.0.tar.xz) = 58979aefd90e431413d8375d0cb5a8899f95b515768c6d89d3ce83cbe95747b0 -SIZE (KDE/release-service/21.12.0/libgravatar-21.12.0.tar.xz) = 35084 +TIMESTAMP = 1641292361 +SHA256 (KDE/release-service/21.12.1/libgravatar-21.12.1.tar.xz) = 6ebd60b1eb5ae627313ee2fedde2f90ee4e649474a0339be2e83d0285eef1452 +SIZE (KDE/release-service/21.12.1/libgravatar-21.12.1.tar.xz) = 35100 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 86c5dd2d3b72..ef265668ff2f 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570818 -SHA256 (KDE/release-service/21.12.0/libkgapi-21.12.0.tar.xz) = 89f7273f7feedac50e2117253242ecb0e943d4a9e8c077ef85900f068d9dc585 -SIZE (KDE/release-service/21.12.0/libkgapi-21.12.0.tar.xz) = 244864 +TIMESTAMP = 1641292367 +SHA256 (KDE/release-service/21.12.1/libkgapi-21.12.1.tar.xz) = 339479a3becbaeb0216c793c1fc4d5c4349e049d066c5f4697a305e1dd199967 +SIZE (KDE/release-service/21.12.1/libkgapi-21.12.1.tar.xz) = 244908 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index e37b8b904bb0..d96098f23ab4 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570844 -SHA256 (KDE/release-service/21.12.0/libksieve-21.12.0.tar.xz) = e0a3e1ba668c3b4f47856f04394fb9d9c483e9acab4f752c744e43dc1537aa71 -SIZE (KDE/release-service/21.12.0/libksieve-21.12.0.tar.xz) = 572148 +TIMESTAMP = 1641292379 +SHA256 (KDE/release-service/21.12.1/libksieve-21.12.1.tar.xz) = 911c2d61925679cf9f7dab19b56f8b088fcfb7734de901727daa07cbe68a2ab4 +SIZE (KDE/release-service/21.12.1/libksieve-21.12.1.tar.xz) = 572644 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 75d637b24be4..7428d8900adc 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570843 -SHA256 (KDE/release-service/21.12.0/mailcommon-21.12.0.tar.xz) = 7c5fd837c7786bf24f2e662e7708463a2db703632887ae5086255a92dedf209a -SIZE (KDE/release-service/21.12.0/mailcommon-21.12.0.tar.xz) = 736052 +TIMESTAMP = 1641292383 +SHA256 (KDE/release-service/21.12.1/mailcommon-21.12.1.tar.xz) = 63289da2ed878ed354e7495d3a5101ffb74db15459fe600f5e9c20e344a47e12 +SIZE (KDE/release-service/21.12.1/mailcommon-21.12.1.tar.xz) = 736128 diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index f37eca2309db..a980ceaf7a65 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570811 -SHA256 (KDE/release-service/21.12.0/mailimporter-21.12.0.tar.xz) = 3f223596f49b0952572bab1cc6e85af361c454c96cae9aaca4d52b313067425b -SIZE (KDE/release-service/21.12.0/mailimporter-21.12.0.tar.xz) = 558564 +TIMESTAMP = 1641292368 +SHA256 (KDE/release-service/21.12.1/mailimporter-21.12.1.tar.xz) = e39eabde8ad08bfd84071d476ec05bc7a8872881aafd83a2ad560bfd1a276b92 +SIZE (KDE/release-service/21.12.1/mailimporter-21.12.1.tar.xz) = 558512 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index 0e2e750e6729..edbef964889a 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570833 -SHA256 (KDE/release-service/21.12.0/messagelib-21.12.0.tar.xz) = 6119e69d875f3f3092604265203f750c95a9f49db64f67a95c509bad6c2457e4 -SIZE (KDE/release-service/21.12.0/messagelib-21.12.0.tar.xz) = 10966544 +TIMESTAMP = 1641292373 +SHA256 (KDE/release-service/21.12.1/messagelib-21.12.1.tar.xz) = ac2d4bf0d6ee66efb604bcb70a346b3762570a34666764662b7dc5c03bccdcab +SIZE (KDE/release-service/21.12.1/messagelib-21.12.1.tar.xz) = 10857692 diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index f6141a314744..f195682b9962 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570827 -SHA256 (KDE/release-service/21.12.0/pimcommon-21.12.0.tar.xz) = 5849ff5750228a3eacd5a878cf4538e9086df0ee2070bc2386608019ace1b70b -SIZE (KDE/release-service/21.12.0/pimcommon-21.12.0.tar.xz) = 369200 +TIMESTAMP = 1641292363 +SHA256 (KDE/release-service/21.12.1/pimcommon-21.12.1.tar.xz) = 0fb194291c91ac65b9ef4c32918adcbd5205ef015c6edeefcf2767b71762e4e5 +SIZE (KDE/release-service/21.12.1/pimcommon-21.12.1.tar.xz) = 374116 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index 2a479c8ea132..ed4d04dc52f1 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,186 +1,187 @@ share/qlogging-categories5/pimcommon.categories share/qlogging-categories5/pimcommon.renamecategories include/KF5/PimCommon/AbstractGenericPlugin include/KF5/PimCommon/AbstractGenericPluginInterface include/KF5/PimCommon/AutoCorrection include/KF5/PimCommon/AutoCorrectionLanguage include/KF5/PimCommon/AutoCorrectionWidget include/KF5/PimCommon/BroadcastStatus include/KF5/PimCommon/ConfigureImmutableWidgetUtils include/KF5/PimCommon/ConfigurePluginDialog include/KF5/PimCommon/ConfigurePluginsListWidget include/KF5/PimCommon/ConfigurePluginsWidget include/KF5/PimCommon/CustomLogWidget include/KF5/PimCommon/CustomToolsPlugin include/KF5/PimCommon/CustomToolsPluginManager include/KF5/PimCommon/CustomToolsViewInterface include/KF5/PimCommon/CustomToolsWidgetng include/KF5/PimCommon/CustomTreeView include/KF5/PimCommon/EmailValidator include/KF5/PimCommon/GenericPlugin include/KF5/PimCommon/GenericPluginManager include/KF5/PimCommon/KActionMenuChangeCase include/KF5/PimCommon/KPimPrintPreviewDialog include/KF5/PimCommon/LineEditWithAutoCorrection include/KF5/PimCommon/LineEditWithCompleterNg include/KF5/PimCommon/LogActivitiesManager include/KF5/PimCommon/MigrateApplicationFiles include/KF5/PimCommon/MigrateFileInfo include/KF5/PimCommon/NetworkManager include/KF5/PimCommon/PimCommonSettings include/KF5/PimCommon/PimUtil include/KF5/PimCommon/PluginUtil include/KF5/PimCommon/PurposeMenuWidget include/KF5/PimCommon/RenameFileDialog include/KF5/PimCommon/RichTexteditWithAutoCorrection include/KF5/PimCommon/ShareServiceUrlManager include/KF5/PimCommon/SimpleStringListEditor include/KF5/PimCommon/SpellCheckLineEdit include/KF5/PimCommon/TemplateListWidget include/KF5/PimCommon/TemplateManager include/KF5/PimCommon/TranslatorWidget include/KF5/PimCommonAkonadi/AddresseeLineEdit include/KF5/PimCommonAkonadi/AnnotationDialog include/KF5/PimCommonAkonadi/CheckedCollectionWidget include/KF5/PimCommonAkonadi/CollectionAclPage include/KF5/PimCommonAkonadi/CollectionAnnotationsAttribute include/KF5/PimCommonAkonadi/CollectionTypeUtil include/KF5/PimCommonAkonadi/CompletionConfigureDialog include/KF5/PimCommonAkonadi/CompletionOrderEditor include/KF5/PimCommonAkonadi/ContentTypeWidget include/KF5/PimCommonAkonadi/CreateResource include/KF5/PimCommonAkonadi/GenericPluginInterface include/KF5/PimCommonAkonadi/ImapAclAttribute include/KF5/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KF5/PimCommonAkonadi/IncidencesForWidget include/KF5/PimCommonAkonadi/LdapSearchDialog include/KF5/PimCommonAkonadi/MailUtil include/KF5/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KF5/PimCommonAkonadi/PluginInterface include/KF5/PimCommonAkonadi/ProgressManagerAkonadi include/KF5/PimCommonAkonadi/RecentAddresses include/KF5/PimCommonAkonadi/SelectMultiCollectionDialog include/KF5/pimcommon/abstractgenericplugin.h include/KF5/pimcommon/abstractgenericplugininterface.h include/KF5/pimcommon/autocorrection.h include/KF5/pimcommon/autocorrectionlanguage.h include/KF5/pimcommon/autocorrectionwidget.h include/KF5/pimcommon/broadcaststatus.h include/KF5/pimcommon/configureimmutablewidgetutils.h include/KF5/pimcommon/configureplugindialog.h include/KF5/pimcommon/configurepluginslistwidget.h include/KF5/pimcommon/configurepluginswidget.h include/KF5/pimcommon/customlogwidget.h include/KF5/pimcommon/customtoolsplugin.h include/KF5/pimcommon/customtoolspluginmanager.h include/KF5/pimcommon/customtoolsviewinterface.h include/KF5/pimcommon/customtoolswidgetng.h include/KF5/pimcommon/customtreeview.h include/KF5/pimcommon/emailvalidator.h include/KF5/pimcommon/genericplugin.h include/KF5/pimcommon/genericpluginmanager.h include/KF5/pimcommon/imapresourcesettings.h include/KF5/pimcommon/kactionmenuchangecase.h include/KF5/pimcommon/kpimprintpreviewdialog.h include/KF5/pimcommon/lineeditwithautocorrection.h include/KF5/pimcommon/lineeditwithcompleterng.h include/KF5/pimcommon/logactivitiesmanager.h include/KF5/pimcommon/migrateapplicationfiles.h include/KF5/pimcommon/migratefileinfo.h include/KF5/pimcommon/networkmanager.h include/KF5/pimcommon/pimcommon_export.h include/KF5/pimcommon/pimcommonsetting_base.h include/KF5/pimcommon/pimcommonsettings.h include/KF5/pimcommon/pimutil.h include/KF5/pimcommon/pluginutil.h include/KF5/pimcommon/purposemenuwidget.h include/KF5/pimcommon/renamefiledialog.h include/KF5/pimcommon/richtexteditwithautocorrection.h include/KF5/pimcommon/shareserviceurlmanager.h include/KF5/pimcommon/simplestringlisteditor.h include/KF5/pimcommon/spellchecklineedit.h include/KF5/pimcommon/templatelistwidget.h include/KF5/pimcommon/templatemanager.h include/KF5/pimcommon/translatorwidget.h include/KF5/pimcommon_version.h include/KF5/pimcommonakonadi/addresseelineedit.h include/KF5/pimcommonakonadi/annotationdialog.h include/KF5/pimcommonakonadi/checkedcollectionwidget.h include/KF5/pimcommonakonadi/collectionaclpage.h include/KF5/pimcommonakonadi/collectionannotationsattribute.h include/KF5/pimcommonakonadi/collectiontypeutil.h include/KF5/pimcommonakonadi/completionconfiguredialog.h include/KF5/pimcommonakonadi/completionordereditor.h include/KF5/pimcommonakonadi/contenttypewidget.h include/KF5/pimcommonakonadi/createresource.h include/KF5/pimcommonakonadi/genericplugininterface.h include/KF5/pimcommonakonadi/imapaclattribute.h include/KF5/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KF5/pimcommonakonadi/incidencesforwidget.h include/KF5/pimcommonakonadi/ldapsearchdialog.h include/KF5/pimcommonakonadi/mailutil.h include/KF5/pimcommonakonadi/manageserversidesubscriptionjob.h include/KF5/pimcommonakonadi/pimcommonakonadi_export.h include/KF5/pimcommonakonadi/plugininterface.h include/KF5/pimcommonakonadi/progressmanagerakonadi.h include/KF5/pimcommonakonadi/recentaddresses.h include/KF5/pimcommonakonadi/selectmulticollectiondialog.h include/KF5/pimcommonakonadi_version.h lib/cmake/KF5PimCommon/KF5PimCommonConfig.cmake lib/cmake/KF5PimCommon/KF5PimCommonConfigVersion.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfig.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfigVersion.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets.cmake lib/libKF5PimCommon.so lib/libKF5PimCommon.so.5 lib/libKF5PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5PimCommonAkonadi.so lib/libKF5PimCommonAkonadi.so.5 lib/libKF5PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_PimCommon.pri %%QT_MKSPECDIR%%/modules/qt_PimCommonAkonadi.pri %%QT_PLUGINDIR%%/designer/pimcommonakonadiwidgets.so %%QT_PLUGINDIR%%/designer/pimcommonwidgets.so share/locale/ar/LC_MESSAGES/libpimcommon.mo share/locale/bs/LC_MESSAGES/libpimcommon.mo share/locale/ca/LC_MESSAGES/libpimcommon.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon.mo share/locale/cs/LC_MESSAGES/libpimcommon.mo share/locale/da/LC_MESSAGES/libpimcommon.mo share/locale/de/LC_MESSAGES/libpimcommon.mo share/locale/el/LC_MESSAGES/libpimcommon.mo share/locale/en_GB/LC_MESSAGES/libpimcommon.mo share/locale/es/LC_MESSAGES/libpimcommon.mo share/locale/et/LC_MESSAGES/libpimcommon.mo +share/locale/eu/LC_MESSAGES/libpimcommon.mo share/locale/fi/LC_MESSAGES/libpimcommon.mo share/locale/fr/LC_MESSAGES/libpimcommon.mo share/locale/ga/LC_MESSAGES/libpimcommon.mo share/locale/gl/LC_MESSAGES/libpimcommon.mo share/locale/hu/LC_MESSAGES/libpimcommon.mo share/locale/ia/LC_MESSAGES/libpimcommon.mo share/locale/it/LC_MESSAGES/libpimcommon.mo share/locale/ja/LC_MESSAGES/libpimcommon.mo share/locale/kk/LC_MESSAGES/libpimcommon.mo share/locale/ko/LC_MESSAGES/libpimcommon.mo share/locale/lt/LC_MESSAGES/libpimcommon.mo share/locale/mr/LC_MESSAGES/libpimcommon.mo share/locale/nb/LC_MESSAGES/libpimcommon.mo share/locale/nds/LC_MESSAGES/libpimcommon.mo share/locale/nl/LC_MESSAGES/libpimcommon.mo share/locale/pl/LC_MESSAGES/libpimcommon.mo share/locale/pt/LC_MESSAGES/libpimcommon.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon.mo share/locale/ro/LC_MESSAGES/libpimcommon.mo share/locale/ru/LC_MESSAGES/libpimcommon.mo share/locale/sk/LC_MESSAGES/libpimcommon.mo share/locale/sl/LC_MESSAGES/libpimcommon.mo share/locale/sr/LC_MESSAGES/libpimcommon.mo share/locale/sv/LC_MESSAGES/libpimcommon.mo share/locale/tr/LC_MESSAGES/libpimcommon.mo share/locale/ug/LC_MESSAGES/libpimcommon.mo share/locale/uk/LC_MESSAGES/libpimcommon.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon.mo diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index 931a9425acaf..0cfd4c753b69 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570815 -SHA256 (KDE/release-service/21.12.0/zeroconf-ioslave-21.12.0.tar.xz) = 31828ad059d90bfd8e515375b5310eaabbd2660606a19ff1223f84efa2cb3be8 -SIZE (KDE/release-service/21.12.0/zeroconf-ioslave-21.12.0.tar.xz) = 38212 +TIMESTAMP = 1641292363 +SHA256 (KDE/release-service/21.12.1/zeroconf-ioslave-21.12.1.tar.xz) = 669da9714ab876b7edbfb9a5882e6c5ee463a84e4e0aac0e9fc7aeda2e487e99 +SIZE (KDE/release-service/21.12.1/zeroconf-ioslave-21.12.1.tar.xz) = 38228 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 016bd8769e7e..a8c68e4f0686 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570879 -SHA256 (KDE/release-service/21.12.0/print-manager-21.12.0.tar.xz) = 455769309a2befd8f3b8a76d418f5cf99dffac9211a6f9349f085491b08df481 -SIZE (KDE/release-service/21.12.0/print-manager-21.12.0.tar.xz) = 271824 +TIMESTAMP = 1641292268 +SHA256 (KDE/release-service/21.12.1/print-manager-21.12.1.tar.xz) = 830f195597260d4f3956ca0c4543bad44fba91143fc327b0ca0a7eaa1addb17b +SIZE (KDE/release-service/21.12.1/print-manager-21.12.1.tar.xz) = 271444 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 7019d4d233ba..5ce26d64be1d 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571007 -SHA256 (KDE/release-service/21.12.0/kalzium-21.12.0.tar.xz) = 07d1055296c5983efd2f7ec4e48ea6f30325b7504a1169a0377a545cd29f3612 -SIZE (KDE/release-service/21.12.0/kalzium-21.12.0.tar.xz) = 24592740 +TIMESTAMP = 1641292267 +SHA256 (KDE/release-service/21.12.1/kalzium-21.12.1.tar.xz) = 007e4128dad6e5c10ab7c64aed41f60c56029cef22f74a63a86ed78ac503a16b +SIZE (KDE/release-service/21.12.1/kalzium-21.12.1.tar.xz) = 24592512 diff --git a/science/step/distinfo b/science/step/distinfo index 0afb1789b4c7..0f662633b08c 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571008 -SHA256 (KDE/release-service/21.12.0/step-21.12.0.tar.xz) = f91431fa04030c8ccfe06910266f8dd10046d3250a9eefa0450867fa95ef5832 -SIZE (KDE/release-service/21.12.0/step-21.12.0.tar.xz) = 922144 +TIMESTAMP = 1641292266 +SHA256 (KDE/release-service/21.12.1/step-21.12.1.tar.xz) = c4e4a5392cb7ec72a6f1ddf3d20ab6af93b103e8468c98ac938278ff0bf702ee +SIZE (KDE/release-service/21.12.1/step-21.12.1.tar.xz) = 925032 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index f26478bcc3e3..e2e4f5729831 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1287 +1,1310 @@ 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/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo share/locale/be/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step.mo 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@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/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/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/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/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/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/eo/LC_MESSAGES/step.mo 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/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/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/fi/LC_MESSAGES/step.mo 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/ga/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step.mo 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/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/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/kk/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step.mo 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/lv/LC_MESSAGES/step.mo 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/mr/LC_MESSAGES/step.mo share/locale/nb/LC_MESSAGES/step.mo share/locale/nds/LC_MESSAGES/step.mo 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/nn/LC_MESSAGES/step.mo share/locale/nn/LC_SCRIPTS/step/step.js share/locale/pa/LC_MESSAGES/step.mo 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/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_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/ro/LC_MESSAGES/step.mo 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/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/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/sq/LC_MESSAGES/step.mo 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/tr/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step.mo 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/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_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/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%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/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/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/kgpg/distinfo b/security/kgpg/distinfo index 803874539474..6c3e130421bf 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570898 -SHA256 (KDE/release-service/21.12.0/kgpg-21.12.0.tar.xz) = 3b15bd256feadd425c0db7c242b8bf0a886fca277740e4c4ce41577aa5c5d144 -SIZE (KDE/release-service/21.12.0/kgpg-21.12.0.tar.xz) = 2946924 +TIMESTAMP = 1641292351 +SHA256 (KDE/release-service/21.12.1/kgpg-21.12.1.tar.xz) = 1178d8637f1bfa9228b99164d2c515bae3e9cb04d2806d583fa33b52dd0dad63 +SIZE (KDE/release-service/21.12.1/kgpg-21.12.1.tar.xz) = 2946944 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 80dadb45e980..5aad26954c80 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570901 -SHA256 (KDE/release-service/21.12.0/kleopatra-21.12.0.tar.xz) = 878a0c2b92d3d6ee81253f527cd8ed9fdca3aa4b61c725da54145ed53fb11861 -SIZE (KDE/release-service/21.12.0/kleopatra-21.12.0.tar.xz) = 2150344 +TIMESTAMP = 1641292349 +SHA256 (KDE/release-service/21.12.1/kleopatra-21.12.1.tar.xz) = 29a173ba95ea97b650ba8645d99fb7ac848ccd3a979a6097dcc378fd88536742 +SIZE (KDE/release-service/21.12.1/kleopatra-21.12.1.tar.xz) = 2151392 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 1889ec35e49f..78a17fac8655 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570899 -SHA256 (KDE/release-service/21.12.0/kpkpass-21.12.0.tar.xz) = b69ba26ef69f72699995425323e55f7064623b3116d806dca65c2713a0e7770a -SIZE (KDE/release-service/21.12.0/kpkpass-21.12.0.tar.xz) = 28084 +TIMESTAMP = 1641292349 +SHA256 (KDE/release-service/21.12.1/kpkpass-21.12.1.tar.xz) = 7c59c6ff3e00535988eea9675b793f67a78bfd30ea8d448f3f7dc8d4107b052a +SIZE (KDE/release-service/21.12.1/kpkpass-21.12.1.tar.xz) = 28080 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index e11066bca50b..90072d29d7a2 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570900 -SHA256 (KDE/release-service/21.12.0/kwalletmanager-21.12.0.tar.xz) = 1e927369a843944a6332257f4fcee8f633a3b017848d6643942274b5a7211559 -SIZE (KDE/release-service/21.12.0/kwalletmanager-21.12.0.tar.xz) = 799796 +TIMESTAMP = 1641292350 +SHA256 (KDE/release-service/21.12.1/kwalletmanager-21.12.1.tar.xz) = 0c756e981ff0afb006a13eb32b4bc5228980d6af1844f4a676fbebf67fd4c8e1 +SIZE (KDE/release-service/21.12.1/kwalletmanager-21.12.1.tar.xz) = 799792 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index e03fb180bdab..9ffd9829bac8 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570897 -SHA256 (KDE/release-service/21.12.0/libkleo-21.12.0.tar.xz) = 572de9a37b6c56a1aaa23f5cb5e9d7ae1250a24ed2a0746574872081edf5a5d6 -SIZE (KDE/release-service/21.12.0/libkleo-21.12.0.tar.xz) = 446448 +TIMESTAMP = 1641292351 +SHA256 (KDE/release-service/21.12.1/libkleo-21.12.1.tar.xz) = 97f031ee3d8ae4b0ade5a1699db7a0224cd529b3c031a1902440d4c10fe3b638 +SIZE (KDE/release-service/21.12.1/libkleo-21.12.1.tar.xz) = 446484 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index c6ff9b73bdfa..804909711e99 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570870 -SHA256 (KDE/release-service/21.12.0/baloo-widgets-21.12.0.tar.xz) = f720c9cfe81e3ec31a2c9ebd91011fb1320011ca39325ce070a646368e56c9a5 -SIZE (KDE/release-service/21.12.0/baloo-widgets-21.12.0.tar.xz) = 262792 +TIMESTAMP = 1641292259 +SHA256 (KDE/release-service/21.12.1/baloo-widgets-21.12.1.tar.xz) = 91d0b15e8b9a59e2c5d60576a75b3c3e2380d9db969b47c0494c661f577a6b06 +SIZE (KDE/release-service/21.12.1/baloo-widgets-21.12.1.tar.xz) = 262800 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 08feb7f683e0..372cbfb09a96 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570865 -SHA256 (KDE/release-service/21.12.0/filelight-21.12.0.tar.xz) = d2ca036e99f9bd95fafc6da958fb70685e9b87cf2cffa8f90ed8e2aa412976f0 -SIZE (KDE/release-service/21.12.0/filelight-21.12.0.tar.xz) = 684232 +TIMESTAMP = 1641292260 +SHA256 (KDE/release-service/21.12.1/filelight-21.12.1.tar.xz) = 7fa07a8433cc0b4583601fefa6423fa78b88d31b5cf4090472f7636aab257e66 +SIZE (KDE/release-service/21.12.1/filelight-21.12.1.tar.xz) = 684296 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 23c54b6fdb9c..3fa8f4b56255 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570864 -SHA256 (KDE/release-service/21.12.0/k3b-21.12.0.tar.xz) = 588efbb29a45f6241d8b296d3740376648821b5dbf9f2b90c87af14554a6dabc -SIZE (KDE/release-service/21.12.0/k3b-21.12.0.tar.xz) = 10746920 +TIMESTAMP = 1641292257 +SHA256 (KDE/release-service/21.12.1/k3b-21.12.1.tar.xz) = 6610a6d83d7e7fb57e96f968cec12d180ec7f8514308a6e1388aff0e07f55c0f +SIZE (KDE/release-service/21.12.1/k3b-21.12.1.tar.xz) = 10749964 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index 6e4afdb55122..57ebda36bfde 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570863 -SHA256 (KDE/release-service/21.12.0/kbackup-21.12.0.tar.xz) = b5d0829609b6f88a5d51f874b95a72aeac8162e84c5ec93d4bf5b08ac23328ce -SIZE (KDE/release-service/21.12.0/kbackup-21.12.0.tar.xz) = 389116 +TIMESTAMP = 1641292257 +SHA256 (KDE/release-service/21.12.1/kbackup-21.12.1.tar.xz) = c9b5e3df591f68cecdc5fb165dc59ece74c12d32597704bcda0fe6aa110db8db +SIZE (KDE/release-service/21.12.1/kbackup-21.12.1.tar.xz) = 389084 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 04131990dfcb..d5cafe83d455 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570875 -SHA256 (KDE/release-service/21.12.0/kcron-21.12.0.tar.xz) = 2ada43d13cb2f27cdf84415c607af1a138928214a3f113a9eb598f559563b2c8 -SIZE (KDE/release-service/21.12.0/kcron-21.12.0.tar.xz) = 915460 +TIMESTAMP = 1641292255 +SHA256 (KDE/release-service/21.12.1/kcron-21.12.1.tar.xz) = 87293e56f90714a99a22656f3cdcd058b6cba3f61457d2973d8d8845eae6bc24 +SIZE (KDE/release-service/21.12.1/kcron-21.12.1.tar.xz) = 915504 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 11ac21069963..9719d0ec0eed 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570874 -SHA256 (KDE/release-service/21.12.0/kdebugsettings-21.12.0.tar.xz) = 0ee8645425a551c0ef000fbebb5876ff1e06fbc2ed70f8b97a5329ef20945a49 -SIZE (KDE/release-service/21.12.0/kdebugsettings-21.12.0.tar.xz) = 92348 +TIMESTAMP = 1641292254 +SHA256 (KDE/release-service/21.12.1/kdebugsettings-21.12.1.tar.xz) = d2f7f4ea679cab5ed1dc2bbe47b24db11f4cbedfe3149da03f5795d79d935d89 +SIZE (KDE/release-service/21.12.1/kdebugsettings-21.12.1.tar.xz) = 92584 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 588f864860b3..02f57ff34b89 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570873 -SHA256 (KDE/release-service/21.12.0/kdf-21.12.0.tar.xz) = 0a14c5fc5e9b6d07023c99678eb600ccb3c0d471317652d75cc7fb3d0339bce0 -SIZE (KDE/release-service/21.12.0/kdf-21.12.0.tar.xz) = 474812 +TIMESTAMP = 1641292260 +SHA256 (KDE/release-service/21.12.1/kdf-21.12.1.tar.xz) = d1727d9d69ab0a609d018e9c1178d4cf41dd41fad09b873adb0675d2aebb2fa4 +SIZE (KDE/release-service/21.12.1/kdf-21.12.1.tar.xz) = 474832 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 9accf9eba20e..730ae5382605 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570872 -SHA256 (KDE/release-service/21.12.0/kdialog-21.12.0.tar.xz) = 07dcc9e73eed23bfd6f2bcd5562e24ffdb2b6b0614b7106b422b0fc23b389fce -SIZE (KDE/release-service/21.12.0/kdialog-21.12.0.tar.xz) = 116468 +TIMESTAMP = 1641292261 +SHA256 (KDE/release-service/21.12.1/kdialog-21.12.1.tar.xz) = 9aeb4da004608e7c8d9ae001b5921d6526c2ccba8c8782982a6c6247187c2a9c +SIZE (KDE/release-service/21.12.1/kdialog-21.12.1.tar.xz) = 116408 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 3c253a7117cb..e0ec98536422 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570866 -SHA256 (KDE/release-service/21.12.0/kfloppy-21.12.0.tar.xz) = 9bb8bc50fa1ea75c837d4dd2f7003aeb1a468ba66ea36049611624ccbd7a67ea -SIZE (KDE/release-service/21.12.0/kfloppy-21.12.0.tar.xz) = 213768 +TIMESTAMP = 1641292255 +SHA256 (KDE/release-service/21.12.1/kfloppy-21.12.1.tar.xz) = 973bd610602b44640acaad40df0a4e591a5a772dcbda6b2cee345799e687bf6f +SIZE (KDE/release-service/21.12.1/kfloppy-21.12.1.tar.xz) = 213804 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 4133fa614f8c..649c21f92b76 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570868 -SHA256 (KDE/release-service/21.12.0/khelpcenter-21.12.0.tar.xz) = ac6867ef408a3e8ea1a06d776c7d1e78d002e5588d21b6b48502d7390f835a55 -SIZE (KDE/release-service/21.12.0/khelpcenter-21.12.0.tar.xz) = 4291492 +TIMESTAMP = 1641292258 +SHA256 (KDE/release-service/21.12.1/khelpcenter-21.12.1.tar.xz) = 14257aa6be8ad1c329f6b4fa0ecb446f440af6e9cc90df65ec675a7255298559 +SIZE (KDE/release-service/21.12.1/khelpcenter-21.12.1.tar.xz) = 4291728 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index a89a6c1e8341..f87ad8f50864 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570866 -SHA256 (KDE/release-service/21.12.0/kpmcore-21.12.0.tar.xz) = a5c4d45fc2162915550a5bfeba85637adbb8025accfe2ce791c3fd8a769ff233 -SIZE (KDE/release-service/21.12.0/kpmcore-21.12.0.tar.xz) = 594228 +TIMESTAMP = 1641292256 +SHA256 (KDE/release-service/21.12.1/kpmcore-21.12.1.tar.xz) = 777e8c584933218b928c8c0a00f49d31f5b9719557174f4f4271d1b6ca08739a +SIZE (KDE/release-service/21.12.1/kpmcore-21.12.1.tar.xz) = 594168 diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index ef33c6318796..cd2b00e2e21c 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570869 -SHA256 (KDE/release-service/21.12.0/ksystemlog-21.12.0.tar.xz) = 4f506b5227bfb2081096d3f7b505e85f8fc58a8ae5bcb102ab61bbffcc5cb806 -SIZE (KDE/release-service/21.12.0/ksystemlog-21.12.0.tar.xz) = 1967580 +TIMESTAMP = 1641292263 +SHA256 (KDE/release-service/21.12.1/ksystemlog-21.12.1.tar.xz) = b414ef3a6bee078d576b7bc8c5b51c32b24817166f6dde68de5a0d56bc4b09e7 +SIZE (KDE/release-service/21.12.1/ksystemlog-21.12.1.tar.xz) = 1967468 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 4a0519c809a8..d29656ffedfc 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570867 -SHA256 (KDE/release-service/21.12.0/signon-kwallet-extension-21.12.0.tar.xz) = bd49fb147f3b96e162e94130c16950d58b806ae0f47025994a4b77eeb4ae0a29 -SIZE (KDE/release-service/21.12.0/signon-kwallet-extension-21.12.0.tar.xz) = 10768 +TIMESTAMP = 1641292262 +SHA256 (KDE/release-service/21.12.1/signon-kwallet-extension-21.12.1.tar.xz) = b3f7e76e230dee1785a3e54ab37ff4e5860167b6d0a2c339f553dbc867884226 +SIZE (KDE/release-service/21.12.1/signon-kwallet-extension-21.12.1.tar.xz) = 10768 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index bbd4d28d2e57..e03cec4690d3 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570871 -SHA256 (KDE/release-service/21.12.0/sweeper-21.12.0.tar.xz) = 31a1eacba823177c06cfd4276f9a7dbc0eb836d716f6d3b927d07bcb9bb8339f -SIZE (KDE/release-service/21.12.0/sweeper-21.12.0.tar.xz) = 378296 +TIMESTAMP = 1641292262 +SHA256 (KDE/release-service/21.12.1/sweeper-21.12.1.tar.xz) = dea058872256f9eaa39c800dba61570920deee5cf307af3ee16b2b90fa091355 +SIZE (KDE/release-service/21.12.1/sweeper-21.12.1.tar.xz) = 378304 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 9e886666c3cb..51b936a7bf23 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571009 -SHA256 (KDE/release-service/21.12.0/kompare-21.12.0.tar.xz) = 7a9a0b9c582da081a8e8fbb43e907c74f1257379819b18dceaedad03ad89e915 -SIZE (KDE/release-service/21.12.0/kompare-21.12.0.tar.xz) = 942540 +TIMESTAMP = 1641292313 +SHA256 (KDE/release-service/21.12.1/kompare-21.12.1.tar.xz) = e1aa0c11b09371ca8d211e1af0fdc7725bae1eadce6d6ad4b6b692beb585a77d +SIZE (KDE/release-service/21.12.1/kompare-21.12.1.tar.xz) = 942608 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index fac5ad57d061..ae1b23924645 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571011 -SHA256 (KDE/release-service/21.12.0/libkomparediff2-21.12.0.tar.xz) = 0d0d85ddb687e3c2e8e8550558f48eac898500cc0fd607a3dc6b387ab44172cd -SIZE (KDE/release-service/21.12.0/libkomparediff2-21.12.0.tar.xz) = 172596 +TIMESTAMP = 1641292312 +SHA256 (KDE/release-service/21.12.1/libkomparediff2-21.12.1.tar.xz) = bc64d0ae804efe2ea16b41ca2b4bf91032a3f4cdc1cd970109e260b22c748c0f +SIZE (KDE/release-service/21.12.1/libkomparediff2-21.12.1.tar.xz) = 172660 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index ca88f5f18c18..38b3464e50b7 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571011 -SHA256 (KDE/release-service/21.12.0/markdownpart-21.12.0.tar.xz) = dfd341c3349442ab2b0960c3ee70e8430fdaf7d05cb22b5ce7d2864ba1c8b6d9 -SIZE (KDE/release-service/21.12.0/markdownpart-21.12.0.tar.xz) = 28388 +TIMESTAMP = 1641292313 +SHA256 (KDE/release-service/21.12.1/markdownpart-21.12.1.tar.xz) = df75ea49a64cc7fd4b572717cff8acb11416daaa3bc0b21b593e6b89e119810b +SIZE (KDE/release-service/21.12.1/markdownpart-21.12.1.tar.xz) = 28376 diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 4a2f08d051b2..2d4da0138f9d 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570877 -SHA256 (KDE/release-service/21.12.0/kteatime-21.12.0.tar.xz) = 48ac97c05829ec613828643734fe5169c23e39d905fbd82406627f193d1b997b -SIZE (KDE/release-service/21.12.0/kteatime-21.12.0.tar.xz) = 301012 +TIMESTAMP = 1641292269 +SHA256 (KDE/release-service/21.12.1/kteatime-21.12.1.tar.xz) = 5e20b67f9d717d4bcbf3cacd59687c29305ae150889e3b20820f90bfc9a0578d +SIZE (KDE/release-service/21.12.1/kteatime-21.12.1.tar.xz) = 302612 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 74a31dbab819..1ed88b14fd98 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570878 -SHA256 (KDE/release-service/21.12.0/ktimer-21.12.0.tar.xz) = 27627ff0317d90a6d00bc02dbd29571b678b2c2f67fcd5b86dc0ed5a32dd6961 -SIZE (KDE/release-service/21.12.0/ktimer-21.12.0.tar.xz) = 392700 +TIMESTAMP = 1641292268 +SHA256 (KDE/release-service/21.12.1/ktimer-21.12.1.tar.xz) = b5ad66d8c67ad0305c4e6c18193ca43e8aa0b8229ec5156d1e474e5d3e8ab266 +SIZE (KDE/release-service/21.12.1/ktimer-21.12.1.tar.xz) = 392648 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 9c433b247fab..2021d34756ac 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571005 -SHA256 (KDE/release-service/21.12.0/dolphin-21.12.0.tar.xz) = e70fc08ee292c5f9bfd4fc3bb12eef524528bee8e856d294bf484b3eff7b2669 -SIZE (KDE/release-service/21.12.0/dolphin-21.12.0.tar.xz) = 5319968 +TIMESTAMP = 1641292226 +SHA256 (KDE/release-service/21.12.1/dolphin-21.12.1.tar.xz) = 6a4b16562b31574b7bc35eb46c754d4f19b047e182ec8a9487cfd1db73af254c +SIZE (KDE/release-service/21.12.1/dolphin-21.12.1.tar.xz) = 5338928 diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 79aeca8f1dfc..6a1cc4e7a758 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638571004 -SHA256 (KDE/release-service/21.12.0/konqueror-21.12.0.tar.xz) = 67360d0a5051c1f572b2234f5b9e8c5ea9510d3eb748ca80aedc656b09b0c0b3 -SIZE (KDE/release-service/21.12.0/konqueror-21.12.0.tar.xz) = 7427672 +TIMESTAMP = 1641292225 +SHA256 (KDE/release-service/21.12.1/konqueror-21.12.1.tar.xz) = 69f49b9dafe97807bef3b87562249650b0fb0fffbe8d6297ba270ed6ad0e0eec +SIZE (KDE/release-service/21.12.1/konqueror-21.12.1.tar.xz) = 7428464 diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 44ff27d12d70..f58d3d60c504 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570893 -SHA256 (KDE/release-service/21.12.0/konsole-21.12.0.tar.xz) = f3529987eb7b7c1a11f2efa110023925a47a7d02cc96a41160e671742fe36f73 -SIZE (KDE/release-service/21.12.0/konsole-21.12.0.tar.xz) = 1386372 +TIMESTAMP = 1641292265 +SHA256 (KDE/release-service/21.12.1/konsole-21.12.1.tar.xz) = f46b68f19dd45d5bb2feef3fe6641e5c02d26ee6a669670765e23d28f7ee5a5d +SIZE (KDE/release-service/21.12.1/konsole-21.12.1.tar.xz) = 1390216 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 796196fd26f5..00088be8bd49 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1638570894 -SHA256 (KDE/release-service/21.12.0/yakuake-21.12.0.tar.xz) = 817d6447c96e0c8e0b6c112e6ddb05d6b8fef687ed6974e9d8cd9d30acfc35f3 -SIZE (KDE/release-service/21.12.0/yakuake-21.12.0.tar.xz) = 402948 +TIMESTAMP = 1641292265 +SHA256 (KDE/release-service/21.12.1/yakuake-21.12.1.tar.xz) = f41b97f155cff6b15fb8e4cbceb7e51010f090beaa9da0c7e0d0b215004722db +SIZE (KDE/release-service/21.12.1/yakuake-21.12.1.tar.xz) = 402964