diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index cdb72e2f4885..5b7df61b02e6 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,911 +1,911 @@ # 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.24.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.95.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 22.04.2 -KDE_APPLICATIONS_SHLIB_VER?= 5.20.2 +KDE_APPLICATIONS_VERSION?= 22.04.3 +KDE_APPLICATIONS_SHLIB_VER?= 5.20.3 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 22.04.2 +KDE_APPLICATIONS_SHLIB_G_VER?= 22.04.3 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 \ 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/libQuickCharts.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_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/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-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 c51aa5d705a2..744dea53aaa4 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672120 -SHA256 (KDE/release-service/22.04.2/kmag-22.04.2.tar.xz) = 5662be879f7535ef1e413813abbe0721b06dc43c24015ac3daf9c9859aef278a -SIZE (KDE/release-service/22.04.2/kmag-22.04.2.tar.xz) = 707740 +TIMESTAMP = 1657013454 +SHA256 (KDE/release-service/22.04.3/kmag-22.04.3.tar.xz) = a9a076e62d9dfc9dd436949ce61a928d26cab3b136ec5bfe93fb9865b9d85c22 +SIZE (KDE/release-service/22.04.3/kmag-22.04.3.tar.xz) = 710132 diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index d0e685fb1599..bf7ca74af356 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672121 -SHA256 (KDE/release-service/22.04.2/kmousetool-22.04.2.tar.xz) = 838d4a9568766eeb6f3e7311b6746f2940f85ccea870b09ef3bf473c4babf8db -SIZE (KDE/release-service/22.04.2/kmousetool-22.04.2.tar.xz) = 121668 +TIMESTAMP = 1657013455 +SHA256 (KDE/release-service/22.04.3/kmousetool-22.04.3.tar.xz) = 9d3f6af88966631b682840607cb85fcab9864bc532822b7d54b3b9e1206cfb8e +SIZE (KDE/release-service/22.04.3/kmousetool-22.04.3.tar.xz) = 121876 diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index 2c9353ff82de..d5241b274f6f 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672122 -SHA256 (KDE/release-service/22.04.2/kmouth-22.04.2.tar.xz) = 35956f0bfc60103aa7e44c1f896865e22d73911f168343d02941b151b07befc8 -SIZE (KDE/release-service/22.04.2/kmouth-22.04.2.tar.xz) = 2104760 +TIMESTAMP = 1657013456 +SHA256 (KDE/release-service/22.04.3/kmouth-22.04.3.tar.xz) = feae14f291009737c6f402a5f21c53dd13660045938a65c9771fdf8df1e1ea53 +SIZE (KDE/release-service/22.04.3/kmouth-22.04.3.tar.xz) = 2108236 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 a5175a1dda96..f93b7c76b175 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672013 -SHA256 (KDE/release-service/22.04.2/ark-22.04.2.tar.xz) = c4a6b4728be2f76cbf1db5459e377678e9d124068ee4c05b7924b7ea022dfb69 -SIZE (KDE/release-service/22.04.2/ark-22.04.2.tar.xz) = 2783012 +TIMESTAMP = 1657013348 +SHA256 (KDE/release-service/22.04.3/ark-22.04.3.tar.xz) = 00e8efdbcb1b62f804860581c06e744f0f56a16769938638e34efd3931485ef2 +SIZE (KDE/release-service/22.04.3/ark-22.04.3.tar.xz) = 2780848 diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 166acfa42313..aba1ad4a888a 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672108 -SHA256 (KDE/release-service/22.04.2/kosmindoormap-22.04.2.tar.xz) = 6efbb520c1848f7bc41c7793e58fd469167c280eb6b61d33bc77bf5b1d5dc042 -SIZE (KDE/release-service/22.04.2/kosmindoormap-22.04.2.tar.xz) = 351236 +TIMESTAMP = 1657013442 +SHA256 (KDE/release-service/22.04.3/kosmindoormap-22.04.3.tar.xz) = 3ab43b089c42d5962e964fc41f7cfe04d0d9f5114dd8a96ae896cacb7f915075 +SIZE (KDE/release-service/22.04.3/kosmindoormap-22.04.3.tar.xz) = 351256 diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 4e8dee2222e6..79c49de8d1ae 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -1,47 +1,47 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro education kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip1-qt5.so:archivers/quazip USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 shared-mime-info tar:xz USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets kio newstuff package parts \ plasma-framework plasma-workspace-wallpapers runner service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script serialport sql svg webchannel widgets xml \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null # We have to set QT_IMPORTS_PATH, as it does not get picked up CMAKE_ARGS= -DMOBILE:BOOL=FALSE \ -DQT_IMPORTS_DIR:PATH=${QT_IMPORTDIR} # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 22.4.2 +KDE_APPLICATIONS_SHLIB_VER= 22.4.3 OPTIONS_DEFINE= GPS DOCS WEBENGINE OPTIONS_DEFAULT=GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libgps WEBENGINE_DESC= Add dependency on qt5-webengine WEBENGINE_USE= QT=webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets .include diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 24c058ff87b0..324d4a436c3c 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672107 -SHA256 (KDE/release-service/22.04.2/marble-22.04.2.tar.xz) = a4332e10d26b24ecd07560fa2d877b1f0cce6e50010bbc36ef98e02acc68dfda -SIZE (KDE/release-service/22.04.2/marble-22.04.2.tar.xz) = 53677556 +TIMESTAMP = 1657013441 +SHA256 (KDE/release-service/22.04.3/marble-22.04.3.tar.xz) = 438d4ef317231b8f2377f64ebfe9249ce669103fb71105c9d7de35a39bbef771 +SIZE (KDE/release-service/22.04.3/marble-22.04.3.tar.xz) = 53672580 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index bf3a5321a7d4..b562f8f52e67 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1786 +1,1794 @@ bin/marble bin/marble-qt include/astro/astr2lib.h include/astro/astro_version.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileManager.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_declarative_export.h include/marble/marble_export.h include/marble/marble_version.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.1 lib/libastro.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarblewidget-qt5.so.28 lib/marble/plugins/AnnotatePlugin.so lib/marble/plugins/AprsPlugin.so lib/marble/plugins/AtmospherePlugin.so lib/marble/plugins/CachePlugin.so lib/marble/plugins/CompassFloatItem.so lib/marble/plugins/CrosshairsPlugin.so lib/marble/plugins/CycleStreetsPlugin.so lib/marble/plugins/EarthquakePlugin.so lib/marble/plugins/EclipsesPlugin.so lib/marble/plugins/ElevationProfileFloatItem.so lib/marble/plugins/ElevationProfileMarker.so lib/marble/plugins/FlightGearPositionProviderPlugin.so lib/marble/plugins/FoursquarePlugin.so lib/marble/plugins/GeoUriPlugin.so lib/marble/plugins/GosmoreReverseGeocodingPlugin.so lib/marble/plugins/GosmoreRoutingPlugin.so lib/marble/plugins/GpsInfo.so lib/marble/plugins/GpsbabelPlugin.so %%GPS%%lib/marble/plugins/GpsdPositionProviderPlugin.so lib/marble/plugins/GpxPlugin.so lib/marble/plugins/GraticulePlugin.so lib/marble/plugins/HostipPlugin.so lib/marble/plugins/JsonPlugin.so lib/marble/plugins/KmlPlugin.so lib/marble/plugins/LatLonPlugin.so lib/marble/plugins/License.so lib/marble/plugins/LocalDatabasePlugin.so lib/marble/plugins/LocalOsmSearchPlugin.so lib/marble/plugins/LogPlugin.so lib/marble/plugins/MapQuestPlugin.so lib/marble/plugins/MapScaleFloatItem.so lib/marble/plugins/MeasureTool.so lib/marble/plugins/MonavPlugin.so lib/marble/plugins/NavigationFloatItem.so lib/marble/plugins/NominatimReverseGeocodingPlugin.so lib/marble/plugins/NominatimSearchPlugin.so lib/marble/plugins/NotesPlugin.so lib/marble/plugins/OSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/OpenDesktopPlugin.so lib/marble/plugins/OpenLocationCodeSearchPlugin.so lib/marble/plugins/OpenRouteServicePlugin.so lib/marble/plugins/OsmPlugin.so lib/marble/plugins/OverviewMap.so %%WEBENGINE%%lib/marble/plugins/Photo.so lib/marble/plugins/Pn2Plugin.so lib/marble/plugins/PntPlugin.so lib/marble/plugins/PositionMarker.so lib/marble/plugins/PostalCode.so lib/marble/plugins/ProgressFloatItem.so %%GPS%%lib/marble/plugins/QtPositioningPositionProviderPlugin.so lib/marble/plugins/RoutingPlugin.so lib/marble/plugins/RoutinoPlugin.so lib/marble/plugins/SatellitesPlugin.so lib/marble/plugins/Speedometer.so lib/marble/plugins/StarsPlugin.so lib/marble/plugins/SunPlugin.so %%WEBENGINE%%lib/marble/plugins/Weather.so %%WEBENGINE%%lib/marble/plugins/Wikipedia.so lib/marble/plugins/YoursPlugin.so lib/plugins/designer/LatLonEditPlugin.so lib/plugins/designer/MarbleNavigatorPlugin.so lib/plugins/designer/MarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/kf5/krunner/plasma_runner_marble.so %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/marblethumbnail.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/16x16/apps/marble.png share/icons/hicolor/22x22/apps/marble.png share/icons/hicolor/32x32/apps/marble.png share/icons/hicolor/48x48/apps/marble.png share/icons/hicolor/64x64/apps/marble.png share/icons/hicolor/128x128/apps/marble.png share/knsrcfiles/marble.knsrc share/kservices5/marble_part.desktop share/kservices5/marble_thumbnail_geojson.desktop share/kservices5/marble_thumbnail_gpx.desktop share/kservices5/marble_thumbnail_kml.desktop share/kservices5/marble_thumbnail_kmz.desktop share/kservices5/marble_thumbnail_osm.desktop share/kservices5/plasma-applet-org.kde.plasma.worldclock.desktop share/kservices5/plasma-wallpaper-org.kde.plasma.worldmap.desktop share/kxmlgui5/marble/marble_part.rc share/kxmlgui5/marble/marbleui.rc share/locale/ar/LC_MESSAGES/marble.mo share/locale/ar/LC_MESSAGES/marble_qt.qm share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ar/LC_MESSAGES/plasma_runner_marble.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/be/LC_MESSAGES/marble.mo share/locale/be/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo +share/locale/bg/LC_MESSAGES/plasma_runner_marble.mo +share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/en_GB/LC_MESSAGES/marble.mo share/locale/en_GB/LC_MESSAGES/marble_qt.qm share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_marble.mo share/locale/en_GB/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eo/LC_MESSAGES/marble.mo share/locale/eo/LC_MESSAGES/marble_qt.qm share/locale/eo/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/marble.mo share/locale/es/LC_MESSAGES/marble_qt.qm share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/es/LC_MESSAGES/plasma_runner_marble.mo share/locale/es/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/et/LC_MESSAGES/marble.mo share/locale/et/LC_MESSAGES/marble_qt.qm share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/et/LC_MESSAGES/plasma_runner_marble.mo share/locale/et/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/eu/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/marble.mo share/locale/fi/LC_MESSAGES/marble_qt.qm share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fi/LC_MESSAGES/plasma_runner_marble.mo share/locale/fi/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/fr/LC_MESSAGES/marble.mo share/locale/fr/LC_MESSAGES/marble_qt.qm share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/fr/LC_MESSAGES/plasma_runner_marble.mo share/locale/fr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ga/LC_MESSAGES/marble.mo share/locale/ga/LC_MESSAGES/marble_qt.qm share/locale/ga/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/marble.mo share/locale/gl/LC_MESSAGES/marble_qt.qm share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/gl/LC_MESSAGES/plasma_runner_marble.mo share/locale/gl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/he/LC_MESSAGES/marble.mo share/locale/he/LC_MESSAGES/marble_qt.qm share/locale/hi/LC_MESSAGES/marble.mo share/locale/hi/LC_MESSAGES/marble_qt.qm share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo +share/locale/id/LC_MESSAGES/marble.mo +share/locale/id/LC_MESSAGES/marble_qt.qm +share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo +share/locale/id/LC_MESSAGES/plasma_runner_marble.mo +share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/marble.mo share/locale/it/LC_MESSAGES/marble_qt.qm share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/it/LC_MESSAGES/plasma_runner_marble.mo share/locale/it/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ja/LC_MESSAGES/marble.mo share/locale/ja/LC_MESSAGES/marble_qt.qm share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ja/LC_MESSAGES/plasma_runner_marble.mo share/locale/ja/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/se/LC_MESSAGES/marble.mo share/locale/se/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/tr/LC_MESSAGES/marble.mo share/locale/tr/LC_MESSAGES/marble_qt.qm share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/tr/LC_MESSAGES/plasma_runner_marble.mo share/locale/tr/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ug/LC_MESSAGES/marble.mo share/locale/ug/LC_MESSAGES/marble_qt.qm share/locale/ug/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/marble.mo share/locale/uk/LC_MESSAGES/marble_qt.qm share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/uk/LC_MESSAGES/plasma_runner_marble.mo share/locale/uk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/wa/LC_MESSAGES/marble.mo share/locale/wa/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/marble.mo share/locale/zh_CN/LC_MESSAGES/marble_qt.qm share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_CN/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/zh_TW/LC_MESSAGES/marble.mo share/locale/zh_TW/LC_MESSAGES/marble_qt.qm share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_marble.mo share/locale/zh_TW/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo %%DATADIR%%/data/LICENSE.txt %%DATADIR%%/data/audio/KDE-Sys-App-Positive.ogg %%DATADIR%%/data/audio/KDE-Sys-List-End.ogg %%DATADIR%%/data/bitmaps/airport.png %%DATADIR%%/data/bitmaps/annotation.png %%DATADIR%%/data/bitmaps/antarctic_shelves.png %%DATADIR%%/data/bitmaps/audio-x-generic.png %%DATADIR%%/data/bitmaps/bookmark.png %%DATADIR%%/data/bitmaps/border_1.png %%DATADIR%%/data/bitmaps/border_2.png %%DATADIR%%/data/bitmaps/border_disputed.png %%DATADIR%%/data/bitmaps/border_maritime.png %%DATADIR%%/data/bitmaps/city_1_orange.png %%DATADIR%%/data/bitmaps/city_1_red.png %%DATADIR%%/data/bitmaps/city_1_white.png %%DATADIR%%/data/bitmaps/city_1_yellow.png %%DATADIR%%/data/bitmaps/city_2_orange.png %%DATADIR%%/data/bitmaps/city_2_red.png %%DATADIR%%/data/bitmaps/city_2_white.png %%DATADIR%%/data/bitmaps/city_2_yellow.png %%DATADIR%%/data/bitmaps/city_3_orange.png %%DATADIR%%/data/bitmaps/city_3_red.png %%DATADIR%%/data/bitmaps/city_3_white.png %%DATADIR%%/data/bitmaps/city_3_yellow.png %%DATADIR%%/data/bitmaps/city_4_orange.png %%DATADIR%%/data/bitmaps/city_4_red.png %%DATADIR%%/data/bitmaps/city_4_white.png %%DATADIR%%/data/bitmaps/city_4_yellow.png %%DATADIR%%/data/bitmaps/coordinate.png %%DATADIR%%/data/bitmaps/crater.png %%DATADIR%%/data/bitmaps/cursor_bc.png %%DATADIR%%/data/bitmaps/cursor_bl.png %%DATADIR%%/data/bitmaps/cursor_br.png %%DATADIR%%/data/bitmaps/cursor_cl.png %%DATADIR%%/data/bitmaps/cursor_cr.png %%DATADIR%%/data/bitmaps/cursor_tc.png %%DATADIR%%/data/bitmaps/cursor_tl.png %%DATADIR%%/data/bitmaps/cursor_tr.png %%DATADIR%%/data/bitmaps/default_location.png %%DATADIR%%/data/bitmaps/document-edit.png %%DATADIR%%/data/bitmaps/earth_apollo.jpg %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-diagonal-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-horizontal.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-bottomright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topleft.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-rotation-topright.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical-active.png %%DATADIR%%/data/bitmaps/editarrows/arrow-vertical.png %%DATADIR%%/data/bitmaps/flag.png %%DATADIR%%/data/bitmaps/folder.png %%DATADIR%%/data/bitmaps/glacier.png %%DATADIR%%/data/bitmaps/highway_footway.png %%DATADIR%%/data/bitmaps/highway_motorway.png %%DATADIR%%/data/bitmaps/highway_path.png %%DATADIR%%/data/bitmaps/highway_primary.png %%DATADIR%%/data/bitmaps/highway_secondary.png %%DATADIR%%/data/bitmaps/highway_tertiary.png %%DATADIR%%/data/bitmaps/highway_track.png %%DATADIR%%/data/bitmaps/highway_trunk.png %%DATADIR%%/data/bitmaps/highway_unclassified.png %%DATADIR%%/data/bitmaps/lake.png %%DATADIR%%/data/bitmaps/lake_historic.png %%DATADIR%%/data/bitmaps/manned_landing.png %%DATADIR%%/data/bitmaps/media-playback-pause.png %%DATADIR%%/data/bitmaps/mountain_1.png %%DATADIR%%/data/bitmaps/nation.png %%DATADIR%%/data/bitmaps/notes_closed.png %%DATADIR%%/data/bitmaps/notes_open.png %%DATADIR%%/data/bitmaps/observatory.png %%DATADIR%%/data/bitmaps/ocean.png %%DATADIR%%/data/bitmaps/osm.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/allotments.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/beach.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/danger.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/embankment.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/forest.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/glacier.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_christian.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_generic.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grave_yard_jewish.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/grey_vertical_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/ice.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/military_red_hatch.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/orchard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/quarry.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/rock_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scree_overlay.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/scrub.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/vineyard.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_bog.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_mangrove.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_marsh.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_reed.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/wetland_swamp.png %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/motorway_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/primary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/secondary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/tertiary_11x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_1x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_2x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_3x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_4x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_5x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_6x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_7x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_8x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_9x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_10x4.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x1.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x2.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x3.svg %%DATADIR%%/data/bitmaps/osmcarto/shields/svg/trunk_11x4.svg %%DATADIR%%/data/bitmaps/other.png %%DATADIR%%/data/bitmaps/playa.png %%DATADIR%%/data/bitmaps/player-time.png %%DATADIR%%/data/bitmaps/pole_1.png %%DATADIR%%/data/bitmaps/pole_2.png %%DATADIR%%/data/bitmaps/redflag_22.png %%DATADIR%%/data/bitmaps/redflag_32.png %%DATADIR%%/data/bitmaps/river.png %%DATADIR%%/data/bitmaps/robotic_rover.png %%DATADIR%%/data/bitmaps/routing_pick.png %%DATADIR%%/data/bitmaps/routing_remove.png %%DATADIR%%/data/bitmaps/routing_step.png %%DATADIR%%/data/bitmaps/satellite.png %%DATADIR%%/data/bitmaps/shadowframe.png %%DATADIR%%/data/bitmaps/shipwreck.png %%DATADIR%%/data/bitmaps/stars/star_0_blue.png %%DATADIR%%/data/bitmaps/stars/star_0_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_0_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_0_orange.png %%DATADIR%%/data/bitmaps/stars/star_0_red.png %%DATADIR%%/data/bitmaps/stars/star_0_white.png %%DATADIR%%/data/bitmaps/stars/star_0_yellow.png %%DATADIR%%/data/bitmaps/stars/star_3_blue.png %%DATADIR%%/data/bitmaps/stars/star_3_bluewhite.png %%DATADIR%%/data/bitmaps/stars/star_3_garnetred.png %%DATADIR%%/data/bitmaps/stars/star_3_orange.png %%DATADIR%%/data/bitmaps/stars/star_3_red.png %%DATADIR%%/data/bitmaps/stars/star_3_white.png %%DATADIR%%/data/bitmaps/stars/star_3_yellow.png %%DATADIR%%/data/bitmaps/turn-around.png %%DATADIR%%/data/bitmaps/turn-continue.png %%DATADIR%%/data/bitmaps/turn-end.png %%DATADIR%%/data/bitmaps/turn-exit-left.png %%DATADIR%%/data/bitmaps/turn-exit-right.png %%DATADIR%%/data/bitmaps/turn-ferry.png %%DATADIR%%/data/bitmaps/turn-left.png %%DATADIR%%/data/bitmaps/turn-merge.png %%DATADIR%%/data/bitmaps/turn-right.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-ccw-third.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-far.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-first.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-second.png %%DATADIR%%/data/bitmaps/turn-roundabout-cw-third.png %%DATADIR%%/data/bitmaps/turn-sharp-left.png %%DATADIR%%/data/bitmaps/turn-sharp-right.png %%DATADIR%%/data/bitmaps/turn-slight-left.png %%DATADIR%%/data/bitmaps/turn-slight-right.png %%DATADIR%%/data/bitmaps/unmanned_hard_landing.png %%DATADIR%%/data/bitmaps/unmanned_soft_landing.png %%DATADIR%%/data/bitmaps/urban_area.png %%DATADIR%%/data/bitmaps/valley.png %%DATADIR%%/data/bitmaps/volcano_1.png %%DATADIR%%/data/bitmaps/waypoint.png %%DATADIR%%/data/bitmaps/wikipedia.png %%DATADIR%%/data/credits_authors.html %%DATADIR%%/data/credits_data.html %%DATADIR%%/data/flags/flag_ad.svg %%DATADIR%%/data/flags/flag_ae.svg %%DATADIR%%/data/flags/flag_af.svg %%DATADIR%%/data/flags/flag_ag.svg %%DATADIR%%/data/flags/flag_ai.svg %%DATADIR%%/data/flags/flag_al.svg %%DATADIR%%/data/flags/flag_am.svg %%DATADIR%%/data/flags/flag_an.svg %%DATADIR%%/data/flags/flag_ao.svg %%DATADIR%%/data/flags/flag_aq.svg %%DATADIR%%/data/flags/flag_ar.svg %%DATADIR%%/data/flags/flag_as.svg %%DATADIR%%/data/flags/flag_at.svg %%DATADIR%%/data/flags/flag_au.svg %%DATADIR%%/data/flags/flag_aw.svg %%DATADIR%%/data/flags/flag_ax.svg %%DATADIR%%/data/flags/flag_az.svg %%DATADIR%%/data/flags/flag_ba.svg %%DATADIR%%/data/flags/flag_bb.svg %%DATADIR%%/data/flags/flag_bd.svg %%DATADIR%%/data/flags/flag_be.svg %%DATADIR%%/data/flags/flag_bf.svg %%DATADIR%%/data/flags/flag_bg.svg %%DATADIR%%/data/flags/flag_bh.svg %%DATADIR%%/data/flags/flag_bi.svg %%DATADIR%%/data/flags/flag_bj.svg %%DATADIR%%/data/flags/flag_bm.svg %%DATADIR%%/data/flags/flag_bn.svg %%DATADIR%%/data/flags/flag_bo.svg %%DATADIR%%/data/flags/flag_br.svg %%DATADIR%%/data/flags/flag_bs.svg %%DATADIR%%/data/flags/flag_bt.svg %%DATADIR%%/data/flags/flag_bv.svg %%DATADIR%%/data/flags/flag_bw.svg %%DATADIR%%/data/flags/flag_by.svg %%DATADIR%%/data/flags/flag_bz.svg %%DATADIR%%/data/flags/flag_ca.svg %%DATADIR%%/data/flags/flag_cc.svg %%DATADIR%%/data/flags/flag_cd.svg %%DATADIR%%/data/flags/flag_cf.svg %%DATADIR%%/data/flags/flag_cg.svg %%DATADIR%%/data/flags/flag_ch.svg %%DATADIR%%/data/flags/flag_ci.svg %%DATADIR%%/data/flags/flag_ck.svg %%DATADIR%%/data/flags/flag_cl.svg %%DATADIR%%/data/flags/flag_cm.svg %%DATADIR%%/data/flags/flag_cn.svg %%DATADIR%%/data/flags/flag_co.svg %%DATADIR%%/data/flags/flag_cr.svg %%DATADIR%%/data/flags/flag_cu.svg %%DATADIR%%/data/flags/flag_cv.svg %%DATADIR%%/data/flags/flag_cx.svg %%DATADIR%%/data/flags/flag_cy.svg %%DATADIR%%/data/flags/flag_cz.svg %%DATADIR%%/data/flags/flag_de.svg %%DATADIR%%/data/flags/flag_dj.svg %%DATADIR%%/data/flags/flag_dk.svg %%DATADIR%%/data/flags/flag_dm.svg %%DATADIR%%/data/flags/flag_do.svg %%DATADIR%%/data/flags/flag_dz.svg %%DATADIR%%/data/flags/flag_ec.svg %%DATADIR%%/data/flags/flag_ee.svg %%DATADIR%%/data/flags/flag_eg.svg %%DATADIR%%/data/flags/flag_eh.svg %%DATADIR%%/data/flags/flag_er.svg %%DATADIR%%/data/flags/flag_es.svg %%DATADIR%%/data/flags/flag_et.svg %%DATADIR%%/data/flags/flag_fi.svg %%DATADIR%%/data/flags/flag_fj.svg %%DATADIR%%/data/flags/flag_fk.svg %%DATADIR%%/data/flags/flag_fm.svg %%DATADIR%%/data/flags/flag_fo.svg %%DATADIR%%/data/flags/flag_fr.svg %%DATADIR%%/data/flags/flag_ga.svg %%DATADIR%%/data/flags/flag_gb.svg %%DATADIR%%/data/flags/flag_gd.svg %%DATADIR%%/data/flags/flag_ge.svg %%DATADIR%%/data/flags/flag_gf.svg %%DATADIR%%/data/flags/flag_gg.svg %%DATADIR%%/data/flags/flag_gh.svg %%DATADIR%%/data/flags/flag_gi.svg %%DATADIR%%/data/flags/flag_gl.svg %%DATADIR%%/data/flags/flag_gm.svg %%DATADIR%%/data/flags/flag_gn.svg %%DATADIR%%/data/flags/flag_gp.svg %%DATADIR%%/data/flags/flag_gq.svg %%DATADIR%%/data/flags/flag_gr.svg %%DATADIR%%/data/flags/flag_gs.svg %%DATADIR%%/data/flags/flag_gt.svg %%DATADIR%%/data/flags/flag_gu.svg %%DATADIR%%/data/flags/flag_gw.svg %%DATADIR%%/data/flags/flag_gy.svg %%DATADIR%%/data/flags/flag_hk.svg %%DATADIR%%/data/flags/flag_hm.svg %%DATADIR%%/data/flags/flag_hn.svg %%DATADIR%%/data/flags/flag_hr.svg %%DATADIR%%/data/flags/flag_ht.svg %%DATADIR%%/data/flags/flag_hu.svg %%DATADIR%%/data/flags/flag_id.svg %%DATADIR%%/data/flags/flag_ie.svg %%DATADIR%%/data/flags/flag_il.svg %%DATADIR%%/data/flags/flag_im.svg %%DATADIR%%/data/flags/flag_in.svg %%DATADIR%%/data/flags/flag_io.svg %%DATADIR%%/data/flags/flag_iq.svg %%DATADIR%%/data/flags/flag_ir.svg %%DATADIR%%/data/flags/flag_is.svg %%DATADIR%%/data/flags/flag_it.svg %%DATADIR%%/data/flags/flag_je.svg %%DATADIR%%/data/flags/flag_jm.svg %%DATADIR%%/data/flags/flag_jo.svg %%DATADIR%%/data/flags/flag_jp.svg %%DATADIR%%/data/flags/flag_ke.svg %%DATADIR%%/data/flags/flag_kg.svg %%DATADIR%%/data/flags/flag_kh.svg %%DATADIR%%/data/flags/flag_ki.svg %%DATADIR%%/data/flags/flag_km.svg %%DATADIR%%/data/flags/flag_kn.svg %%DATADIR%%/data/flags/flag_kp.svg %%DATADIR%%/data/flags/flag_kr.svg %%DATADIR%%/data/flags/flag_kw.svg %%DATADIR%%/data/flags/flag_ky.svg %%DATADIR%%/data/flags/flag_kz.svg %%DATADIR%%/data/flags/flag_la.svg %%DATADIR%%/data/flags/flag_lb.svg %%DATADIR%%/data/flags/flag_lc.svg %%DATADIR%%/data/flags/flag_li.svg %%DATADIR%%/data/flags/flag_lk.svg %%DATADIR%%/data/flags/flag_lr.svg %%DATADIR%%/data/flags/flag_ls.svg %%DATADIR%%/data/flags/flag_lt.svg %%DATADIR%%/data/flags/flag_lu.svg %%DATADIR%%/data/flags/flag_lv.svg %%DATADIR%%/data/flags/flag_ly.svg %%DATADIR%%/data/flags/flag_ma.svg %%DATADIR%%/data/flags/flag_mc.svg %%DATADIR%%/data/flags/flag_md.svg %%DATADIR%%/data/flags/flag_me.svg %%DATADIR%%/data/flags/flag_mg.svg %%DATADIR%%/data/flags/flag_mh.svg %%DATADIR%%/data/flags/flag_mk.svg %%DATADIR%%/data/flags/flag_ml.svg %%DATADIR%%/data/flags/flag_mm.svg %%DATADIR%%/data/flags/flag_mn.svg %%DATADIR%%/data/flags/flag_mo.svg %%DATADIR%%/data/flags/flag_mp.svg %%DATADIR%%/data/flags/flag_mq.svg %%DATADIR%%/data/flags/flag_mr.svg %%DATADIR%%/data/flags/flag_ms.svg %%DATADIR%%/data/flags/flag_mt.svg %%DATADIR%%/data/flags/flag_mu.svg %%DATADIR%%/data/flags/flag_mv.svg %%DATADIR%%/data/flags/flag_mw.svg %%DATADIR%%/data/flags/flag_mx.svg %%DATADIR%%/data/flags/flag_my.svg %%DATADIR%%/data/flags/flag_mz.svg %%DATADIR%%/data/flags/flag_na.svg %%DATADIR%%/data/flags/flag_nc.svg %%DATADIR%%/data/flags/flag_ne.svg %%DATADIR%%/data/flags/flag_nf.svg %%DATADIR%%/data/flags/flag_ng.svg %%DATADIR%%/data/flags/flag_ni.svg %%DATADIR%%/data/flags/flag_nl.svg %%DATADIR%%/data/flags/flag_no.svg %%DATADIR%%/data/flags/flag_np.svg %%DATADIR%%/data/flags/flag_nr.svg %%DATADIR%%/data/flags/flag_nu.svg %%DATADIR%%/data/flags/flag_nz.svg %%DATADIR%%/data/flags/flag_om.svg %%DATADIR%%/data/flags/flag_pa.svg %%DATADIR%%/data/flags/flag_pe.svg %%DATADIR%%/data/flags/flag_pf.svg %%DATADIR%%/data/flags/flag_pg.svg %%DATADIR%%/data/flags/flag_ph.svg %%DATADIR%%/data/flags/flag_pk.svg %%DATADIR%%/data/flags/flag_pl.svg %%DATADIR%%/data/flags/flag_pm.svg %%DATADIR%%/data/flags/flag_pn.svg %%DATADIR%%/data/flags/flag_pr.svg %%DATADIR%%/data/flags/flag_ps.svg %%DATADIR%%/data/flags/flag_pt.svg %%DATADIR%%/data/flags/flag_pw.svg %%DATADIR%%/data/flags/flag_py.svg %%DATADIR%%/data/flags/flag_qa.svg %%DATADIR%%/data/flags/flag_re.svg %%DATADIR%%/data/flags/flag_ro.svg %%DATADIR%%/data/flags/flag_rs.svg %%DATADIR%%/data/flags/flag_ru.svg %%DATADIR%%/data/flags/flag_rw.svg %%DATADIR%%/data/flags/flag_sa.svg %%DATADIR%%/data/flags/flag_sb.svg %%DATADIR%%/data/flags/flag_sc.svg %%DATADIR%%/data/flags/flag_sd.svg %%DATADIR%%/data/flags/flag_se.svg %%DATADIR%%/data/flags/flag_sg.svg %%DATADIR%%/data/flags/flag_sh.svg %%DATADIR%%/data/flags/flag_si.svg %%DATADIR%%/data/flags/flag_sj.svg %%DATADIR%%/data/flags/flag_sk.svg %%DATADIR%%/data/flags/flag_sl.svg %%DATADIR%%/data/flags/flag_sm.svg %%DATADIR%%/data/flags/flag_sn.svg %%DATADIR%%/data/flags/flag_so.svg %%DATADIR%%/data/flags/flag_sr.svg %%DATADIR%%/data/flags/flag_st.svg %%DATADIR%%/data/flags/flag_sv.svg %%DATADIR%%/data/flags/flag_sy.svg %%DATADIR%%/data/flags/flag_sz.svg %%DATADIR%%/data/flags/flag_tc.svg %%DATADIR%%/data/flags/flag_td.svg %%DATADIR%%/data/flags/flag_tf.svg %%DATADIR%%/data/flags/flag_tg.svg %%DATADIR%%/data/flags/flag_th.svg %%DATADIR%%/data/flags/flag_tj.svg %%DATADIR%%/data/flags/flag_tk.svg %%DATADIR%%/data/flags/flag_tl.svg %%DATADIR%%/data/flags/flag_tm.svg %%DATADIR%%/data/flags/flag_tn.svg %%DATADIR%%/data/flags/flag_to.svg %%DATADIR%%/data/flags/flag_tr.svg %%DATADIR%%/data/flags/flag_tt.svg %%DATADIR%%/data/flags/flag_tv.svg %%DATADIR%%/data/flags/flag_tw.svg %%DATADIR%%/data/flags/flag_tz.svg %%DATADIR%%/data/flags/flag_ua.svg %%DATADIR%%/data/flags/flag_ug.svg %%DATADIR%%/data/flags/flag_um.svg %%DATADIR%%/data/flags/flag_us.svg %%DATADIR%%/data/flags/flag_uy.svg %%DATADIR%%/data/flags/flag_uz.svg %%DATADIR%%/data/flags/flag_vc.svg %%DATADIR%%/data/flags/flag_ve.svg %%DATADIR%%/data/flags/flag_vg.svg %%DATADIR%%/data/flags/flag_vi.svg %%DATADIR%%/data/flags/flag_vn.svg %%DATADIR%%/data/flags/flag_vu.svg %%DATADIR%%/data/flags/flag_wf.svg %%DATADIR%%/data/flags/flag_ws.svg %%DATADIR%%/data/flags/flag_ye.svg %%DATADIR%%/data/flags/flag_yt.svg %%DATADIR%%/data/flags/flag_za.svg %%DATADIR%%/data/flags/flag_zm.svg %%DATADIR%%/data/flags/flag_zw.svg %%DATADIR%%/data/landcolors.leg %%DATADIR%%/data/legend.css %%DATADIR%%/data/legend.html %%DATADIR%%/data/licenses/lgpl2.txt %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/behaim1492/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/behaim1492/behaim1492-preview.png %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.dgml %%DATADIR%%/data/maps/earth/behaim1492/behaim1492.kml %%DATADIR%%/data/maps/earth/behaim1492/figuren.kml %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ghillany/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend.html %%DATADIR%%/data/maps/earth/behaim1492/legend/Martin_Behaim.jpg %%DATADIR%%/data/maps/earth/behaim1492/legend/globus.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/behaim1492/ravenstein/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/behaim1492/texte.kml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble-preview.png %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.dgml %%DATADIR%%/data/maps/earth/bluemarble/bluemarble.jpg %%DATADIR%%/data/maps/earth/bluemarble/legend/desert.png %%DATADIR%%/data/maps/earth/bluemarble/legend/ice.png %%DATADIR%%/data/maps/earth/bluemarble/legend/mountain.png %%DATADIR%%/data/maps/earth/bluemarble/legend/vegetation.png %%DATADIR%%/data/maps/earth/bluemarble/legend/water.png %%DATADIR%%/data/maps/earth/citylights/citylights-preview.png %%DATADIR%%/data/maps/earth/citylights/citylights.dgml %%DATADIR%%/data/maps/earth/citylights/citylights.jpg %%DATADIR%%/data/maps/earth/citylights/legend/city.png %%DATADIR%%/data/maps/earth/citylights/legend/darkterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/lightterrain.png %%DATADIR%%/data/maps/earth/citylights/legend/water.png %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/clouds/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/hillshading/0/0/0.png %%DATADIR%%/data/maps/earth/humanitarian/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/0/0/0.png %%DATADIR%%/data/maps/earth/openstreetmap/Alcatraz.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Brasilia.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Church of the Holy Sepulchre.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Death Valley.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Desert breath.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Disneyland.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Dunnottar Castle.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Eiffel Tower.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Kheops Pyramid.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Klyuchevskaya Sopka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Maree Man.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Moscow Kremlin.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Nazca Lines.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palace Het Loo.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Palm Jumeirah.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Russell Square.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Santorini.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Shuttle Landing Facility.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sofievka.jpg %%DATADIR%%/data/maps/earth/openstreetmap/St Peter's Basilica.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Stonehenge.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Sydney Opera House.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taj Mahal.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Taranaki.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The Great Wall of China.jpg %%DATADIR%%/data/maps/earth/openstreetmap/The World.jpg %%DATADIR%%/data/maps/earth/openstreetmap/Vesuvius.jpg %%DATADIR%%/data/maps/earth/openstreetmap/legend.html %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportapron.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/airportrunway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/boundary.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridge.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/bridleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/byway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/cycleway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/footway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_hotel2.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/accommodation_motel.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_court.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_firestation.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_library.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_playground.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_post_office.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_public_building.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/amenity_toilets.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_college.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_nursery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_school.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/education_university.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_bar.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_biergarten.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_cafe.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_drinkingtap.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_fastfood.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_ice_cream.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_pub.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/food_restaurant.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_dentist.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_doctors.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_hospital.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_pharmacy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/health_veterinary.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_atm.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_bank.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/money_currency_exchange.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_christian.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/place_of_worship_unknown.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/poi_embassy.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/power_station_gas.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_alcohol.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_bakery.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_book.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_car.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_clothes.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_convenience.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/shopping_gift.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_cinema.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_monument.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_ruin.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/mapicons/tourist_theatre.p.12.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/motorway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/primaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/railwaystation.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/secondaryroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/significantbuilding.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/subway.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/summitpeak.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/track.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tram.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/trunkroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/tunnel.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unclassifiedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/legend/unsurfacedroad.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap-preview.png %%DATADIR%%/data/maps/earth/openstreetmap/openstreetmap.dgml %%DATADIR%%/data/maps/earth/openstreetmap/tour.kml %%DATADIR%%/data/maps/earth/plain/plain-preview.png %%DATADIR%%/data/maps/earth/plain/plain.dgml %%DATADIR%%/data/maps/earth/political/political-preview.png %%DATADIR%%/data/maps/earth/political/political.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec-preview.png %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.dgml %%DATADIR%%/data/maps/earth/precip-dec/precip-dec.jpg %%DATADIR%%/data/maps/earth/precip-july/precip-july-preview.png %%DATADIR%%/data/maps/earth/precip-july/precip-july.dgml %%DATADIR%%/data/maps/earth/precip-july/precip-july.jpg %%DATADIR%%/data/maps/earth/schagen1689/legend.html %%DATADIR%%/data/maps/earth/schagen1689/legend/lake.png %%DATADIR%%/data/maps/earth/schagen1689/legend/mountain.png %%DATADIR%%/data/maps/earth/schagen1689/legend/river.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_orig.png %%DATADIR%%/data/maps/earth/schagen1689/legend/schagen_title.png %%DATADIR%%/data/maps/earth/schagen1689/legend/town.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689-preview.png %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.dgml %%DATADIR%%/data/maps/earth/schagen1689/schagen1689.jpg %%DATADIR%%/data/maps/earth/sentinel2/0/0/0.jpg %%DATADIR%%/data/maps/earth/sentinel2/legend.html %%DATADIR%%/data/maps/earth/sentinel2/sentinel2-preview.png %%DATADIR%%/data/maps/earth/sentinel2/sentinel2.dgml %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000000.png %%DATADIR%%/data/maps/earth/srtm2/0/000000/000000_000001.png %%DATADIR%%/data/maps/earth/srtm2/srtm2.dgml %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/0/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/1/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/2/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000000/000000_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000001/000001_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000002/000002_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000003/000003_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000004/000004_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000005/000005_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000006/000006_000015.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000000.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000001.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000002.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000003.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000004.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000005.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000006.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000007.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000008.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000009.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000010.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000011.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000012.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000013.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000014.jpg %%DATADIR%%/data/maps/earth/srtm/3/000007/000007_000015.jpg %%DATADIR%%/data/maps/earth/srtm/srtm-preview.png %%DATADIR%%/data/maps/earth/srtm/srtm.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec-preview.png %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.dgml %%DATADIR%%/data/maps/earth/temp-dec/temp-dec.jpg %%DATADIR%%/data/maps/earth/temp-july/temp-july-preview.png %%DATADIR%%/data/maps/earth/temp-july/temp-july.dgml %%DATADIR%%/data/maps/earth/temp-july/temp-july.jpg %%DATADIR%%/data/maps/earth/vectorosm/0/0/0.o5m %%DATADIR%%/data/maps/earth/vectorosm/legend.html %%DATADIR%%/data/maps/earth/vectorosm/vectorosm-preview.png %%DATADIR%%/data/maps/earth/vectorosm/vectorosm.dgml %%DATADIR%%/data/maps/moon/clementine/clementine-preview.png %%DATADIR%%/data/maps/moon/clementine/clementine.dgml %%DATADIR%%/data/maps/moon/clementine/clementine.jpg %%DATADIR%%/data/maps/moon/clementine/legend.html %%DATADIR%%/data/maps/moon/clementine/tour.kml %%DATADIR%%/data/mwdbii/DATELINE.PNT %%DATADIR%%/data/mwdbii/PCOAST.PNT %%DATADIR%%/data/mwdbii/PDIFFBORDER.PNT %%DATADIR%%/data/mwdbii/PGLACIER.PNT %%DATADIR%%/data/mwdbii/PISLAND.PNT %%DATADIR%%/data/mwdbii/PLAKE.PNT %%DATADIR%%/data/mwdbii/PLAKEISLAND.PNT %%DATADIR%%/data/mwdbii/PUSA48.DIFF.PNT %%DATADIR%%/data/mwdbii/RIVER.PNT %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_boundary_lines_maritime_indicator.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_breakaway_disputed_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_countries.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_0_pacific_groupings.pn2 %%DATADIR%%/data/naturalearth/ne_50m_admin_1_states_provinces_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_lines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_antarctic_ice_shelves_polys.pn2 %%DATADIR%%/data/naturalearth/ne_50m_coastline.pn2 %%DATADIR%%/data/naturalearth/ne_50m_glaciated_areas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes.pn2 %%DATADIR%%/data/naturalearth/ne_50m_lakes_historic.pn2 %%DATADIR%%/data/naturalearth/ne_50m_land.pn2 %%DATADIR%%/data/naturalearth/ne_50m_playas.pn2 %%DATADIR%%/data/naturalearth/ne_50m_rivers_lake_centerlines.pn2 %%DATADIR%%/data/naturalearth/ne_50m_urban_areas.pn2 %%DATADIR%%/data/placemarks/baseplacemarks.cache %%DATADIR%%/data/placemarks/boundaryplacemarks.cache %%DATADIR%%/data/placemarks/cityplacemarks.cache %%DATADIR%%/data/placemarks/elevplacemarks.cache %%DATADIR%%/data/placemarks/moonlandingsites.cache %%DATADIR%%/data/placemarks/moonterrain.cache %%DATADIR%%/data/placemarks/otherplacemarks.cache %%DATADIR%%/data/precipcolors.leg %%DATADIR%%/data/seacolors.leg %%DATADIR%%/data/stars/constellations.dat %%DATADIR%%/data/stars/deepsky.png %%DATADIR%%/data/stars/dso.dat %%DATADIR%%/data/stars/names.csv %%DATADIR%%/data/stars/stars.dat %%DATADIR%%/data/svg/application-x-marble-gray.png %%DATADIR%%/data/svg/application-x-marble.png %%DATADIR%%/data/svg/application-x-marble.svg %%DATADIR%%/data/svg/bookmark.svg %%DATADIR%%/data/svg/coordinate.svg %%DATADIR%%/data/svg/dot-circle-regular.svg %%DATADIR%%/data/svg/glow.png %%DATADIR%%/data/svg/lunarmap.svg %%DATADIR%%/data/svg/marble-logo-32dpi.png %%DATADIR%%/data/svg/marble-logo-72dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-32dpi.png %%DATADIR%%/data/svg/marble-logo-inverted-72dpi.png %%DATADIR%%/data/svg/marble-logo.png %%DATADIR%%/data/svg/marble-logo.svg %%DATADIR%%/data/svg/marsmap.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bike_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_boat_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_bus_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_car_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_railway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_run_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_subway_48px.svg %%DATADIR%%/data/svg/material/maps/ic_directions_walk_48px.svg %%DATADIR%%/data/svg/material/maps/ic_tram_48px.svg %%DATADIR%%/data/svg/moon.png %%DATADIR%%/data/svg/osmcarto/svg/airtransport/aerodrome.svg %%DATADIR%%/data/svg/osmcarto/svg/airtransport/helipad.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/archaeological_site.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/artwork.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/atm.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bank.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/bar.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/biergarten.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cafe.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/car_wash.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cave.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/cinema.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/community_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/courthouse-16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/drinking_water.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/emergency_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fast_food.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/firestation.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/fountain-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/information.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/library.20.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/monument.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/mountain_rescue.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/museum.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/nightclub.18.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/picnic.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/playground.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/police.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_box-12.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/post_office-14.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/prison.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/pub.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/recycling.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/restaurant.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/social_facility.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/telephone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/theatre.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/toilets.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/tourist_memorial.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/town_hall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/viewpoint.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/water_tower.16.svg %%DATADIR%%/data/svg/osmcarto/svg/amenity/windmill.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/buddhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/christian.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/hinduist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/jewish.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/muslim.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/place_of_worship.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/power_wind-16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/shintoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/sikhist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/black/taoist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/dentist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/doctors.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/hospital.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/pharmacy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/health/veterinary-14.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/bench.16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/entrance.10.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/gate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/liftgate.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/mini_roundabout.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/peak.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/power_tower_small.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/pylon.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/railway_station.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/saddle.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/speedcamera.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/spring.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/square.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/traffic_light.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-16.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-autumn.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29-winter.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/tree-29.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/volcano.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/waste_basket.10.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/door_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall.16.svg %%DATADIR%%/data/svg/osmcarto/svg/indoor/wall_b.16.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/golf.svg %%DATADIR%%/data/svg/osmcarto/svg/leisure/miniature_golf.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/communications.16.svg %%DATADIR%%/data/svg/osmcarto/svg/manmade/hunting-stand.16.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-4.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6-z7.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-6.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-8.svg %%DATADIR%%/data/svg/osmcarto/svg/place/place-capital-adminlevel2.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/art.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/bag-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beauty-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/beverages-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/butcher-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/car_parts-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/chemist-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/computer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/confectionery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/copyshop.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/deli.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/department_store-16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/florist.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/garden_centre-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/greengrocer-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/hifi-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/ice-cream-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/kiosk-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/laundry-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/mobile_phone.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/motorcycle-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/musical_instrument-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/newsagent-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/outdoor-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/perfumery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/photo-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/seafood-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_alcohol.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bakery.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_books.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_car.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_clothes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_convenience.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_diy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_electronics.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_furniture.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_gift.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_hairdresser.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_jewelry.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_mobile_phone.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_optician.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_pet.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_shoes.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shop_supermarket.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/shopping_car_repair.16.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/sports.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/stationery-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tea.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/tobacco.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/toys-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/travel_agency-14.svg %%DATADIR%%/data/svg/osmcarto/svg/shop/variety_store-14.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/alpinehut.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bicycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_station.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/bus_stop.12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/camping.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/car_share.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/caravan_park.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/charging_station.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/elevator-12.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/embassy.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/ford.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/fuel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/guest_house.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hostel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/hotel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/lighthouse.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motel.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/motorcycle_parking.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/parking.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/railway_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_bicycle.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_car.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/rental_ski.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/shelter.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/subway_entrance.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/taxi.16.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/traffic_light_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/wilderness_hut.svg %%DATADIR%%/data/svg/osmcarto/svg/transportation/zebra_crossing.svg %%DATADIR%%/data/svg/sun.png %%DATADIR%%/data/svg/sunshine.png %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/track_turtle.svg %%DATADIR%%/data/svg/wikipedia.svg %%DATADIR%%/data/svg/wikipedia_shadow.svg %%DATADIR%%/data/svg/worldmap.svg %%DATADIR%%/data/tempcolors.leg %%DATADIR%%/data/weather/bbc-stations.xml %%DATADIR%%/data/weather/weather-clear-night.png %%DATADIR%%/data/weather/weather-clear.png %%DATADIR%%/data/weather/weather-clouds-night.png %%DATADIR%%/data/weather/weather-clouds.png %%DATADIR%%/data/weather/weather-few-clouds-night.png %%DATADIR%%/data/weather/weather-few-clouds.png %%DATADIR%%/data/weather/weather-hail.png %%DATADIR%%/data/weather/weather-many-clouds.png %%DATADIR%%/data/weather/weather-mist.png %%DATADIR%%/data/weather/weather-none-available.png %%DATADIR%%/data/weather/weather-showers-day.png %%DATADIR%%/data/weather/weather-showers-night.png %%DATADIR%%/data/weather/weather-showers-scattered-day.png %%DATADIR%%/data/weather/weather-showers-scattered-night.png %%DATADIR%%/data/weather/weather-showers-scattered.png %%DATADIR%%/data/weather/weather-showers.png %%DATADIR%%/data/weather/weather-snow-rain.png %%DATADIR%%/data/weather/weather-snow-scattered-day.png %%DATADIR%%/data/weather/weather-snow-scattered-night.png %%DATADIR%%/data/weather/weather-snow-scattered.png %%DATADIR%%/data/weather/weather-snow.png %%DATADIR%%/data/weather/weather-storm-day.png %%DATADIR%%/data/weather/weather-storm-night.png %%DATADIR%%/data/weather/weather-storm.png %%DATADIR%%/data/weather/wind-arrows.svgz share/metainfo/org.kde.marble.appdata.xml share/metainfo/org.kde.plasma.worldclock.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 15d529dbad56..c305b7e2c1ec 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672019 -SHA256 (KDE/release-service/22.04.2/audiocd-kio-22.04.2.tar.xz) = 4d57f8eb5a79d407c49e9364ecad6022fa664a3ab9ac56073b4433c518988874 -SIZE (KDE/release-service/22.04.2/audiocd-kio-22.04.2.tar.xz) = 527320 +TIMESTAMP = 1657013353 +SHA256 (KDE/release-service/22.04.3/audiocd-kio-22.04.3.tar.xz) = 14a37862e2f7d8492ee3aaaa57b514fd7fd84e58c94dc244e61c2e17a05ed734 +SIZE (KDE/release-service/22.04.3/audiocd-kio-22.04.3.tar.xz) = 527804 diff --git a/audio/audiocd-kio/pkg-plist b/audio/audiocd-kio/pkg-plist index d261e0ca2c9e..9076ebf65b84 100644 --- a/audio/audiocd-kio/pkg-plist +++ b/audio/audiocd-kio/pkg-plist @@ -1,327 +1,329 @@ include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/az/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/az/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/az/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/az/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/az/LC_MESSAGES/kcmaudiocd.mo share/locale/az/LC_MESSAGES/kio_audiocd.mo share/locale/be/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/be/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/be/LC_MESSAGES/kcmaudiocd.mo share/locale/be/LC_MESSAGES/kio_audiocd.mo +share/locale/bg/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/bg/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bs/LC_MESSAGES/kcmaudiocd.mo share/locale/bs/LC_MESSAGES/kio_audiocd.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca/LC_MESSAGES/kcmaudiocd.mo share/locale/ca/LC_MESSAGES/kio_audiocd.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ca@valencia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ca@valencia/LC_MESSAGES/kcmaudiocd.mo share/locale/ca@valencia/LC_MESSAGES/kio_audiocd.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/cs/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/cs/LC_MESSAGES/kcmaudiocd.mo share/locale/cs/LC_MESSAGES/kio_audiocd.mo share/locale/da/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/da/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/da/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/da/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/da/LC_MESSAGES/kcmaudiocd.mo share/locale/da/LC_MESSAGES/kio_audiocd.mo share/locale/de/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/de/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/de/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/de/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/de/LC_MESSAGES/kcmaudiocd.mo share/locale/de/LC_MESSAGES/kio_audiocd.mo share/locale/el/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/el/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/el/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/el/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/el/LC_MESSAGES/kcmaudiocd.mo share/locale/el/LC_MESSAGES/kio_audiocd.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/en_GB/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/en_GB/LC_MESSAGES/kcmaudiocd.mo share/locale/en_GB/LC_MESSAGES/kio_audiocd.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eo/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eo/LC_MESSAGES/kcmaudiocd.mo share/locale/eo/LC_MESSAGES/kio_audiocd.mo share/locale/es/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/es/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/es/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/es/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/es/LC_MESSAGES/kcmaudiocd.mo share/locale/es/LC_MESSAGES/kio_audiocd.mo share/locale/et/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/et/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/et/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/et/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/et/LC_MESSAGES/kcmaudiocd.mo share/locale/et/LC_MESSAGES/kio_audiocd.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/eu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/eu/LC_MESSAGES/kcmaudiocd.mo share/locale/eu/LC_MESSAGES/kio_audiocd.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fa/LC_MESSAGES/kcmaudiocd.mo share/locale/fa/LC_MESSAGES/kio_audiocd.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fi/LC_MESSAGES/kcmaudiocd.mo share/locale/fi/LC_MESSAGES/kio_audiocd.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/fr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/fr/LC_MESSAGES/kcmaudiocd.mo share/locale/fr/LC_MESSAGES/kio_audiocd.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ga/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ga/LC_MESSAGES/kcmaudiocd.mo share/locale/ga/LC_MESSAGES/kio_audiocd.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/gl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/gl/LC_MESSAGES/kcmaudiocd.mo share/locale/gl/LC_MESSAGES/kio_audiocd.mo share/locale/he/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/he/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/he/LC_MESSAGES/kcmaudiocd.mo share/locale/he/LC_MESSAGES/kio_audiocd.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hi/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hi/LC_MESSAGES/kcmaudiocd.mo share/locale/hi/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/is/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/is/LC_MESSAGES/kcmaudiocd.mo share/locale/is/LC_MESSAGES/kio_audiocd.mo share/locale/it/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/it/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/it/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/it/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/it/LC_MESSAGES/kcmaudiocd.mo share/locale/it/LC_MESSAGES/kio_audiocd.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ja/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ja/LC_MESSAGES/kcmaudiocd.mo share/locale/ja/LC_MESSAGES/kio_audiocd.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/kk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/kk/LC_MESSAGES/kcmaudiocd.mo share/locale/kk/LC_MESSAGES/kio_audiocd.mo share/locale/km/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/km/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/km/LC_MESSAGES/kcmaudiocd.mo share/locale/km/LC_MESSAGES/kio_audiocd.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ko/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ko/LC_MESSAGES/kcmaudiocd.mo share/locale/ko/LC_MESSAGES/kio_audiocd.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/lt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lt/LC_MESSAGES/kcmaudiocd.mo share/locale/lt/LC_MESSAGES/kio_audiocd.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/lv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/lv/LC_MESSAGES/kcmaudiocd.mo share/locale/lv/LC_MESSAGES/kio_audiocd.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/mr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/mr/LC_MESSAGES/kcmaudiocd.mo share/locale/mr/LC_MESSAGES/kio_audiocd.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nb/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nb/LC_MESSAGES/kcmaudiocd.mo share/locale/nb/LC_MESSAGES/kio_audiocd.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nds/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nds/LC_MESSAGES/kcmaudiocd.mo share/locale/nds/LC_MESSAGES/kio_audiocd.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nl/LC_MESSAGES/kcmaudiocd.mo share/locale/nl/LC_MESSAGES/kio_audiocd.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/nn/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/nn/LC_MESSAGES/kcmaudiocd.mo share/locale/nn/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/se/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/se/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/se/LC_MESSAGES/kcmaudiocd.mo share/locale/se/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sq/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sq/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sq/LC_MESSAGES/kcmaudiocd.mo share/locale/sq/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sv/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sv/LC_MESSAGES/kcmaudiocd.mo share/locale/sv/LC_MESSAGES/kio_audiocd.mo share/locale/ta/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ta/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ta/LC_MESSAGES/kcmaudiocd.mo share/locale/ta/LC_MESSAGES/kio_audiocd.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tg/LC_MESSAGES/kcmaudiocd.mo share/locale/tg/LC_MESSAGES/kio_audiocd.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/tr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/tr/LC_MESSAGES/kcmaudiocd.mo share/locale/tr/LC_MESSAGES/kio_audiocd.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ug/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ug/LC_MESSAGES/kcmaudiocd.mo share/locale/ug/LC_MESSAGES/kio_audiocd.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/uk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/uk/LC_MESSAGES/kcmaudiocd.mo share/locale/uk/LC_MESSAGES/kio_audiocd.mo share/locale/vi/LC_MESSAGES/kcmaudiocd.mo share/locale/vi/LC_MESSAGES/kio_audiocd.mo share/locale/wa/LC_MESSAGES/kcmaudiocd.mo share/locale/wa/LC_MESSAGES/kio_audiocd.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_CN/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_CN/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_CN/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/qlogging-categories5/kio_audiocd.categories share/qlogging-categories5/kio_audiocd.renamecategories share/solid/actions/solid_audiocd.desktop diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index b829f3283f0f..ab1336b98e17 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672015 -SHA256 (KDE/release-service/22.04.2/elisa-22.04.2.tar.xz) = dbc44da077022b2c2d1ea8b9f000a4c5b56a3d2b8e9f0227d64fa5d153850036 -SIZE (KDE/release-service/22.04.2/elisa-22.04.2.tar.xz) = 1747560 +TIMESTAMP = 1657013350 +SHA256 (KDE/release-service/22.04.3/elisa-22.04.3.tar.xz) = 68c64892712446eb4a75b903d8903514f4b2b30d1d1d3a1b34ceececbd3a50ec +SIZE (KDE/release-service/22.04.3/elisa-22.04.3.tar.xz) = 1747400 diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 9aeb7f3d4720..6e73c4086073 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672020 -SHA256 (KDE/release-service/22.04.2/juk-22.04.2.tar.xz) = 6e4383c17e8e3210d24164ab7ec38d2309ae480acba57f64e7e90bd91ec28286 -SIZE (KDE/release-service/22.04.2/juk-22.04.2.tar.xz) = 2015784 +TIMESTAMP = 1657013354 +SHA256 (KDE/release-service/22.04.3/juk-22.04.3.tar.xz) = f0b0414f0e3aa1895dc284d1e2e1e3974da47f5b9ebe97061f20847c425ff68a +SIZE (KDE/release-service/22.04.3/juk-22.04.3.tar.xz) = 2014980 diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index f76ffd56701f..ea741d599eac 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672018 -SHA256 (KDE/release-service/22.04.2/kmix-22.04.2.tar.xz) = 8cb9cb0a93c3307efba01f12038517896c782a92d1a3f4e33ad28f93234de3cc -SIZE (KDE/release-service/22.04.2/kmix-22.04.2.tar.xz) = 1163816 +TIMESTAMP = 1657013352 +SHA256 (KDE/release-service/22.04.3/kmix-22.04.3.tar.xz) = 0863fe31e3b150c3a4fe5ffc26b3f9a4f2c17509274e52f81de6585b1335897d +SIZE (KDE/release-service/22.04.3/kmix-22.04.3.tar.xz) = 1164232 diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 66bb37158400..2046b49544f9 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672014 -SHA256 (KDE/release-service/22.04.2/kwave-22.04.2.tar.xz) = 154c41fb11dad2cb09390c7d203d54ceddfacfcfbdcc972744e3b37e3ba8d74c -SIZE (KDE/release-service/22.04.2/kwave-22.04.2.tar.xz) = 6957784 +TIMESTAMP = 1657013349 +SHA256 (KDE/release-service/22.04.3/kwave-22.04.3.tar.xz) = 75c20ca076b7bdb5abd1a1d2b9965f1f78d6365662579f815296b9490999cc48 +SIZE (KDE/release-service/22.04.3/kwave-22.04.3.tar.xz) = 6956708 diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index aecf29c71566..2530377a5aae 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672016 -SHA256 (KDE/release-service/22.04.2/libkcddb-22.04.2.tar.xz) = d88151d2cc5d1899f99d4237dc9e6967009bda7f09bd8e4a41b8c0e66bb7c93d -SIZE (KDE/release-service/22.04.2/libkcddb-22.04.2.tar.xz) = 436432 +TIMESTAMP = 1657013351 +SHA256 (KDE/release-service/22.04.3/libkcddb-22.04.3.tar.xz) = c80b57a73bc17aa71fc559545e173ae9b0e2dd925bbaadeaf37629dc21ca45cb +SIZE (KDE/release-service/22.04.3/libkcddb-22.04.3.tar.xz) = 436152 diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index db6f4c32ca2c..1aae1bcbc9b5 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672017 -SHA256 (KDE/release-service/22.04.2/libkcompactdisc-22.04.2.tar.xz) = b5fc336c448818579ae8503df383f037d0129d1fcbaee4254f6d2807a2bf7e01 -SIZE (KDE/release-service/22.04.2/libkcompactdisc-22.04.2.tar.xz) = 97284 +TIMESTAMP = 1657013351 +SHA256 (KDE/release-service/22.04.3/libkcompactdisc-22.04.3.tar.xz) = 2c129b54ebe28f1d21b1483b2bb011a101f5fa957b1dc36314447772fa6a693b +SIZE (KDE/release-service/22.04.3/libkcompactdisc-22.04.3.tar.xz) = 97240 diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index 01c2d6835122..ffb90e0b683b 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672022 -SHA256 (KDE/release-service/22.04.2/akonadi-22.04.2.tar.xz) = a38100943cef2cd69bb509e28b96a614bbc3d2f4394a5f4d01916db77544cd64 -SIZE (KDE/release-service/22.04.2/akonadi-22.04.2.tar.xz) = 1613248 +TIMESTAMP = 1657013356 +SHA256 (KDE/release-service/22.04.3/akonadi-22.04.3.tar.xz) = 7e0221807ed291562ec38262907ecc338b19acfcbba9093db9007825a83c473c +SIZE (KDE/release-service/22.04.3/akonadi-22.04.3.tar.xz) = 1626632 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index c4a23c1b36a3..7035f44ab4b1 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,472 +1,476 @@ bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/apparmor.d/mariadbd_akonadi etc/apparmor.d/mysqld_akonadi etc/apparmor.d/postgresql_akonadi etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf include/KF5/Akonadi/akonadi/private/akonadiprivate_export.h include/KF5/Akonadi/akonadi/private/capabilities_p.h include/KF5/Akonadi/akonadi/private/compressionstream_p.h include/KF5/Akonadi/akonadi/private/dbus_p.h include/KF5/Akonadi/akonadi/private/externalpartstorage_p.h include/KF5/Akonadi/akonadi/private/imapparser_p.h include/KF5/Akonadi/akonadi/private/imapset_p.h include/KF5/Akonadi/akonadi/private/instance_p.h include/KF5/Akonadi/akonadi/private/protocol_exception_p.h include/KF5/Akonadi/akonadi/private/protocol_gen.h include/KF5/Akonadi/akonadi/private/protocol_p.h include/KF5/Akonadi/akonadi/private/scope_p.h include/KF5/Akonadi/akonadi/private/standarddirs_p.h include/KF5/Akonadi/akonadi/private/tristate_p.h include/KF5/AkonadiAgentBase/Akonadi/AccountsIntegration include/KF5/AkonadiAgentBase/Akonadi/AgentBase include/KF5/AkonadiAgentBase/Akonadi/AgentSearchInterface include/KF5/AkonadiAgentBase/Akonadi/PreprocessorBase include/KF5/AkonadiAgentBase/Akonadi/ResourceBase include/KF5/AkonadiAgentBase/Akonadi/ResourceSettings include/KF5/AkonadiAgentBase/Akonadi/TransportResourceBase include/KF5/AkonadiAgentBase/akonadi/accountsintegration.h include/KF5/AkonadiAgentBase/akonadi/agentbase.h include/KF5/AkonadiAgentBase/akonadi/agentsearchinterface.h include/KF5/AkonadiAgentBase/akonadi/akonadiagentbase_export.h include/KF5/AkonadiAgentBase/akonadi/preprocessorbase.h include/KF5/AkonadiAgentBase/akonadi/resourcebase.h include/KF5/AkonadiAgentBase/akonadi/resourcebasesettings.h include/KF5/AkonadiAgentBase/akonadi/resourcesettings.h include/KF5/AkonadiAgentBase/akonadi/transportresourcebase.h include/KF5/AkonadiCore/Akonadi/AbstractDifferencesReporter include/KF5/AkonadiCore/Akonadi/AgentConfigurationBase include/KF5/AkonadiCore/Akonadi/AgentConfigurationFactoryBase include/KF5/AkonadiCore/Akonadi/AgentFilterProxyModel include/KF5/AkonadiCore/Akonadi/AgentInstance include/KF5/AkonadiCore/Akonadi/AgentInstanceCreateJob include/KF5/AkonadiCore/Akonadi/AgentInstanceModel include/KF5/AkonadiCore/Akonadi/AgentManager include/KF5/AkonadiCore/Akonadi/AgentType include/KF5/AkonadiCore/Akonadi/AgentTypeModel include/KF5/AkonadiCore/Akonadi/Attribute include/KF5/AkonadiCore/Akonadi/AttributeFactory include/KF5/AkonadiCore/Akonadi/CachePolicy include/KF5/AkonadiCore/Akonadi/ChangeNotification include/KF5/AkonadiCore/Akonadi/ChangeRecorder include/KF5/AkonadiCore/Akonadi/Collection include/KF5/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob include/KF5/AkonadiCore/Akonadi/CollectionColorAttribute include/KF5/AkonadiCore/Akonadi/CollectionCopyJob include/KF5/AkonadiCore/Akonadi/CollectionCreateJob include/KF5/AkonadiCore/Akonadi/CollectionDeleteJob include/KF5/AkonadiCore/Akonadi/CollectionFetchJob include/KF5/AkonadiCore/Akonadi/CollectionFetchScope include/KF5/AkonadiCore/Akonadi/CollectionFilterProxyModel include/KF5/AkonadiCore/Akonadi/CollectionIdentificationAttribute include/KF5/AkonadiCore/Akonadi/CollectionModifyJob include/KF5/AkonadiCore/Akonadi/CollectionMoveJob include/KF5/AkonadiCore/Akonadi/CollectionPathResolver include/KF5/AkonadiCore/Akonadi/CollectionQuotaAttribute include/KF5/AkonadiCore/Akonadi/CollectionStatistics include/KF5/AkonadiCore/Akonadi/CollectionStatisticsJob include/KF5/AkonadiCore/Akonadi/CollectionUtils include/KF5/AkonadiCore/Akonadi/Control include/KF5/AkonadiCore/Akonadi/DifferencesAlgorithmInterface include/KF5/AkonadiCore/Akonadi/EntityAnnotationsAttribute include/KF5/AkonadiCore/Akonadi/EntityDeletedAttribute include/KF5/AkonadiCore/Akonadi/EntityDisplayAttribute include/KF5/AkonadiCore/Akonadi/EntityHiddenAttribute include/KF5/AkonadiCore/Akonadi/EntityMimeTypeFilterModel include/KF5/AkonadiCore/Akonadi/EntityOrderProxyModel include/KF5/AkonadiCore/Akonadi/EntityRightsFilterModel include/KF5/AkonadiCore/Akonadi/EntityTreeModel include/KF5/AkonadiCore/Akonadi/ExceptionBase include/KF5/AkonadiCore/Akonadi/FavoriteCollectionAttribute include/KF5/AkonadiCore/Akonadi/FavoriteCollectionsModel include/KF5/AkonadiCore/Akonadi/GidExtractorInterface include/KF5/AkonadiCore/Akonadi/IndexPolicyAttribute include/KF5/AkonadiCore/Akonadi/Item include/KF5/AkonadiCore/Akonadi/ItemCopyJob include/KF5/AkonadiCore/Akonadi/ItemCreateJob include/KF5/AkonadiCore/Akonadi/ItemDeleteJob include/KF5/AkonadiCore/Akonadi/ItemFetchJob include/KF5/AkonadiCore/Akonadi/ItemFetchScope include/KF5/AkonadiCore/Akonadi/ItemModifyJob include/KF5/AkonadiCore/Akonadi/ItemMonitor include/KF5/AkonadiCore/Akonadi/ItemMoveJob include/KF5/AkonadiCore/Akonadi/ItemSearchJob include/KF5/AkonadiCore/Akonadi/ItemSerializerPlugin include/KF5/AkonadiCore/Akonadi/ItemSync include/KF5/AkonadiCore/Akonadi/Job include/KF5/AkonadiCore/Akonadi/LinkJob include/KF5/AkonadiCore/Akonadi/MimeTypeChecker include/KF5/AkonadiCore/Akonadi/Monitor include/KF5/AkonadiCore/Akonadi/NotificationSubscriber include/KF5/AkonadiCore/Akonadi/PartFetcher include/KF5/AkonadiCore/Akonadi/PersistentSearchAttribute include/KF5/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel include/KF5/AkonadiCore/Akonadi/RecursiveItemFetchJob include/KF5/AkonadiCore/Akonadi/Relation include/KF5/AkonadiCore/Akonadi/RelationCreateJob include/KF5/AkonadiCore/Akonadi/RelationDeleteJob include/KF5/AkonadiCore/Akonadi/RelationFetchJob include/KF5/AkonadiCore/Akonadi/ResourceSynchronizationJob include/KF5/AkonadiCore/Akonadi/SearchCreateJob include/KF5/AkonadiCore/Akonadi/SearchQuery include/KF5/AkonadiCore/Akonadi/SelectionProxyModel include/KF5/AkonadiCore/Akonadi/ServerManager include/KF5/AkonadiCore/Akonadi/Session include/KF5/AkonadiCore/Akonadi/SpecialCollectionAttribute include/KF5/AkonadiCore/Akonadi/SpecialCollections include/KF5/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob include/KF5/AkonadiCore/Akonadi/SpecialCollectionsRequestJob include/KF5/AkonadiCore/Akonadi/StatisticsProxyModel include/KF5/AkonadiCore/Akonadi/Supertrait include/KF5/AkonadiCore/Akonadi/Tag include/KF5/AkonadiCore/Akonadi/TagAttribute include/KF5/AkonadiCore/Akonadi/TagCreateJob include/KF5/AkonadiCore/Akonadi/TagDeleteJob include/KF5/AkonadiCore/Akonadi/TagFetchJob include/KF5/AkonadiCore/Akonadi/TagFetchScope include/KF5/AkonadiCore/Akonadi/TagModel include/KF5/AkonadiCore/Akonadi/TagModifyJob include/KF5/AkonadiCore/Akonadi/TransactionJobs include/KF5/AkonadiCore/Akonadi/TransactionSequence include/KF5/AkonadiCore/Akonadi/TrashFilterProxyModel include/KF5/AkonadiCore/Akonadi/TrashJob include/KF5/AkonadiCore/Akonadi/TrashRestoreJob include/KF5/AkonadiCore/Akonadi/TrashSettings include/KF5/AkonadiCore/Akonadi/UnlinkJob include/KF5/AkonadiCore/Akonadi/VectorHelper include/KF5/AkonadiCore/akonadi/abstractdifferencesreporter.h include/KF5/AkonadiCore/akonadi/abstractsearchplugin.h include/KF5/AkonadiCore/akonadi/agentconfigurationbase.h include/KF5/AkonadiCore/akonadi/agentconfigurationfactorybase.h include/KF5/AkonadiCore/akonadi/agentfilterproxymodel.h include/KF5/AkonadiCore/akonadi/agentinstance.h include/KF5/AkonadiCore/akonadi/agentinstancecreatejob.h include/KF5/AkonadiCore/akonadi/agentinstancemodel.h include/KF5/AkonadiCore/akonadi/agentmanager.h include/KF5/AkonadiCore/akonadi/agenttype.h include/KF5/AkonadiCore/akonadi/agenttypemodel.h include/KF5/AkonadiCore/akonadi/akonadicore_export.h include/KF5/AkonadiCore/akonadi/attribute.h include/KF5/AkonadiCore/akonadi/attributefactory.h include/KF5/AkonadiCore/akonadi/cachepolicy.h include/KF5/AkonadiCore/akonadi/changenotification.h include/KF5/AkonadiCore/akonadi/changerecorder.h include/KF5/AkonadiCore/akonadi/collection.h include/KF5/AkonadiCore/akonadi/collectionattributessynchronizationjob.h include/KF5/AkonadiCore/akonadi/collectioncolorattribute.h include/KF5/AkonadiCore/akonadi/collectioncopyjob.h include/KF5/AkonadiCore/akonadi/collectioncreatejob.h include/KF5/AkonadiCore/akonadi/collectiondeletejob.h include/KF5/AkonadiCore/akonadi/collectionfetchjob.h include/KF5/AkonadiCore/akonadi/collectionfetchscope.h include/KF5/AkonadiCore/akonadi/collectionfilterproxymodel.h include/KF5/AkonadiCore/akonadi/collectionidentificationattribute.h include/KF5/AkonadiCore/akonadi/collectionmodifyjob.h include/KF5/AkonadiCore/akonadi/collectionmovejob.h include/KF5/AkonadiCore/akonadi/collectionpathresolver.h include/KF5/AkonadiCore/akonadi/collectionquotaattribute.h include/KF5/AkonadiCore/akonadi/collectionstatistics.h include/KF5/AkonadiCore/akonadi/collectionstatisticsjob.h include/KF5/AkonadiCore/akonadi/collectionutils.h include/KF5/AkonadiCore/akonadi/config-akonadi.h include/KF5/AkonadiCore/akonadi/control.h include/KF5/AkonadiCore/akonadi/differencesalgorithminterface.h include/KF5/AkonadiCore/akonadi/entityannotationsattribute.h include/KF5/AkonadiCore/akonadi/entitydeletedattribute.h include/KF5/AkonadiCore/akonadi/entitydisplayattribute.h include/KF5/AkonadiCore/akonadi/entityhiddenattribute.h include/KF5/AkonadiCore/akonadi/entitymimetypefiltermodel.h include/KF5/AkonadiCore/akonadi/entityorderproxymodel.h include/KF5/AkonadiCore/akonadi/entityrightsfiltermodel.h include/KF5/AkonadiCore/akonadi/entitytreemodel.h include/KF5/AkonadiCore/akonadi/exceptionbase.h include/KF5/AkonadiCore/akonadi/favoritecollectionattribute.h include/KF5/AkonadiCore/akonadi/favoritecollectionsmodel.h include/KF5/AkonadiCore/akonadi/gidextractorinterface.h include/KF5/AkonadiCore/akonadi/indexpolicyattribute.h include/KF5/AkonadiCore/akonadi/item.h include/KF5/AkonadiCore/akonadi/itemcopyjob.h include/KF5/AkonadiCore/akonadi/itemcreatejob.h include/KF5/AkonadiCore/akonadi/itemdeletejob.h include/KF5/AkonadiCore/akonadi/itemfetchjob.h include/KF5/AkonadiCore/akonadi/itemfetchscope.h include/KF5/AkonadiCore/akonadi/itemmodifyjob.h include/KF5/AkonadiCore/akonadi/itemmonitor.h include/KF5/AkonadiCore/akonadi/itemmovejob.h include/KF5/AkonadiCore/akonadi/itempayloadinternals_p.h include/KF5/AkonadiCore/akonadi/itemsearchjob.h include/KF5/AkonadiCore/akonadi/itemserializerplugin.h include/KF5/AkonadiCore/akonadi/itemsync.h include/KF5/AkonadiCore/akonadi/job.h include/KF5/AkonadiCore/akonadi/linkjob.h include/KF5/AkonadiCore/akonadi/mimetypechecker.h include/KF5/AkonadiCore/akonadi/monitor.h include/KF5/AkonadiCore/akonadi/notificationsubscriber.h include/KF5/AkonadiCore/akonadi/partfetcher.h include/KF5/AkonadiCore/akonadi/persistentsearchattribute.h include/KF5/AkonadiCore/akonadi/qtest_akonadi.h include/KF5/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h include/KF5/AkonadiCore/akonadi/recursiveitemfetchjob.h include/KF5/AkonadiCore/akonadi/relation.h include/KF5/AkonadiCore/akonadi/relationcreatejob.h include/KF5/AkonadiCore/akonadi/relationdeletejob.h include/KF5/AkonadiCore/akonadi/relationfetchjob.h include/KF5/AkonadiCore/akonadi/resourcesynchronizationjob.h include/KF5/AkonadiCore/akonadi/searchcreatejob.h include/KF5/AkonadiCore/akonadi/searchquery.h include/KF5/AkonadiCore/akonadi/selectionproxymodel.h include/KF5/AkonadiCore/akonadi/servermanager.h include/KF5/AkonadiCore/akonadi/session.h include/KF5/AkonadiCore/akonadi/specialcollectionattribute.h include/KF5/AkonadiCore/akonadi/specialcollections.h include/KF5/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h include/KF5/AkonadiCore/akonadi/specialcollectionsrequestjob.h include/KF5/AkonadiCore/akonadi/statisticsproxymodel.h include/KF5/AkonadiCore/akonadi/supertrait.h include/KF5/AkonadiCore/akonadi/tag.h include/KF5/AkonadiCore/akonadi/tagattribute.h include/KF5/AkonadiCore/akonadi/tagcreatejob.h include/KF5/AkonadiCore/akonadi/tagdeletejob.h include/KF5/AkonadiCore/akonadi/tagfetchjob.h include/KF5/AkonadiCore/akonadi/tagfetchscope.h include/KF5/AkonadiCore/akonadi/tagmodel.h include/KF5/AkonadiCore/akonadi/tagmodifyjob.h include/KF5/AkonadiCore/akonadi/transactionjobs.h include/KF5/AkonadiCore/akonadi/transactionsequence.h include/KF5/AkonadiCore/akonadi/trashfilterproxymodel.h include/KF5/AkonadiCore/akonadi/trashjob.h include/KF5/AkonadiCore/akonadi/trashrestorejob.h include/KF5/AkonadiCore/akonadi/trashsettings.h include/KF5/AkonadiCore/akonadi/unlinkjob.h include/KF5/AkonadiCore/akonadi/vectorhelper.h include/KF5/AkonadiWidgets/Akonadi/AgentActionManager include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationDialog include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationWidget include/KF5/AkonadiWidgets/Akonadi/AgentInstanceWidget include/KF5/AkonadiWidgets/Akonadi/AgentTypeDialog include/KF5/AkonadiWidgets/Akonadi/AgentTypeWidget include/KF5/AkonadiWidgets/Akonadi/CollectionComboBox include/KF5/AkonadiWidgets/Akonadi/CollectionDialog include/KF5/AkonadiWidgets/Akonadi/CollectionMaintenancePage include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesDialog include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesPage include/KF5/AkonadiWidgets/Akonadi/CollectionRequester include/KF5/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate include/KF5/AkonadiWidgets/Akonadi/ControlGui include/KF5/AkonadiWidgets/Akonadi/ETMViewStateSaver include/KF5/AkonadiWidgets/Akonadi/EntityListView include/KF5/AkonadiWidgets/Akonadi/EntityTreeView include/KF5/AkonadiWidgets/Akonadi/ManageAccountWidget include/KF5/AkonadiWidgets/Akonadi/StandardActionManager include/KF5/AkonadiWidgets/Akonadi/SubscriptionDialog include/KF5/AkonadiWidgets/Akonadi/TagEditWidget include/KF5/AkonadiWidgets/Akonadi/TagManagementDialog include/KF5/AkonadiWidgets/Akonadi/TagSelectWidget include/KF5/AkonadiWidgets/Akonadi/TagSelectionComboBox include/KF5/AkonadiWidgets/Akonadi/TagSelectionDialog include/KF5/AkonadiWidgets/Akonadi/TagWidget include/KF5/AkonadiWidgets/akonadi/agentactionmanager.h include/KF5/AkonadiWidgets/akonadi/agentconfigurationdialog.h include/KF5/AkonadiWidgets/akonadi/agentconfigurationwidget.h include/KF5/AkonadiWidgets/akonadi/agentinstancewidget.h include/KF5/AkonadiWidgets/akonadi/agenttypedialog.h include/KF5/AkonadiWidgets/akonadi/agenttypewidget.h include/KF5/AkonadiWidgets/akonadi/akonadiwidgets_export.h include/KF5/AkonadiWidgets/akonadi/collectioncombobox.h include/KF5/AkonadiWidgets/akonadi/collectiondialog.h include/KF5/AkonadiWidgets/akonadi/collectionmaintenancepage.h include/KF5/AkonadiWidgets/akonadi/collectionpropertiesdialog.h include/KF5/AkonadiWidgets/akonadi/collectionpropertiespage.h include/KF5/AkonadiWidgets/akonadi/collectionrequester.h include/KF5/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h include/KF5/AkonadiWidgets/akonadi/controlgui.h include/KF5/AkonadiWidgets/akonadi/entitylistview.h include/KF5/AkonadiWidgets/akonadi/entitytreeview.h include/KF5/AkonadiWidgets/akonadi/etmviewstatesaver.h include/KF5/AkonadiWidgets/akonadi/manageaccountwidget.h include/KF5/AkonadiWidgets/akonadi/standardactionmanager.h include/KF5/AkonadiWidgets/akonadi/subscriptiondialog.h include/KF5/AkonadiWidgets/akonadi/tageditwidget.h include/KF5/AkonadiWidgets/akonadi/tagmanagementdialog.h include/KF5/AkonadiWidgets/akonadi/tagselectioncombobox.h include/KF5/AkonadiWidgets/akonadi/tagselectiondialog.h include/KF5/AkonadiWidgets/akonadi/tagselectwidget.h include/KF5/AkonadiWidgets/akonadi/tagwidget.h include/KF5/AkonadiXml/Akonadi/XmlDocument include/KF5/AkonadiXml/Akonadi/XmlReader include/KF5/AkonadiXml/Akonadi/XmlWriteJob include/KF5/AkonadiXml/Akonadi/XmlWriter include/KF5/AkonadiXml/akonadi/akonadi-xml_export.h include/KF5/AkonadiXml/akonadi/xmldocument.h include/KF5/AkonadiXml/akonadi/xmlreader.h include/KF5/AkonadiXml/akonadi/xmlwritejob.h include/KF5/AkonadiXml/akonadi/xmlwriter.h include/KF5/akonadi_version.h lib/cmake/KF5Akonadi/KF5AkonadiConfig.cmake lib/cmake/KF5Akonadi/KF5AkonadiConfigVersion.cmake lib/cmake/KF5Akonadi/KF5AkonadiMacros.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Akonadi/KF5AkonadiTargets.cmake lib/libKF5AkonadiAgentBase.so lib/libKF5AkonadiAgentBase.so.5 lib/libKF5AkonadiAgentBase.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiCore.so lib/libKF5AkonadiCore.so.5 lib/libKF5AkonadiCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiPrivate.so lib/libKF5AkonadiPrivate.so.5 lib/libKF5AkonadiPrivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiWidgets.so lib/libKF5AkonadiWidgets.so.5 lib/libKF5AkonadiWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiXml.so lib/libKF5AkonadiXml.so.5 lib/libKF5AkonadiXml.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiAgentBase.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiCore.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiWidgets.pri %%QT_MKSPECDIR%%/modules/qt_AkonadiXml.pri %%QT_PLUGINDIR%%/akonadi/akonadi_test_searchplugin.so %%QT_PLUGINDIR%%/designer/akonadiwidgets.so %%SQLITE%%%%QT_PLUGINDIR%%/sqldrivers/libqsqlite3.so %%DATADIR%%/agents/knutresource.desktop share/config.kcfg/resourcebase.kcfg share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Control.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Search.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Agent.Status.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.AgentManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.ControlManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.DebugInterface.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationManager.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.NotificationSource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Preprocessor.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Resource.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Server.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.StorageDebugger.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.Tracer.xml share/dbus-1/interfaces/org.freedesktop.Akonadi.TracerNotification.xml share/dbus-1/services/org.freedesktop.Akonadi.Control.service share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/32x32/apps/akonadi.png share/icons/hicolor/48x48/apps/akonadi.png share/icons/hicolor/64x64/apps/akonadi.png share/icons/hicolor/128x128/apps/akonadi.png share/icons/hicolor/256x256/apps/akonadi.png share/icons/hicolor/scalable/apps/akonadi.svgz share/kf5/akonadi/akonadi-xml.xsd share/kf5/akonadi/kcfg2dbus.xsl share/kf5/akonadi_knut_resource/knut-template.xml share/locale/ar/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ar/LC_MESSAGES/libakonadi5.mo share/locale/az/LC_MESSAGES/akonadi_knut_resource.mo share/locale/az/LC_MESSAGES/libakonadi5.mo share/locale/be/LC_MESSAGES/libakonadi5.mo +share/locale/bg/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/bg/LC_MESSAGES/libakonadi5.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi5.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi5.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi5.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi5.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi5.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi5.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi5.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi5.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi5.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi5.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi5.mo share/locale/eu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eu/LC_MESSAGES/libakonadi5.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi5.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi5.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi5.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi5.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi5.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi5.mo +share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/id/LC_MESSAGES/libakonadi5.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi5.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi5.mo share/locale/kk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/kk/LC_MESSAGES/libakonadi5.mo share/locale/km/LC_MESSAGES/akonadi_knut_resource.mo share/locale/km/LC_MESSAGES/libakonadi5.mo share/locale/ko/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ko/LC_MESSAGES/libakonadi5.mo share/locale/lt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lt/LC_MESSAGES/libakonadi5.mo share/locale/lv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/lv/LC_MESSAGES/libakonadi5.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi5.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi5.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi5.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi5.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi5.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi5.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi5.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi5.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi5.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi5.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi5.mo share/locale/se/LC_MESSAGES/libakonadi5.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi5.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi5.mo share/locale/sq/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi5.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi5.mo share/locale/tg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tg/LC_MESSAGES/libakonadi5.mo share/locale/tr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tr/LC_MESSAGES/libakonadi5.mo share/locale/ug/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ug/LC_MESSAGES/libakonadi5.mo share/locale/uk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/uk/LC_MESSAGES/libakonadi5.mo share/locale/zh_CN/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_CN/LC_MESSAGES/libakonadi5.mo share/locale/zh_TW/LC_MESSAGES/akonadi_knut_resource.mo share/locale/zh_TW/LC_MESSAGES/libakonadi5.mo share/mime/packages/akonadi-mime.xml share/qlogging-categories5/akonadi.categories share/qlogging-categories5/akonadi.renamecategories diff --git a/deskutils/akonadi-calendar-tools/distinfo b/deskutils/akonadi-calendar-tools/distinfo index e95ec2e1861d..26f90846c3dc 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672100 -SHA256 (KDE/release-service/22.04.2/akonadi-calendar-tools-22.04.2.tar.xz) = 869dab50c879b088ec42f1e4b7a99aa64ec68069bdfcbfbcfaa0095167069994 -SIZE (KDE/release-service/22.04.2/akonadi-calendar-tools-22.04.2.tar.xz) = 237348 +TIMESTAMP = 1657013434 +SHA256 (KDE/release-service/22.04.3/akonadi-calendar-tools-22.04.3.tar.xz) = 61846af141e416ecfc2daad815e92c30c93b534c3ac05b587f86bba6b2fbc874 +SIZE (KDE/release-service/22.04.3/akonadi-calendar-tools-22.04.3.tar.xz) = 237900 diff --git a/deskutils/akonadi-calendar-tools/pkg-plist b/deskutils/akonadi-calendar-tools/pkg-plist index 87fd99c1c218..ddef7f9c88e0 100644 --- a/deskutils/akonadi-calendar-tools/pkg-plist +++ b/deskutils/akonadi-calendar-tools/pkg-plist @@ -1,104 +1,105 @@ bin/calendarjanitor bin/konsolekalendar share/applications/konsolekalendar.desktop share/icons/hicolor/16x16/apps/konsolekalendar.png share/icons/hicolor/22x22/apps/konsolekalendar.png share/icons/hicolor/32x32/apps/konsolekalendar.png share/icons/hicolor/48x48/apps/konsolekalendar.png share/icons/hicolor/128x128/apps/konsolekalendar.png share/locale/ar/LC_MESSAGES/calendarjanitor.mo share/locale/ar/LC_MESSAGES/konsolekalendar.mo share/locale/az/LC_MESSAGES/calendarjanitor.mo share/locale/az/LC_MESSAGES/konsolekalendar.mo share/locale/be/LC_MESSAGES/konsolekalendar.mo +share/locale/bg/LC_MESSAGES/calendarjanitor.mo share/locale/bg/LC_MESSAGES/konsolekalendar.mo share/locale/bs/LC_MESSAGES/calendarjanitor.mo share/locale/bs/LC_MESSAGES/konsolekalendar.mo share/locale/ca/LC_MESSAGES/calendarjanitor.mo share/locale/ca/LC_MESSAGES/konsolekalendar.mo share/locale/ca@valencia/LC_MESSAGES/calendarjanitor.mo share/locale/ca@valencia/LC_MESSAGES/konsolekalendar.mo share/locale/cs/LC_MESSAGES/calendarjanitor.mo share/locale/cs/LC_MESSAGES/konsolekalendar.mo share/locale/da/LC_MESSAGES/calendarjanitor.mo share/locale/da/LC_MESSAGES/konsolekalendar.mo share/locale/de/LC_MESSAGES/calendarjanitor.mo share/locale/de/LC_MESSAGES/konsolekalendar.mo share/locale/el/LC_MESSAGES/calendarjanitor.mo share/locale/el/LC_MESSAGES/konsolekalendar.mo share/locale/en_GB/LC_MESSAGES/calendarjanitor.mo share/locale/en_GB/LC_MESSAGES/konsolekalendar.mo share/locale/eo/LC_MESSAGES/konsolekalendar.mo share/locale/es/LC_MESSAGES/calendarjanitor.mo share/locale/es/LC_MESSAGES/konsolekalendar.mo share/locale/et/LC_MESSAGES/calendarjanitor.mo share/locale/et/LC_MESSAGES/konsolekalendar.mo share/locale/eu/LC_MESSAGES/calendarjanitor.mo share/locale/eu/LC_MESSAGES/konsolekalendar.mo share/locale/fa/LC_MESSAGES/konsolekalendar.mo share/locale/fi/LC_MESSAGES/calendarjanitor.mo share/locale/fi/LC_MESSAGES/konsolekalendar.mo share/locale/fr/LC_MESSAGES/calendarjanitor.mo share/locale/fr/LC_MESSAGES/konsolekalendar.mo share/locale/ga/LC_MESSAGES/konsolekalendar.mo share/locale/gl/LC_MESSAGES/calendarjanitor.mo share/locale/gl/LC_MESSAGES/konsolekalendar.mo share/locale/he/LC_MESSAGES/konsolekalendar.mo share/locale/hi/LC_MESSAGES/calendarjanitor.mo share/locale/hi/LC_MESSAGES/konsolekalendar.mo share/locale/hr/LC_MESSAGES/konsolekalendar.mo share/locale/hu/LC_MESSAGES/calendarjanitor.mo share/locale/hu/LC_MESSAGES/konsolekalendar.mo share/locale/ia/LC_MESSAGES/calendarjanitor.mo share/locale/ia/LC_MESSAGES/konsolekalendar.mo share/locale/is/LC_MESSAGES/konsolekalendar.mo share/locale/it/LC_MESSAGES/calendarjanitor.mo share/locale/it/LC_MESSAGES/konsolekalendar.mo share/locale/ja/LC_MESSAGES/calendarjanitor.mo share/locale/ja/LC_MESSAGES/konsolekalendar.mo share/locale/kk/LC_MESSAGES/calendarjanitor.mo share/locale/kk/LC_MESSAGES/konsolekalendar.mo share/locale/km/LC_MESSAGES/konsolekalendar.mo share/locale/ko/LC_MESSAGES/calendarjanitor.mo share/locale/ko/LC_MESSAGES/konsolekalendar.mo share/locale/lt/LC_MESSAGES/calendarjanitor.mo share/locale/lt/LC_MESSAGES/konsolekalendar.mo share/locale/mr/LC_MESSAGES/konsolekalendar.mo share/locale/nb/LC_MESSAGES/calendarjanitor.mo share/locale/nb/LC_MESSAGES/konsolekalendar.mo share/locale/nds/LC_MESSAGES/calendarjanitor.mo share/locale/nds/LC_MESSAGES/konsolekalendar.mo share/locale/nl/LC_MESSAGES/calendarjanitor.mo share/locale/nl/LC_MESSAGES/konsolekalendar.mo share/locale/nn/LC_MESSAGES/konsolekalendar.mo share/locale/pa/LC_MESSAGES/konsolekalendar.mo share/locale/pl/LC_MESSAGES/calendarjanitor.mo share/locale/pl/LC_MESSAGES/konsolekalendar.mo share/locale/pt/LC_MESSAGES/calendarjanitor.mo share/locale/pt/LC_MESSAGES/konsolekalendar.mo share/locale/pt_BR/LC_MESSAGES/calendarjanitor.mo share/locale/pt_BR/LC_MESSAGES/konsolekalendar.mo share/locale/ro/LC_MESSAGES/konsolekalendar.mo share/locale/ru/LC_MESSAGES/calendarjanitor.mo share/locale/ru/LC_MESSAGES/konsolekalendar.mo share/locale/se/LC_MESSAGES/konsolekalendar.mo share/locale/sk/LC_MESSAGES/calendarjanitor.mo share/locale/sk/LC_MESSAGES/konsolekalendar.mo share/locale/sl/LC_MESSAGES/calendarjanitor.mo share/locale/sl/LC_MESSAGES/konsolekalendar.mo share/locale/sq/LC_MESSAGES/konsolekalendar.mo share/locale/sv/LC_MESSAGES/calendarjanitor.mo share/locale/sv/LC_MESSAGES/konsolekalendar.mo share/locale/ta/LC_MESSAGES/konsolekalendar.mo share/locale/tg/LC_MESSAGES/konsolekalendar.mo share/locale/tr/LC_MESSAGES/calendarjanitor.mo share/locale/tr/LC_MESSAGES/konsolekalendar.mo share/locale/ug/LC_MESSAGES/konsolekalendar.mo share/locale/uk/LC_MESSAGES/calendarjanitor.mo share/locale/uk/LC_MESSAGES/konsolekalendar.mo share/locale/zh_CN/LC_MESSAGES/calendarjanitor.mo share/locale/zh_CN/LC_MESSAGES/konsolekalendar.mo share/locale/zh_TW/LC_MESSAGES/calendarjanitor.mo share/locale/zh_TW/LC_MESSAGES/konsolekalendar.mo share/qlogging-categories5/console.categories share/qlogging-categories5/console.renamecategories diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index edce60752917..d9f6d7cfe7a6 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672083 -SHA256 (KDE/release-service/22.04.2/akonadi-import-wizard-22.04.2.tar.xz) = 149c0bcffc580f3414daa871ec1f2f2a5b0fe99c3d9d4740feab96d578495376 -SIZE (KDE/release-service/22.04.2/akonadi-import-wizard-22.04.2.tar.xz) = 511096 +TIMESTAMP = 1657013417 +SHA256 (KDE/release-service/22.04.3/akonadi-import-wizard-22.04.3.tar.xz) = edf0acae5eea8ea1fd792026d7a68f7009e8e3e362ef6eea32463bee569ddf33 +SIZE (KDE/release-service/22.04.3/akonadi-import-wizard-22.04.3.tar.xz) = 512536 diff --git a/deskutils/akonadi-import-wizard/pkg-plist b/deskutils/akonadi-import-wizard/pkg-plist index 28dd64bad160..103d96506ef5 100644 --- a/deskutils/akonadi-import-wizard/pkg-plist +++ b/deskutils/akonadi-import-wizard/pkg-plist @@ -1,82 +1,83 @@ bin/akonadiimportwizard include/KF5/KPim/ImportWizard/AbstractAddressBook include/KF5/KPim/ImportWizard/AbstractBase include/KF5/KPim/ImportWizard/AbstractCalendar include/KF5/KPim/ImportWizard/AbstractDisplayInfo include/KF5/KPim/ImportWizard/AbstractImporter include/KF5/KPim/ImportWizard/AbstractSettings include/KF5/KPim/ImportWizard/ImportWizardUtil include/KF5/KPim/importwizard/abstractaddressbook.h include/KF5/KPim/importwizard/abstractbase.h include/KF5/KPim/importwizard/abstractcalendar.h include/KF5/KPim/importwizard/abstractdisplayinfo.h include/KF5/KPim/importwizard/abstractimporter.h include/KF5/KPim/importwizard/abstractsettings.h include/KF5/KPim/importwizard/importwizardutil.h include/KF5/KPim/importwizard/libimportwizard_export.h include/KPim/importwizard_version.h lib/cmake/KPimImportWizard/KPimImportWizardConfig.cmake lib/cmake/KPimImportWizard/KPimImportWizardConfigVersion.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets.cmake lib/libKPimImportWizard.so lib/libKPimImportWizard.so.5 lib/libKPimImportWizard.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/importwizard/balsaimporterplugin.so %%QT_PLUGINDIR%%/importwizard/clawsmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv3importerplugin.so %%QT_PLUGINDIR%%/importwizard/icedoveimporterplugin.so %%QT_PLUGINDIR%%/importwizard/seamonkeyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/sylpheedimporterplugin.so %%QT_PLUGINDIR%%/importwizard/thunderbirdimporterplugin.so %%QT_PLUGINDIR%%/importwizard/trojitaimporterplugin.so share/applications/org.kde.akonadiimportwizard.desktop share/icons/hicolor/64x64/apps/kontact-import-wizard.png share/icons/hicolor/128x128/apps/kontact-import-wizard.png share/icons/hicolor/256x256/apps/kontact-import-wizard.png share/importwizard/pics/step1.png share/locale/ar/LC_MESSAGES/akonadiimportwizard.mo share/locale/az/LC_MESSAGES/akonadiimportwizard.mo +share/locale/bg/LC_MESSAGES/akonadiimportwizard.mo share/locale/bs/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca@valencia/LC_MESSAGES/akonadiimportwizard.mo share/locale/cs/LC_MESSAGES/akonadiimportwizard.mo share/locale/da/LC_MESSAGES/akonadiimportwizard.mo share/locale/de/LC_MESSAGES/akonadiimportwizard.mo share/locale/el/LC_MESSAGES/akonadiimportwizard.mo share/locale/en_GB/LC_MESSAGES/akonadiimportwizard.mo share/locale/es/LC_MESSAGES/akonadiimportwizard.mo share/locale/et/LC_MESSAGES/akonadiimportwizard.mo share/locale/eu/LC_MESSAGES/akonadiimportwizard.mo share/locale/fi/LC_MESSAGES/akonadiimportwizard.mo share/locale/fr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ga/LC_MESSAGES/akonadiimportwizard.mo share/locale/gl/LC_MESSAGES/akonadiimportwizard.mo share/locale/hu/LC_MESSAGES/akonadiimportwizard.mo share/locale/ia/LC_MESSAGES/akonadiimportwizard.mo share/locale/it/LC_MESSAGES/akonadiimportwizard.mo share/locale/ja/LC_MESSAGES/akonadiimportwizard.mo share/locale/kk/LC_MESSAGES/akonadiimportwizard.mo share/locale/km/LC_MESSAGES/akonadiimportwizard.mo share/locale/ko/LC_MESSAGES/akonadiimportwizard.mo share/locale/lt/LC_MESSAGES/akonadiimportwizard.mo share/locale/mr/LC_MESSAGES/akonadiimportwizard.mo share/locale/nb/LC_MESSAGES/akonadiimportwizard.mo share/locale/nds/LC_MESSAGES/akonadiimportwizard.mo share/locale/nl/LC_MESSAGES/akonadiimportwizard.mo share/locale/nn/LC_MESSAGES/akonadiimportwizard.mo share/locale/pl/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt_BR/LC_MESSAGES/akonadiimportwizard.mo share/locale/ro/LC_MESSAGES/akonadiimportwizard.mo share/locale/ru/LC_MESSAGES/akonadiimportwizard.mo share/locale/sk/LC_MESSAGES/akonadiimportwizard.mo share/locale/sl/LC_MESSAGES/akonadiimportwizard.mo share/locale/sv/LC_MESSAGES/akonadiimportwizard.mo share/locale/tr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ug/LC_MESSAGES/akonadiimportwizard.mo share/locale/uk/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_CN/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_TW/LC_MESSAGES/akonadiimportwizard.mo share/qlogging-categories5/importwizard.categories share/qlogging-categories5/importwizard.renamecategories diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 99926551ca77..196567bcc2f2 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672096 -SHA256 (KDE/release-service/22.04.2/akonadiconsole-22.04.2.tar.xz) = 997d22d0fd3cf7307f91aa65dda35fdccf6240880013baeca00678e4300638a6 -SIZE (KDE/release-service/22.04.2/akonadiconsole-22.04.2.tar.xz) = 200860 +TIMESTAMP = 1657013430 +SHA256 (KDE/release-service/22.04.3/akonadiconsole-22.04.3.tar.xz) = 37068eea3fe99614bb1fb7812bb154bccfd93d9e9c76531c77853ea591ef96a2 +SIZE (KDE/release-service/22.04.3/akonadiconsole-22.04.3.tar.xz) = 200920 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 29a15c77ca20..13cf6b08cc27 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672099 -SHA256 (KDE/release-service/22.04.2/akregator-22.04.2.tar.xz) = d9b23b18b9fb6b050e29a16b67069b29ded134f776c63798eb49bb5e5a02378b -SIZE (KDE/release-service/22.04.2/akregator-22.04.2.tar.xz) = 2261376 +TIMESTAMP = 1657013433 +SHA256 (KDE/release-service/22.04.3/akregator-22.04.3.tar.xz) = 2f5551c5ebfce6e43ee22d46891d2f44eecb76af38f3979775f1c470c408c722 +SIZE (KDE/release-service/22.04.3/akregator-22.04.3.tar.xz) = 2262312 diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 8270e097265d..f9f24a4043de 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672105 -SHA256 (KDE/release-service/22.04.2/grantlee-editor-22.04.2.tar.xz) = e05a532842a033852a03c82ff06968c39e6bde6e2c94ce14b309242c9e38263f -SIZE (KDE/release-service/22.04.2/grantlee-editor-22.04.2.tar.xz) = 112448 +TIMESTAMP = 1657013439 +SHA256 (KDE/release-service/22.04.3/grantlee-editor-22.04.3.tar.xz) = 0d5d30e5a1e51217a3e1cf26a04325b24040c583aa6e81247043bf5a133af9b7 +SIZE (KDE/release-service/22.04.3/grantlee-editor-22.04.3.tar.xz) = 112560 diff --git a/deskutils/grantlee-editor/pkg-plist b/deskutils/grantlee-editor/pkg-plist index fda0ddb72e90..821ff5ee4ee8 100644 --- a/deskutils/grantlee-editor/pkg-plist +++ b/deskutils/grantlee-editor/pkg-plist @@ -1,153 +1,156 @@ bin/contactprintthemeeditor bin/contactthemeeditor bin/headerthemeeditor lib/libgrantleethemeeditor.so.5 lib/libgrantleethemeeditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.contactprintthemeeditor.desktop share/applications/org.kde.contactthemeeditor.desktop share/applications/org.kde.headerthemeeditor.desktop share/config.kcfg/grantleethemeeditor.kcfg share/locale/ar/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ar/LC_MESSAGES/contactthemeeditor.mo share/locale/ar/LC_MESSAGES/headerthemeeditor.mo share/locale/ar/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/bg/LC_MESSAGES/contactprintthemeeditor.mo +share/locale/bg/LC_MESSAGES/contactthemeeditor.mo +share/locale/bg/LC_MESSAGES/headerthemeeditor.mo share/locale/bg/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/bs/LC_MESSAGES/contactprintthemeeditor.mo share/locale/bs/LC_MESSAGES/contactthemeeditor.mo share/locale/bs/LC_MESSAGES/headerthemeeditor.mo share/locale/bs/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ca/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ca/LC_MESSAGES/contactthemeeditor.mo share/locale/ca/LC_MESSAGES/headerthemeeditor.mo share/locale/ca/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/contactthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/headerthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/cs/LC_MESSAGES/contactprintthemeeditor.mo share/locale/cs/LC_MESSAGES/contactthemeeditor.mo share/locale/cs/LC_MESSAGES/headerthemeeditor.mo share/locale/cs/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/da/LC_MESSAGES/contactprintthemeeditor.mo share/locale/da/LC_MESSAGES/contactthemeeditor.mo share/locale/da/LC_MESSAGES/headerthemeeditor.mo share/locale/da/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/de/LC_MESSAGES/contactprintthemeeditor.mo share/locale/de/LC_MESSAGES/contactthemeeditor.mo share/locale/de/LC_MESSAGES/headerthemeeditor.mo share/locale/de/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/el/LC_MESSAGES/headerthemeeditor.mo share/locale/en_GB/LC_MESSAGES/contactprintthemeeditor.mo share/locale/en_GB/LC_MESSAGES/contactthemeeditor.mo share/locale/en_GB/LC_MESSAGES/headerthemeeditor.mo share/locale/en_GB/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/es/LC_MESSAGES/contactprintthemeeditor.mo share/locale/es/LC_MESSAGES/contactthemeeditor.mo share/locale/es/LC_MESSAGES/headerthemeeditor.mo share/locale/es/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/et/LC_MESSAGES/contactprintthemeeditor.mo share/locale/et/LC_MESSAGES/contactthemeeditor.mo share/locale/et/LC_MESSAGES/headerthemeeditor.mo share/locale/et/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/fi/LC_MESSAGES/contactprintthemeeditor.mo share/locale/fi/LC_MESSAGES/contactthemeeditor.mo share/locale/fi/LC_MESSAGES/headerthemeeditor.mo share/locale/fi/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/fr/LC_MESSAGES/contactprintthemeeditor.mo share/locale/fr/LC_MESSAGES/contactthemeeditor.mo share/locale/fr/LC_MESSAGES/headerthemeeditor.mo share/locale/fr/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/gl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/gl/LC_MESSAGES/contactthemeeditor.mo share/locale/gl/LC_MESSAGES/headerthemeeditor.mo share/locale/gl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/hu/LC_MESSAGES/contactthemeeditor.mo share/locale/hu/LC_MESSAGES/headerthemeeditor.mo share/locale/hu/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ia/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ia/LC_MESSAGES/contactthemeeditor.mo share/locale/ia/LC_MESSAGES/headerthemeeditor.mo share/locale/ia/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/it/LC_MESSAGES/contactprintthemeeditor.mo share/locale/it/LC_MESSAGES/contactthemeeditor.mo share/locale/it/LC_MESSAGES/headerthemeeditor.mo share/locale/it/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ja/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ja/LC_MESSAGES/contactthemeeditor.mo share/locale/ja/LC_MESSAGES/headerthemeeditor.mo share/locale/ja/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/kk/LC_MESSAGES/contactthemeeditor.mo share/locale/kk/LC_MESSAGES/headerthemeeditor.mo share/locale/kk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ko/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ko/LC_MESSAGES/contactthemeeditor.mo share/locale/ko/LC_MESSAGES/headerthemeeditor.mo share/locale/ko/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/lt/LC_MESSAGES/contactprintthemeeditor.mo share/locale/lt/LC_MESSAGES/contactthemeeditor.mo share/locale/lt/LC_MESSAGES/headerthemeeditor.mo share/locale/lt/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/mr/LC_MESSAGES/headerthemeeditor.mo share/locale/nb/LC_MESSAGES/contactprintthemeeditor.mo share/locale/nb/LC_MESSAGES/contactthemeeditor.mo share/locale/nb/LC_MESSAGES/headerthemeeditor.mo share/locale/nb/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/nds/LC_MESSAGES/contactthemeeditor.mo share/locale/nds/LC_MESSAGES/headerthemeeditor.mo share/locale/nds/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/nl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/nl/LC_MESSAGES/contactthemeeditor.mo share/locale/nl/LC_MESSAGES/headerthemeeditor.mo share/locale/nl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pl/LC_MESSAGES/contactthemeeditor.mo share/locale/pl/LC_MESSAGES/headerthemeeditor.mo share/locale/pl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pt/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pt/LC_MESSAGES/contactthemeeditor.mo share/locale/pt/LC_MESSAGES/headerthemeeditor.mo share/locale/pt/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pt_BR/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/contactthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/headerthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ro/LC_MESSAGES/headerthemeeditor.mo share/locale/ru/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ru/LC_MESSAGES/contactthemeeditor.mo share/locale/ru/LC_MESSAGES/headerthemeeditor.mo share/locale/ru/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sk/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sk/LC_MESSAGES/contactthemeeditor.mo share/locale/sk/LC_MESSAGES/headerthemeeditor.mo share/locale/sk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sl/LC_MESSAGES/contactthemeeditor.mo share/locale/sl/LC_MESSAGES/headerthemeeditor.mo share/locale/sl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sr/LC_MESSAGES/headerthemeeditor.mo share/locale/sr/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sv/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sv/LC_MESSAGES/contactthemeeditor.mo share/locale/sv/LC_MESSAGES/headerthemeeditor.mo share/locale/sv/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/tr/LC_MESSAGES/contactprintthemeeditor.mo share/locale/tr/LC_MESSAGES/contactthemeeditor.mo share/locale/tr/LC_MESSAGES/headerthemeeditor.mo share/locale/tr/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ug/LC_MESSAGES/contactthemeeditor.mo share/locale/ug/LC_MESSAGES/headerthemeeditor.mo share/locale/ug/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/uk/LC_MESSAGES/contactprintthemeeditor.mo share/locale/uk/LC_MESSAGES/contactthemeeditor.mo share/locale/uk/LC_MESSAGES/headerthemeeditor.mo share/locale/uk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/zh_CN/LC_MESSAGES/contactprintthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/contactthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/headerthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/zh_TW/LC_MESSAGES/contactprintthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/contactthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/headerthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/libgrantleethemeeditor.mo share/qlogging-categories5/grantleeditor.categories share/qlogging-categories5/grantleeditor.renamecategories diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 33bfadd052fc..ee491c6a2a24 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672097 -SHA256 (KDE/release-service/22.04.2/grantleetheme-22.04.2.tar.xz) = a45503806b8d3d28d4099ee6f66b73b0340de38ed0d95cc90760ff18a3a346be -SIZE (KDE/release-service/22.04.2/grantleetheme-22.04.2.tar.xz) = 61388 +TIMESTAMP = 1657013431 +SHA256 (KDE/release-service/22.04.3/grantleetheme-22.04.3.tar.xz) = f4485bd95a42d7ad69eb7553c3183c8dfaacb391e147162f6cbadc3d5ed08681 +SIZE (KDE/release-service/22.04.3/grantleetheme-22.04.3.tar.xz) = 61476 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 3f57da81d316..918a9c27e0ac 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672084 -SHA256 (KDE/release-service/22.04.2/itinerary-22.04.2.tar.xz) = 6d8ca2997000a2c15e144a9bbed921c4b71a34f3080d41baa1d9231041d631e5 -SIZE (KDE/release-service/22.04.2/itinerary-22.04.2.tar.xz) = 500044 +TIMESTAMP = 1657013418 +SHA256 (KDE/release-service/22.04.3/itinerary-22.04.3.tar.xz) = 33033a8848994cbeafcfae0200d1fa6da9c2793de993e73370bf168ab42bdab8 +SIZE (KDE/release-service/22.04.3/itinerary-22.04.3.tar.xz) = 500916 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index ab64e70937fb..96009baaeee9 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672098 -SHA256 (KDE/release-service/22.04.2/kaddressbook-22.04.2.tar.xz) = 8097dec14807aac085068c8f02f47bf0179a436e00f64d931e07c3d1157d81cd -SIZE (KDE/release-service/22.04.2/kaddressbook-22.04.2.tar.xz) = 3350128 +TIMESTAMP = 1657013432 +SHA256 (KDE/release-service/22.04.3/kaddressbook-22.04.3.tar.xz) = 6bc78da10e3e8bec3370c69bf8779e80d7c16b8d69c62602cf543f5c99ecc6a1 +SIZE (KDE/release-service/22.04.3/kaddressbook-22.04.3.tar.xz) = 3340136 diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 0f72c042aa49..6c3f452c2619 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672102 -SHA256 (KDE/release-service/22.04.2/kalarm-22.04.2.tar.xz) = ad477626e61c126c575c64b588789496233c6a33870887696ff26ac9d09abd23 -SIZE (KDE/release-service/22.04.2/kalarm-22.04.2.tar.xz) = 2350888 +TIMESTAMP = 1657013436 +SHA256 (KDE/release-service/22.04.3/kalarm-22.04.3.tar.xz) = 5b5987ab64e6d226311de0ba98dfc3408b311476d4d7a007a7ce13edf1ccaad8 +SIZE (KDE/release-service/22.04.3/kalarm-22.04.3.tar.xz) = 2347752 diff --git a/deskutils/kalendar/distinfo b/deskutils/kalendar/distinfo index 0b450fd2695f..b9219de85db5 100644 --- a/deskutils/kalendar/distinfo +++ b/deskutils/kalendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672088 -SHA256 (KDE/release-service/22.04.2/kalendar-22.04.2.tar.xz) = 25cd7083305f08ab2c3b78365d62f2fa85c49ed89f9f1ef7040373856e91e51b -SIZE (KDE/release-service/22.04.2/kalendar-22.04.2.tar.xz) = 259152 +TIMESTAMP = 1657013422 +SHA256 (KDE/release-service/22.04.3/kalendar-22.04.3.tar.xz) = 84e648430719548f9ec5465106454774d39ab2318d800f576cd6e4527d7ff67d +SIZE (KDE/release-service/22.04.3/kalendar-22.04.3.tar.xz) = 259068 diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index d4dc41ebc047..6e7c79ef62aa 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672095 -SHA256 (KDE/release-service/22.04.2/kcharselect-22.04.2.tar.xz) = 1c369869f2aafb8dd44a99b68b897933fefd8fcd2cf9c3cdd67412170d72e3cb -SIZE (KDE/release-service/22.04.2/kcharselect-22.04.2.tar.xz) = 373868 +TIMESTAMP = 1657013429 +SHA256 (KDE/release-service/22.04.3/kcharselect-22.04.3.tar.xz) = 26832f0ccf935bb0aeaf66594e61f2518ee6ce5c468b9e47478baec7ee4f6f71 +SIZE (KDE/release-service/22.04.3/kcharselect-22.04.3.tar.xz) = 373844 diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index efccb004d0ee..4671ef91432e 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672089 -SHA256 (KDE/release-service/22.04.2/kdeconnect-kde-22.04.2.tar.xz) = dc84cb8ee5814ada186a4fd4aa449430797208c691c6098e72038d52a2c22260 -SIZE (KDE/release-service/22.04.2/kdeconnect-kde-22.04.2.tar.xz) = 609120 +TIMESTAMP = 1657013423 +SHA256 (KDE/release-service/22.04.3/kdeconnect-kde-22.04.3.tar.xz) = 9df40473469e73fbb865e1d0fcbe530b10b49d0f652f9265dd4237cae8ebaf04 +SIZE (KDE/release-service/22.04.3/kdeconnect-kde-22.04.3.tar.xz) = 613864 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 17fec10fb718..986d1ab09406 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,726 +1,738 @@ 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_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_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%%/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-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/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/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-app.mo +share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo +share/locale/bg/LC_MESSAGES/kdeconnect-core.mo +share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo +share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo +share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo +share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/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.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/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 a6acb8683164..a0aff39818d8 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672096 -SHA256 (KDE/release-service/22.04.2/kdepim-addons-22.04.2.tar.xz) = ccbeb2107f9f0b6e7848d25d85856630d5908a1e94399f3551b4a605d037cdba -SIZE (KDE/release-service/22.04.2/kdepim-addons-22.04.2.tar.xz) = 2311072 +TIMESTAMP = 1657013430 +SHA256 (KDE/release-service/22.04.3/kdepim-addons-22.04.3.tar.xz) = 7833ae4be0036b20385599bfcbb054a6c91063ee09938b3f445306538f3d1bd1 +SIZE (KDE/release-service/22.04.3/kdepim-addons-22.04.3.tar.xz) = 2285148 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index 20c4bc2705f2..afe3e123d627 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1045 +1,1065 @@ bin/kmail_antivir.sh bin/kmail_clamav.sh bin/kmail_fprot.sh bin/kmail_sav.sh etc/xdg/kmail.antispamrc etc/xdg/kmail.antivirusrc lib/contacteditor/editorpageplugins/cryptopageplugin.so lib/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.5 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.5 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.5 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.5 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.5 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.5 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libscamconfiguresettings.so.5 lib/libscamconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/kmail/mainview/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/kmail/mainview/kmail_logactivitiesplugin.so %%QT_PLUGINDIR%%/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/korg_datenums.so %%QT_PLUGINDIR%%/korg_lunarphases.so %%QT_PLUGINDIR%%/korg_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/messageviewer/configuresettings/messageviewer_scamconfiguresettingsplugin.so %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/messageviewer/viewerplugin/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_PLUGINDIR%%/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/webengineviewer/urlinterceptor/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/icons/hicolor/scalable/status/moon-phase-first-quarter.svg share/icons/hicolor/scalable/status/moon-phase-full.svg share/icons/hicolor/scalable/status/moon-phase-last-quarter.svg share/icons/hicolor/scalable/status/moon-phase-new.svg share/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd share/kservices5/korganizer/datenums.desktop share/kservices5/korganizer/lunarphases.desktop share/kservices5/korganizer/picoftheday.desktop share/kservices5/korganizer/thisdayinhistory.desktop share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/az/LC_MESSAGES/pimeventsplugin.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo +share/locale/bg/LC_MESSAGES/customtoolsplugin.mo +share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/bg/LC_MESSAGES/kmail_plugins.mo +share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo +share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo +share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/bg/LC_MESSAGES/messageviewerplugins.mo +share/locale/bg/LC_MESSAGES/pimeventsplugin.mo +share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/pimeventsplugin.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/pimeventsplugin.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/korganizer_plugins.mo share/locale/eu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ga/LC_MESSAGES/korganizer_plugins.mo share/locale/ga/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ga/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/cryptopageplugin.mo share/locale/gl/LC_MESSAGES/customtoolsplugin.mo share/locale/gl/LC_MESSAGES/importwizard_plugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/gl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/gl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/gl/LC_MESSAGES/kmail_plugins.mo share/locale/gl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/gl/LC_MESSAGES/korganizer_plugins.mo share/locale/gl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/gl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/gl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/gl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/gl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/gl/LC_MESSAGES/messageviewerplugins.mo share/locale/gl/LC_MESSAGES/pimeventsplugin.mo share/locale/gl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/gl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/he/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/he/LC_MESSAGES/korganizer_plugins.mo share/locale/he/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/he/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hi/LC_MESSAGES/korganizer_plugins.mo share/locale/hi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/pimeventsplugin.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/pimeventsplugin.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/pimeventsplugin.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_TW/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_TW/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_TW/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_TW/LC_MESSAGES/webengineurlinterceptor.mo share/qlogging-categories5/kdepim-addons.categories share/qlogging-categories5/kdepim-addons.renamecategories share/qtcreator/templates/kmaileditorconvertertextplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorconvertertextplugins/plugin.json.impl share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditor.h share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorconvertertextplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorconvertertextplugins/wizard.json share/qtcreator/templates/kmaileditorplugins/CMakeLists.txt share/qtcreator/templates/kmaileditorplugins/plugin.json.impl share/qtcreator/templates/kmaileditorplugins/plugineditor.cpp share/qtcreator/templates/kmaileditorplugins/plugineditor.h share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.cpp share/qtcreator/templates/kmaileditorplugins/plugineditorinterface.h share/qtcreator/templates/kmaileditorplugins/wizard.json diff --git a/deskutils/kdepim-runtime/distinfo b/deskutils/kdepim-runtime/distinfo index f3c65c5c3db6..f2b9e0ad82b0 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672092 -SHA256 (KDE/release-service/22.04.2/kdepim-runtime-22.04.2.tar.xz) = 9456dab09b785cebd3580a9e3707be12adce72d303dbecf846382407e46a1913 -SIZE (KDE/release-service/22.04.2/kdepim-runtime-22.04.2.tar.xz) = 1772300 +TIMESTAMP = 1657013426 +SHA256 (KDE/release-service/22.04.3/kdepim-runtime-22.04.3.tar.xz) = 475845d0321af2507e90ec9876434998e61748bc847fe6aa4295762b9b6313d2 +SIZE (KDE/release-service/22.04.3/kdepim-runtime-22.04.3.tar.xz) = 1774412 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 28e4071706bc..89f956984fdd 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1630 +1,1655 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/pim/kcms/kaddressbook/kcm_ldap.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.ui share/akonadi/accountwizard/kolab/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/mailbox/mailboxwizard.desktop share/akonadi/accountwizard/mailbox/mailboxwizard.es share/akonadi/accountwizard/mailbox/mailboxwizard.ui share/akonadi/accountwizard/maildir/maildirwizard.desktop share/akonadi/accountwizard/maildir/maildirwizard.es share/akonadi/accountwizard/maildir/maildirwizard.ui share/akonadi/accountwizard/pop3/pop3wizard.desktop share/akonadi/accountwizard/pop3/pop3wizard.es share/akonadi/accountwizard/pop3/pop3wizard.ui share/akonadi/accountwizard/vcard/vcardwizard.desktop share/akonadi/accountwizard/vcard/vcardwizard.es share/akonadi/accountwizard/vcard/vcardwizard.ui share/akonadi/accountwizard/vcarddir/vcarddirwizard.desktop share/akonadi/accountwizard/vcarddir/vcarddirwizard.es share/akonadi/accountwizard/vcarddir/vcarddirwizard.ui share/akonadi/agents/akonotesresource.desktop share/akonadi/agents/birthdaysresource.desktop share/akonadi/agents/contactsresource.desktop share/akonadi/agents/davgroupwareresource.desktop share/akonadi/agents/ewsmtaresource.desktop share/akonadi/agents/ewsresource.desktop share/akonadi/agents/googleresource.desktop share/akonadi/agents/icaldirresource.desktop share/akonadi/agents/icalresource.desktop share/akonadi/agents/imapresource.desktop share/akonadi/agents/kolabresource.desktop share/akonadi/agents/maildirresource.desktop share/akonadi/agents/maildispatcheragent.desktop share/akonadi/agents/mboxresource.desktop share/akonadi/agents/migrationagent.desktop share/akonadi/agents/mixedmaildirresource.desktop share/akonadi/agents/newmailnotifieragent.desktop share/akonadi/agents/notesresource.desktop share/akonadi/agents/openxchangeresource.desktop share/akonadi/agents/pop3resource.desktop share/akonadi/agents/tomboynotesresource.desktop share/akonadi/agents/vcarddirresource.desktop share/akonadi/agents/vcardresource.desktop share/akonadi/firstrun/birthdaycalendar share/akonadi/firstrun/defaultaddressbook share/akonadi/firstrun/defaultcalendar share/akonadi/firstrun/defaultnotebook share/dbus-1/interfaces/org.kde.Akonadi.Maildir.Settings.xml share/dbus-1/interfaces/org.kde.Akonadi.MixedMaildir.Settings.xml share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/knotifications5/akonadi_ews_resource.notifyrc share/knotifications5/akonadi_google_resource.notifyrc share/knotifications5/akonadi_maildispatcher_agent.notifyrc share/knotifications5/akonadi_newmailnotifier_agent.notifyrc share/knotifications5/akonadi_pop3_resource.notifyrc share/kservices5/akonadi/davgroupware-providers/citadel.desktop share/kservices5/akonadi/davgroupware-providers/davical.desktop share/kservices5/akonadi/davgroupware-providers/egroupware.desktop share/kservices5/akonadi/davgroupware-providers/nextcloud.desktop share/kservices5/akonadi/davgroupware-providers/opengroupware.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre5.desktop share/kservices5/akonadi/davgroupware-providers/owncloud-pre9.desktop share/kservices5/akonadi/davgroupware-providers/owncloud.desktop share/kservices5/akonadi/davgroupware-providers/scalix.desktop share/kservices5/akonadi/davgroupware-providers/sogo.desktop share/kservices5/akonadi/davgroupware-providers/yahoo.desktop share/kservices5/akonadi/davgroupware-providers/zarafa.desktop share/kservices5/akonadi/davgroupware-providers/zimbra.desktop share/kservices5/kcmldap.desktop share/kservicetypes5/davgroupwareprovider.desktop share/locale/ar/LC_MESSAGES/accountwizard_contacts.mo share/locale/ar/LC_MESSAGES/accountwizard_ews.mo share/locale/ar/LC_MESSAGES/accountwizard_ical.mo share/locale/ar/LC_MESSAGES/accountwizard_imap.mo share/locale/ar/LC_MESSAGES/accountwizard_kolab.mo share/locale/ar/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ar/LC_MESSAGES/accountwizard_maildir.mo share/locale/ar/LC_MESSAGES/accountwizard_pop3.mo share/locale/ar/LC_MESSAGES/accountwizard_vcard.mo share/locale/ar/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ar/LC_MESSAGES/akonadi-filestore.mo share/locale/ar/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ar/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ar/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo +share/locale/bg/LC_MESSAGES/accountwizard_ews.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/bg/LC_MESSAGES/akonadi-filestore.mo +share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo +share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ru/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ru/LC_MESSAGES/akonadi_google_resource.mo share/locale/ru/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/se/LC_MESSAGES/accountwizard_imap.mo share/locale/se/LC_MESSAGES/accountwizard_kolab.mo share/locale/se/LC_MESSAGES/accountwizard_mailbox.mo share/locale/se/LC_MESSAGES/accountwizard_maildir.mo share/locale/se/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ical.mo share/locale/tr/LC_MESSAGES/accountwizard_imap.mo share/locale/tr/LC_MESSAGES/accountwizard_kolab.mo share/locale/tr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/tr/LC_MESSAGES/accountwizard_maildir.mo share/locale/tr/LC_MESSAGES/accountwizard_pop3.mo share/locale/tr/LC_MESSAGES/accountwizard_vcard.mo share/locale/tr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/tr/LC_MESSAGES/akonadi-filestore.mo share/locale/tr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/tr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/tr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index fe7360efecf6..d2d9ed27907b 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672087 -SHA256 (KDE/release-service/22.04.2/keditbookmarks-22.04.2.tar.xz) = 55dd475d684a93fb59de6182a68a2aaaba6ce2caf6695dc2418222a052e2beb6 -SIZE (KDE/release-service/22.04.2/keditbookmarks-22.04.2.tar.xz) = 204300 +TIMESTAMP = 1657013421 +SHA256 (KDE/release-service/22.04.3/keditbookmarks-22.04.3.tar.xz) = e762c6b4066f3a173dfd558eba3af75c8dd434e9c66f3f630c003125bf9ad32f +SIZE (KDE/release-service/22.04.3/keditbookmarks-22.04.3.tar.xz) = 204220 diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 14dda0b4f5f2..ce647178e34e 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672094 -SHA256 (KDE/release-service/22.04.2/kfind-22.04.2.tar.xz) = e9376ff9fe03e2618896fa1bcf99e3ba7c0585ab7396528940204c156cdacaae -SIZE (KDE/release-service/22.04.2/kfind-22.04.2.tar.xz) = 287744 +TIMESTAMP = 1657013428 +SHA256 (KDE/release-service/22.04.3/kfind-22.04.3.tar.xz) = 76e1477270e96fa0c7332c2ee07b6ddeb24e6f6bcee2158106d99c9ac6cb7e7e +SIZE (KDE/release-service/22.04.3/kfind-22.04.3.tar.xz) = 287800 diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 986e87687b98..6852e1cc894e 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672091 -SHA256 (KDE/release-service/22.04.2/kmail-account-wizard-22.04.2.tar.xz) = 52840951f30e52d5bb99d3914aa50bab901928fe039dc8f6c3e81875f34fa0ae -SIZE (KDE/release-service/22.04.2/kmail-account-wizard-22.04.2.tar.xz) = 171716 +TIMESTAMP = 1657013425 +SHA256 (KDE/release-service/22.04.3/kmail-account-wizard-22.04.3.tar.xz) = 5b75d41ff9a5ed4716d1ca48195c2421f72d4b5f75e7dac38abfe4964f0711d3 +SIZE (KDE/release-service/22.04.3/kmail-account-wizard-22.04.3.tar.xz) = 174732 diff --git a/deskutils/kmail-account-wizard/pkg-plist b/deskutils/kmail-account-wizard/pkg-plist index 7f2d41751cac..8bc168a779aa 100644 --- a/deskutils/kmail-account-wizard/pkg-plist +++ b/deskutils/kmail-account-wizard/pkg-plist @@ -1,102 +1,104 @@ bin/accountwizard bin/ispdb %%QT_PLUGINDIR%%/accountwizard_plugin.so share/akonadi/accountwizard/tine20/tine20wizard.desktop share/akonadi/accountwizard/tine20/tine20wizard.es share/akonadi/accountwizard/tine20/tine20wizard.ui share/applications/org.kde.accountwizard.desktop share/knsrcfiles/accountwizard.knsrc share/locale/ar/LC_MESSAGES/accountwizard.mo share/locale/ar/LC_MESSAGES/accountwizard_tine20.mo share/locale/az/LC_MESSAGES/accountwizard.mo share/locale/az/LC_MESSAGES/accountwizard_tine20.mo +share/locale/bg/LC_MESSAGES/accountwizard.mo +share/locale/bg/LC_MESSAGES/accountwizard_tine20.mo share/locale/bs/LC_MESSAGES/accountwizard.mo share/locale/bs/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca/LC_MESSAGES/accountwizard.mo share/locale/ca/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_tine20.mo share/locale/cs/LC_MESSAGES/accountwizard.mo share/locale/cs/LC_MESSAGES/accountwizard_tine20.mo share/locale/da/LC_MESSAGES/accountwizard.mo share/locale/da/LC_MESSAGES/accountwizard_tine20.mo share/locale/de/LC_MESSAGES/accountwizard.mo share/locale/de/LC_MESSAGES/accountwizard_tine20.mo share/locale/el/LC_MESSAGES/accountwizard.mo share/locale/el/LC_MESSAGES/accountwizard_tine20.mo share/locale/en_GB/LC_MESSAGES/accountwizard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_tine20.mo share/locale/eo/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard_tine20.mo share/locale/et/LC_MESSAGES/accountwizard.mo share/locale/et/LC_MESSAGES/accountwizard_tine20.mo share/locale/fi/LC_MESSAGES/accountwizard.mo share/locale/fi/LC_MESSAGES/accountwizard_tine20.mo share/locale/fr/LC_MESSAGES/accountwizard.mo share/locale/fr/LC_MESSAGES/accountwizard_tine20.mo share/locale/ga/LC_MESSAGES/accountwizard.mo share/locale/ga/LC_MESSAGES/accountwizard_tine20.mo share/locale/gl/LC_MESSAGES/accountwizard.mo share/locale/gl/LC_MESSAGES/accountwizard_tine20.mo share/locale/he/LC_MESSAGES/accountwizard.mo share/locale/hu/LC_MESSAGES/accountwizard.mo share/locale/hu/LC_MESSAGES/accountwizard_tine20.mo share/locale/ia/LC_MESSAGES/accountwizard.mo share/locale/ia/LC_MESSAGES/accountwizard_tine20.mo share/locale/it/LC_MESSAGES/accountwizard.mo share/locale/it/LC_MESSAGES/accountwizard_tine20.mo share/locale/ja/LC_MESSAGES/accountwizard.mo share/locale/ja/LC_MESSAGES/accountwizard_tine20.mo share/locale/kk/LC_MESSAGES/accountwizard.mo share/locale/kk/LC_MESSAGES/accountwizard_tine20.mo share/locale/km/LC_MESSAGES/accountwizard.mo share/locale/km/LC_MESSAGES/accountwizard_tine20.mo share/locale/ko/LC_MESSAGES/accountwizard.mo share/locale/ko/LC_MESSAGES/accountwizard_tine20.mo share/locale/lt/LC_MESSAGES/accountwizard.mo share/locale/lt/LC_MESSAGES/accountwizard_tine20.mo share/locale/lv/LC_MESSAGES/accountwizard.mo share/locale/mr/LC_MESSAGES/accountwizard.mo share/locale/mr/LC_MESSAGES/accountwizard_tine20.mo share/locale/nb/LC_MESSAGES/accountwizard.mo share/locale/nb/LC_MESSAGES/accountwizard_tine20.mo share/locale/nds/LC_MESSAGES/accountwizard.mo share/locale/nds/LC_MESSAGES/accountwizard_tine20.mo share/locale/nl/LC_MESSAGES/accountwizard.mo share/locale/nl/LC_MESSAGES/accountwizard_tine20.mo share/locale/nn/LC_MESSAGES/accountwizard.mo share/locale/nn/LC_MESSAGES/accountwizard_tine20.mo share/locale/pa/LC_MESSAGES/accountwizard.mo share/locale/pl/LC_MESSAGES/accountwizard.mo share/locale/pl/LC_MESSAGES/accountwizard_tine20.mo share/locale/pt/LC_MESSAGES/accountwizard.mo share/locale/pt/LC_MESSAGES/accountwizard_tine20.mo share/locale/pt_BR/LC_MESSAGES/accountwizard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_tine20.mo share/locale/ro/LC_MESSAGES/accountwizard.mo share/locale/ro/LC_MESSAGES/accountwizard_tine20.mo share/locale/ru/LC_MESSAGES/accountwizard.mo share/locale/ru/LC_MESSAGES/accountwizard_tine20.mo share/locale/se/LC_MESSAGES/accountwizard.mo share/locale/sk/LC_MESSAGES/accountwizard.mo share/locale/sk/LC_MESSAGES/accountwizard_tine20.mo share/locale/sl/LC_MESSAGES/accountwizard.mo share/locale/sl/LC_MESSAGES/accountwizard_tine20.mo share/locale/sr/LC_MESSAGES/accountwizard.mo share/locale/sr/LC_MESSAGES/accountwizard_tine20.mo share/locale/sv/LC_MESSAGES/accountwizard.mo share/locale/sv/LC_MESSAGES/accountwizard_tine20.mo share/locale/tr/LC_MESSAGES/accountwizard.mo share/locale/tr/LC_MESSAGES/accountwizard_tine20.mo share/locale/ug/LC_MESSAGES/accountwizard.mo share/locale/ug/LC_MESSAGES/accountwizard_tine20.mo share/locale/uk/LC_MESSAGES/accountwizard.mo share/locale/uk/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_CN/LC_MESSAGES/accountwizard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_TW/LC_MESSAGES/accountwizard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_tine20.mo share/mime/packages/accountwizard-mime.xml share/qlogging-categories5/accountwizard.categories share/qlogging-categories5/accountwizard.renamecategories diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index be827a41ba3e..2b571d223551 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672085 -SHA256 (KDE/release-service/22.04.2/kmail-22.04.2.tar.xz) = fc52bef540cd64fe7b0f413e2257cab7dfb9578fd232c7f3c2e5516e7b20182a -SIZE (KDE/release-service/22.04.2/kmail-22.04.2.tar.xz) = 7154700 +TIMESTAMP = 1657013419 +SHA256 (KDE/release-service/22.04.3/kmail-22.04.3.tar.xz) = b88101f47259a5ebfc4ec8e5d0efa19cdff33c67034e9c7082c22c0a11474d74 +SIZE (KDE/release-service/22.04.3/kmail-22.04.3.tar.xz) = 7153424 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index b8f07b00c47d..7f6334618896 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,440 +1,448 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_mailmerge_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact5/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_summaryplugin.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_accounts.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_appearance.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_composer.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_misc.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_plugins.so %%QT_PLUGINDIR%%/pim/kcms/kmail/kcm_kmail_security.so %%QT_PLUGINDIR%%/pim/kcms/summary/kcmkmailsummary.so %%QT_PLUGINDIR%%/pim/kcms/summary/kcmkontactsummary.so share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/mailmergeagent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.kmail2.desktop share/applications/org.kde.kmail-refresh-settings.desktop share/applications/org.kde.ktnef.desktop share/config.kcfg/archivemailagentsettings.kcfg share/config.kcfg/kmail.kcfg share/dbus-1/interfaces/org.kde.kmail.kmail.xml share/dbus-1/interfaces/org.kde.kmail.kmailpart.xml share/dbus-1/services/org.kde.kmail.service share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/8x8/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/16x16/emblems/gpg-key-trust-level-4.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-0.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-1.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-2.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-3.svg share/icons/breeze-dark/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/8x8/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/16x16/apps/kmail.png share/icons/hicolor/16x16/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/16x16/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/22x22/actions/ktnef_extract_all_to.png share/icons/hicolor/22x22/actions/ktnef_extract_to.png share/icons/hicolor/22x22/apps/kmail.png share/icons/hicolor/22x22/emblems/gpg-key-trust-level-0.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-1.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-2.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-3.svg share/icons/hicolor/22x22/emblems/gpg-key-trust-level-4.svg share/icons/hicolor/32x32/apps/kmail.png share/icons/hicolor/48x48/apps/kmail.png share/icons/hicolor/48x48/apps/ktnef.png share/icons/hicolor/64x64/apps/kmail.png share/icons/hicolor/128x128/apps/kmail.png share/icons/hicolor/scalable/apps/kmail.svg share/kmail2/pics/pgp-keys.png share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_mailmerge_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kxmlgui5/kontactsummary/kontactsummary_part.rc share/locale/ar/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ar/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/ar/LC_MESSAGES/ktnef.mo share/locale/az/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/az/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/az/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/az/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/az/LC_MESSAGES/kmail-refresh-settings.mo share/locale/az/LC_MESSAGES/kmail.mo share/locale/az/LC_MESSAGES/ktnef.mo share/locale/be/LC_MESSAGES/kmail.mo +share/locale/bg/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_mailmerge_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/bg/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/bg/LC_MESSAGES/kmail-refresh-settings.mo share/locale/bg/LC_MESSAGES/kmail.mo +share/locale/bg/LC_MESSAGES/ktnef.mo share/locale/bs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bs/LC_MESSAGES/kmail.mo share/locale/bs/LC_MESSAGES/ktnef.mo share/locale/ca/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/da/LC_MESSAGES/kmail-refresh-settings.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/el/LC_MESSAGES/kmail-refresh-settings.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/et/LC_MESSAGES/kmail-refresh-settings.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/eu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/eu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/eu/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/eu/LC_MESSAGES/kmail-refresh-settings.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/eu/LC_MESSAGES/ktnef.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo share/locale/ga/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ga/LC_MESSAGES/kmail.mo share/locale/ga/LC_MESSAGES/ktnef.mo share/locale/gl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/gl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/gl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/gl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/gl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/gl/LC_MESSAGES/kmail.mo share/locale/gl/LC_MESSAGES/ktnef.mo share/locale/he/LC_MESSAGES/kmail.mo share/locale/hi/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/mr/LC_MESSAGES/kmail.mo share/locale/mr/LC_MESSAGES/ktnef.mo share/locale/nb/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nb/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nb/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nb/LC_MESSAGES/kmail.mo share/locale/nb/LC_MESSAGES/ktnef.mo share/locale/nds/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nds/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nds/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nds/LC_MESSAGES/kmail.mo share/locale/nds/LC_MESSAGES/ktnef.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ru/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ru/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ru/LC_MESSAGES/kmail.mo share/locale/ru/LC_MESSAGES/ktnef.mo share/locale/se/LC_MESSAGES/kmail.mo share/locale/se/LC_MESSAGES/ktnef.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sq/LC_MESSAGES/kmail.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/ta/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ta/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ta/LC_MESSAGES/kmail.mo share/locale/tg/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo share/locale/wa/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 39e45a86ee58..77831a7a0ac2 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672103 -SHA256 (KDE/release-service/22.04.2/knotes-22.04.2.tar.xz) = c0e2b0c17b34dfbf8a71bedf299ad9ad8d62ab795f99f3d7485db22c93332050 -SIZE (KDE/release-service/22.04.2/knotes-22.04.2.tar.xz) = 344004 +TIMESTAMP = 1657013437 +SHA256 (KDE/release-service/22.04.3/knotes-22.04.3.tar.xz) = 6e0707bf01df3aa515fc78d4e926f84f673bcc9c49971a077ea7aaa2456679ad +SIZE (KDE/release-service/22.04.3/knotes-22.04.3.tar.xz) = 344168 diff --git a/deskutils/knotes/pkg-plist b/deskutils/knotes/pkg-plist index e35562aeb314..c0122cc02278 100644 --- a/deskutils/knotes/pkg-plist +++ b/deskutils/knotes/pkg-plist @@ -1,177 +1,179 @@ bin/akonadi_notes_agent bin/knotes lib/libknotesprivate.so.5 lib/libknotesprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnotesharedprivate.so.5 lib/libnotesharedprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kontact5/kontact_knotesplugin.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_action.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_collection.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_display.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_editor.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_misc.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_network.so %%QT_PLUGINDIR%%/pim/kcms/knotes/kcm_knote_print.so %%QT_PLUGINDIR%%/pim/kcms/summary/kcmknotessummary.so share/akonadi/agents/notesagent.desktop share/applications/org.kde.knotes.desktop share/config.kcfg/knotesglobalconfig.kcfg share/config.kcfg/notesagentsettings.kcfg share/dbus-1/interfaces/org.kde.KNotes.xml share/dbus-1/interfaces/org.kde.kontact.KNotes.xml share/icons/hicolor/16x16/actions/knotes_alarm.png share/icons/hicolor/16x16/actions/knotes_close.png share/icons/hicolor/16x16/actions/knotes_date.png share/icons/hicolor/16x16/actions/knotes_delete.png share/icons/hicolor/16x16/apps/knotes.png share/icons/hicolor/22x22/apps/knotes.png share/icons/hicolor/32x32/apps/knotes.png share/icons/hicolor/48x48/apps/knotes.png share/icons/hicolor/64x64/apps/knotes.png share/icons/hicolor/128x128/apps/knotes.png share/icons/hicolor/scalable/apps/knotes.svg %%DATADIR%%/print/themes/background-color/theme.desktop %%DATADIR%%/print/themes/background-color/theme.html %%DATADIR%%/print/themes/big-title/theme.desktop %%DATADIR%%/print/themes/big-title/theme.html %%DATADIR%%/print/themes/default/theme.desktop %%DATADIR%%/print/themes/default/theme.html share/knotifications5/akonadi_notes_agent.notifyrc share/knsrcfiles/knotes_printing_theme.knsrc share/kxmlgui5/knotes/knotes_part.rc share/kxmlgui5/knotes/knotesappui.rc share/kxmlgui5/knotes/knotesui.rc share/locale/ar/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ar/LC_MESSAGES/knotes.mo share/locale/ar/LC_MESSAGES/libnoteshared.mo share/locale/be/LC_MESSAGES/knotes.mo +share/locale/bg/LC_MESSAGES/akonadi_notes_agent.mo share/locale/bg/LC_MESSAGES/knotes.mo +share/locale/bg/LC_MESSAGES/libnoteshared.mo share/locale/bs/LC_MESSAGES/akonadi_notes_agent.mo share/locale/bs/LC_MESSAGES/knotes.mo share/locale/bs/LC_MESSAGES/libnoteshared.mo share/locale/ca/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ca/LC_MESSAGES/knotes.mo share/locale/ca/LC_MESSAGES/libnoteshared.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ca@valencia/LC_MESSAGES/knotes.mo share/locale/ca@valencia/LC_MESSAGES/libnoteshared.mo share/locale/cs/LC_MESSAGES/akonadi_notes_agent.mo share/locale/cs/LC_MESSAGES/knotes.mo share/locale/cs/LC_MESSAGES/libnoteshared.mo share/locale/da/LC_MESSAGES/akonadi_notes_agent.mo share/locale/da/LC_MESSAGES/knotes.mo share/locale/da/LC_MESSAGES/libnoteshared.mo share/locale/de/LC_MESSAGES/akonadi_notes_agent.mo share/locale/de/LC_MESSAGES/knotes.mo share/locale/de/LC_MESSAGES/libnoteshared.mo share/locale/el/LC_MESSAGES/akonadi_notes_agent.mo share/locale/el/LC_MESSAGES/knotes.mo share/locale/el/LC_MESSAGES/libnoteshared.mo share/locale/en_GB/LC_MESSAGES/akonadi_notes_agent.mo share/locale/en_GB/LC_MESSAGES/knotes.mo share/locale/en_GB/LC_MESSAGES/libnoteshared.mo share/locale/eo/LC_MESSAGES/knotes.mo share/locale/es/LC_MESSAGES/akonadi_notes_agent.mo share/locale/es/LC_MESSAGES/knotes.mo share/locale/es/LC_MESSAGES/libnoteshared.mo share/locale/et/LC_MESSAGES/akonadi_notes_agent.mo share/locale/et/LC_MESSAGES/knotes.mo share/locale/et/LC_MESSAGES/libnoteshared.mo share/locale/eu/LC_MESSAGES/akonadi_notes_agent.mo share/locale/eu/LC_MESSAGES/knotes.mo share/locale/eu/LC_MESSAGES/libnoteshared.mo share/locale/fa/LC_MESSAGES/knotes.mo share/locale/fi/LC_MESSAGES/akonadi_notes_agent.mo share/locale/fi/LC_MESSAGES/knotes.mo share/locale/fi/LC_MESSAGES/libnoteshared.mo share/locale/fr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/fr/LC_MESSAGES/knotes.mo share/locale/fr/LC_MESSAGES/libnoteshared.mo share/locale/ga/LC_MESSAGES/knotes.mo share/locale/gl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/gl/LC_MESSAGES/knotes.mo share/locale/gl/LC_MESSAGES/libnoteshared.mo share/locale/he/LC_MESSAGES/knotes.mo share/locale/hi/LC_MESSAGES/knotes.mo share/locale/hr/LC_MESSAGES/knotes.mo share/locale/hu/LC_MESSAGES/akonadi_notes_agent.mo share/locale/hu/LC_MESSAGES/knotes.mo share/locale/hu/LC_MESSAGES/libnoteshared.mo share/locale/ia/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ia/LC_MESSAGES/knotes.mo share/locale/ia/LC_MESSAGES/libnoteshared.mo share/locale/is/LC_MESSAGES/knotes.mo share/locale/it/LC_MESSAGES/akonadi_notes_agent.mo share/locale/it/LC_MESSAGES/knotes.mo share/locale/it/LC_MESSAGES/libnoteshared.mo share/locale/ja/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ja/LC_MESSAGES/knotes.mo share/locale/ja/LC_MESSAGES/libnoteshared.mo share/locale/kk/LC_MESSAGES/knotes.mo share/locale/km/LC_MESSAGES/knotes.mo share/locale/ko/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ko/LC_MESSAGES/knotes.mo share/locale/ko/LC_MESSAGES/libnoteshared.mo share/locale/lt/LC_MESSAGES/akonadi_notes_agent.mo share/locale/lt/LC_MESSAGES/knotes.mo share/locale/lt/LC_MESSAGES/libnoteshared.mo share/locale/lv/LC_MESSAGES/knotes.mo share/locale/mr/LC_MESSAGES/knotes.mo share/locale/nb/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nb/LC_MESSAGES/knotes.mo share/locale/nb/LC_MESSAGES/libnoteshared.mo share/locale/nds/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nds/LC_MESSAGES/knotes.mo share/locale/nds/LC_MESSAGES/libnoteshared.mo share/locale/nl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nl/LC_MESSAGES/knotes.mo share/locale/nl/LC_MESSAGES/libnoteshared.mo share/locale/nn/LC_MESSAGES/akonadi_notes_agent.mo share/locale/nn/LC_MESSAGES/knotes.mo share/locale/nn/LC_MESSAGES/libnoteshared.mo share/locale/pa/LC_MESSAGES/knotes.mo share/locale/pl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pl/LC_MESSAGES/knotes.mo share/locale/pl/LC_MESSAGES/libnoteshared.mo share/locale/pt/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pt/LC_MESSAGES/knotes.mo share/locale/pt/LC_MESSAGES/libnoteshared.mo share/locale/pt_BR/LC_MESSAGES/akonadi_notes_agent.mo share/locale/pt_BR/LC_MESSAGES/knotes.mo share/locale/pt_BR/LC_MESSAGES/libnoteshared.mo share/locale/ro/LC_MESSAGES/knotes.mo share/locale/ro/LC_MESSAGES/libnoteshared.mo share/locale/ru/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ru/LC_MESSAGES/knotes.mo share/locale/ru/LC_MESSAGES/libnoteshared.mo share/locale/se/LC_MESSAGES/knotes.mo share/locale/sk/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sk/LC_MESSAGES/knotes.mo share/locale/sk/LC_MESSAGES/libnoteshared.mo share/locale/sl/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sl/LC_MESSAGES/knotes.mo share/locale/sl/LC_MESSAGES/libnoteshared.mo share/locale/sq/LC_MESSAGES/knotes.mo share/locale/sr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sr/LC_MESSAGES/libnoteshared.mo share/locale/sv/LC_MESSAGES/akonadi_notes_agent.mo share/locale/sv/LC_MESSAGES/knotes.mo share/locale/sv/LC_MESSAGES/libnoteshared.mo share/locale/ta/LC_MESSAGES/knotes.mo share/locale/tg/LC_MESSAGES/knotes.mo share/locale/tr/LC_MESSAGES/akonadi_notes_agent.mo share/locale/tr/LC_MESSAGES/knotes.mo share/locale/tr/LC_MESSAGES/libnoteshared.mo share/locale/ug/LC_MESSAGES/knotes.mo share/locale/uk/LC_MESSAGES/akonadi_notes_agent.mo share/locale/uk/LC_MESSAGES/knotes.mo share/locale/uk/LC_MESSAGES/libnoteshared.mo share/locale/zh_CN/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_CN/LC_MESSAGES/knotes.mo share/locale/zh_CN/LC_MESSAGES/libnoteshared.mo share/locale/zh_TW/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_TW/LC_MESSAGES/knotes.mo share/locale/zh_TW/LC_MESSAGES/libnoteshared.mo share/metainfo/org.kde.knotes.appdata.xml share/qlogging-categories5/knotes.categories share/qlogging-categories5/knotes.renamecategories diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index bc8a090d8bc4..efe4b5316414 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672093 -SHA256 (KDE/release-service/22.04.2/kontact-22.04.2.tar.xz) = 6b7b475d5d5777cb0fd1660bbf434dbbd58e1cb068107796d9ff378c8c0d57b4 -SIZE (KDE/release-service/22.04.2/kontact-22.04.2.tar.xz) = 825760 +TIMESTAMP = 1657013427 +SHA256 (KDE/release-service/22.04.3/kontact-22.04.3.tar.xz) = 78eee72e657c1e71593fd3122a5573ba503c4bee1391e4f462d608ba2127fbc7 +SIZE (KDE/release-service/22.04.3/kontact-22.04.3.tar.xz) = 822580 diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 06c7aa74aaad..e32158581f0c 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672101 -SHA256 (KDE/release-service/22.04.2/korganizer-22.04.2.tar.xz) = 3be2b3f45fb6d5ab4099e2ea3ef59f7dc42fcfe7aed9cafb52f0e3f7867e4774 -SIZE (KDE/release-service/22.04.2/korganizer-22.04.2.tar.xz) = 2312024 +TIMESTAMP = 1657013435 +SHA256 (KDE/release-service/22.04.3/korganizer-22.04.3.tar.xz) = 09cbbc620eaf587528f0c264c2ce03ad8cf2aaf4b986447e6f97280a7263fa7a +SIZE (KDE/release-service/22.04.3/korganizer-22.04.3.tar.xz) = 2302260 diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 699a51d09fc4..5bf12e1f517f 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672088 -SHA256 (KDE/release-service/22.04.2/kruler-22.04.2.tar.xz) = fdc5915c920c210cfe1124a50a1b37a4ddcd69c4c881fe1ccadae3b78cf5c479 -SIZE (KDE/release-service/22.04.2/kruler-22.04.2.tar.xz) = 277072 +TIMESTAMP = 1657013422 +SHA256 (KDE/release-service/22.04.3/kruler-22.04.3.tar.xz) = 43c585d00fa81b0213a4c8b588db3e3a4dc426fd0e80a741f0aa327e8cff5c7b +SIZE (KDE/release-service/22.04.3/kruler-22.04.3.tar.xz) = 276688 diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 79bc2010af95..d35d5159f5e8 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672086 -SHA256 (KDE/release-service/22.04.2/libkdepim-22.04.2.tar.xz) = 5570f2d2536f3323b3b539146e4b0d224c8fac144adcfa236209d2b614899922 -SIZE (KDE/release-service/22.04.2/libkdepim-22.04.2.tar.xz) = 254372 +TIMESTAMP = 1657013420 +SHA256 (KDE/release-service/22.04.3/libkdepim-22.04.3.tar.xz) = fa7477b5cfd6daa982689543aaa56a01dbdd221728c5da5dc041d597875cd0e4 +SIZE (KDE/release-service/22.04.3/libkdepim-22.04.3.tar.xz) = 248632 diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index cdb723e7a5c9..44b7d03e2441 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672104 -SHA256 (KDE/release-service/22.04.2/mbox-importer-22.04.2.tar.xz) = 4b1315895945a036d530556b525f8b64cf4327b7a9582aad926e4cfdcaa676f7 -SIZE (KDE/release-service/22.04.2/mbox-importer-22.04.2.tar.xz) = 29084 +TIMESTAMP = 1657013438 +SHA256 (KDE/release-service/22.04.3/mbox-importer-22.04.3.tar.xz) = 4a3af2441583203b488b50edc99669329bed24379aae9878303e6d36317a53c0 +SIZE (KDE/release-service/22.04.3/mbox-importer-22.04.3.tar.xz) = 29116 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 491ed25d615e..57c5b84ddd15 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672090 -SHA256 (KDE/release-service/22.04.2/pim-data-exporter-22.04.2.tar.xz) = a434e5171311d2b5ebac1ece4cb1ed92832d19c7f35f61c8eadc1a420b2b0367 -SIZE (KDE/release-service/22.04.2/pim-data-exporter-22.04.2.tar.xz) = 405320 +TIMESTAMP = 1657013424 +SHA256 (KDE/release-service/22.04.3/pim-data-exporter-22.04.3.tar.xz) = 3680f8ca81de2bb81652bf8dd3041ee734f68273c1bab28cae7120fa5b42dab9 +SIZE (KDE/release-service/22.04.3/pim-data-exporter-22.04.3.tar.xz) = 407576 diff --git a/deskutils/pim-data-exporter/pkg-plist b/deskutils/pim-data-exporter/pkg-plist index 7529701ec1ea..1e001a751f30 100644 --- a/deskutils/pim-data-exporter/pkg-plist +++ b/deskutils/pim-data-exporter/pkg-plist @@ -1,52 +1,53 @@ bin/pimdataexporter bin/pimdataexporterconsole lib/libpimdataexporterprivate.so.5 lib/libpimdataexporterprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.pimdataexporter.desktop share/config.kcfg/pimdataexporterglobalconfig.kcfg share/locale/ar/LC_MESSAGES/pimdataexporter.mo share/locale/az/LC_MESSAGES/pimdataexporter.mo +share/locale/bg/LC_MESSAGES/pimdataexporter.mo share/locale/bs/LC_MESSAGES/pimdataexporter.mo share/locale/ca/LC_MESSAGES/pimdataexporter.mo share/locale/ca@valencia/LC_MESSAGES/pimdataexporter.mo share/locale/cs/LC_MESSAGES/pimdataexporter.mo share/locale/da/LC_MESSAGES/pimdataexporter.mo share/locale/de/LC_MESSAGES/pimdataexporter.mo share/locale/el/LC_MESSAGES/pimdataexporter.mo share/locale/en_GB/LC_MESSAGES/pimdataexporter.mo share/locale/es/LC_MESSAGES/pimdataexporter.mo share/locale/et/LC_MESSAGES/pimdataexporter.mo share/locale/fi/LC_MESSAGES/pimdataexporter.mo share/locale/fr/LC_MESSAGES/pimdataexporter.mo share/locale/ga/LC_MESSAGES/pimdataexporter.mo share/locale/gl/LC_MESSAGES/pimdataexporter.mo share/locale/hu/LC_MESSAGES/pimdataexporter.mo share/locale/ia/LC_MESSAGES/pimdataexporter.mo share/locale/it/LC_MESSAGES/pimdataexporter.mo share/locale/ja/LC_MESSAGES/pimdataexporter.mo share/locale/kk/LC_MESSAGES/pimdataexporter.mo share/locale/km/LC_MESSAGES/pimdataexporter.mo share/locale/ko/LC_MESSAGES/pimdataexporter.mo share/locale/lt/LC_MESSAGES/pimdataexporter.mo share/locale/lv/LC_MESSAGES/pimdataexporter.mo share/locale/mr/LC_MESSAGES/pimdataexporter.mo share/locale/nb/LC_MESSAGES/pimdataexporter.mo share/locale/nds/LC_MESSAGES/pimdataexporter.mo share/locale/nl/LC_MESSAGES/pimdataexporter.mo share/locale/pl/LC_MESSAGES/pimdataexporter.mo share/locale/pt/LC_MESSAGES/pimdataexporter.mo share/locale/pt_BR/LC_MESSAGES/pimdataexporter.mo share/locale/ro/LC_MESSAGES/pimdataexporter.mo share/locale/ru/LC_MESSAGES/pimdataexporter.mo share/locale/sk/LC_MESSAGES/pimdataexporter.mo share/locale/sl/LC_MESSAGES/pimdataexporter.mo share/locale/sr/LC_MESSAGES/pimdataexporter.mo share/locale/sv/LC_MESSAGES/pimdataexporter.mo share/locale/tr/LC_MESSAGES/pimdataexporter.mo share/locale/ug/LC_MESSAGES/pimdataexporter.mo share/locale/uk/LC_MESSAGES/pimdataexporter.mo share/locale/zh_CN/LC_MESSAGES/pimdataexporter.mo share/locale/zh_TW/LC_MESSAGES/pimdataexporter.mo share/metainfo/org.kde.pimdataexporter.appdata.xml share/qlogging-categories5/pimdataexporter.categories share/qlogging-categories5/pimdataexporter.renamecategories diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 9c3a67cb0c40..028aaeddbcff 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672082 -SHA256 (KDE/release-service/22.04.2/pim-sieve-editor-22.04.2.tar.xz) = 311f58337db32bd06251d24fb1571b723b8074f95f8cc244608264bdfd63ca41 -SIZE (KDE/release-service/22.04.2/pim-sieve-editor-22.04.2.tar.xz) = 452976 +TIMESTAMP = 1657013416 +SHA256 (KDE/release-service/22.04.3/pim-sieve-editor-22.04.3.tar.xz) = 35a8dc1f805146833d92c66c76861950eb6e11538c3f0830b296f32f11dabd6a +SIZE (KDE/release-service/22.04.3/pim-sieve-editor-22.04.3.tar.xz) = 454616 diff --git a/deskutils/pim-sieve-editor/pkg-plist b/deskutils/pim-sieve-editor/pkg-plist index d1d6c88a7a2d..ee7636573d31 100644 --- a/deskutils/pim-sieve-editor/pkg-plist +++ b/deskutils/pim-sieve-editor/pkg-plist @@ -1,43 +1,44 @@ bin/sieveeditor lib/libsieveeditor.so.5 lib/libsieveeditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.sieveeditor.desktop share/config.kcfg/sieveeditorglobalconfig.kcfg share/locale/ar/LC_MESSAGES/sieveeditor.mo +share/locale/bg/LC_MESSAGES/sieveeditor.mo share/locale/bs/LC_MESSAGES/sieveeditor.mo share/locale/ca/LC_MESSAGES/sieveeditor.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor.mo share/locale/cs/LC_MESSAGES/sieveeditor.mo share/locale/da/LC_MESSAGES/sieveeditor.mo share/locale/de/LC_MESSAGES/sieveeditor.mo share/locale/en_GB/LC_MESSAGES/sieveeditor.mo share/locale/es/LC_MESSAGES/sieveeditor.mo share/locale/et/LC_MESSAGES/sieveeditor.mo share/locale/fi/LC_MESSAGES/sieveeditor.mo share/locale/fr/LC_MESSAGES/sieveeditor.mo share/locale/gl/LC_MESSAGES/sieveeditor.mo share/locale/hu/LC_MESSAGES/sieveeditor.mo share/locale/ia/LC_MESSAGES/sieveeditor.mo share/locale/it/LC_MESSAGES/sieveeditor.mo share/locale/ja/LC_MESSAGES/sieveeditor.mo share/locale/ko/LC_MESSAGES/sieveeditor.mo share/locale/lt/LC_MESSAGES/sieveeditor.mo share/locale/nb/LC_MESSAGES/sieveeditor.mo share/locale/nds/LC_MESSAGES/sieveeditor.mo share/locale/nl/LC_MESSAGES/sieveeditor.mo share/locale/pl/LC_MESSAGES/sieveeditor.mo share/locale/pt/LC_MESSAGES/sieveeditor.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor.mo share/locale/ro/LC_MESSAGES/sieveeditor.mo share/locale/ru/LC_MESSAGES/sieveeditor.mo share/locale/sk/LC_MESSAGES/sieveeditor.mo share/locale/sl/LC_MESSAGES/sieveeditor.mo share/locale/sr/LC_MESSAGES/sieveeditor.mo share/locale/sv/LC_MESSAGES/sieveeditor.mo share/locale/tr/LC_MESSAGES/sieveeditor.mo share/locale/uk/LC_MESSAGES/sieveeditor.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor.mo share/metainfo/org.kde.sieveeditor.appdata.xml share/qlogging-categories5/sieveeditor.categories share/qlogging-categories5/sieveeditor.renamecategories diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index d0a27eec7fb1..27a036f8ad58 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672105 -SHA256 (KDE/release-service/22.04.2/zanshin-22.04.2.tar.xz) = 609a30da837a9b25195217356c6586d22d7695d4f452fc64620963eab0c9e563 -SIZE (KDE/release-service/22.04.2/zanshin-22.04.2.tar.xz) = 353576 +TIMESTAMP = 1657013439 +SHA256 (KDE/release-service/22.04.3/zanshin-22.04.3.tar.xz) = be38040659e48cffa09c738a36746364efefbbaf3b232cb05c0cf6b859e54dd9 +SIZE (KDE/release-service/22.04.3/zanshin-22.04.3.tar.xz) = 353548 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index d029327b4491..128045609b6f 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671990 -SHA256 (KDE/release-service/22.04.2/cervisia-22.04.2.tar.xz) = b86cc3df08f1651d30a278a372f94e326899fcb1416e6de979e8148501468ebd -SIZE (KDE/release-service/22.04.2/cervisia-22.04.2.tar.xz) = 1914020 +TIMESTAMP = 1657013325 +SHA256 (KDE/release-service/22.04.3/cervisia-22.04.3.tar.xz) = 10466329a28ee32c0039d6131a0f8384679a6bbf79a3fed2b5e25339b8c7cf99 +SIZE (KDE/release-service/22.04.3/cervisia-22.04.3.tar.xz) = 1913912 diff --git a/devel/cervisia/pkg-plist b/devel/cervisia/pkg-plist index b873bd7943c0..40615aead502 100644 --- a/devel/cervisia/pkg-plist +++ b/devel/cervisia/pkg-plist @@ -1,168 +1,170 @@ bin/cervisia bin/cvsaskpass bin/cvsservice5 lib/libkdeinit5_cervisia.so lib/libkdeinit5_cvsaskpass.so lib/libkdeinit5_cvsservice.so %%QT_PLUGINDIR%%/cervisiapart5.so man/ca/man1/cervisia.1.gz man/de/man1/cervisia.1.gz man/es/man1/cervisia.1.gz man/it/man1/cervisia.1.gz man/man1/cervisia.1.gz man/nl/man1/cervisia.1.gz man/pt/man1/cervisia.1.gz man/sv/man1/cervisia.1.gz man/uk/man1/cervisia.1.gz share/applications/org.kde.cervisia.desktop share/config.kcfg/cervisiapart.kcfg share/dbus-1/interfaces/org.kde.cervisia5.cvsjob.xml share/dbus-1/interfaces/org.kde.cervisia5.cvsloginjob.xml share/dbus-1/interfaces/org.kde.cervisia5.cvsservice.xml share/dbus-1/interfaces/org.kde.cervisia5.repository.xml share/icons/hicolor/16x16/actions/vcs-add-cvs-cervisia.png share/icons/hicolor/16x16/actions/vcs-commit-cvs-cervisia.png share/icons/hicolor/16x16/actions/vcs-diff-cvs-cervisia.png share/icons/hicolor/16x16/actions/vcs-remove-cvs-cervisia.png share/icons/hicolor/16x16/actions/vcs-status-cvs-cervisia.png share/icons/hicolor/16x16/actions/vcs-update-cvs-cervisia.png share/icons/hicolor/16x16/apps/cervisia.png share/icons/hicolor/22x22/actions/vcs-add-cvs-cervisia.png share/icons/hicolor/22x22/actions/vcs-commit-cvs-cervisia.png share/icons/hicolor/22x22/actions/vcs-diff-cvs-cervisia.png share/icons/hicolor/22x22/actions/vcs-remove-cvs-cervisia.png share/icons/hicolor/22x22/actions/vcs-status-cvs-cervisia.png share/icons/hicolor/22x22/actions/vcs-update-cvs-cervisia.png share/icons/hicolor/22x22/apps/cervisia.png share/icons/hicolor/32x32/actions/vcs-add-cvs-cervisia.png share/icons/hicolor/32x32/actions/vcs-commit-cvs-cervisia.png share/icons/hicolor/32x32/actions/vcs-diff-cvs-cervisia.png share/icons/hicolor/32x32/actions/vcs-remove-cvs-cervisia.png share/icons/hicolor/32x32/actions/vcs-status-cvs-cervisia.png share/icons/hicolor/32x32/actions/vcs-update-cvs-cervisia.png share/icons/hicolor/32x32/apps/cervisia.png share/icons/hicolor/48x48/actions/vcs-add-cvs-cervisia.png share/icons/hicolor/48x48/actions/vcs-commit-cvs-cervisia.png share/icons/hicolor/48x48/actions/vcs-diff-cvs-cervisia.png share/icons/hicolor/48x48/actions/vcs-remove-cvs-cervisia.png share/icons/hicolor/48x48/actions/vcs-status-cvs-cervisia.png share/icons/hicolor/48x48/actions/vcs-update-cvs-cervisia.png share/icons/hicolor/48x48/apps/cervisia.png share/icons/hicolor/scalable/actions/vcs-add-cvs-cervisia.svgz share/icons/hicolor/scalable/actions/vcs-commit-cvs-cervisia.svgz share/icons/hicolor/scalable/actions/vcs-diff-cvs-cervisia.svgz share/icons/hicolor/scalable/actions/vcs-remove-cvs-cervisia.svgz share/icons/hicolor/scalable/actions/vcs-status-cvs-cervisia.svgz share/icons/hicolor/scalable/actions/vcs-update-cvs-cervisia.svgz share/knotifications5/cervisia.notifyrc share/kservices5/org.kde.cervisiapart5.desktop share/kservices5/org.kde.cvsservice5.desktop share/kxmlgui5/cervisia/cervisiashellui.rc share/kxmlgui5/cervisiapart/cervisiaui.rc share/locale/ar/LC_MESSAGES/cervisia.mo share/locale/ar/LC_MESSAGES/cvsservice.mo share/locale/be/LC_MESSAGES/cervisia.mo share/locale/be/LC_MESSAGES/cvsservice.mo +share/locale/bg/LC_MESSAGES/cervisia.mo +share/locale/bg/LC_MESSAGES/cvsservice.mo share/locale/bs/LC_MESSAGES/cervisia.mo share/locale/bs/LC_MESSAGES/cvsservice.mo share/locale/ca/LC_MESSAGES/cervisia.mo share/locale/ca/LC_MESSAGES/cvsservice.mo share/locale/ca@valencia/LC_MESSAGES/cervisia.mo share/locale/ca@valencia/LC_MESSAGES/cvsservice.mo share/locale/cs/LC_MESSAGES/cervisia.mo share/locale/cs/LC_MESSAGES/cvsservice.mo share/locale/da/LC_MESSAGES/cervisia.mo share/locale/da/LC_MESSAGES/cvsservice.mo share/locale/de/LC_MESSAGES/cervisia.mo share/locale/de/LC_MESSAGES/cvsservice.mo share/locale/el/LC_MESSAGES/cervisia.mo share/locale/el/LC_MESSAGES/cvsservice.mo share/locale/en_GB/LC_MESSAGES/cervisia.mo share/locale/en_GB/LC_MESSAGES/cvsservice.mo share/locale/eo/LC_MESSAGES/cervisia.mo share/locale/eo/LC_MESSAGES/cvsservice.mo share/locale/es/LC_MESSAGES/cervisia.mo share/locale/es/LC_MESSAGES/cvsservice.mo share/locale/et/LC_MESSAGES/cervisia.mo share/locale/et/LC_MESSAGES/cvsservice.mo share/locale/eu/LC_MESSAGES/cervisia.mo share/locale/eu/LC_MESSAGES/cvsservice.mo share/locale/fa/LC_MESSAGES/cervisia.mo share/locale/fa/LC_MESSAGES/cvsservice.mo share/locale/fi/LC_MESSAGES/cervisia.mo share/locale/fi/LC_MESSAGES/cvsservice.mo share/locale/fr/LC_MESSAGES/cervisia.mo share/locale/fr/LC_MESSAGES/cvsservice.mo share/locale/ga/LC_MESSAGES/cervisia.mo share/locale/ga/LC_MESSAGES/cvsservice.mo share/locale/gl/LC_MESSAGES/cervisia.mo share/locale/gl/LC_MESSAGES/cvsservice.mo share/locale/he/LC_MESSAGES/cervisia.mo share/locale/hi/LC_MESSAGES/cervisia.mo share/locale/hi/LC_MESSAGES/cvsservice.mo share/locale/hr/LC_MESSAGES/cervisia.mo share/locale/hr/LC_MESSAGES/cvsservice.mo share/locale/hu/LC_MESSAGES/cervisia.mo share/locale/hu/LC_MESSAGES/cvsservice.mo share/locale/is/LC_MESSAGES/cvsservice.mo share/locale/it/LC_MESSAGES/cervisia.mo share/locale/it/LC_MESSAGES/cvsservice.mo share/locale/ja/LC_MESSAGES/cervisia.mo share/locale/ja/LC_MESSAGES/cvsservice.mo share/locale/kk/LC_MESSAGES/cervisia.mo share/locale/kk/LC_MESSAGES/cvsservice.mo share/locale/km/LC_MESSAGES/cervisia.mo share/locale/km/LC_MESSAGES/cvsservice.mo share/locale/ko/LC_MESSAGES/cervisia.mo share/locale/ko/LC_MESSAGES/cvsservice.mo share/locale/lt/LC_MESSAGES/cervisia.mo share/locale/lt/LC_MESSAGES/cvsservice.mo share/locale/lv/LC_MESSAGES/cervisia.mo share/locale/lv/LC_MESSAGES/cvsservice.mo share/locale/mr/LC_MESSAGES/cervisia.mo share/locale/mr/LC_MESSAGES/cvsservice.mo share/locale/nb/LC_MESSAGES/cervisia.mo share/locale/nb/LC_MESSAGES/cvsservice.mo share/locale/nds/LC_MESSAGES/cervisia.mo share/locale/nds/LC_MESSAGES/cvsservice.mo share/locale/nl/LC_MESSAGES/cervisia.mo share/locale/nl/LC_MESSAGES/cvsservice.mo share/locale/nn/LC_MESSAGES/cervisia.mo share/locale/nn/LC_MESSAGES/cvsservice.mo share/locale/pa/LC_MESSAGES/cervisia.mo share/locale/pa/LC_MESSAGES/cvsservice.mo share/locale/pl/LC_MESSAGES/cervisia.mo share/locale/pl/LC_MESSAGES/cvsservice.mo share/locale/pt/LC_MESSAGES/cervisia.mo share/locale/pt/LC_MESSAGES/cvsservice.mo share/locale/pt_BR/LC_MESSAGES/cervisia.mo share/locale/pt_BR/LC_MESSAGES/cvsservice.mo share/locale/ro/LC_MESSAGES/cervisia.mo share/locale/ro/LC_MESSAGES/cvsservice.mo share/locale/ru/LC_MESSAGES/cervisia.mo share/locale/ru/LC_MESSAGES/cvsservice.mo share/locale/se/LC_MESSAGES/cervisia.mo share/locale/se/LC_MESSAGES/cvsservice.mo share/locale/sk/LC_MESSAGES/cervisia.mo share/locale/sk/LC_MESSAGES/cvsservice.mo share/locale/sl/LC_MESSAGES/cervisia.mo share/locale/sl/LC_MESSAGES/cvsservice.mo share/locale/sq/LC_MESSAGES/cervisia.mo share/locale/sq/LC_MESSAGES/cvsservice.mo share/locale/sv/LC_MESSAGES/cervisia.mo share/locale/sv/LC_MESSAGES/cvsservice.mo share/locale/ta/LC_MESSAGES/cervisia.mo share/locale/ta/LC_MESSAGES/cvsservice.mo share/locale/tg/LC_MESSAGES/cervisia.mo share/locale/tg/LC_MESSAGES/cvsservice.mo share/locale/tr/LC_MESSAGES/cervisia.mo share/locale/tr/LC_MESSAGES/cvsservice.mo share/locale/ug/LC_MESSAGES/cervisia.mo share/locale/ug/LC_MESSAGES/cvsservice.mo share/locale/uk/LC_MESSAGES/cervisia.mo share/locale/uk/LC_MESSAGES/cvsservice.mo share/locale/zh_CN/LC_MESSAGES/cervisia.mo share/locale/zh_CN/LC_MESSAGES/cvsservice.mo share/locale/zh_TW/LC_MESSAGES/cervisia.mo share/locale/zh_TW/LC_MESSAGES/cvsservice.mo share/metainfo/org.kde.cervisia.appdata.xml diff --git a/devel/dolphin-plugins/distinfo b/devel/dolphin-plugins/distinfo index 42e24729f13b..95751957a465 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671985 -SHA256 (KDE/release-service/22.04.2/dolphin-plugins-22.04.2.tar.xz) = ae6a5e36efb53b9f88ebcecdad78d73660d661f285dea135ccf337d1adf8ef28 -SIZE (KDE/release-service/22.04.2/dolphin-plugins-22.04.2.tar.xz) = 256540 +TIMESTAMP = 1657013319 +SHA256 (KDE/release-service/22.04.3/dolphin-plugins-22.04.3.tar.xz) = 2e4a2cc09caa82689b724295d5514b30f06d0f9c7fc594f3635d31217eee21c6 +SIZE (KDE/release-service/22.04.3/dolphin-plugins-22.04.3.tar.xz) = 257356 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index 912cb5676a54..3b40f5bc88a1 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,214 +1,218 @@ %%QT_PLUGINDIR%%/dolphin/vcs/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewgitplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewhgplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/locale/ast/LC_MESSAGES/mountisoaction.mo share/locale/az/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/az/LC_MESSAGES/fileviewgitplugin.mo share/locale/az/LC_MESSAGES/fileviewhgplugin.mo share/locale/az/LC_MESSAGES/fileviewsvnplugin.mo share/locale/az/LC_MESSAGES/mountisoaction.mo +share/locale/bg/LC_MESSAGES/fileviewbazaarplugin.mo +share/locale/bg/LC_MESSAGES/fileviewgitplugin.mo +share/locale/bg/LC_MESSAGES/fileviewhgplugin.mo +share/locale/bg/LC_MESSAGES/fileviewsvnplugin.mo share/locale/bg/LC_MESSAGES/mountisoaction.mo share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/mountisoaction.mo share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/mountisoaction.mo share/locale/fi/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fi/LC_MESSAGES/fileviewgitplugin.mo share/locale/fi/LC_MESSAGES/fileviewhgplugin.mo share/locale/fi/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fi/LC_MESSAGES/mountisoaction.mo share/locale/fr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/fr/LC_MESSAGES/fileviewgitplugin.mo share/locale/fr/LC_MESSAGES/fileviewhgplugin.mo share/locale/fr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/fr/LC_MESSAGES/mountisoaction.mo share/locale/ga/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ga/LC_MESSAGES/fileviewgitplugin.mo share/locale/ga/LC_MESSAGES/fileviewhgplugin.mo share/locale/ga/LC_MESSAGES/fileviewsvnplugin.mo share/locale/gl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/gl/LC_MESSAGES/fileviewgitplugin.mo share/locale/gl/LC_MESSAGES/fileviewhgplugin.mo share/locale/gl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/hu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/hu/LC_MESSAGES/fileviewgitplugin.mo share/locale/hu/LC_MESSAGES/fileviewhgplugin.mo share/locale/hu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ia/LC_MESSAGES/mountisoaction.mo share/locale/id/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/id/LC_MESSAGES/fileviewgitplugin.mo share/locale/id/LC_MESSAGES/fileviewhgplugin.mo share/locale/id/LC_MESSAGES/fileviewsvnplugin.mo share/locale/id/LC_MESSAGES/mountisoaction.mo share/locale/it/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/it/LC_MESSAGES/fileviewgitplugin.mo share/locale/it/LC_MESSAGES/fileviewhgplugin.mo share/locale/it/LC_MESSAGES/fileviewsvnplugin.mo share/locale/it/LC_MESSAGES/mountisoaction.mo share/locale/ja/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ja/LC_MESSAGES/fileviewgitplugin.mo share/locale/ja/LC_MESSAGES/fileviewhgplugin.mo share/locale/ja/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ja/LC_MESSAGES/mountisoaction.mo share/locale/kk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/kk/LC_MESSAGES/fileviewgitplugin.mo share/locale/kk/LC_MESSAGES/fileviewhgplugin.mo share/locale/kk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ko/LC_MESSAGES/fileviewgitplugin.mo share/locale/ko/LC_MESSAGES/fileviewhgplugin.mo share/locale/ko/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ko/LC_MESSAGES/mountisoaction.mo share/locale/lt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/lt/LC_MESSAGES/fileviewgitplugin.mo share/locale/lt/LC_MESSAGES/fileviewhgplugin.mo share/locale/lt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/lt/LC_MESSAGES/mountisoaction.mo share/locale/mr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/mr/LC_MESSAGES/fileviewgitplugin.mo share/locale/mr/LC_MESSAGES/fileviewhgplugin.mo share/locale/mr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/mountisoaction.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/ta/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/tr/LC_MESSAGES/mountisoaction.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/vi/LC_MESSAGES/fileviewgitplugin.mo share/locale/vi/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index cf307da40711..f4e0c84e55bd 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671979 -SHA256 (KDE/release-service/22.04.2/kapptemplate-22.04.2.tar.xz) = 5928f15db0cffb90d7e830b12df4b6e7afcfaefc767a15b45597d195b2a4b289 -SIZE (KDE/release-service/22.04.2/kapptemplate-22.04.2.tar.xz) = 334640 +TIMESTAMP = 1657013313 +SHA256 (KDE/release-service/22.04.3/kapptemplate-22.04.3.tar.xz) = 2fa86ce22899420b883614bbeb014fe783b92fc4a1dffe29885933d466b62f1a +SIZE (KDE/release-service/22.04.3/kapptemplate-22.04.3.tar.xz) = 334792 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index cefb90058dfe..70ad871cc422 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,56 +1,57 @@ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg share/icons/hicolor/16x16/apps/kapptemplate.png share/icons/hicolor/22x22/apps/kapptemplate.png share/icons/hicolor/32x32/apps/kapptemplate.png share/icons/hicolor/48x48/apps/kapptemplate.png share/icons/hicolor/64x64/apps/kapptemplate.png share/icons/hicolor/128x128/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks5-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks5.tar.bz2 +share/locale/bg/LC_MESSAGES/kapptemplate.mo share/locale/bs/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca@valencia/LC_MESSAGES/kapptemplate.mo share/locale/cs/LC_MESSAGES/kapptemplate.mo share/locale/da/LC_MESSAGES/kapptemplate.mo share/locale/de/LC_MESSAGES/kapptemplate.mo share/locale/el/LC_MESSAGES/kapptemplate.mo share/locale/en_GB/LC_MESSAGES/kapptemplate.mo share/locale/eo/LC_MESSAGES/kapptemplate.mo share/locale/es/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/eu/LC_MESSAGES/kapptemplate.mo share/locale/fi/LC_MESSAGES/kapptemplate.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo share/locale/it/LC_MESSAGES/kapptemplate.mo share/locale/ja/LC_MESSAGES/kapptemplate.mo share/locale/kk/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/lt/LC_MESSAGES/kapptemplate.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo share/locale/mr/LC_MESSAGES/kapptemplate.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo share/locale/ru/LC_MESSAGES/kapptemplate.mo share/locale/sk/LC_MESSAGES/kapptemplate.mo share/locale/sl/LC_MESSAGES/kapptemplate.mo share/locale/sq/LC_MESSAGES/kapptemplate.mo share/locale/sr/LC_MESSAGES/kapptemplate.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo share/locale/ug/LC_MESSAGES/kapptemplate.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo share/metainfo/org.kde.kapptemplate.appdata.xml share/qlogging-categories5/kapptemplate.categories diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index bb1610f22cb0..94e28230f701 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671978 -SHA256 (KDE/release-service/22.04.2/kcachegrind-22.04.2.tar.xz) = d685bc4d6ea53dfc4ecdb307e3c3cade6228467b93c400b42fd1fd0b924841b6 -SIZE (KDE/release-service/22.04.2/kcachegrind-22.04.2.tar.xz) = 879896 +TIMESTAMP = 1657013313 +SHA256 (KDE/release-service/22.04.3/kcachegrind-22.04.3.tar.xz) = b6fc16efd83d076d8b0398fc37f924531203237b7fe28e0a2b4c540c41b29389 +SIZE (KDE/release-service/22.04.3/kcachegrind-22.04.3.tar.xz) = 879476 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index e08c6794f7ac..bc9c17b00856 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,70 +1,71 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png share/icons/hicolor/128x128/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/be/LC_MESSAGES/kcachegrind.mo +share/locale/bg/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo share/locale/ca/LC_MESSAGES/kcachegrind.mo share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo share/locale/cs/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind.mo share/locale/de/LC_MESSAGES/kcachegrind.mo share/locale/el/LC_MESSAGES/kcachegrind.mo share/locale/en_GB/LC_MESSAGES/kcachegrind.mo share/locale/eo/LC_MESSAGES/kcachegrind.mo share/locale/es/LC_MESSAGES/kcachegrind.mo share/locale/et/LC_MESSAGES/kcachegrind.mo share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo share/locale/fr/LC_MESSAGES/kcachegrind.mo share/locale/ga/LC_MESSAGES/kcachegrind.mo share/locale/gl/LC_MESSAGES/kcachegrind.mo share/locale/hi/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo share/locale/hu/LC_MESSAGES/kcachegrind.mo share/locale/it/LC_MESSAGES/kcachegrind.mo share/locale/ja/LC_MESSAGES/kcachegrind.mo share/locale/kk/LC_MESSAGES/kcachegrind.mo share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo share/locale/lt/LC_MESSAGES/kcachegrind.mo share/locale/mr/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind.mo share/locale/nds/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind.mo share/locale/nn/LC_MESSAGES/kcachegrind.mo share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo share/locale/pt/LC_MESSAGES/kcachegrind.mo share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo share/locale/se/LC_MESSAGES/kcachegrind.mo share/locale/sk/LC_MESSAGES/kcachegrind.mo share/locale/sl/LC_MESSAGES/kcachegrind.mo share/locale/sq/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo share/locale/ta/LC_MESSAGES/kcachegrind.mo share/locale/tg/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind.mo share/locale/ug/LC_MESSAGES/kcachegrind.mo share/locale/uk/LC_MESSAGES/kcachegrind.mo share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo share/metainfo/org.kde.kcachegrind.appdata.xml diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index e927b2cbac7a..e840af9ab6c2 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671989 -SHA256 (KDE/release-service/22.04.2/kde-dev-scripts-22.04.2.tar.xz) = b2a788e1e678081fbc3f494b30950050d272b91c381798e6a27e008d5b8445f4 -SIZE (KDE/release-service/22.04.2/kde-dev-scripts-22.04.2.tar.xz) = 366536 +TIMESTAMP = 1657013323 +SHA256 (KDE/release-service/22.04.3/kde-dev-scripts-22.04.3.tar.xz) = 5242cb040984d638ab7e83d150772f3a78a60c38ba36f01f7715c108c0991377 +SIZE (KDE/release-service/22.04.3/kde-dev-scripts-22.04.3.tar.xz) = 366532 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index cbd0b598c45f..81d68ed11b5e 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671990 -SHA256 (KDE/release-service/22.04.2/kde-dev-utils-22.04.2.tar.xz) = 771876d72761718dc004deaa32d9bb846e4475e02d0df01e336b11a14b061b7f -SIZE (KDE/release-service/22.04.2/kde-dev-utils-22.04.2.tar.xz) = 68452 +TIMESTAMP = 1657013324 +SHA256 (KDE/release-service/22.04.3/kde-dev-utils-22.04.3.tar.xz) = 08b5715832810575fb3637fb49b40610a29ff13bcf6f3033968391d5b0c2dbc8 +SIZE (KDE/release-service/22.04.3/kde-dev-utils-22.04.3.tar.xz) = 68580 diff --git a/devel/kde-dev-utils/pkg-plist b/devel/kde-dev-utils/pkg-plist index 0a8178ac3a54..4e297fbbdfcb 100644 --- a/devel/kde-dev-utils/pkg-plist +++ b/devel/kde-dev-utils/pkg-plist @@ -1,114 +1,115 @@ bin/kpartloader bin/kuiviewer %%QT_PLUGINDIR%%/kf5/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/16x16/apps/kuiviewer.png share/icons/hicolor/32x32/apps/kuiviewer.png share/icons/hicolor/48x48/apps/kuiviewer.png share/icons/hicolor/64x64/apps/kuiviewer.png share/icons/hicolor/128x128/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg share/kservices5/designerthumbnail.desktop share/kservices5/kuiviewer_part.desktop share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/az/LC_MESSAGES/kpartloader.mo share/locale/az/LC_MESSAGES/kuiviewer.mo share/locale/be/LC_MESSAGES/kuiviewer.mo +share/locale/bg/LC_MESSAGES/kpartloader.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo share/locale/bs/LC_MESSAGES/kpartloader.mo share/locale/bs/LC_MESSAGES/kuiviewer.mo share/locale/ca/LC_MESSAGES/kpartloader.mo share/locale/ca/LC_MESSAGES/kuiviewer.mo share/locale/ca@valencia/LC_MESSAGES/kpartloader.mo share/locale/ca@valencia/LC_MESSAGES/kuiviewer.mo share/locale/cs/LC_MESSAGES/kpartloader.mo share/locale/cs/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kpartloader.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo share/locale/hr/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kpartloader.mo share/locale/hu/LC_MESSAGES/kuiviewer.mo share/locale/is/LC_MESSAGES/kuiviewer.mo share/locale/it/LC_MESSAGES/kpartloader.mo share/locale/it/LC_MESSAGES/kuiviewer.mo share/locale/ja/LC_MESSAGES/kpartloader.mo share/locale/ja/LC_MESSAGES/kuiviewer.mo share/locale/kk/LC_MESSAGES/kpartloader.mo share/locale/kk/LC_MESSAGES/kuiviewer.mo share/locale/km/LC_MESSAGES/kuiviewer.mo share/locale/ko/LC_MESSAGES/kpartloader.mo share/locale/ko/LC_MESSAGES/kuiviewer.mo share/locale/lt/LC_MESSAGES/kpartloader.mo share/locale/lt/LC_MESSAGES/kuiviewer.mo share/locale/lv/LC_MESSAGES/kpartloader.mo share/locale/lv/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo share/locale/nb/LC_MESSAGES/kpartloader.mo share/locale/nb/LC_MESSAGES/kuiviewer.mo share/locale/nds/LC_MESSAGES/kpartloader.mo share/locale/nds/LC_MESSAGES/kuiviewer.mo share/locale/nl/LC_MESSAGES/kpartloader.mo share/locale/nl/LC_MESSAGES/kuiviewer.mo share/locale/nn/LC_MESSAGES/kpartloader.mo share/locale/nn/LC_MESSAGES/kuiviewer.mo share/locale/pa/LC_MESSAGES/kpartloader.mo share/locale/pa/LC_MESSAGES/kuiviewer.mo share/locale/pl/LC_MESSAGES/kpartloader.mo share/locale/pl/LC_MESSAGES/kuiviewer.mo share/locale/pt/LC_MESSAGES/kpartloader.mo share/locale/pt/LC_MESSAGES/kuiviewer.mo share/locale/pt_BR/LC_MESSAGES/kpartloader.mo share/locale/pt_BR/LC_MESSAGES/kuiviewer.mo share/locale/ro/LC_MESSAGES/kpartloader.mo share/locale/ro/LC_MESSAGES/kuiviewer.mo share/locale/ru/LC_MESSAGES/kpartloader.mo share/locale/ru/LC_MESSAGES/kuiviewer.mo share/locale/se/LC_MESSAGES/kuiviewer.mo share/locale/sk/LC_MESSAGES/kpartloader.mo share/locale/sk/LC_MESSAGES/kuiviewer.mo share/locale/sl/LC_MESSAGES/kpartloader.mo share/locale/sl/LC_MESSAGES/kuiviewer.mo share/locale/sq/LC_MESSAGES/kpartloader.mo share/locale/sq/LC_MESSAGES/kuiviewer.mo share/locale/sv/LC_MESSAGES/kpartloader.mo share/locale/sv/LC_MESSAGES/kuiviewer.mo share/locale/ta/LC_MESSAGES/kuiviewer.mo share/locale/tg/LC_MESSAGES/kuiviewer.mo share/locale/tr/LC_MESSAGES/kpartloader.mo share/locale/tr/LC_MESSAGES/kuiviewer.mo share/locale/ug/LC_MESSAGES/kpartloader.mo share/locale/ug/LC_MESSAGES/kuiviewer.mo share/locale/uk/LC_MESSAGES/kpartloader.mo share/locale/uk/LC_MESSAGES/kuiviewer.mo share/locale/zh_CN/LC_MESSAGES/kpartloader.mo share/locale/zh_CN/LC_MESSAGES/kuiviewer.mo share/locale/zh_TW/LC_MESSAGES/kpartloader.mo share/locale/zh_TW/LC_MESSAGES/kuiviewer.mo share/metainfo/org.kde.kuiviewer.metainfo.xml share/metainfo/org.kde.kuiviewerpart.metainfo.xml diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 638fc6fad582..ed8c88973560 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671977 -SHA256 (KDE/release-service/22.04.2/kdesdk-thumbnailers-22.04.2.tar.xz) = 0ebe7212175d468d5d994e4c51f3f05fe4c36b60d079866db63093f8a2747645 -SIZE (KDE/release-service/22.04.2/kdesdk-thumbnailers-22.04.2.tar.xz) = 26436 +TIMESTAMP = 1657013312 +SHA256 (KDE/release-service/22.04.3/kdesdk-thumbnailers-22.04.3.tar.xz) = dada23a193d29a8bfa1e08631d157394b38eefef40a6965ddbe9234baf557803 +SIZE (KDE/release-service/22.04.3/kdesdk-thumbnailers-22.04.3.tar.xz) = 26488 diff --git a/devel/kdesdk-thumbnailers/pkg-plist b/devel/kdesdk-thumbnailers/pkg-plist index ed5bbd2865bb..55e3ecd96aba 100644 --- a/devel/kdesdk-thumbnailers/pkg-plist +++ b/devel/kdesdk-thumbnailers/pkg-plist @@ -1,45 +1,46 @@ %%QT_PLUGINDIR%%/pothumbnail.so share/config.kcfg/pocreatorsettings.kcfg share/kservices5/pothumbnail.desktop share/locale/ar/LC_MESSAGES/pothumbnail.mo +share/locale/bg/LC_MESSAGES/pothumbnail.mo share/locale/bs/LC_MESSAGES/pothumbnail.mo share/locale/ca/LC_MESSAGES/pothumbnail.mo share/locale/ca@valencia/LC_MESSAGES/pothumbnail.mo share/locale/cs/LC_MESSAGES/pothumbnail.mo share/locale/da/LC_MESSAGES/pothumbnail.mo share/locale/de/LC_MESSAGES/pothumbnail.mo share/locale/el/LC_MESSAGES/pothumbnail.mo share/locale/en_GB/LC_MESSAGES/pothumbnail.mo share/locale/es/LC_MESSAGES/pothumbnail.mo share/locale/et/LC_MESSAGES/pothumbnail.mo share/locale/eu/LC_MESSAGES/pothumbnail.mo share/locale/fi/LC_MESSAGES/pothumbnail.mo share/locale/fr/LC_MESSAGES/pothumbnail.mo share/locale/ga/LC_MESSAGES/pothumbnail.mo share/locale/gl/LC_MESSAGES/pothumbnail.mo share/locale/hi/LC_MESSAGES/pothumbnail.mo share/locale/hu/LC_MESSAGES/pothumbnail.mo share/locale/it/LC_MESSAGES/pothumbnail.mo share/locale/ja/LC_MESSAGES/pothumbnail.mo share/locale/kk/LC_MESSAGES/pothumbnail.mo share/locale/ko/LC_MESSAGES/pothumbnail.mo share/locale/lt/LC_MESSAGES/pothumbnail.mo share/locale/mr/LC_MESSAGES/pothumbnail.mo share/locale/nb/LC_MESSAGES/pothumbnail.mo share/locale/nds/LC_MESSAGES/pothumbnail.mo share/locale/nl/LC_MESSAGES/pothumbnail.mo share/locale/nn/LC_MESSAGES/pothumbnail.mo share/locale/pa/LC_MESSAGES/pothumbnail.mo share/locale/pl/LC_MESSAGES/pothumbnail.mo share/locale/pt/LC_MESSAGES/pothumbnail.mo share/locale/pt_BR/LC_MESSAGES/pothumbnail.mo share/locale/ro/LC_MESSAGES/pothumbnail.mo share/locale/ru/LC_MESSAGES/pothumbnail.mo share/locale/sk/LC_MESSAGES/pothumbnail.mo share/locale/sl/LC_MESSAGES/pothumbnail.mo share/locale/sv/LC_MESSAGES/pothumbnail.mo share/locale/tr/LC_MESSAGES/pothumbnail.mo share/locale/ug/LC_MESSAGES/pothumbnail.mo share/locale/uk/LC_MESSAGES/pothumbnail.mo share/locale/zh_CN/LC_MESSAGES/pothumbnail.mo share/locale/zh_TW/LC_MESSAGES/pothumbnail.mo diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 58cb12ffccf6..910532cf301b 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671988 -SHA256 (KDE/release-service/22.04.2/kdev-php-22.04.2.tar.xz) = 25098b4c5f475bf9d52fbbc0e691dd780f1b01b6b9b92230c32823e03caff6e6 -SIZE (KDE/release-service/22.04.2/kdev-php-22.04.2.tar.xz) = 1081384 +TIMESTAMP = 1657013323 +SHA256 (KDE/release-service/22.04.3/kdev-php-22.04.3.tar.xz) = 1a267c2eaed3658ac0b2dacc28956867eab7608bacf57b3041952a868f27c915 +SIZE (KDE/release-service/22.04.3/kdev-php-22.04.3.tar.xz) = 1081120 diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index 428fd8db86f4..c56ce5342d16 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671983 -SHA256 (KDE/release-service/22.04.2/kdev-python-22.04.2.tar.xz) = 8b6471a421234577efdfab1ffe7cae59387c88618677e62270b8ac6102b23bdc -SIZE (KDE/release-service/22.04.2/kdev-python-22.04.2.tar.xz) = 1091224 +TIMESTAMP = 1657013317 +SHA256 (KDE/release-service/22.04.3/kdev-python-22.04.3.tar.xz) = a063ac932dcc696328328bb382c5dbc57dd65d8ed6400238513d1898db6fa8b4 +SIZE (KDE/release-service/22.04.3/kdev-python-22.04.3.tar.xz) = 1091116 diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index 5d81ba8d11e5..b78036c228a7 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,64 +1,64 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 1 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= 36 SO_VER= 58 -SO_VER_LONG= 5.8.220402 +SO_VER_LONG= 5.8.220403 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 diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 866f2a9fb450..b37f9022b0f1 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671984 -SHA256 (KDE/release-service/22.04.2/kdevelop-22.04.2.tar.xz) = d3612b8dc6334cc481c0b1a2b8a0ccd4012d60eae5429bdad7f502ac47ef30b6 -SIZE (KDE/release-service/22.04.2/kdevelop-22.04.2.tar.xz) = 8426024 +TIMESTAMP = 1657013318 +SHA256 (KDE/release-service/22.04.3/kdevelop-22.04.3.tar.xz) = 9b5e65cb9260774d5d1088ca5bdb33102e6301a57a30dd26105e9be43ba5bc0d +SIZE (KDE/release-service/22.04.3/kdevelop-22.04.3.tar.xz) = 8426644 diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index e44bfea63161..c3878ffdfb5a 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3065 +1,3118 @@ 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/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-4.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-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-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-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-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-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/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/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/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/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.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/256x256/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/1024x1024/apps/kdevelop.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/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo +share/locale/bg/LC_MESSAGES/kdevastyle.mo +share/locale/bg/LC_MESSAGES/kdevbazaar.mo +share/locale/bg/LC_MESSAGES/kdevclang.mo +share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo +share/locale/bg/LC_MESSAGES/kdevclazy.mo +share/locale/bg/LC_MESSAGES/kdevcmake.mo +share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo +share/locale/bg/LC_MESSAGES/kdevcodeutils.mo +share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo +share/locale/bg/LC_MESSAGES/kdevcppcheck.mo +share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo +share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo +share/locale/bg/LC_MESSAGES/kdevcustommake.mo +share/locale/bg/LC_MESSAGES/kdevcustomscript.mo +share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo +share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo +share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo +share/locale/bg/LC_MESSAGES/kdevexecute.mo +share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo +share/locale/bg/LC_MESSAGES/kdevexecutescript.mo +share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo +share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo +share/locale/bg/LC_MESSAGES/kdevflatpak.mo +share/locale/bg/LC_MESSAGES/kdevgdb.mo +share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo +share/locale/bg/LC_MESSAGES/kdevgrepview.mo +share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo +share/locale/bg/LC_MESSAGES/kdevlldb.mo +share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo +share/locale/bg/LC_MESSAGES/kdevmanpage.mo +share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo +share/locale/bg/LC_MESSAGES/kdevninja.mo +share/locale/bg/LC_MESSAGES/kdevokteta.mo +share/locale/bg/LC_MESSAGES/kdevopenwith.mo +share/locale/bg/LC_MESSAGES/kdevoutlineview.mo +share/locale/bg/LC_MESSAGES/kdevpatchreview.mo +share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo +share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo +share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo +share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo +share/locale/bg/LC_MESSAGES/kdevqmljs.mo +share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo +share/locale/bg/LC_MESSAGES/kdevscratchpad.mo +share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo +share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo +share/locale/bg/LC_MESSAGES/kdevsubversion.mo +share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo +share/locale/bg/LC_MESSAGES/kdevtestview.mo +share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo +share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo +share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo +share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/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/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/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 338f08c92a02..e174d011df5a 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671986 -SHA256 (KDE/release-service/22.04.2/kio-extras-22.04.2.tar.xz) = 319959fd733eec1e22a72554255412ef6771b7ed8c1f4558a05d2097b5860717 -SIZE (KDE/release-service/22.04.2/kio-extras-22.04.2.tar.xz) = 642080 +TIMESTAMP = 1657013321 +SHA256 (KDE/release-service/22.04.3/kio-extras-22.04.3.tar.xz) = 4b1253fd9ba21250c62b13279779b16e88eadff84886c5119964570ed83fb76c +SIZE (KDE/release-service/22.04.3/kio-extras-22.04.3.tar.xz) = 642208 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index a77aafb02f65..d46ff4a75064 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,817 +1,818 @@ include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf5/smbnotifier lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf5/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/kf5/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/kritathumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/kfileaudiopreview.so share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/directorythumbnail.desktop share/kservicetypes5/thumbcreator.desktop share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo share/locale/ast/LC_MESSAGES/kio5_fish.mo share/locale/ast/LC_MESSAGES/kio5_info.mo share/locale/ast/LC_MESSAGES/kio5_mtp.mo share/locale/ast/LC_MESSAGES/kio5_recentdocuments.mo share/locale/be/LC_MESSAGES/kfileaudiopreview5.mo share/locale/be/LC_MESSAGES/kio5_archive.mo share/locale/be/LC_MESSAGES/kio5_fish.mo share/locale/be/LC_MESSAGES/kio5_man.mo share/locale/be/LC_MESSAGES/kio5_nfs.mo share/locale/be/LC_MESSAGES/kio5_sftp.mo share/locale/be/LC_MESSAGES/kio5_smb.mo share/locale/be/LC_MESSAGES/kio5_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo +share/locale/bg/LC_MESSAGES/kio5_mtp.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ga/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ga/LC_MESSAGES/kio5_activities.mo share/locale/ga/LC_MESSAGES/kio5_archive.mo share/locale/ga/LC_MESSAGES/kio5_bookmarks.mo share/locale/ga/LC_MESSAGES/kio5_fish.mo share/locale/ga/LC_MESSAGES/kio5_info.mo share/locale/ga/LC_MESSAGES/kio5_man.mo share/locale/ga/LC_MESSAGES/kio5_nfs.mo share/locale/ga/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ga/LC_MESSAGES/kio5_sftp.mo share/locale/ga/LC_MESSAGES/kio5_smb.mo share/locale/ga/LC_MESSAGES/kio5_thumbnail.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo share/locale/he/LC_MESSAGES/kfileaudiopreview5.mo share/locale/he/LC_MESSAGES/kio5_activities.mo share/locale/he/LC_MESSAGES/kio5_archive.mo share/locale/he/LC_MESSAGES/kio5_bookmarks.mo share/locale/he/LC_MESSAGES/kio5_fish.mo share/locale/he/LC_MESSAGES/kio5_info.mo share/locale/he/LC_MESSAGES/kio5_man.mo share/locale/he/LC_MESSAGES/kio5_nfs.mo share/locale/he/LC_MESSAGES/kio5_recentdocuments.mo share/locale/he/LC_MESSAGES/kio5_sftp.mo share/locale/he/LC_MESSAGES/kio5_smb.mo share/locale/he/LC_MESSAGES/kio5_thumbnail.mo share/locale/hi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hi/LC_MESSAGES/kio5_activities.mo share/locale/hi/LC_MESSAGES/kio5_archive.mo share/locale/hi/LC_MESSAGES/kio5_bookmarks.mo share/locale/hi/LC_MESSAGES/kio5_fish.mo share/locale/hi/LC_MESSAGES/kio5_info.mo share/locale/hi/LC_MESSAGES/kio5_man.mo share/locale/hi/LC_MESSAGES/kio5_nfs.mo share/locale/hi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hi/LC_MESSAGES/kio5_sftp.mo share/locale/hi/LC_MESSAGES/kio5_smb.mo share/locale/hi/LC_MESSAGES/kio5_thumbnail.mo share/locale/hr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hr/LC_MESSAGES/kio5_activities.mo share/locale/hr/LC_MESSAGES/kio5_archive.mo share/locale/hr/LC_MESSAGES/kio5_bookmarks.mo share/locale/hr/LC_MESSAGES/kio5_fish.mo share/locale/hr/LC_MESSAGES/kio5_info.mo share/locale/hr/LC_MESSAGES/kio5_man.mo share/locale/hr/LC_MESSAGES/kio5_nfs.mo share/locale/hr/LC_MESSAGES/kio5_sftp.mo share/locale/hr/LC_MESSAGES/kio5_smb.mo share/locale/hr/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_mtp.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_activities.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_mtp.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo share/locale/kk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/kk/LC_MESSAGES/kio5_activities.mo share/locale/kk/LC_MESSAGES/kio5_archive.mo share/locale/kk/LC_MESSAGES/kio5_bookmarks.mo share/locale/kk/LC_MESSAGES/kio5_fish.mo share/locale/kk/LC_MESSAGES/kio5_info.mo share/locale/kk/LC_MESSAGES/kio5_man.mo share/locale/kk/LC_MESSAGES/kio5_nfs.mo share/locale/kk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/kk/LC_MESSAGES/kio5_sftp.mo share/locale/kk/LC_MESSAGES/kio5_smb.mo share/locale/kk/LC_MESSAGES/kio5_thumbnail.mo share/locale/km/LC_MESSAGES/kfileaudiopreview5.mo share/locale/km/LC_MESSAGES/kio5_activities.mo share/locale/km/LC_MESSAGES/kio5_archive.mo share/locale/km/LC_MESSAGES/kio5_bookmarks.mo share/locale/km/LC_MESSAGES/kio5_fish.mo share/locale/km/LC_MESSAGES/kio5_info.mo share/locale/km/LC_MESSAGES/kio5_man.mo share/locale/km/LC_MESSAGES/kio5_nfs.mo share/locale/km/LC_MESSAGES/kio5_recentdocuments.mo share/locale/km/LC_MESSAGES/kio5_sftp.mo share/locale/km/LC_MESSAGES/kio5_smb.mo share/locale/km/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ml/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ml/LC_MESSAGES/kio5_archive.mo share/locale/ml/LC_MESSAGES/kio5_bookmarks.mo share/locale/ml/LC_MESSAGES/kio5_fish.mo share/locale/ml/LC_MESSAGES/kio5_info.mo share/locale/ml/LC_MESSAGES/kio5_man.mo share/locale/ml/LC_MESSAGES/kio5_nfs.mo share/locale/ml/LC_MESSAGES/kio5_sftp.mo share/locale/ml/LC_MESSAGES/kio5_smb.mo share/locale/ml/LC_MESSAGES/kio5_thumbnail.mo share/locale/mr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/mr/LC_MESSAGES/kio5_activities.mo share/locale/mr/LC_MESSAGES/kio5_archive.mo share/locale/mr/LC_MESSAGES/kio5_bookmarks.mo share/locale/mr/LC_MESSAGES/kio5_fish.mo share/locale/mr/LC_MESSAGES/kio5_info.mo share/locale/mr/LC_MESSAGES/kio5_man.mo share/locale/mr/LC_MESSAGES/kio5_nfs.mo share/locale/mr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/mr/LC_MESSAGES/kio5_sftp.mo share/locale/mr/LC_MESSAGES/kio5_smb.mo share/locale/mr/LC_MESSAGES/kio5_thumbnail.mo share/locale/nb/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nb/LC_MESSAGES/kio5_activities.mo share/locale/nb/LC_MESSAGES/kio5_archive.mo share/locale/nb/LC_MESSAGES/kio5_bookmarks.mo share/locale/nb/LC_MESSAGES/kio5_fish.mo share/locale/nb/LC_MESSAGES/kio5_info.mo share/locale/nb/LC_MESSAGES/kio5_man.mo share/locale/nb/LC_MESSAGES/kio5_nfs.mo share/locale/nb/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nb/LC_MESSAGES/kio5_sftp.mo share/locale/nb/LC_MESSAGES/kio5_smb.mo share/locale/nb/LC_MESSAGES/kio5_thumbnail.mo share/locale/nds/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nds/LC_MESSAGES/kio5_activities.mo share/locale/nds/LC_MESSAGES/kio5_archive.mo share/locale/nds/LC_MESSAGES/kio5_bookmarks.mo share/locale/nds/LC_MESSAGES/kio5_fish.mo share/locale/nds/LC_MESSAGES/kio5_info.mo share/locale/nds/LC_MESSAGES/kio5_man.mo share/locale/nds/LC_MESSAGES/kio5_nfs.mo share/locale/nds/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nds/LC_MESSAGES/kio5_sftp.mo share/locale/nds/LC_MESSAGES/kio5_smb.mo share/locale/nds/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/se/LC_MESSAGES/kfileaudiopreview5.mo share/locale/se/LC_MESSAGES/kio5_activities.mo share/locale/se/LC_MESSAGES/kio5_fish.mo share/locale/se/LC_MESSAGES/kio5_man.mo share/locale/se/LC_MESSAGES/kio5_nfs.mo share/locale/se/LC_MESSAGES/kio5_sftp.mo share/locale/se/LC_MESSAGES/kio5_smb.mo share/locale/se/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sq/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sq/LC_MESSAGES/kio5_archive.mo share/locale/sq/LC_MESSAGES/kio5_bookmarks.mo share/locale/sq/LC_MESSAGES/kio5_fish.mo share/locale/sq/LC_MESSAGES/kio5_info.mo share/locale/sq/LC_MESSAGES/kio5_man.mo share/locale/sq/LC_MESSAGES/kio5_nfs.mo share/locale/sq/LC_MESSAGES/kio5_sftp.mo share/locale/sq/LC_MESSAGES/kio5_smb.mo share/locale/sq/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ta/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ta/LC_MESSAGES/kio5_activities.mo share/locale/ta/LC_MESSAGES/kio5_archive.mo share/locale/ta/LC_MESSAGES/kio5_bookmarks.mo share/locale/ta/LC_MESSAGES/kio5_fish.mo share/locale/ta/LC_MESSAGES/kio5_info.mo share/locale/ta/LC_MESSAGES/kio5_man.mo share/locale/ta/LC_MESSAGES/kio5_mtp.mo share/locale/ta/LC_MESSAGES/kio5_nfs.mo share/locale/ta/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ta/LC_MESSAGES/kio5_sftp.mo share/locale/ta/LC_MESSAGES/kio5_smb.mo share/locale/ta/LC_MESSAGES/kio5_thumbnail.mo share/locale/tg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tg/LC_MESSAGES/kio5_activities.mo share/locale/tg/LC_MESSAGES/kio5_archive.mo share/locale/tg/LC_MESSAGES/kio5_bookmarks.mo share/locale/tg/LC_MESSAGES/kio5_fish.mo share/locale/tg/LC_MESSAGES/kio5_info.mo share/locale/tg/LC_MESSAGES/kio5_man.mo share/locale/tg/LC_MESSAGES/kio5_nfs.mo share/locale/tg/LC_MESSAGES/kio5_sftp.mo share/locale/tg/LC_MESSAGES/kio5_smb.mo share/locale/tg/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo share/locale/vi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/vi/LC_MESSAGES/kio5_activities.mo share/locale/vi/LC_MESSAGES/kio5_archive.mo share/locale/vi/LC_MESSAGES/kio5_bookmarks.mo share/locale/vi/LC_MESSAGES/kio5_fish.mo share/locale/vi/LC_MESSAGES/kio5_info.mo share/locale/vi/LC_MESSAGES/kio5_man.mo share/locale/vi/LC_MESSAGES/kio5_mtp.mo share/locale/vi/LC_MESSAGES/kio5_nfs.mo share/locale/vi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/vi/LC_MESSAGES/kio5_sftp.mo share/locale/vi/LC_MESSAGES/kio5_smb.mo share/locale/vi/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories5/kio-extras.categories share/qlogging-categories5/kio-extras.renamecategories %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 2ff9cdba44a4..cb2d3d09512f 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671981 -SHA256 (KDE/release-service/22.04.2/kirigami-gallery-22.04.2.tar.xz) = 746ee3402b19f453af7372a74dc734bd615a7ecf74da718b0417a42c7b5c1b06 -SIZE (KDE/release-service/22.04.2/kirigami-gallery-22.04.2.tar.xz) = 338144 +TIMESTAMP = 1657013315 +SHA256 (KDE/release-service/22.04.3/kirigami-gallery-22.04.3.tar.xz) = b06ef98a0dc34e7fa1fbe94b26c132f62e3d03b8a751d0f1705e94e6213c3f8c +SIZE (KDE/release-service/22.04.3/kirigami-gallery-22.04.3.tar.xz) = 338260 diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 4f22be15e594..1144c8286055 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671987 -SHA256 (KDE/release-service/22.04.2/kpublictransport-22.04.2.tar.xz) = aa48d57bbedada47cc13643ea7b39322adcef1d759b0992839992d17947ef3ea -SIZE (KDE/release-service/22.04.2/kpublictransport-22.04.2.tar.xz) = 485872 +TIMESTAMP = 1657013322 +SHA256 (KDE/release-service/22.04.3/kpublictransport-22.04.3.tar.xz) = 3f87338567fd931ae3f2ec43141cb2671d8b9ef30d8f1a550b7f9363f1ad4817 +SIZE (KDE/release-service/22.04.3/kpublictransport-22.04.3.tar.xz) = 485844 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 7b0e0c1aa310..ef7d28d0842a 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671985 -SHA256 (KDE/release-service/22.04.2/lokalize-22.04.2.tar.xz) = 9fa294baea4e317a058f6e521bbdf8b06ef76efb18fde5d52e199cb6378fd695 -SIZE (KDE/release-service/22.04.2/lokalize-22.04.2.tar.xz) = 2065060 +TIMESTAMP = 1657013320 +SHA256 (KDE/release-service/22.04.3/lokalize-22.04.3.tar.xz) = 3d8366e1bdb8543ca430ea2406d37c4bdebbdb3afce6e516b6d2981a04cba1fb +SIZE (KDE/release-service/22.04.3/lokalize-22.04.3.tar.xz) = 2070640 diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index bad15a5677d4..df89b18cbf9b 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671980 -SHA256 (KDE/release-service/22.04.2/poxml-22.04.2.tar.xz) = 7d335a0b7adbcaa9104b10b4aaff2d633fd6da2f57e173ccf91500f7757ba032 -SIZE (KDE/release-service/22.04.2/poxml-22.04.2.tar.xz) = 44096 +TIMESTAMP = 1657013314 +SHA256 (KDE/release-service/22.04.3/poxml-22.04.3.tar.xz) = 5cdc18781780f48e620c06ff219da781dea1a797f55ac5fe25fca6a1460437db +SIZE (KDE/release-service/22.04.3/poxml-22.04.3.tar.xz) = 44084 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index d054ea17bf1d..9cbfc20665d6 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671982 -SHA256 (KDE/release-service/22.04.2/umbrello-22.04.2.tar.xz) = 3cbb9419155100ae521a2fa80a6c04f436de856a342e041cb86140d5294f9563 -SIZE (KDE/release-service/22.04.2/umbrello-22.04.2.tar.xz) = 5676828 +TIMESTAMP = 1657013316 +SHA256 (KDE/release-service/22.04.3/umbrello-22.04.3.tar.xz) = 3ca01205d8143cdd2cf48eb7096283cc79376d2cdffb53d084b7aac4c3ba2243 +SIZE (KDE/release-service/22.04.3/umbrello-22.04.3.tar.xz) = 5674976 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index 885f03815a82..cacf92bccba9 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,185 +1,187 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop 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/128x128/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/bg/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/bg/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.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_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ia/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp.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_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.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_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/se/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sq/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.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_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.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/xmi1docbook.xsl share/umbrello5/xmi2docbook.xsl share/umbrello5/xmi.css diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 518d6c1b25fa..02ccd458818e 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672004 -SHA256 (KDE/release-service/22.04.2/kate-22.04.2.tar.xz) = 7cfec8b6391d89914aa73ead3902fdafab92f73368e0e26743cd4aab1ef117de -SIZE (KDE/release-service/22.04.2/kate-22.04.2.tar.xz) = 7576072 +TIMESTAMP = 1657013338 +SHA256 (KDE/release-service/22.04.3/kate-22.04.3.tar.xz) = 6e3e4f78c8c2b6a68ce8122dbcd1f1222ec18dd17aa1b4b155989a4659c8d436 +SIZE (KDE/release-service/22.04.3/kate-22.04.3.tar.xz) = 7584932 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 4ae4d3f26333..19fab7012516 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1361 +1,1379 @@ bin/kate bin/kwrite %%QT_PLUGINDIR%%/ktexteditor/cmaketoolsplugin.so %%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/ru/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/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/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/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/512x512/apps/kate.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-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo +share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/bg/LC_MESSAGES/katebuild-plugin.mo +share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/bg/LC_MESSAGES/katefiletree.mo +share/locale/bg/LC_MESSAGES/kategdbplugin.mo +share/locale/bg/LC_MESSAGES/kategitblameplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo +share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo +share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo +share/locale/bg/LC_MESSAGES/katetextfilter.mo +share/locale/bg/LC_MESSAGES/katexmlcheck.mo +share/locale/bg/LC_MESSAGES/katexmltools.mo +share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/kwrite.mo +share/locale/bg/LC_MESSAGES/lspclient.mo +share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo +share/locale/bg/LC_MESSAGES/tabswitcherplugin.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/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/lspclient.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 432f52ec2cf3..3b19e73c8c79 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672024 -SHA256 (KDE/release-service/22.04.2/blinken-22.04.2.tar.xz) = 9efee96cd98e77979b7dbc4014fa287df2384d13542fa8719db033528631d0f9 -SIZE (KDE/release-service/22.04.2/blinken-22.04.2.tar.xz) = 2714688 +TIMESTAMP = 1657013359 +SHA256 (KDE/release-service/22.04.3/blinken-22.04.3.tar.xz) = 67b47d9db2e656822a10a7c065c8299cd6acdbcbd0baa4bb766fac7974700467 +SIZE (KDE/release-service/22.04.3/blinken-22.04.3.tar.xz) = 2714772 diff --git a/games/bomber/distinfo b/games/bomber/distinfo index 92543561c163..f96ded90c0c4 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672056 -SHA256 (KDE/release-service/22.04.2/bomber-22.04.2.tar.xz) = bb7938c5f825bdee92bc0fde3225029894fbcd7e76c3809c5ce493e7e2b59b1d -SIZE (KDE/release-service/22.04.2/bomber-22.04.2.tar.xz) = 834268 +TIMESTAMP = 1657013390 +SHA256 (KDE/release-service/22.04.3/bomber-22.04.3.tar.xz) = eeed9c7b0eaaee6a41ff60dc0954063044b19a5bb682fef15c20a71058b9be33 +SIZE (KDE/release-service/22.04.3/bomber-22.04.3.tar.xz) = 834168 diff --git a/games/bovo/distinfo b/games/bovo/distinfo index 1561965d77c4..da2b300523ee 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672041 -SHA256 (KDE/release-service/22.04.2/bovo-22.04.2.tar.xz) = cd8398c398b9bcbe0e791911ef25f0c23950adc515f60bf8be991bfa425a4057 -SIZE (KDE/release-service/22.04.2/bovo-22.04.2.tar.xz) = 210196 +TIMESTAMP = 1657013375 +SHA256 (KDE/release-service/22.04.3/bovo-22.04.3.tar.xz) = 770839fc868acac22a162d20a81a55100df71a9df846d7fd29b7525adde9e4fb +SIZE (KDE/release-service/22.04.3/bovo-22.04.3.tar.xz) = 210104 diff --git a/games/granatier/distinfo b/games/granatier/distinfo index b02b3ae217bb..ba705f604ad8 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672029 -SHA256 (KDE/release-service/22.04.2/granatier-22.04.2.tar.xz) = 06d522c5ffbaabfe91e7ae3032048f0c9e71434d3829bc2b110b8a56d65c6a76 -SIZE (KDE/release-service/22.04.2/granatier-22.04.2.tar.xz) = 2102752 +TIMESTAMP = 1657013363 +SHA256 (KDE/release-service/22.04.3/granatier-22.04.3.tar.xz) = c9c5a2732423b715d7f50b334bc5f2c9e118eb86af7c6a241445c8748ae49efa +SIZE (KDE/release-service/22.04.3/granatier-22.04.3.tar.xz) = 2106072 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index be617181f1da..23c82ee328f5 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672046 -SHA256 (KDE/release-service/22.04.2/kanagram-22.04.2.tar.xz) = 781b995e521fe79662d300f67d95c35525bd3941ffaa33beb6083098ed2b0765 -SIZE (KDE/release-service/22.04.2/kanagram-22.04.2.tar.xz) = 8046344 +TIMESTAMP = 1657013380 +SHA256 (KDE/release-service/22.04.3/kanagram-22.04.3.tar.xz) = 7ea87105e98c350a65027d19dab7e519770daffe90e6360671e3e7a08cb6a5af +SIZE (KDE/release-service/22.04.3/kanagram-22.04.3.tar.xz) = 8045604 diff --git a/games/kapman/distinfo b/games/kapman/distinfo index dfc713d910ef..4c7e2c255619 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672049 -SHA256 (KDE/release-service/22.04.2/kapman-22.04.2.tar.xz) = 8b1cbfb45cf192694e04cc6b3df050c2704ed793e8ed51d7f596773188de6967 -SIZE (KDE/release-service/22.04.2/kapman-22.04.2.tar.xz) = 2475692 +TIMESTAMP = 1657013384 +SHA256 (KDE/release-service/22.04.3/kapman-22.04.3.tar.xz) = fe94436a88e632b16f79c61d6f468382da049a1e8afdbf160456cdc1bc1d9032 +SIZE (KDE/release-service/22.04.3/kapman-22.04.3.tar.xz) = 2475896 diff --git a/games/katomic/distinfo b/games/katomic/distinfo index e1876ceba1e1..52a5c0cade22 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672057 -SHA256 (KDE/release-service/22.04.2/katomic-22.04.2.tar.xz) = 915562b13cd2232aef48446b379514bfc48982b1c8481a0c52a4e70f18a4ca7a -SIZE (KDE/release-service/22.04.2/katomic-22.04.2.tar.xz) = 1438132 +TIMESTAMP = 1657013392 +SHA256 (KDE/release-service/22.04.3/katomic-22.04.3.tar.xz) = 8403d1b34383d1491ab2976b325660169a39ba7d3105c64f36a99cfd93a9bb34 +SIZE (KDE/release-service/22.04.3/katomic-22.04.3.tar.xz) = 1437636 diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index e50b578f861e..2823caac91e6 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672038 -SHA256 (KDE/release-service/22.04.2/kblackbox-22.04.2.tar.xz) = 3c7c1cad11d6eafd2e8b392f17fd23e11c7a56a5f5e304a8af816b7092283b62 -SIZE (KDE/release-service/22.04.2/kblackbox-22.04.2.tar.xz) = 528100 +TIMESTAMP = 1657013372 +SHA256 (KDE/release-service/22.04.3/kblackbox-22.04.3.tar.xz) = fd059ee5711ce387b0f6a2c81bb0d44419ccaac76c151ab78a74653fd2aaa746 +SIZE (KDE/release-service/22.04.3/kblackbox-22.04.3.tar.xz) = 528184 diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 4b1344875e21..9e4c095fe96d 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672037 -SHA256 (KDE/release-service/22.04.2/kblocks-22.04.2.tar.xz) = 6503720cf0d84f5d9e9aa178bf6f1eed33f4af88780d27aa356f614adcad7d45 -SIZE (KDE/release-service/22.04.2/kblocks-22.04.2.tar.xz) = 2101680 +TIMESTAMP = 1657013371 +SHA256 (KDE/release-service/22.04.3/kblocks-22.04.3.tar.xz) = 6afbdd7dd6e0bff34a9863e38657aac0a720f04da981a87baa4c53b4f9fc0da2 +SIZE (KDE/release-service/22.04.3/kblocks-22.04.3.tar.xz) = 2101900 diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 0fe3e474c9a7..c272f510ac29 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672051 -SHA256 (KDE/release-service/22.04.2/kbounce-22.04.2.tar.xz) = 251bd8cb8ecf99b44aeadff488822f5e1a1aa23ba58ad12a129590de7977d087 -SIZE (KDE/release-service/22.04.2/kbounce-22.04.2.tar.xz) = 3531568 +TIMESTAMP = 1657013385 +SHA256 (KDE/release-service/22.04.3/kbounce-22.04.3.tar.xz) = 907f97010fd4eaa4eab70f721defd543ab9ff2e016c8df0a3c41f6143e04eea0 +SIZE (KDE/release-service/22.04.3/kbounce-22.04.3.tar.xz) = 3532252 diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index c54de2180566..33a0f1cf3e2a 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672030 -SHA256 (KDE/release-service/22.04.2/kbreakout-22.04.2.tar.xz) = a6df6514b46ba12206bad8225d04d13c794cdcb6d145078031ff29ab675ed53e -SIZE (KDE/release-service/22.04.2/kbreakout-22.04.2.tar.xz) = 2559480 +TIMESTAMP = 1657013364 +SHA256 (KDE/release-service/22.04.3/kbreakout-22.04.3.tar.xz) = 77befc6fbc46ba7e0bdca41d93f3ca7e46ebb5ebc108acfe94301a520fed7ddf +SIZE (KDE/release-service/22.04.3/kbreakout-22.04.3.tar.xz) = 2557244 diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 3afcbecedadb..583deb1d5252 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672031 -SHA256 (KDE/release-service/22.04.2/kdiamond-22.04.2.tar.xz) = 74ffa01c4b9e58283a08aab3e4a2619cd242f9487a42836c1502ddc148a3b927 -SIZE (KDE/release-service/22.04.2/kdiamond-22.04.2.tar.xz) = 4703540 +TIMESTAMP = 1657013366 +SHA256 (KDE/release-service/22.04.3/kdiamond-22.04.3.tar.xz) = 7afc4cf92e5e7680c71894304de53a360490493fad839a741d95dffd7f8741b1 +SIZE (KDE/release-service/22.04.3/kdiamond-22.04.3.tar.xz) = 4703344 diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index acc3b1dc0cc2..fcf523ade6b1 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672060 -SHA256 (KDE/release-service/22.04.2/kfourinline-22.04.2.tar.xz) = 2b1be63a913a2b9e653b90d10649e852830c003da50999ad4a0cff201fc89065 -SIZE (KDE/release-service/22.04.2/kfourinline-22.04.2.tar.xz) = 722864 +TIMESTAMP = 1657013394 +SHA256 (KDE/release-service/22.04.3/kfourinline-22.04.3.tar.xz) = 27f59c9006d76764d8e8d51d31acad964983661fa0c8c4e0224151b5528c6a98 +SIZE (KDE/release-service/22.04.3/kfourinline-22.04.3.tar.xz) = 722184 diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index f250aa90b8ee..7b23940ac183 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672062 -SHA256 (KDE/release-service/22.04.2/kgoldrunner-22.04.2.tar.xz) = d3ad0bb01f5f9fe46fe0023200ebb79c968e8b994035d7f365fed419b232bd70 -SIZE (KDE/release-service/22.04.2/kgoldrunner-22.04.2.tar.xz) = 4786572 +TIMESTAMP = 1657013396 +SHA256 (KDE/release-service/22.04.3/kgoldrunner-22.04.3.tar.xz) = aa9123920fe60dbf01ab584136049b276a0a46abfe548077760b3f48af6c40bd +SIZE (KDE/release-service/22.04.3/kgoldrunner-22.04.3.tar.xz) = 4786668 diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 3f06928870e0..909c2b4755fa 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672035 -SHA256 (KDE/release-service/22.04.2/khangman-22.04.2.tar.xz) = 4f330803f74ddcd897b93e6e350687563259c39ca92a52f34b3e86f8282d33a5 -SIZE (KDE/release-service/22.04.2/khangman-22.04.2.tar.xz) = 7433476 +TIMESTAMP = 1657013370 +SHA256 (KDE/release-service/22.04.3/khangman-22.04.3.tar.xz) = 8aaa989a50a88a712f29841a79ba7ebe6dbebd9584dc5bec0a249f36ffb5aa03 +SIZE (KDE/release-service/22.04.3/khangman-22.04.3.tar.xz) = 7423344 diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 540de52650cd..1eca59e2f50c 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672041 -SHA256 (KDE/release-service/22.04.2/kigo-22.04.2.tar.xz) = 0a5cd75295e7651c9186b67884f99a725643e0e6077e6e6271e56aad520e6f19 -SIZE (KDE/release-service/22.04.2/kigo-22.04.2.tar.xz) = 5253820 +TIMESTAMP = 1657013376 +SHA256 (KDE/release-service/22.04.3/kigo-22.04.3.tar.xz) = e144062ac3ca806071f3a40b16e4122b1824c57a02ddff6e14712e49eb355b71 +SIZE (KDE/release-service/22.04.3/kigo-22.04.3.tar.xz) = 5254100 diff --git a/games/kigo/pkg-plist b/games/kigo/pkg-plist index 76781cdb1d4e..5d061a14c237 100644 --- a/games/kigo/pkg-plist +++ b/games/kigo/pkg-plist @@ -1,69 +1,70 @@ bin/kigo share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png share/icons/hicolor/32x32/apps/kigo.png share/icons/hicolor/48x48/apps/kigo.png share/icons/hicolor/64x64/apps/kigo.png share/icons/hicolor/128x128/apps/kigo.png %%DATADIR%%/games/Honinbo-51-5.sgf %%DATADIR%%/games/Mehin-21-2.sgf %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/kigo_default.png %%DATADIR%%/themes/kigo_default.svgz %%DATADIR%%/themes/kigo_plain.png %%DATADIR%%/themes/kigo_plain.svgz %%DATADIR%%/themes/plain.desktop share/knsrcfiles/kigo-games.knsrc share/knsrcfiles/kigo.knsrc share/locale/ar/LC_MESSAGES/kigo.mo +share/locale/bg/LC_MESSAGES/kigo.mo share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo share/locale/ca@valencia/LC_MESSAGES/kigo.mo share/locale/cs/LC_MESSAGES/kigo.mo share/locale/da/LC_MESSAGES/kigo.mo share/locale/de/LC_MESSAGES/kigo.mo share/locale/el/LC_MESSAGES/kigo.mo share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo share/locale/eu/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo share/locale/gl/LC_MESSAGES/kigo.mo share/locale/hr/LC_MESSAGES/kigo.mo share/locale/hu/LC_MESSAGES/kigo.mo share/locale/id/LC_MESSAGES/kigo.mo share/locale/is/LC_MESSAGES/kigo.mo share/locale/it/LC_MESSAGES/kigo.mo share/locale/ja/LC_MESSAGES/kigo.mo share/locale/kk/LC_MESSAGES/kigo.mo share/locale/km/LC_MESSAGES/kigo.mo share/locale/ko/LC_MESSAGES/kigo.mo share/locale/lt/LC_MESSAGES/kigo.mo share/locale/lv/LC_MESSAGES/kigo.mo share/locale/ml/LC_MESSAGES/kigo.mo share/locale/mr/LC_MESSAGES/kigo.mo share/locale/nb/LC_MESSAGES/kigo.mo share/locale/nds/LC_MESSAGES/kigo.mo share/locale/nl/LC_MESSAGES/kigo.mo share/locale/nn/LC_MESSAGES/kigo.mo share/locale/pl/LC_MESSAGES/kigo.mo share/locale/pt/LC_MESSAGES/kigo.mo share/locale/pt_BR/LC_MESSAGES/kigo.mo share/locale/ro/LC_MESSAGES/kigo.mo share/locale/ru/LC_MESSAGES/kigo.mo share/locale/sk/LC_MESSAGES/kigo.mo share/locale/sl/LC_MESSAGES/kigo.mo share/locale/sr/LC_MESSAGES/kigo.mo share/locale/sv/LC_MESSAGES/kigo.mo share/locale/tr/LC_MESSAGES/kigo.mo share/locale/ug/LC_MESSAGES/kigo.mo share/locale/uk/LC_MESSAGES/kigo.mo share/locale/zh_CN/LC_MESSAGES/kigo.mo share/locale/zh_TW/LC_MESSAGES/kigo.mo share/metainfo/org.kde.kigo.appdata.xml share/qlogging-categories5/kigo.categories diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 4dc697dcde97..32d87964dd97 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672043 -SHA256 (KDE/release-service/22.04.2/killbots-22.04.2.tar.xz) = f34d6607cbca47405e988418c5b365e9ef67840ff0d02dae766faddd4e6757a4 -SIZE (KDE/release-service/22.04.2/killbots-22.04.2.tar.xz) = 1197656 +TIMESTAMP = 1657013378 +SHA256 (KDE/release-service/22.04.3/killbots-22.04.3.tar.xz) = 3281846b1fc53786c84c2a03ac51fe65293aa421c2226f2d5868834d9441531d +SIZE (KDE/release-service/22.04.3/killbots-22.04.3.tar.xz) = 1197724 diff --git a/games/killbots/pkg-plist b/games/killbots/pkg-plist index 6a0b7685f73a..b6608af0d4e5 100644 --- a/games/killbots/pkg-plist +++ b/games/killbots/pkg-plist @@ -1,76 +1,77 @@ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/64x64/apps/killbots.png share/icons/hicolor/128x128/apps/killbots.png %%DATADIR%%/rulesets/classic.desktop %%DATADIR%%/rulesets/daleks.desktop %%DATADIR%%/rulesets/default.desktop %%DATADIR%%/rulesets/easy.desktop %%DATADIR%%/rulesets/energycrisis.desktop %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic.png %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/mountainadventure.desktop %%DATADIR%%/themes/mountainadventure.png %%DATADIR%%/themes/mountainadventure.svgz %%DATADIR%%/themes/mummymadness.desktop %%DATADIR%%/themes/mummymadness.png %%DATADIR%%/themes/mummymadness.svgz %%DATADIR%%/themes/robotkill.desktop %%DATADIR%%/themes/robotkill.png %%DATADIR%%/themes/robotkill.svgz share/locale/ar/LC_MESSAGES/killbots.mo +share/locale/bg/LC_MESSAGES/killbots.mo share/locale/bs/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca@valencia/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/killbots.mo share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo share/locale/eu/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/killbots.mo share/locale/hr/LC_MESSAGES/killbots.mo share/locale/hu/LC_MESSAGES/killbots.mo share/locale/id/LC_MESSAGES/killbots.mo share/locale/is/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/killbots.mo share/locale/ja/LC_MESSAGES/killbots.mo share/locale/kk/LC_MESSAGES/killbots.mo share/locale/km/LC_MESSAGES/killbots.mo share/locale/ko/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lv/LC_MESSAGES/killbots.mo share/locale/ml/LC_MESSAGES/killbots.mo share/locale/mr/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/killbots.mo share/locale/pl/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/killbots.mo share/locale/sk/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sr/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/killbots.mo share/locale/ug/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/killbots.mo share/metainfo/org.kde.killbots.appdata.xml share/qlogging-categories5/killbots.categories diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 9447a6fe8371..c3ed1d3bb3e4 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672047 -SHA256 (KDE/release-service/22.04.2/kiriki-22.04.2.tar.xz) = a1940badacd0a1d2c48197fcaa49a772560f50db7ef6abf8039c7685c4d0ae71 -SIZE (KDE/release-service/22.04.2/kiriki-22.04.2.tar.xz) = 365972 +TIMESTAMP = 1657013381 +SHA256 (KDE/release-service/22.04.3/kiriki-22.04.3.tar.xz) = 36bf7ecccdd57cbf2601160733216a7bd9a6a04a1c7fc9e8ed9b93c9242454c6 +SIZE (KDE/release-service/22.04.3/kiriki-22.04.3.tar.xz) = 366024 diff --git a/games/kiriki/pkg-plist b/games/kiriki/pkg-plist index 57750b25f427..facc4cb4670c 100644 --- a/games/kiriki/pkg-plist +++ b/games/kiriki/pkg-plist @@ -1,66 +1,67 @@ bin/kiriki share/applications/org.kde.kiriki.desktop share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/64x64/apps/kiriki.png share/icons/hicolor/128x128/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png share/locale/ar/LC_MESSAGES/kiriki.mo share/locale/be/LC_MESSAGES/kiriki.mo +share/locale/bg/LC_MESSAGES/kiriki.mo share/locale/bs/LC_MESSAGES/kiriki.mo share/locale/ca/LC_MESSAGES/kiriki.mo share/locale/ca@valencia/LC_MESSAGES/kiriki.mo share/locale/cs/LC_MESSAGES/kiriki.mo share/locale/da/LC_MESSAGES/kiriki.mo share/locale/de/LC_MESSAGES/kiriki.mo share/locale/el/LC_MESSAGES/kiriki.mo share/locale/en_GB/LC_MESSAGES/kiriki.mo share/locale/eo/LC_MESSAGES/kiriki.mo share/locale/es/LC_MESSAGES/kiriki.mo share/locale/et/LC_MESSAGES/kiriki.mo share/locale/fi/LC_MESSAGES/kiriki.mo share/locale/fr/LC_MESSAGES/kiriki.mo share/locale/ga/LC_MESSAGES/kiriki.mo share/locale/gl/LC_MESSAGES/kiriki.mo share/locale/hi/LC_MESSAGES/kiriki.mo share/locale/hr/LC_MESSAGES/kiriki.mo share/locale/hu/LC_MESSAGES/kiriki.mo share/locale/id/LC_MESSAGES/kiriki.mo share/locale/is/LC_MESSAGES/kiriki.mo share/locale/it/LC_MESSAGES/kiriki.mo share/locale/ja/LC_MESSAGES/kiriki.mo share/locale/kk/LC_MESSAGES/kiriki.mo share/locale/km/LC_MESSAGES/kiriki.mo share/locale/ko/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lv/LC_MESSAGES/kiriki.mo share/locale/ml/LC_MESSAGES/kiriki.mo share/locale/mr/LC_MESSAGES/kiriki.mo share/locale/nb/LC_MESSAGES/kiriki.mo share/locale/nds/LC_MESSAGES/kiriki.mo share/locale/nl/LC_MESSAGES/kiriki.mo share/locale/nn/LC_MESSAGES/kiriki.mo share/locale/pl/LC_MESSAGES/kiriki.mo share/locale/pt/LC_MESSAGES/kiriki.mo share/locale/pt_BR/LC_MESSAGES/kiriki.mo share/locale/ro/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/se/LC_MESSAGES/kiriki.mo share/locale/sk/LC_MESSAGES/kiriki.mo share/locale/sl/LC_MESSAGES/kiriki.mo share/locale/sr/LC_MESSAGES/kiriki.mo share/locale/sv/LC_MESSAGES/kiriki.mo share/locale/tr/LC_MESSAGES/kiriki.mo share/locale/ug/LC_MESSAGES/kiriki.mo share/locale/uk/LC_MESSAGES/kiriki.mo share/locale/zh_CN/LC_MESSAGES/kiriki.mo share/locale/zh_TW/LC_MESSAGES/kiriki.mo share/metainfo/org.kde.kiriki.appdata.xml diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index d74b450bfd61..4083518ee31c 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672023 -SHA256 (KDE/release-service/22.04.2/kjumpingcube-22.04.2.tar.xz) = 01d90e9471b919107dcad66e2afa9bf3b153378a01a9b31c557135acd4fbb295 -SIZE (KDE/release-service/22.04.2/kjumpingcube-22.04.2.tar.xz) = 325936 +TIMESTAMP = 1657013358 +SHA256 (KDE/release-service/22.04.3/kjumpingcube-22.04.3.tar.xz) = 16f245468a5620c10831fc9f483185b176a0f8d27b828712b15e144c13952a55 +SIZE (KDE/release-service/22.04.3/kjumpingcube-22.04.3.tar.xz) = 325744 diff --git a/games/klickety/distinfo b/games/klickety/distinfo index b98bd7a2d1ad..baf4549f2a37 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672053 -SHA256 (KDE/release-service/22.04.2/klickety-22.04.2.tar.xz) = 37b6e88bf96f5662bb642fa77ac283fb4c4c1fb8294fde1ddf0d64f36be4a21b -SIZE (KDE/release-service/22.04.2/klickety-22.04.2.tar.xz) = 1495948 +TIMESTAMP = 1657013387 +SHA256 (KDE/release-service/22.04.3/klickety-22.04.3.tar.xz) = ddc4320d6a0122d41717bb3a039eff29e37339f9d3fd7d06e2bc644b11f9d4d9 +SIZE (KDE/release-service/22.04.3/klickety-22.04.3.tar.xz) = 1495988 diff --git a/games/klickety/pkg-plist b/games/klickety/pkg-plist index 64facd35c4d0..f7e4adf731a4 100644 --- a/games/klickety/pkg-plist +++ b/games/klickety/pkg-plist @@ -1,74 +1,75 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png share/icons/hicolor/128x128/apps/klickety.png share/icons/hicolor/128x128/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svg %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svg %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svg %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png +share/locale/bg/LC_MESSAGES/klickety.mo share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo share/locale/id/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/ko/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo share/locale/ml/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo share/metainfo/org.kde.klickety.appdata.xml share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg diff --git a/games/klines/distinfo b/games/klines/distinfo index 691fcac839e8..c0cff1b5c292 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672027 -SHA256 (KDE/release-service/22.04.2/klines-22.04.2.tar.xz) = a145ea368d4dcab3633d5694210a7e77e648c4a51a97b2dfa5ebd3fa2cb9773f -SIZE (KDE/release-service/22.04.2/klines-22.04.2.tar.xz) = 1726688 +TIMESTAMP = 1657013362 +SHA256 (KDE/release-service/22.04.3/klines-22.04.3.tar.xz) = 7fa7bf672bf9c1ae678dd40f1751c58da7d83615796b7b633f3164cf2c7be597 +SIZE (KDE/release-service/22.04.3/klines-22.04.3.tar.xz) = 1726556 diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index 3305803d5473..0f28e1440c73 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672039 -SHA256 (KDE/release-service/22.04.2/kmahjongg-22.04.2.tar.xz) = bd5b7cd3adc289703ecb7195c8f6a6f3db1c9715b754f9c399a40192cece5340 -SIZE (KDE/release-service/22.04.2/kmahjongg-22.04.2.tar.xz) = 4071292 +TIMESTAMP = 1657013373 +SHA256 (KDE/release-service/22.04.3/kmahjongg-22.04.3.tar.xz) = 9c7ad4094233287b35375ed36e521cb6e9961fda37fe66bbe81c5d0bdf517153 +SIZE (KDE/release-service/22.04.3/kmahjongg-22.04.3.tar.xz) = 4071156 diff --git a/games/kmines/distinfo b/games/kmines/distinfo index 5c23eae86d8b..dd9aa176c72d 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672031 -SHA256 (KDE/release-service/22.04.2/kmines-22.04.2.tar.xz) = a120b1074573611f09ddf22fc941d8ef9dc0ad50ab7a6e38379dd888da1cb5c3 -SIZE (KDE/release-service/22.04.2/kmines-22.04.2.tar.xz) = 994520 +TIMESTAMP = 1657013365 +SHA256 (KDE/release-service/22.04.3/kmines-22.04.3.tar.xz) = a89cac85d7d20c5695d30beaf09d9d562860df46cf752f13607bd4053fc5cbf0 +SIZE (KDE/release-service/22.04.3/kmines-22.04.3.tar.xz) = 993540 diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index ac41a24cb4af..82e47c4a15b7 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672054 -SHA256 (KDE/release-service/22.04.2/knavalbattle-22.04.2.tar.xz) = 9c318ffc8ce854362390c729bd21d9929f95cd3cf59315a63573ef0259441622 -SIZE (KDE/release-service/22.04.2/knavalbattle-22.04.2.tar.xz) = 1379756 +TIMESTAMP = 1657013388 +SHA256 (KDE/release-service/22.04.3/knavalbattle-22.04.3.tar.xz) = 1ac8da2c7b97866a9154ac055fbe184acf6678c14ae0d34ca3d4bfb15071f044 +SIZE (KDE/release-service/22.04.3/knavalbattle-22.04.3.tar.xz) = 1379756 diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index af21fe501da7..ea51d360a952 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672036 -SHA256 (KDE/release-service/22.04.2/knetwalk-22.04.2.tar.xz) = 305ed223658a24bee10736113e9667015b4f14ff433ae7c14add9c628f9d9335 -SIZE (KDE/release-service/22.04.2/knetwalk-22.04.2.tar.xz) = 1097696 +TIMESTAMP = 1657013370 +SHA256 (KDE/release-service/22.04.3/knetwalk-22.04.3.tar.xz) = f7dd1844e39011db11a4145bdff97231e57810e2d523489cd7fd584f40bf2b70 +SIZE (KDE/release-service/22.04.3/knetwalk-22.04.3.tar.xz) = 1097148 diff --git a/games/knights/distinfo b/games/knights/distinfo index 414ae90112d9..f7b9deebc24e 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672052 -SHA256 (KDE/release-service/22.04.2/knights-22.04.2.tar.xz) = 971d4f7a24954bbc7a25bda781506383ec3300c668ad1d292f99062b7c6fa774 -SIZE (KDE/release-service/22.04.2/knights-22.04.2.tar.xz) = 3324080 +TIMESTAMP = 1657013386 +SHA256 (KDE/release-service/22.04.3/knights-22.04.3.tar.xz) = ccf17d6f63dcea0cd96d5e70ef7454b3a736d1b1dc6d7b7f4c9f13f38f4b21c2 +SIZE (KDE/release-service/22.04.3/knights-22.04.3.tar.xz) = 3323980 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index 3658bcbfe7fa..2a1b9ab29da7 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672047 -SHA256 (KDE/release-service/22.04.2/kolf-22.04.2.tar.xz) = 4e052edb18762ee58a0e3a1717f755431505b820548d181eaed76bfe8828dddf -SIZE (KDE/release-service/22.04.2/kolf-22.04.2.tar.xz) = 1050912 +TIMESTAMP = 1657013382 +SHA256 (KDE/release-service/22.04.3/kolf-22.04.3.tar.xz) = a3ad54702dc16a6867f14b64c1bf5318b1483375ef2722294beeaedc7392b556 +SIZE (KDE/release-service/22.04.3/kolf-22.04.3.tar.xz) = 1050748 diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 46393084d2cc..9fbd04d963ee 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672028 -SHA256 (KDE/release-service/22.04.2/kollision-22.04.2.tar.xz) = 206c0fb57d38e8f2cb06a4a5d4c8f8fd5e5f79dc12eaf57c7761083d7e4ae160 -SIZE (KDE/release-service/22.04.2/kollision-22.04.2.tar.xz) = 302992 +TIMESTAMP = 1657013362 +SHA256 (KDE/release-service/22.04.3/kollision-22.04.3.tar.xz) = ae57449458a2cc9860ea25848888ea141c1f105c280ad74e3396b4bf2b1e4865 +SIZE (KDE/release-service/22.04.3/kollision-22.04.3.tar.xz) = 303080 diff --git a/games/kollision/pkg-plist b/games/kollision/pkg-plist index 3a51c32842d9..de5b59bf3214 100644 --- a/games/kollision/pkg-plist +++ b/games/kollision/pkg-plist @@ -1,69 +1,70 @@ bin/kollision share/applications/org.kde.kollision.desktop share/icons/hicolor/16x16/apps/kollision.png share/icons/hicolor/22x22/apps/kollision.png share/icons/hicolor/32x32/apps/kollision.png share/icons/hicolor/48x48/apps/kollision.png share/icons/hicolor/64x64/apps/kollision.png share/icons/hicolor/128x128/apps/kollision.png share/icons/oxygen/16x16/apps/kollision.png share/icons/oxygen/22x22/apps/kollision.png share/icons/oxygen/32x32/apps/kollision.png share/icons/oxygen/48x48/apps/kollision.png share/icons/oxygen/64x64/apps/kollision.png share/icons/oxygen/128x128/apps/kollision.png %%DATADIR%%/pictures/theme.svgz %%DATADIR%%/sounds/ball_leaving.ogg %%DATADIR%%/sounds/hit_wall.ogg %%DATADIR%%/sounds/start.ogg %%DATADIR%%/sounds/you_lose.ogg share/locale/ar/LC_MESSAGES/kollision.mo +share/locale/bg/LC_MESSAGES/kollision.mo share/locale/bs/LC_MESSAGES/kollision.mo share/locale/ca/LC_MESSAGES/kollision.mo share/locale/ca@valencia/LC_MESSAGES/kollision.mo share/locale/cs/LC_MESSAGES/kollision.mo share/locale/da/LC_MESSAGES/kollision.mo share/locale/de/LC_MESSAGES/kollision.mo share/locale/el/LC_MESSAGES/kollision.mo share/locale/en_GB/LC_MESSAGES/kollision.mo share/locale/eo/LC_MESSAGES/kollision.mo share/locale/es/LC_MESSAGES/kollision.mo share/locale/et/LC_MESSAGES/kollision.mo share/locale/fi/LC_MESSAGES/kollision.mo share/locale/fr/LC_MESSAGES/kollision.mo share/locale/ga/LC_MESSAGES/kollision.mo share/locale/gl/LC_MESSAGES/kollision.mo share/locale/hr/LC_MESSAGES/kollision.mo share/locale/hu/LC_MESSAGES/kollision.mo share/locale/id/LC_MESSAGES/kollision.mo share/locale/is/LC_MESSAGES/kollision.mo share/locale/it/LC_MESSAGES/kollision.mo share/locale/ja/LC_MESSAGES/kollision.mo share/locale/kk/LC_MESSAGES/kollision.mo share/locale/km/LC_MESSAGES/kollision.mo share/locale/ko/LC_MESSAGES/kollision.mo share/locale/lt/LC_MESSAGES/kollision.mo share/locale/lv/LC_MESSAGES/kollision.mo share/locale/ml/LC_MESSAGES/kollision.mo share/locale/mr/LC_MESSAGES/kollision.mo share/locale/nb/LC_MESSAGES/kollision.mo share/locale/nds/LC_MESSAGES/kollision.mo share/locale/nl/LC_MESSAGES/kollision.mo share/locale/nn/LC_MESSAGES/kollision.mo share/locale/pa/LC_MESSAGES/kollision.mo share/locale/pl/LC_MESSAGES/kollision.mo share/locale/pt/LC_MESSAGES/kollision.mo share/locale/pt_BR/LC_MESSAGES/kollision.mo share/locale/ro/LC_MESSAGES/kollision.mo share/locale/ru/LC_MESSAGES/kollision.mo share/locale/sk/LC_MESSAGES/kollision.mo share/locale/sl/LC_MESSAGES/kollision.mo share/locale/sq/LC_MESSAGES/kollision.mo share/locale/sr/LC_MESSAGES/kollision.mo share/locale/sv/LC_MESSAGES/kollision.mo share/locale/tr/LC_MESSAGES/kollision.mo share/locale/ug/LC_MESSAGES/kollision.mo share/locale/uk/LC_MESSAGES/kollision.mo share/locale/zh_CN/LC_MESSAGES/kollision.mo share/locale/zh_TW/LC_MESSAGES/kollision.mo share/metainfo/org.kde.kollision.appdata.xml diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 057b4e868f12..ae52f21dd8aa 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672056 -SHA256 (KDE/release-service/22.04.2/konquest-22.04.2.tar.xz) = a00fa4ca8f380d27c9c07eab132a291f4416cf4d79b873d3343e099b0c208d99 -SIZE (KDE/release-service/22.04.2/konquest-22.04.2.tar.xz) = 862856 +TIMESTAMP = 1657013391 +SHA256 (KDE/release-service/22.04.3/konquest-22.04.3.tar.xz) = 79cde1af521f2d7be9814779015f83fcd549cba34c31f6f33b31d20bc6d9d4cf +SIZE (KDE/release-service/22.04.3/konquest-22.04.3.tar.xz) = 861864 diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 36cae57f8610..b70f26be3189 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672048 -SHA256 (KDE/release-service/22.04.2/kpat-22.04.2.tar.xz) = 229f95d01e1c22d481396060040eae19f023936ee42a2ed56a096590b61a023e -SIZE (KDE/release-service/22.04.2/kpat-22.04.2.tar.xz) = 3730864 +TIMESTAMP = 1657013383 +SHA256 (KDE/release-service/22.04.3/kpat-22.04.3.tar.xz) = e353e38e6289f81f29040bebb8f1c550584dc793deabafc5bd3e14ca28fb748d +SIZE (KDE/release-service/22.04.3/kpat-22.04.3.tar.xz) = 3731040 diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 22927cb5cb3c..46c3fab38f7c 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672050 -SHA256 (KDE/release-service/22.04.2/kreversi-22.04.2.tar.xz) = 96261996ed77033b42ef3d871a257d393f34457d1cf95b807a9a958a39369bd7 -SIZE (KDE/release-service/22.04.2/kreversi-22.04.2.tar.xz) = 1064176 +TIMESTAMP = 1657013384 +SHA256 (KDE/release-service/22.04.3/kreversi-22.04.3.tar.xz) = 97e4442125818ddb88674b18b0cd8a765770b905bcf1937ed1571a098d02d23f +SIZE (KDE/release-service/22.04.3/kreversi-22.04.3.tar.xz) = 1063472 diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index d97faaa10460..11518072b450 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672059 -SHA256 (KDE/release-service/22.04.2/kshisen-22.04.2.tar.xz) = 3cc8851d376ff8bcb596cf3af21baddf0eeec57ab9aa244fa696d58e49740a7b -SIZE (KDE/release-service/22.04.2/kshisen-22.04.2.tar.xz) = 993712 +TIMESTAMP = 1657013393 +SHA256 (KDE/release-service/22.04.3/kshisen-22.04.3.tar.xz) = 7a69d1d1a0de5749b79ee29eabe6d03c11a41072c2d5e0225486015e27c89800 +SIZE (KDE/release-service/22.04.3/kshisen-22.04.3.tar.xz) = 994028 diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 0b708ef7eb23..275d7b2dee50 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672034 -SHA256 (KDE/release-service/22.04.2/ksirk-22.04.2.tar.xz) = d095bde49d31eccad2c6ae3b16f280534cc546658f08bbc299b1cc0e0ae6e3bf -SIZE (KDE/release-service/22.04.2/ksirk-22.04.2.tar.xz) = 7006080 +TIMESTAMP = 1657013369 +SHA256 (KDE/release-service/22.04.3/ksirk-22.04.3.tar.xz) = 9d2f5c8c7891978e7e91646fd6e423be419a682d62c13f7cab996129e2d03430 +SIZE (KDE/release-service/22.04.3/ksirk-22.04.3.tar.xz) = 7007412 diff --git a/games/ksirk/pkg-plist b/games/ksirk/pkg-plist index 75537fa5d200..ecbb2658ff91 100644 --- a/games/ksirk/pkg-plist +++ b/games/ksirk/pkg-plist @@ -1,151 +1,153 @@ bin/ksirk bin/ksirkskineditor lib/libiris_ksirk.so lib/libiris_ksirk.so.2 lib/libiris_ksirk.so.2.0.0 share/applications/org.kde.ksirk.desktop share/applications/org.kde.ksirkskineditor.desktop share/config.kcfg/ksirksettings.kcfg share/config.kcfg/ksirkskineditorsettings.kcfg share/icons/hicolor/16x16/apps/ksirk.png share/icons/hicolor/22x22/apps/ksirk.png share/icons/hicolor/32x32/apps/ksirk.png share/icons/hicolor/48x48/apps/ksirk.png share/icons/hicolor/64x64/apps/ksirk.png share/icons/hicolor/128x128/apps/ksirk.png share/icons/hicolor/scalable/apps/ksirk.svgz share/knsrcfiles/ksirk.knsrc %%DATADIR%%/jabber.png %%DATADIR%%/skins/default/Data/world.desktop %%DATADIR%%/skins/default/Images/2DownArrow.png %%DATADIR%%/skins/default/Images/2UpArrow.png %%DATADIR%%/skins/default/Images/arena.svg %%DATADIR%%/skins/default/Images/attackAuto.png %%DATADIR%%/skins/default/Images/attackOne.png %%DATADIR%%/skins/default/Images/attackThree.png %%DATADIR%%/skins/default/Images/attackTwo.png %%DATADIR%%/skins/default/Images/cancel.png %%DATADIR%%/skins/default/Images/defendOne.png %%DATADIR%%/skins/default/Images/defendTwo.png %%DATADIR%%/skins/default/Images/downArrow.png %%DATADIR%%/skins/default/Images/loader.gif %%DATADIR%%/skins/default/Images/logoLeft.png %%DATADIR%%/skins/default/Images/logoRight.png %%DATADIR%%/skins/default/Images/map-mask.png %%DATADIR%%/skins/default/Images/moveArmies.png %%DATADIR%%/skins/default/Images/moveBackFive.png %%DATADIR%%/skins/default/Images/moveBackOne.png %%DATADIR%%/skins/default/Images/moveBackTen.png %%DATADIR%%/skins/default/Images/moveFinish.png %%DATADIR%%/skins/default/Images/moveFive.png %%DATADIR%%/skins/default/Images/moveOne.png %%DATADIR%%/skins/default/Images/moveTen.png %%DATADIR%%/skins/default/Images/newNetGame.png %%DATADIR%%/skins/default/Images/nextPlayer.png %%DATADIR%%/skins/default/Images/pool.svg %%DATADIR%%/skins/default/Images/recycling.png %%DATADIR%%/skins/default/Images/recyclingFinished.png %%DATADIR%%/skins/default/Images/snapshot.jpg %%DATADIR%%/skins/default/Images/soldierKneeling.png %%DATADIR%%/skins/default/Images/stopAttackAuto.png %%DATADIR%%/skins/default/Images/upArrow.png %%DATADIR%%/skins/default/Sounds/cannon.wav %%DATADIR%%/skins/default/Sounds/crash.wav %%DATADIR%%/skins/default/Sounds/roll.wav %%DATADIR%%/skins/skinsdir %%DATADIR%%skineditor/cross.png %%DATADIR%%skineditor/target.png share/kxmlgui5/ksirk/ksirkui.rc share/kxmlgui5/ksirkskineditor/ksirkskineditorui.rc share/locale/ar/LC_MESSAGES/ksirk.mo share/locale/be/LC_MESSAGES/ksirk.mo +share/locale/bg/LC_MESSAGES/ksirk.mo +share/locale/bg/LC_MESSAGES/ksirkskineditor.mo share/locale/bs/LC_MESSAGES/ksirk.mo share/locale/bs/LC_MESSAGES/ksirkskineditor.mo share/locale/ca/LC_MESSAGES/ksirk.mo share/locale/ca/LC_MESSAGES/ksirkskineditor.mo share/locale/ca@valencia/LC_MESSAGES/ksirk.mo share/locale/ca@valencia/LC_MESSAGES/ksirkskineditor.mo share/locale/cs/LC_MESSAGES/ksirk.mo share/locale/cs/LC_MESSAGES/ksirkskineditor.mo share/locale/da/LC_MESSAGES/ksirk.mo share/locale/da/LC_MESSAGES/ksirkskineditor.mo share/locale/de/LC_MESSAGES/ksirk.mo share/locale/de/LC_MESSAGES/ksirkskineditor.mo share/locale/el/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirkskineditor.mo share/locale/eo/LC_MESSAGES/ksirk.mo share/locale/eo/LC_MESSAGES/ksirkskineditor.mo share/locale/es/LC_MESSAGES/ksirk.mo share/locale/es/LC_MESSAGES/ksirkskineditor.mo share/locale/et/LC_MESSAGES/ksirk.mo share/locale/et/LC_MESSAGES/ksirkskineditor.mo share/locale/fi/LC_MESSAGES/ksirk.mo share/locale/fi/LC_MESSAGES/ksirkskineditor.mo share/locale/fr/LC_MESSAGES/ksirk.mo share/locale/fr/LC_MESSAGES/ksirkskineditor.mo share/locale/ga/LC_MESSAGES/ksirk.mo share/locale/ga/LC_MESSAGES/ksirkskineditor.mo share/locale/gl/LC_MESSAGES/ksirk.mo share/locale/gl/LC_MESSAGES/ksirkskineditor.mo share/locale/hi/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirkskineditor.mo share/locale/hu/LC_MESSAGES/ksirk.mo share/locale/hu/LC_MESSAGES/ksirkskineditor.mo share/locale/is/LC_MESSAGES/ksirk.mo share/locale/is/LC_MESSAGES/ksirkskineditor.mo share/locale/it/LC_MESSAGES/ksirk.mo share/locale/it/LC_MESSAGES/ksirkskineditor.mo share/locale/ja/LC_MESSAGES/ksirk.mo share/locale/ja/LC_MESSAGES/ksirkskineditor.mo share/locale/kk/LC_MESSAGES/ksirk.mo share/locale/kk/LC_MESSAGES/ksirkskineditor.mo share/locale/km/LC_MESSAGES/ksirk.mo share/locale/km/LC_MESSAGES/ksirkskineditor.mo share/locale/lt/LC_MESSAGES/ksirk.mo share/locale/lt/LC_MESSAGES/ksirkskineditor.mo share/locale/lv/LC_MESSAGES/ksirk.mo share/locale/lv/LC_MESSAGES/ksirkskineditor.mo share/locale/ml/LC_MESSAGES/ksirk.mo share/locale/ml/LC_MESSAGES/ksirkskineditor.mo share/locale/mr/LC_MESSAGES/ksirk.mo share/locale/mr/LC_MESSAGES/ksirkskineditor.mo share/locale/nb/LC_MESSAGES/ksirk.mo share/locale/nb/LC_MESSAGES/ksirkskineditor.mo share/locale/nds/LC_MESSAGES/ksirk.mo share/locale/nds/LC_MESSAGES/ksirkskineditor.mo share/locale/nl/LC_MESSAGES/ksirk.mo share/locale/nl/LC_MESSAGES/ksirkskineditor.mo share/locale/nn/LC_MESSAGES/ksirk.mo share/locale/nn/LC_MESSAGES/ksirkskineditor.mo share/locale/pl/LC_MESSAGES/ksirk.mo share/locale/pl/LC_MESSAGES/ksirkskineditor.mo share/locale/pt/LC_MESSAGES/ksirk.mo share/locale/pt/LC_MESSAGES/ksirkskineditor.mo share/locale/pt_BR/LC_MESSAGES/ksirk.mo share/locale/pt_BR/LC_MESSAGES/ksirkskineditor.mo share/locale/ro/LC_MESSAGES/ksirk.mo share/locale/ro/LC_MESSAGES/ksirkskineditor.mo share/locale/ru/LC_MESSAGES/ksirk.mo share/locale/ru/LC_MESSAGES/ksirkskineditor.mo share/locale/sk/LC_MESSAGES/ksirk.mo share/locale/sk/LC_MESSAGES/ksirkskineditor.mo share/locale/sl/LC_MESSAGES/ksirk.mo share/locale/sl/LC_MESSAGES/ksirkskineditor.mo share/locale/sr/LC_MESSAGES/ksirk.mo share/locale/sr/LC_MESSAGES/ksirkskineditor.mo share/locale/sv/LC_MESSAGES/ksirk.mo share/locale/sv/LC_MESSAGES/ksirkskineditor.mo share/locale/tr/LC_MESSAGES/ksirk.mo share/locale/tr/LC_MESSAGES/ksirkskineditor.mo share/locale/ug/LC_MESSAGES/ksirk.mo share/locale/ug/LC_MESSAGES/ksirkskineditor.mo share/locale/uk/LC_MESSAGES/ksirk.mo share/locale/uk/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_CN/LC_MESSAGES/ksirk.mo share/locale/zh_CN/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_TW/LC_MESSAGES/ksirk.mo share/locale/zh_TW/LC_MESSAGES/ksirkskineditor.mo share/metainfo/org.kde.ksirk.appdata.xml share/qlogging-categories5/ksirk.categories diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index ca9ea2dfcbaf..f4a63f736f25 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672022 -SHA256 (KDE/release-service/22.04.2/ksnakeduel-22.04.2.tar.xz) = 2cb264568e9d38ce73548b0f55eddde1a4256cdeedcb029f5fb77d937c6cdca1 -SIZE (KDE/release-service/22.04.2/ksnakeduel-22.04.2.tar.xz) = 607292 +TIMESTAMP = 1657013357 +SHA256 (KDE/release-service/22.04.3/ksnakeduel-22.04.3.tar.xz) = eaebdf5959a301c6ace6de9e84f517d57c854ae662733e740bd75ba9a1082842 +SIZE (KDE/release-service/22.04.3/ksnakeduel-22.04.3.tar.xz) = 607656 diff --git a/games/ksnakeduel/pkg-plist b/games/ksnakeduel/pkg-plist index 3db824acb296..c18491418d9e 100644 --- a/games/ksnakeduel/pkg-plist +++ b/games/ksnakeduel/pkg-plist @@ -1,67 +1,68 @@ bin/ksnakeduel share/applications/org.kde.ksnakeduel.desktop share/config.kcfg/ksnakeduel.kcfg share/icons/hicolor/16x16/apps/ksnakeduel.png share/icons/hicolor/22x22/apps/ksnakeduel.png share/icons/hicolor/32x32/apps/ksnakeduel.png share/icons/hicolor/48x48/apps/ksnakeduel.png share/icons/hicolor/64x64/apps/ksnakeduel.png share/icons/hicolor/128x128/apps/ksnakeduel.png share/icons/hicolor/256x256/apps/ksnakeduel.png share/knsrcfiles/ksnakeduel.knsrc %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.png %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/neon.desktop %%DATADIR%%/themes/neon.png %%DATADIR%%/themes/neon.svg share/locale/ar/LC_MESSAGES/ksnakeduel.mo +share/locale/bg/LC_MESSAGES/ksnakeduel.mo share/locale/bs/LC_MESSAGES/ksnakeduel.mo share/locale/ca/LC_MESSAGES/ksnakeduel.mo share/locale/ca@valencia/LC_MESSAGES/ksnakeduel.mo share/locale/cs/LC_MESSAGES/ksnakeduel.mo share/locale/da/LC_MESSAGES/ksnakeduel.mo share/locale/de/LC_MESSAGES/ksnakeduel.mo share/locale/el/LC_MESSAGES/ksnakeduel.mo share/locale/en_GB/LC_MESSAGES/ksnakeduel.mo share/locale/eo/LC_MESSAGES/ksnakeduel.mo share/locale/es/LC_MESSAGES/ksnakeduel.mo share/locale/et/LC_MESSAGES/ksnakeduel.mo share/locale/eu/LC_MESSAGES/ksnakeduel.mo share/locale/fi/LC_MESSAGES/ksnakeduel.mo share/locale/fr/LC_MESSAGES/ksnakeduel.mo share/locale/ga/LC_MESSAGES/ksnakeduel.mo share/locale/gl/LC_MESSAGES/ksnakeduel.mo share/locale/hr/LC_MESSAGES/ksnakeduel.mo share/locale/hu/LC_MESSAGES/ksnakeduel.mo share/locale/is/LC_MESSAGES/ksnakeduel.mo share/locale/it/LC_MESSAGES/ksnakeduel.mo share/locale/ja/LC_MESSAGES/ksnakeduel.mo share/locale/kk/LC_MESSAGES/ksnakeduel.mo share/locale/km/LC_MESSAGES/ksnakeduel.mo share/locale/ko/LC_MESSAGES/ksnakeduel.mo share/locale/lt/LC_MESSAGES/ksnakeduel.mo share/locale/lv/LC_MESSAGES/ksnakeduel.mo share/locale/ml/LC_MESSAGES/ksnakeduel.mo share/locale/mr/LC_MESSAGES/ksnakeduel.mo share/locale/nb/LC_MESSAGES/ksnakeduel.mo share/locale/nds/LC_MESSAGES/ksnakeduel.mo share/locale/nl/LC_MESSAGES/ksnakeduel.mo share/locale/nn/LC_MESSAGES/ksnakeduel.mo share/locale/pl/LC_MESSAGES/ksnakeduel.mo share/locale/pt/LC_MESSAGES/ksnakeduel.mo share/locale/pt_BR/LC_MESSAGES/ksnakeduel.mo share/locale/ro/LC_MESSAGES/ksnakeduel.mo share/locale/ru/LC_MESSAGES/ksnakeduel.mo share/locale/sk/LC_MESSAGES/ksnakeduel.mo share/locale/sl/LC_MESSAGES/ksnakeduel.mo share/locale/sq/LC_MESSAGES/ksnakeduel.mo share/locale/sr/LC_MESSAGES/ksnakeduel.mo share/locale/sv/LC_MESSAGES/ksnakeduel.mo share/locale/tr/LC_MESSAGES/ksnakeduel.mo share/locale/ug/LC_MESSAGES/ksnakeduel.mo share/locale/uk/LC_MESSAGES/ksnakeduel.mo share/locale/zh_CN/LC_MESSAGES/ksnakeduel.mo share/locale/zh_TW/LC_MESSAGES/ksnakeduel.mo share/metainfo/org.kde.ksnakeduel.appdata.xml share/qlogging-categories5/ksnakeduel.categories diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 6cd82013a8ee..f4f796e3c296 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672032 -SHA256 (KDE/release-service/22.04.2/kspaceduel-22.04.2.tar.xz) = 9e9bc83950900a4c83eacd7910687bd961a381481527aae46de1a96e023e2203 -SIZE (KDE/release-service/22.04.2/kspaceduel-22.04.2.tar.xz) = 651948 +TIMESTAMP = 1657013367 +SHA256 (KDE/release-service/22.04.3/kspaceduel-22.04.3.tar.xz) = a5fc98b2c129f5d38fc150ce3a16e75ed4a7f2fa772777999284b35c5cf067f9 +SIZE (KDE/release-service/22.04.3/kspaceduel-22.04.3.tar.xz) = 651900 diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 5721af520354..01fc9c8da28b 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672033 -SHA256 (KDE/release-service/22.04.2/ksquares-22.04.2.tar.xz) = cfb1711fdfd42e12592b0dc39bf73c0812841ac771fcda2fa350b24c0e69cbd4 -SIZE (KDE/release-service/22.04.2/ksquares-22.04.2.tar.xz) = 307996 +TIMESTAMP = 1657013368 +SHA256 (KDE/release-service/22.04.3/ksquares-22.04.3.tar.xz) = 858132667f71b11dd494910fa9fafc4efdee8a1f552907a0e50a9c3250039f15 +SIZE (KDE/release-service/22.04.3/ksquares-22.04.3.tar.xz) = 308296 diff --git a/games/ksquares/pkg-plist b/games/ksquares/pkg-plist index 22d4d5daaed2..f0f81eaf74a9 100644 --- a/games/ksquares/pkg-plist +++ b/games/ksquares/pkg-plist @@ -1,61 +1,62 @@ bin/ksquares share/applications/org.kde.ksquares.desktop share/config.kcfg/ksquares.kcfg share/icons/hicolor/16x16/apps/ksquares.png share/icons/hicolor/22x22/apps/ksquares.png share/icons/hicolor/32x32/apps/ksquares.png share/icons/hicolor/48x48/apps/ksquares.png share/icons/hicolor/64x64/apps/ksquares.png share/icons/hicolor/128x128/apps/ksquares.png share/locale/ar/LC_MESSAGES/ksquares.mo share/locale/be/LC_MESSAGES/ksquares.mo +share/locale/bg/LC_MESSAGES/ksquares.mo share/locale/bs/LC_MESSAGES/ksquares.mo share/locale/ca/LC_MESSAGES/ksquares.mo share/locale/ca@valencia/LC_MESSAGES/ksquares.mo share/locale/cs/LC_MESSAGES/ksquares.mo share/locale/da/LC_MESSAGES/ksquares.mo share/locale/de/LC_MESSAGES/ksquares.mo share/locale/el/LC_MESSAGES/ksquares.mo share/locale/en_GB/LC_MESSAGES/ksquares.mo share/locale/eo/LC_MESSAGES/ksquares.mo share/locale/es/LC_MESSAGES/ksquares.mo share/locale/et/LC_MESSAGES/ksquares.mo share/locale/eu/LC_MESSAGES/ksquares.mo share/locale/fi/LC_MESSAGES/ksquares.mo share/locale/fr/LC_MESSAGES/ksquares.mo share/locale/ga/LC_MESSAGES/ksquares.mo share/locale/gl/LC_MESSAGES/ksquares.mo share/locale/hi/LC_MESSAGES/ksquares.mo share/locale/hr/LC_MESSAGES/ksquares.mo share/locale/hu/LC_MESSAGES/ksquares.mo share/locale/is/LC_MESSAGES/ksquares.mo share/locale/it/LC_MESSAGES/ksquares.mo share/locale/ja/LC_MESSAGES/ksquares.mo share/locale/kk/LC_MESSAGES/ksquares.mo share/locale/km/LC_MESSAGES/ksquares.mo share/locale/ko/LC_MESSAGES/ksquares.mo share/locale/lt/LC_MESSAGES/ksquares.mo share/locale/lv/LC_MESSAGES/ksquares.mo share/locale/ml/LC_MESSAGES/ksquares.mo share/locale/mr/LC_MESSAGES/ksquares.mo share/locale/nb/LC_MESSAGES/ksquares.mo share/locale/nds/LC_MESSAGES/ksquares.mo share/locale/nl/LC_MESSAGES/ksquares.mo share/locale/nn/LC_MESSAGES/ksquares.mo share/locale/pl/LC_MESSAGES/ksquares.mo share/locale/pt/LC_MESSAGES/ksquares.mo share/locale/pt_BR/LC_MESSAGES/ksquares.mo share/locale/ro/LC_MESSAGES/ksquares.mo share/locale/ru/LC_MESSAGES/ksquares.mo share/locale/se/LC_MESSAGES/ksquares.mo share/locale/sk/LC_MESSAGES/ksquares.mo share/locale/sl/LC_MESSAGES/ksquares.mo share/locale/sq/LC_MESSAGES/ksquares.mo share/locale/sr/LC_MESSAGES/ksquares.mo share/locale/sv/LC_MESSAGES/ksquares.mo share/locale/tr/LC_MESSAGES/ksquares.mo share/locale/ug/LC_MESSAGES/ksquares.mo share/locale/uk/LC_MESSAGES/ksquares.mo share/locale/zh_CN/LC_MESSAGES/ksquares.mo share/locale/zh_TW/LC_MESSAGES/ksquares.mo share/metainfo/org.kde.ksquares.appdata.xml diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 755edddf1c0a..4bc98bec409e 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672055 -SHA256 (KDE/release-service/22.04.2/ksudoku-22.04.2.tar.xz) = 257437adc2aea72b7f639503d444c037a7c61a081bad9d18c07fd14a3f176778 -SIZE (KDE/release-service/22.04.2/ksudoku-22.04.2.tar.xz) = 1690280 +TIMESTAMP = 1657013389 +SHA256 (KDE/release-service/22.04.3/ksudoku-22.04.3.tar.xz) = 1c9afc75e6980651ab2c93f7ba0c8623792c9a9ca465c24137d81908137bcd84 +SIZE (KDE/release-service/22.04.3/ksudoku-22.04.3.tar.xz) = 1689672 diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 81b3e6d26f81..711ecbbcb545 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672045 -SHA256 (KDE/release-service/22.04.2/ktuberling-22.04.2.tar.xz) = 32c25485280189e663212d64b82280292bc55e287d237937e6a27812090e9ea9 -SIZE (KDE/release-service/22.04.2/ktuberling-22.04.2.tar.xz) = 70828676 +TIMESTAMP = 1657013379 +SHA256 (KDE/release-service/22.04.3/ktuberling-22.04.3.tar.xz) = 2a867d4493a74f4cea627b67ff7e750fe1d9587e52060be166fc4f7af2997ea6 +SIZE (KDE/release-service/22.04.3/ktuberling-22.04.3.tar.xz) = 70820432 diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index 30cff5b80862..de5494c4dd31 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672025 -SHA256 (KDE/release-service/22.04.2/kubrick-22.04.2.tar.xz) = 9b4fc371449dc41eac2223970f08a6f668b4ef7b8a21be37aac8e5132dd9a156 -SIZE (KDE/release-service/22.04.2/kubrick-22.04.2.tar.xz) = 343328 +TIMESTAMP = 1657013360 +SHA256 (KDE/release-service/22.04.3/kubrick-22.04.3.tar.xz) = 6983d285f646da119ba9a5ac626059f95f58962b18d27f63e0fdeec95ecc1d26 +SIZE (KDE/release-service/22.04.3/kubrick-22.04.3.tar.xz) = 343184 diff --git a/games/kubrick/pkg-plist b/games/kubrick/pkg-plist index 22a8874fe912..2ada700e4373 100644 --- a/games/kubrick/pkg-plist +++ b/games/kubrick/pkg-plist @@ -1,82 +1,83 @@ bin/kubrick share/applications/org.kde.kubrick.desktop share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/64x64/apps/kubrick.png share/icons/hicolor/128x128/apps/kubrick.png %%DATADIR%%/m333CTwirl2.kbk %%DATADIR%%/m333Complete.kbk %%DATADIR%%/m333E2prX.kbk %%DATADIR%%/m333EFlip2.kbk %%DATADIR%%/m333LLCornerPos.kbk %%DATADIR%%/m333LLCornerRot.kbk %%DATADIR%%/m333LLEdgeFlip.kbk %%DATADIR%%/m333LLEdgePos.kbk %%DATADIR%%/m333Layer1.kbk %%DATADIR%%/m333MEdge1.kbk %%DATADIR%%/m333MEdge2.kbk %%DATADIR%%/p333Bar4.kbk %%DATADIR%%/p333DoubleCube.kbk %%DATADIR%%/p333Plus4.kbk %%DATADIR%%/p333Snake.kbk %%DATADIR%%/p333Spot4.kbk %%DATADIR%%/p333Spot6.kbk %%DATADIR%%/p333Tricolor6.kbk %%DATADIR%%/p333U4.kbk %%DATADIR%%/p333U6.kbk %%DATADIR%%/p333Worm.kbk %%DATADIR%%/p333X2.kbk %%DATADIR%%/p333X6.kbk %%DATADIR%%/themes/default.svgz share/kxmlgui5/kubrick/kubrickui.rc +share/locale/bg/LC_MESSAGES/kubrick.mo share/locale/bs/LC_MESSAGES/kubrick.mo share/locale/ca/LC_MESSAGES/kubrick.mo share/locale/ca@valencia/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/da/LC_MESSAGES/kubrick.mo share/locale/de/LC_MESSAGES/kubrick.mo share/locale/el/LC_MESSAGES/kubrick.mo share/locale/en_GB/LC_MESSAGES/kubrick.mo share/locale/eo/LC_MESSAGES/kubrick.mo share/locale/es/LC_MESSAGES/kubrick.mo share/locale/et/LC_MESSAGES/kubrick.mo share/locale/eu/LC_MESSAGES/kubrick.mo share/locale/fi/LC_MESSAGES/kubrick.mo share/locale/fr/LC_MESSAGES/kubrick.mo share/locale/ga/LC_MESSAGES/kubrick.mo share/locale/gl/LC_MESSAGES/kubrick.mo share/locale/hr/LC_MESSAGES/kubrick.mo share/locale/hu/LC_MESSAGES/kubrick.mo share/locale/id/LC_MESSAGES/kubrick.mo share/locale/is/LC_MESSAGES/kubrick.mo share/locale/it/LC_MESSAGES/kubrick.mo share/locale/ja/LC_MESSAGES/kubrick.mo share/locale/kk/LC_MESSAGES/kubrick.mo share/locale/km/LC_MESSAGES/kubrick.mo share/locale/ko/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lv/LC_MESSAGES/kubrick.mo share/locale/ml/LC_MESSAGES/kubrick.mo share/locale/mr/LC_MESSAGES/kubrick.mo share/locale/nb/LC_MESSAGES/kubrick.mo share/locale/nds/LC_MESSAGES/kubrick.mo share/locale/nl/LC_MESSAGES/kubrick.mo share/locale/nn/LC_MESSAGES/kubrick.mo share/locale/pl/LC_MESSAGES/kubrick.mo share/locale/pt/LC_MESSAGES/kubrick.mo share/locale/pt_BR/LC_MESSAGES/kubrick.mo share/locale/ro/LC_MESSAGES/kubrick.mo share/locale/ru/LC_MESSAGES/kubrick.mo share/locale/sk/LC_MESSAGES/kubrick.mo share/locale/sl/LC_MESSAGES/kubrick.mo share/locale/sr/LC_MESSAGES/kubrick.mo share/locale/sv/LC_MESSAGES/kubrick.mo share/locale/tr/LC_MESSAGES/kubrick.mo share/locale/ug/LC_MESSAGES/kubrick.mo share/locale/uk/LC_MESSAGES/kubrick.mo share/locale/zh_CN/LC_MESSAGES/kubrick.mo share/locale/zh_TW/LC_MESSAGES/kubrick.mo share/metainfo/org.kde.kubrick.appdata.xml share/qlogging-categories5/kubrick.categories diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 5f8755d38ed7..6016097c648d 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672061 -SHA256 (KDE/release-service/22.04.2/libkdegames-22.04.2.tar.xz) = c33af6c13540add132122b36b2faabc1f0beaf2c06d29e575f7789f1c5342911 -SIZE (KDE/release-service/22.04.2/libkdegames-22.04.2.tar.xz) = 5979040 +TIMESTAMP = 1657013395 +SHA256 (KDE/release-service/22.04.3/libkdegames-22.04.3.tar.xz) = f6af5b98c6f5a4061b5124d04e5cf0c2cc9e21df93824559153d5565d541f845 +SIZE (KDE/release-service/22.04.3/libkdegames-22.04.3.tar.xz) = 5955872 diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index e8dc5072b46e..0323ba4a3a24 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672042 -SHA256 (KDE/release-service/22.04.2/libkmahjongg-22.04.2.tar.xz) = 8421e0180bcf108607e3b4475fc594a84013c9b680d2c3d2aa7745b1b9250e74 -SIZE (KDE/release-service/22.04.2/libkmahjongg-22.04.2.tar.xz) = 1684044 +TIMESTAMP = 1657013377 +SHA256 (KDE/release-service/22.04.3/libkmahjongg-22.04.3.tar.xz) = 88db72d067344ee734c2d5113dfa9517538b03ea4e6cfa30a23192f8fc1a22f8 +SIZE (KDE/release-service/22.04.3/libkmahjongg-22.04.3.tar.xz) = 1684304 diff --git a/games/libkmahjongg/pkg-plist b/games/libkmahjongg/pkg-plist index 5b9e4df77691..b30480d0e151 100644 --- a/games/libkmahjongg/pkg-plist +++ b/games/libkmahjongg/pkg-plist @@ -1,103 +1,104 @@ include/KF5/KMahjongg/KMahjonggBackground include/KF5/KMahjongg/KMahjonggConfigDialog include/KF5/KMahjongg/KMahjonggTileset include/KF5/KMahjongg/kmahjonggbackground.h include/KF5/KMahjongg/kmahjonggconfigdialog.h include/KF5/KMahjongg/kmahjongglib_version.h include/KF5/KMahjongg/kmahjonggtileset.h include/KF5/KMahjongg/libkmahjongg_export.h lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfig.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfigVersion.cmake lib/libKF5KMahjongglib.so lib/libKF5KMahjongglib.so.5 lib/libKF5KMahjongglib.so.5.1.0 share/kmahjongglib/backgrounds/chinese_landscape.copyright share/kmahjongglib/backgrounds/chinese_landscape.desktop share/kmahjongglib/backgrounds/chinese_landscape.svgz share/kmahjongglib/backgrounds/color_plain.desktop share/kmahjongglib/backgrounds/default.copyright share/kmahjongglib/backgrounds/default.desktop share/kmahjongglib/backgrounds/default.svgz share/kmahjongglib/backgrounds/egyptian.copyright share/kmahjongglib/backgrounds/egyptian.desktop share/kmahjongglib/backgrounds/egyptian.svgz share/kmahjongglib/backgrounds/summerfield.copyright share/kmahjongglib/backgrounds/summerfield.desktop share/kmahjongglib/backgrounds/summerfield.svgz share/kmahjongglib/backgrounds/wood_light.copyright share/kmahjongglib/backgrounds/wood_light.desktop share/kmahjongglib/backgrounds/wood_light.svgz share/kmahjongglib/tilesets/alphabet.copyright share/kmahjongglib/tilesets/alphabet.desktop share/kmahjongglib/tilesets/alphabet.svgz share/kmahjongglib/tilesets/classic.copyright share/kmahjongglib/tilesets/classic.desktop share/kmahjongglib/tilesets/classic.svgz share/kmahjongglib/tilesets/default.copyright share/kmahjongglib/tilesets/default.desktop share/kmahjongglib/tilesets/default.svgz share/kmahjongglib/tilesets/egypt.copyright share/kmahjongglib/tilesets/egypt.desktop share/kmahjongglib/tilesets/egypt.svgz share/kmahjongglib/tilesets/jade.copyright share/kmahjongglib/tilesets/jade.desktop share/kmahjongglib/tilesets/jade.svgz share/kmahjongglib/tilesets/traditional.copyright share/kmahjongglib/tilesets/traditional.desktop share/kmahjongglib/tilesets/traditional.svgz share/locale/ar/LC_MESSAGES/libkmahjongg5.mo share/locale/be/LC_MESSAGES/libkmahjongg5.mo +share/locale/bg/LC_MESSAGES/libkmahjongg5.mo share/locale/bs/LC_MESSAGES/libkmahjongg5.mo share/locale/ca/LC_MESSAGES/libkmahjongg5.mo share/locale/ca@valencia/LC_MESSAGES/libkmahjongg5.mo share/locale/cs/LC_MESSAGES/libkmahjongg5.mo share/locale/da/LC_MESSAGES/libkmahjongg5.mo share/locale/de/LC_MESSAGES/libkmahjongg5.mo share/locale/el/LC_MESSAGES/libkmahjongg5.mo share/locale/en_GB/LC_MESSAGES/libkmahjongg5.mo share/locale/eo/LC_MESSAGES/libkmahjongg5.mo share/locale/es/LC_MESSAGES/libkmahjongg5.mo share/locale/et/LC_MESSAGES/libkmahjongg5.mo share/locale/eu/LC_MESSAGES/libkmahjongg5.mo share/locale/fi/LC_MESSAGES/libkmahjongg5.mo share/locale/fr/LC_MESSAGES/libkmahjongg5.mo share/locale/ga/LC_MESSAGES/libkmahjongg5.mo share/locale/gl/LC_MESSAGES/libkmahjongg5.mo share/locale/hi/LC_MESSAGES/libkmahjongg5.mo share/locale/hr/LC_MESSAGES/libkmahjongg5.mo share/locale/hu/LC_MESSAGES/libkmahjongg5.mo share/locale/id/LC_MESSAGES/libkmahjongg5.mo share/locale/is/LC_MESSAGES/libkmahjongg5.mo share/locale/it/LC_MESSAGES/libkmahjongg5.mo share/locale/ja/LC_MESSAGES/libkmahjongg5.mo share/locale/kk/LC_MESSAGES/libkmahjongg5.mo share/locale/km/LC_MESSAGES/libkmahjongg5.mo share/locale/ko/LC_MESSAGES/libkmahjongg5.mo share/locale/lt/LC_MESSAGES/libkmahjongg5.mo share/locale/lv/LC_MESSAGES/libkmahjongg5.mo share/locale/ml/LC_MESSAGES/libkmahjongg5.mo share/locale/mr/LC_MESSAGES/libkmahjongg5.mo share/locale/nb/LC_MESSAGES/libkmahjongg5.mo share/locale/nds/LC_MESSAGES/libkmahjongg5.mo share/locale/nl/LC_MESSAGES/libkmahjongg5.mo share/locale/nn/LC_MESSAGES/libkmahjongg5.mo share/locale/pl/LC_MESSAGES/libkmahjongg5.mo share/locale/pt/LC_MESSAGES/libkmahjongg5.mo share/locale/pt_BR/LC_MESSAGES/libkmahjongg5.mo share/locale/ro/LC_MESSAGES/libkmahjongg5.mo share/locale/ru/LC_MESSAGES/libkmahjongg5.mo share/locale/se/LC_MESSAGES/libkmahjongg5.mo share/locale/sk/LC_MESSAGES/libkmahjongg5.mo share/locale/sl/LC_MESSAGES/libkmahjongg5.mo share/locale/sq/LC_MESSAGES/libkmahjongg5.mo share/locale/sr/LC_MESSAGES/libkmahjongg5.mo share/locale/sv/LC_MESSAGES/libkmahjongg5.mo share/locale/tr/LC_MESSAGES/libkmahjongg5.mo share/locale/ug/LC_MESSAGES/libkmahjongg5.mo share/locale/uk/LC_MESSAGES/libkmahjongg5.mo share/locale/wa/LC_MESSAGES/libkmahjongg5.mo share/locale/zh_CN/LC_MESSAGES/libkmahjongg5.mo share/locale/zh_TW/LC_MESSAGES/libkmahjongg5.mo share/qlogging-categories5/libkmahjongg.categories diff --git a/games/lskat/distinfo b/games/lskat/distinfo index 4194690e305e..0c566335b7e2 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672040 -SHA256 (KDE/release-service/22.04.2/lskat-22.04.2.tar.xz) = bfab67a133a12790a037a369a22bf9f92856b235575761ccf70547a12c825655 -SIZE (KDE/release-service/22.04.2/lskat-22.04.2.tar.xz) = 1234992 +TIMESTAMP = 1657013374 +SHA256 (KDE/release-service/22.04.3/lskat-22.04.3.tar.xz) = 29ab34d9c376bc063d5fb2a4b3e694d18898c86d15c70112639cbf9beccbf31e +SIZE (KDE/release-service/22.04.3/lskat-22.04.3.tar.xz) = 1234196 diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index d90d3710b43c..8b369ea42b61 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672026 -SHA256 (KDE/release-service/22.04.2/palapeli-22.04.2.tar.xz) = 50a3a3461e703a796868ded437ac3a74769641cdb73f423da4e1bb7e5180c436 -SIZE (KDE/release-service/22.04.2/palapeli-22.04.2.tar.xz) = 2101128 +TIMESTAMP = 1657013361 +SHA256 (KDE/release-service/22.04.3/palapeli-22.04.3.tar.xz) = 1b13c799e1d03852707997e96be7846037883aefba68e8e10ed0b85c8b2f912f +SIZE (KDE/release-service/22.04.3/palapeli-22.04.3.tar.xz) = 2101212 diff --git a/games/palapeli/pkg-plist b/games/palapeli/pkg-plist index 995273c58e9a..fa2571fb1a7a 100644 --- a/games/palapeli/pkg-plist +++ b/games/palapeli/pkg-plist @@ -1,107 +1,108 @@ bin/palapeli etc/xdg/palapeli-collectionrc include/Pala/Pala/Slicer include/Pala/Pala/SlicerJob include/Pala/Pala/SlicerMode include/Pala/Pala/SlicerProperty include/Pala/Pala/SlicerPropertySet include/Pala/pala/libpala_export.h include/Pala/pala/slicer.h include/Pala/pala/slicerjob.h include/Pala/pala/slicermode.h include/Pala/pala/slicerproperty.h include/Pala/pala/slicerpropertyset.h lib/cmake/Pala/PalaConfig.cmake lib/cmake/Pala/PalaConfigVersion.cmake lib/cmake/Pala/PalaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Pala/PalaTargets.cmake lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 %%QT_PLUGINDIR%%/palapelislicers/palapeli_goldbergslicer.so %%QT_PLUGINDIR%%/palapelislicers/palapeli_jigsawslicer.so %%QT_PLUGINDIR%%/palapelislicers/palapeli_rectslicer.so %%QT_PLUGINDIR%%/palathumbcreator.so share/applications/org.kde.palapeli.desktop share/icons/hicolor/16x16/apps/palapeli.png share/icons/hicolor/16x16/mimetypes/application-x-palapeli.png share/icons/hicolor/24x24/apps/palapeli.png share/icons/hicolor/24x24/mimetypes/application-x-palapeli.png share/icons/hicolor/32x32/apps/palapeli.png share/icons/hicolor/32x32/mimetypes/application-x-palapeli.png share/icons/hicolor/48x48/apps/palapeli.png share/icons/hicolor/48x48/mimetypes/application-x-palapeli.png share/icons/hicolor/64x64/apps/palapeli.png share/icons/hicolor/64x64/mimetypes/application-x-palapeli.png share/icons/hicolor/128x128/apps/palapeli.png share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png share/knotifications5/palapeli.notifyrc share/kservices5/ServiceMenus/palapeli_servicemenu.desktop share/kservices5/palathumbcreator.desktop +share/locale/bg/LC_MESSAGES/palapeli.mo share/locale/bs/LC_MESSAGES/palapeli.mo share/locale/ca/LC_MESSAGES/palapeli.mo share/locale/ca@valencia/LC_MESSAGES/palapeli.mo share/locale/cs/LC_MESSAGES/palapeli.mo share/locale/da/LC_MESSAGES/palapeli.mo share/locale/de/LC_MESSAGES/palapeli.mo share/locale/el/LC_MESSAGES/palapeli.mo share/locale/en_GB/LC_MESSAGES/palapeli.mo share/locale/eo/LC_MESSAGES/palapeli.mo share/locale/es/LC_MESSAGES/palapeli.mo share/locale/et/LC_MESSAGES/palapeli.mo share/locale/eu/LC_MESSAGES/palapeli.mo share/locale/fi/LC_MESSAGES/palapeli.mo share/locale/fr/LC_MESSAGES/palapeli.mo share/locale/ga/LC_MESSAGES/palapeli.mo share/locale/gl/LC_MESSAGES/palapeli.mo share/locale/hr/LC_MESSAGES/palapeli.mo share/locale/hu/LC_MESSAGES/palapeli.mo share/locale/is/LC_MESSAGES/palapeli.mo share/locale/it/LC_MESSAGES/palapeli.mo share/locale/ja/LC_MESSAGES/palapeli.mo share/locale/kk/LC_MESSAGES/palapeli.mo share/locale/km/LC_MESSAGES/palapeli.mo share/locale/ko/LC_MESSAGES/palapeli.mo share/locale/lt/LC_MESSAGES/palapeli.mo share/locale/lv/LC_MESSAGES/palapeli.mo share/locale/ml/LC_MESSAGES/palapeli.mo share/locale/mr/LC_MESSAGES/palapeli.mo share/locale/nb/LC_MESSAGES/palapeli.mo share/locale/nds/LC_MESSAGES/palapeli.mo share/locale/nl/LC_MESSAGES/palapeli.mo share/locale/nn/LC_MESSAGES/palapeli.mo share/locale/pl/LC_MESSAGES/palapeli.mo share/locale/pt/LC_MESSAGES/palapeli.mo share/locale/pt_BR/LC_MESSAGES/palapeli.mo share/locale/ro/LC_MESSAGES/palapeli.mo share/locale/ru/LC_MESSAGES/palapeli.mo share/locale/sk/LC_MESSAGES/palapeli.mo share/locale/sl/LC_MESSAGES/palapeli.mo share/locale/sq/LC_MESSAGES/palapeli.mo share/locale/sr/LC_MESSAGES/palapeli.mo share/locale/sv/LC_MESSAGES/palapeli.mo share/locale/tr/LC_MESSAGES/palapeli.mo share/locale/ug/LC_MESSAGES/palapeli.mo share/locale/uk/LC_MESSAGES/palapeli.mo share/locale/zh_CN/LC_MESSAGES/palapeli.mo share/locale/zh_TW/LC_MESSAGES/palapeli.mo share/metainfo/org.kde.palapeli.appdata.xml share/mime/packages/palapeli-mimetypes.xml %%DATADIR%%/backgrounds/Eliminator-Funk-2.jpg %%DATADIR%%/backgrounds/Rear-Admiral-Diplomat-1.jpg %%DATADIR%%/backgrounds/Time-For-Lunch-2.jpg %%DATADIR%%/backgrounds/background.svg %%DATADIR%%/backgrounds/gon-defends-the-critters-1.jpg %%DATADIR%%/backgrounds/mahogany-handjob-1.jpg %%DATADIR%%/collection/castle-maintenon.desktop %%DATADIR%%/collection/castle-maintenon.jpg %%DATADIR%%/collection/cincinnati-bridge.desktop %%DATADIR%%/collection/cincinnati-bridge.jpg %%DATADIR%%/collection/citrus-fruits.desktop %%DATADIR%%/collection/citrus-fruits.jpg %%DATADIR%%/collection/european-honey-bee.desktop %%DATADIR%%/collection/european-honey-bee.jpg %%DATADIR%%/collection/panther-chameleon-female.desktop %%DATADIR%%/collection/panther-chameleon-female.jpg %%DATADIR%%/palapeli.kcfg share/qlogging-categories5/palapeli.categories diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 65f60de0ceb0..065b14e863ad 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672058 -SHA256 (KDE/release-service/22.04.2/picmi-22.04.2.tar.xz) = a774b45df770c7ad4410636b0e12d7b1bec07768bc48db0e697abe017d41af81 -SIZE (KDE/release-service/22.04.2/picmi-22.04.2.tar.xz) = 1538192 +TIMESTAMP = 1657013392 +SHA256 (KDE/release-service/22.04.3/picmi-22.04.3.tar.xz) = 8658de7327c19f4a9535a7f19da00e43e78cf19604c1864426f61345a306c05a +SIZE (KDE/release-service/22.04.3/picmi-22.04.3.tar.xz) = 1538120 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 54666c29b6b7..26a620df3cb1 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672080 -SHA256 (KDE/release-service/22.04.2/gwenview-22.04.2.tar.xz) = 84eece81340843d6b256008424358128a987858f1bd7eeab0ad588abff244387 -SIZE (KDE/release-service/22.04.2/gwenview-22.04.2.tar.xz) = 6820756 +TIMESTAMP = 1657013415 +SHA256 (KDE/release-service/22.04.3/gwenview-22.04.3.tar.xz) = 8c793929f2ad3050d906e185b6753acffd9481dc619156844d681ac0ba57bc05 +SIZE (KDE/release-service/22.04.3/gwenview-22.04.3.tar.xz) = 6821928 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index 0bf373ac897d..4562ae1a5156 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672069 -SHA256 (KDE/release-service/22.04.2/kamera-22.04.2.tar.xz) = 70aa9a31025c9247187d9fed2b0832fad701fb6c3ef3599cb0ed8a0249643495 -SIZE (KDE/release-service/22.04.2/kamera-22.04.2.tar.xz) = 119248 +TIMESTAMP = 1657013403 +SHA256 (KDE/release-service/22.04.3/kamera-22.04.3.tar.xz) = 11c25c086a6bd187482b73c5a59d72a9da9bb0f4b21172839c79743f37404c27 +SIZE (KDE/release-service/22.04.3/kamera-22.04.3.tar.xz) = 119228 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index 76ab6a8124a8..b7e6ae5fac85 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,101 +1,102 @@ %%QT_PLUGINDIR%%/kf5/kio/kio_kamera.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kamera.so share/applications/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kio5_kamera.mo share/locale/ast/LC_MESSAGES/kio5_kamera.mo share/locale/az/LC_MESSAGES/kcmkamera.mo share/locale/az/LC_MESSAGES/kio5_kamera.mo share/locale/be/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo +share/locale/bg/LC_MESSAGES/kio5_kamera.mo share/locale/bs/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kcmkamera.mo share/locale/ca/LC_MESSAGES/kio5_kamera.mo share/locale/ca@valencia/LC_MESSAGES/kcmkamera.mo share/locale/ca@valencia/LC_MESSAGES/kio5_kamera.mo share/locale/cs/LC_MESSAGES/kcmkamera.mo share/locale/cs/LC_MESSAGES/kio5_kamera.mo share/locale/da/LC_MESSAGES/kcmkamera.mo share/locale/da/LC_MESSAGES/kio5_kamera.mo share/locale/de/LC_MESSAGES/kcmkamera.mo share/locale/de/LC_MESSAGES/kio5_kamera.mo share/locale/el/LC_MESSAGES/kcmkamera.mo share/locale/el/LC_MESSAGES/kio5_kamera.mo share/locale/en_GB/LC_MESSAGES/kcmkamera.mo share/locale/en_GB/LC_MESSAGES/kio5_kamera.mo share/locale/eo/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kcmkamera.mo share/locale/es/LC_MESSAGES/kio5_kamera.mo share/locale/et/LC_MESSAGES/kcmkamera.mo share/locale/et/LC_MESSAGES/kio5_kamera.mo share/locale/eu/LC_MESSAGES/kcmkamera.mo share/locale/eu/LC_MESSAGES/kio5_kamera.mo share/locale/fa/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kcmkamera.mo share/locale/fi/LC_MESSAGES/kio5_kamera.mo share/locale/fr/LC_MESSAGES/kcmkamera.mo share/locale/fr/LC_MESSAGES/kio5_kamera.mo share/locale/ga/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kcmkamera.mo share/locale/gl/LC_MESSAGES/kio5_kamera.mo share/locale/he/LC_MESSAGES/kcmkamera.mo share/locale/hi/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kio5_kamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kcmkamera.mo share/locale/it/LC_MESSAGES/kio5_kamera.mo share/locale/ja/LC_MESSAGES/kcmkamera.mo share/locale/ja/LC_MESSAGES/kio5_kamera.mo share/locale/kk/LC_MESSAGES/kcmkamera.mo share/locale/km/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kcmkamera.mo share/locale/ko/LC_MESSAGES/kio5_kamera.mo share/locale/lt/LC_MESSAGES/kcmkamera.mo share/locale/lt/LC_MESSAGES/kio5_kamera.mo share/locale/lv/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kcmkamera.mo share/locale/ml/LC_MESSAGES/kio5_kamera.mo share/locale/mr/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kcmkamera.mo share/locale/nl/LC_MESSAGES/kio5_kamera.mo share/locale/nn/LC_MESSAGES/kcmkamera.mo share/locale/nn/LC_MESSAGES/kio5_kamera.mo share/locale/pa/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kcmkamera.mo share/locale/pl/LC_MESSAGES/kio5_kamera.mo share/locale/pt/LC_MESSAGES/kcmkamera.mo share/locale/pt/LC_MESSAGES/kio5_kamera.mo share/locale/pt_BR/LC_MESSAGES/kcmkamera.mo share/locale/pt_BR/LC_MESSAGES/kio5_kamera.mo share/locale/ro/LC_MESSAGES/kcmkamera.mo share/locale/ro/LC_MESSAGES/kio5_kamera.mo share/locale/ru/LC_MESSAGES/kcmkamera.mo share/locale/ru/LC_MESSAGES/kio5_kamera.mo share/locale/se/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kcmkamera.mo share/locale/sk/LC_MESSAGES/kio5_kamera.mo share/locale/sl/LC_MESSAGES/kcmkamera.mo share/locale/sl/LC_MESSAGES/kio5_kamera.mo share/locale/sq/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kcmkamera.mo share/locale/sv/LC_MESSAGES/kio5_kamera.mo share/locale/ta/LC_MESSAGES/kcmkamera.mo share/locale/tg/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/vi/LC_MESSAGES/kcmkamera.mo share/locale/vi/LC_MESSAGES/kio5_kamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo share/locale/zh_TW/LC_MESSAGES/kcmkamera.mo share/locale/zh_TW/LC_MESSAGES/kio5_kamera.mo share/metainfo/org.kde.kamera.metainfo.xml share/solid/actions/solid_camera.desktop diff --git a/graphics/kcolorchooser/distinfo b/graphics/kcolorchooser/distinfo index 7bdd7382283e..5794668592db 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672074 -SHA256 (KDE/release-service/22.04.2/kcolorchooser-22.04.2.tar.xz) = 255f65bb6e4622f67c28efee90feb2e451bc02aaae86d2a5433a249282e80e9e -SIZE (KDE/release-service/22.04.2/kcolorchooser-22.04.2.tar.xz) = 30344 +TIMESTAMP = 1657013408 +SHA256 (KDE/release-service/22.04.3/kcolorchooser-22.04.3.tar.xz) = f87c83eee64539227e5b583e6464caab4b07e0a1fb8c8ed5cb19c094536a2fbc +SIZE (KDE/release-service/22.04.3/kcolorchooser-22.04.3.tar.xz) = 30680 diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 04058801df0e..3f91251197ec 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672072 -SHA256 (KDE/release-service/22.04.2/kdegraphics-mobipocket-22.04.2.tar.xz) = 4333ab838b31d745bbaf5e608453e35665ae91adb0dedb9fe84d375e811a1a1d -SIZE (KDE/release-service/22.04.2/kdegraphics-mobipocket-22.04.2.tar.xz) = 12540 +TIMESTAMP = 1657013406 +SHA256 (KDE/release-service/22.04.3/kdegraphics-mobipocket-22.04.3.tar.xz) = 521fae7172263f888ddb98f15c69d9b417a9d477e66c0782d31d132684e2d98b +SIZE (KDE/release-service/22.04.3/kdegraphics-mobipocket-22.04.3.tar.xz) = 12540 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 115551398751..4d7bedae1c6e 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672077 -SHA256 (KDE/release-service/22.04.2/svgpart-22.04.2.tar.xz) = c0b9c275c2687df56b6cafec50010a96020634f5646de63264ea8c4f45e60e38 -SIZE (KDE/release-service/22.04.2/svgpart-22.04.2.tar.xz) = 27100 +TIMESTAMP = 1657013411 +SHA256 (KDE/release-service/22.04.3/svgpart-22.04.3.tar.xz) = 785393f3ae348210dccecfceb8133fd848eb7d1ad39100ed2f0d430f713bd598 +SIZE (KDE/release-service/22.04.3/svgpart-22.04.3.tar.xz) = 27052 diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index a79786e3b7b3..82ae5a206665 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672066 -SHA256 (KDE/release-service/22.04.2/kdegraphics-thumbnailers-22.04.2.tar.xz) = 3ab83fc5da3066228828b9188ac4bf9315abb19d9d883061e1356a1478b316d5 -SIZE (KDE/release-service/22.04.2/kdegraphics-thumbnailers-22.04.2.tar.xz) = 48488 +TIMESTAMP = 1657013400 +SHA256 (KDE/release-service/22.04.3/kdegraphics-thumbnailers-22.04.3.tar.xz) = 3fb892a96978bd6198cd9a4b04f8b74205917401b915dca722d945a820ca9c36 +SIZE (KDE/release-service/22.04.3/kdegraphics-thumbnailers-22.04.3.tar.xz) = 48468 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 9e3235440f32..f9fff8b487b5 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672073 -SHA256 (KDE/release-service/22.04.2/kimagemapeditor-22.04.2.tar.xz) = ef6604cc9fe0f1a798c6d4ae5f7f8353dbefb3a40dc7aa700f08e88dc5abb9d5 -SIZE (KDE/release-service/22.04.2/kimagemapeditor-22.04.2.tar.xz) = 1090680 +TIMESTAMP = 1657013407 +SHA256 (KDE/release-service/22.04.3/kimagemapeditor-22.04.3.tar.xz) = ea7cbc27d65961fbd4142e310cf1d3301a994ca9d85834eb9db8a55fc9861171 +SIZE (KDE/release-service/22.04.3/kimagemapeditor-22.04.3.tar.xz) = 1090716 diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 3a2249a0fb5a..9f9973a17f99 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672071 -SHA256 (KDE/release-service/22.04.2/kipi-plugins-22.04.2.tar.xz) = 8261a3f6aa02b26aa84231c2c471a30d0079e416a1cef8379a1f25fe2375b3cd -SIZE (KDE/release-service/22.04.2/kipi-plugins-22.04.2.tar.xz) = 1524576 +TIMESTAMP = 1657013405 +SHA256 (KDE/release-service/22.04.3/kipi-plugins-22.04.3.tar.xz) = ca4f078d08efb9b0c206a402d0c9e05ce936cdd69384c7aa65939de520e92cde +SIZE (KDE/release-service/22.04.3/kipi-plugins-22.04.3.tar.xz) = 1525632 diff --git a/graphics/kipi-plugins/pkg-plist b/graphics/kipi-plugins/pkg-plist index d1d4feda65e9..edb14b2144c6 100644 --- a/graphics/kipi-plugins/pkg-plist +++ b/graphics/kipi-plugins/pkg-plist @@ -1,881 +1,898 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flickr.so %%QT_PLUGINDIR%%/kipiplugin_googleservices.so %%QT_PLUGINDIR%%/kipiplugin_imageshack.so %%QT_PLUGINDIR%%/kipiplugin_imgur.so %%QT_PLUGINDIR%%/kipiplugin_jalbum.so %%QT_PLUGINDIR%%/kipiplugin_kmlexport.so %%QT_PLUGINDIR%%/kipiplugin_piwigo.so %%QT_PLUGINDIR%%/kipiplugin_printimages.so %%QT_PLUGINDIR%%/kipiplugin_rajce.so %%QT_PLUGINDIR%%/kipiplugin_remotestorage.so %%QT_PLUGINDIR%%/kipiplugin_sendimages.so %%QT_PLUGINDIR%%/kipiplugin_smug.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flickr.png share/icons/hicolor/16x16/apps/kipi-googledrive.png share/icons/hicolor/16x16/apps/kipi-googlephoto.png share/icons/hicolor/16x16/apps/kipi-hq.png share/icons/hicolor/16x16/apps/kipi-imgur.png share/icons/hicolor/16x16/apps/kipi-jalbum.png share/icons/hicolor/16x16/apps/kipi-piwigo.png share/icons/hicolor/16x16/apps/kipi-rajce.png share/icons/hicolor/16x16/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/16x16/apps/kipi-wikimedia.png share/icons/hicolor/22x22/apps/kipi-dropbox.png share/icons/hicolor/22x22/apps/kipi-facebook.png share/icons/hicolor/22x22/apps/kipi-flickr.png share/icons/hicolor/22x22/apps/kipi-googledrive.png share/icons/hicolor/22x22/apps/kipi-googlephoto.png share/icons/hicolor/22x22/apps/kipi-hq.png share/icons/hicolor/22x22/apps/kipi-imgur.png share/icons/hicolor/22x22/apps/kipi-piwigo.png share/icons/hicolor/22x22/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/22x22/apps/kipi-wikimedia.png share/icons/hicolor/24x24/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-dropbox.png share/icons/hicolor/32x32/apps/kipi-facebook.png share/icons/hicolor/32x32/apps/kipi-flickr.png share/icons/hicolor/32x32/apps/kipi-googledrive.png share/icons/hicolor/32x32/apps/kipi-googlephoto.png share/icons/hicolor/32x32/apps/kipi-hq.png share/icons/hicolor/32x32/apps/kipi-imageshack.png share/icons/hicolor/32x32/apps/kipi-imgur.png share/icons/hicolor/32x32/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-piwigo.png share/icons/hicolor/32x32/apps/kipi-rajce.png share/icons/hicolor/32x32/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/32x32/apps/kipi-wikimedia.png share/icons/hicolor/48x48/apps/kipi-dropbox.png share/icons/hicolor/48x48/apps/kipi-facebook.png share/icons/hicolor/48x48/apps/kipi-flickr.png share/icons/hicolor/48x48/apps/kipi-googledrive.png share/icons/hicolor/48x48/apps/kipi-googlephoto.png share/icons/hicolor/48x48/apps/kipi-hq.png share/icons/hicolor/48x48/apps/kipi-imageshack.png share/icons/hicolor/48x48/apps/kipi-imgur.png share/icons/hicolor/48x48/apps/kipi-piwigo.png share/icons/hicolor/48x48/apps/kipi-rajce.png share/icons/hicolor/48x48/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/48x48/apps/kipi-wikimedia.png share/icons/hicolor/64x64/apps/kipi-imageshack.png share/icons/hicolor/64x64/apps/kipi-rajce.png share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/icons/hicolor/scalable/apps/kipi-flickr.svgz share/icons/hicolor/scalable/apps/kipi-googlephoto.svgz share/icons/hicolor/scalable/apps/kipi-hq.svgz share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/icons/hicolor/scalable/apps/kipi-smugmug.svgz %%MEDIAWIKI%%share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kipiplugin_piwigo/pics/piwigo_logo.png share/kipiplugin_printimages/templates/1_photo_8x10.desktop share/kipiplugin_printimages/templates/1_photo_9x13cm.desktop share/kipiplugin_printimages/templates/1_photo_10.5x14.8cm.desktop share/kipiplugin_printimages/templates/1_photo_10x15cm.desktop share/kipiplugin_printimages/templates/1_photo_20x25cm.desktop share/kipiplugin_printimages/templates/2_photos_5x7.desktop share/kipiplugin_printimages/templates/2_photos_13x18cm.desktop share/kipiplugin_printimages/templates/3_photos_4x6.desktop share/kipiplugin_printimages/templates/3_photos_10x15cm.desktop share/kipiplugin_printimages/templates/4_photos_3.5x5.desktop share/kipiplugin_printimages/templates/4_photos_4.5x5cm.desktop share/kipiplugin_printimages/templates/4_photos_9x13cm.desktop share/kipiplugin_printimages/templates/4_photos_10x13.33cm.desktop share/kipiplugin_printimages/templates/4x6Album.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4.5cm.desktop share/kipiplugin_printimages/templates/6_photos_3.5x4cm.desktop share/kipiplugin_printimages/templates/8_photos_6x9cm.desktop share/kipiplugin_printimages/templates/Album-Collage1.desktop share/kipiplugin_printimages/templates/Album-Collage.desktop share/kipiplugin_printimages/templates/Album_10x15cm.desktop share/kipiplugin_printimages/templates/Album_11.5x15cm.desktop share/kipiplugin_printimages/templates/FullPage.desktop share/kipiplugin_printimages/templates/Photoframe.desktop share/kipiplugin_printimages/templates/TEMPLATE_HOWTO share/kipiplugin_printimages/templates/Thumbnails_5x4.desktop share/kipiplugin_printimages/templates/Thumbnails_6x5.desktop share/kipiplugin_printimages/templates/templates.xml share/kservices5/kipiplugin_dropbox.desktop share/kservices5/kipiplugin_facebook.desktop share/kservices5/kipiplugin_flickr.desktop share/kservices5/kipiplugin_googleservices.desktop share/kservices5/kipiplugin_imageshack.desktop share/kservices5/kipiplugin_imgur.desktop share/kservices5/kipiplugin_jalbum.desktop share/kservices5/kipiplugin_kmlexport.desktop share/kservices5/kipiplugin_piwigo.desktop share/kservices5/kipiplugin_printimages.desktop share/kservices5/kipiplugin_rajce.desktop share/kservices5/kipiplugin_remotestorage.desktop share/kservices5/kipiplugin_sendimages.desktop share/kservices5/kipiplugin_smug.desktop %%MEDIAWIKI%%share/kservices5/kipiplugin_wikimedia.desktop share/kservices5/kipiplugin_yandexfotki.desktop share/kxmlgui5/kipi/kipiplugin_dropboxui.rc share/kxmlgui5/kipi/kipiplugin_facebookui.rc share/kxmlgui5/kipi/kipiplugin_flickrui.rc share/kxmlgui5/kipi/kipiplugin_googleservicesui.rc share/kxmlgui5/kipi/kipiplugin_imageshackui.rc share/kxmlgui5/kipi/kipiplugin_imgurui.rc share/kxmlgui5/kipi/kipiplugin_jalbumui.rc share/kxmlgui5/kipi/kipiplugin_kmlexportui.rc share/kxmlgui5/kipi/kipiplugin_piwigoui.rc share/kxmlgui5/kipi/kipiplugin_printimagesui.rc share/kxmlgui5/kipi/kipiplugin_rajceui.rc share/kxmlgui5/kipi/kipiplugin_remotestorageui.rc share/kxmlgui5/kipi/kipiplugin_sendimagesui.rc share/kxmlgui5/kipi/kipiplugin_smugui.rc %%MEDIAWIKI%%share/kxmlgui5/kipi/kipiplugin_wikimediaui.rc share/kxmlgui5/kipi/kipiplugin_yandexfotkiui.rc share/locale/ar/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ar/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ar/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ar/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ar/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo share/locale/be/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/be/LC_MESSAGES/kipiplugins.mo +share/locale/bg/LC_MESSAGES/kipiplugin_dropbox.mo +share/locale/bg/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/bg/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/bg/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/bg/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/bg/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/bg/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/bg/LC_MESSAGES/kipiplugin_kmlexport.mo +share/locale/bg/LC_MESSAGES/kipiplugin_mediawiki.mo +share/locale/bg/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/bg/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/bg/LC_MESSAGES/kipiplugin_rajce.mo +share/locale/bg/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/bg/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/bg/LC_MESSAGES/kipiplugin_smug.mo +share/locale/bg/LC_MESSAGES/kipiplugin_yandexfotki.mo +share/locale/bg/LC_MESSAGES/kipiplugins.mo share/locale/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_smug.mo share/locale/bs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bs/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/cs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/cs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/cs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/cs/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/cs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/cs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/cs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo share/locale/cs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo share/locale/da/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo share/locale/da/LC_MESSAGES/kipiplugin_rajce.mo share/locale/da/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/da/LC_MESSAGES/kipiplugin_smug.mo share/locale/da/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo share/locale/de/LC_MESSAGES/kipiplugin_flickr.mo share/locale/de/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/de/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/de/LC_MESSAGES/kipiplugin_imgur.mo share/locale/de/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/de/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/de/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/de/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo share/locale/de/LC_MESSAGES/kipiplugin_rajce.mo share/locale/de/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/de/LC_MESSAGES/kipiplugin_smug.mo share/locale/de/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo share/locale/el/LC_MESSAGES/kipiplugin_flickr.mo share/locale/el/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/el/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/el/LC_MESSAGES/kipiplugin_imgur.mo share/locale/el/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/el/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/el/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/el/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo share/locale/el/LC_MESSAGES/kipiplugin_rajce.mo share/locale/el/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/el/LC_MESSAGES/kipiplugin_smug.mo share/locale/el/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/el/LC_MESSAGES/kipiplugins.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flickr.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imgur.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_rajce.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eo/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eo/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eo/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo share/locale/eo/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo share/locale/es/LC_MESSAGES/kipiplugin_flickr.mo share/locale/es/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/es/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/es/LC_MESSAGES/kipiplugin_imgur.mo share/locale/es/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/es/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/es/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/es/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo share/locale/es/LC_MESSAGES/kipiplugin_rajce.mo share/locale/es/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/es/LC_MESSAGES/kipiplugin_smug.mo share/locale/es/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/es/LC_MESSAGES/kipiplugins.mo share/locale/et/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo share/locale/et/LC_MESSAGES/kipiplugin_flickr.mo share/locale/et/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/et/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/et/LC_MESSAGES/kipiplugin_imgur.mo share/locale/et/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/et/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/et/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/et/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo share/locale/et/LC_MESSAGES/kipiplugin_rajce.mo share/locale/et/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/et/LC_MESSAGES/kipiplugin_smug.mo share/locale/et/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/et/LC_MESSAGES/kipiplugins.mo share/locale/eu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/eu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/eu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/eu/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/eu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/eu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/eu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_smug.mo share/locale/eu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/eu/LC_MESSAGES/kipiplugins.mo share/locale/fi/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fi/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fi/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fi/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fi/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fi/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fi/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fi/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fi/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_smug.mo share/locale/fi/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fi/LC_MESSAGES/kipiplugins.mo share/locale/fr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo share/locale/fr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ga/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ga/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ga/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ga/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo share/locale/ga/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/gl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/gl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/gl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/gl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/gl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/gl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/gl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hi/LC_MESSAGES/kipiplugins.mo share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo share/locale/hr/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/hu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/hu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/hu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/hu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo share/locale/ia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ia/LC_MESSAGES/kipiplugins.mo share/locale/id/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/id/LC_MESSAGES/kipiplugin_facebook.mo share/locale/id/LC_MESSAGES/kipiplugin_flickr.mo share/locale/id/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/id/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/id/LC_MESSAGES/kipiplugin_imgur.mo share/locale/id/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/id/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/id/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/id/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/id/LC_MESSAGES/kipiplugin_printimages.mo share/locale/id/LC_MESSAGES/kipiplugin_rajce.mo share/locale/id/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/id/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/id/LC_MESSAGES/kipiplugin_smug.mo share/locale/id/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/id/LC_MESSAGES/kipiplugins.mo share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo share/locale/is/LC_MESSAGES/kipiplugin_flickr.mo share/locale/is/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/is/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/is/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo share/locale/is/LC_MESSAGES/kipiplugin_rajce.mo share/locale/is/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/is/LC_MESSAGES/kipiplugin_smug.mo share/locale/is/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo share/locale/it/LC_MESSAGES/kipiplugin_flickr.mo share/locale/it/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/it/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/it/LC_MESSAGES/kipiplugin_imgur.mo share/locale/it/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/it/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/it/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/it/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo share/locale/it/LC_MESSAGES/kipiplugin_rajce.mo share/locale/it/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/it/LC_MESSAGES/kipiplugin_smug.mo share/locale/it/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ja/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ja/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ja/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ja/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ja/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ja/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ja/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo share/locale/ja/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo share/locale/km/LC_MESSAGES/kipiplugin_facebook.mo share/locale/km/LC_MESSAGES/kipiplugin_flickr.mo share/locale/km/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/km/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/km/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/km/LC_MESSAGES/kipiplugin_printimages.mo share/locale/km/LC_MESSAGES/kipiplugin_rajce.mo share/locale/km/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/km/LC_MESSAGES/kipiplugin_smug.mo share/locale/km/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/km/LC_MESSAGES/kipiplugins.mo share/locale/ko/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ko/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ko/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ko/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ko/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ko/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ko/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ko/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ko/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ko/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ko/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ko/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_smug.mo share/locale/ko/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ko/LC_MESSAGES/kipiplugins.mo share/locale/lt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/lt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/lt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/lt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/lt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/lt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/lt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/lt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/lt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo share/locale/lt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/lt/LC_MESSAGES/kipiplugins.mo share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lv/LC_MESSAGES/kipiplugins.mo share/locale/ml/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ml/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ml/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ml/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ml/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ml/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ml/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ml/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ml/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ml/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ml/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ml/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ml/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ml/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ml/LC_MESSAGES/kipiplugin_smug.mo share/locale/ml/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ml/LC_MESSAGES/kipiplugins.mo share/locale/mr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/mr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/mr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/mr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/mr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/mr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/mr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/mr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/mr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/mr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_smug.mo share/locale/mr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/mr/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nb/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nb/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nb/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nb/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nb/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nb/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nb/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo share/locale/nb/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nds/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nds/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nds/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nds/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nds/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nds/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo share/locale/nds/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo share/locale/nl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo share/locale/nn/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nn/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nn/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nn/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nn/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nn/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nn/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nn/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nn/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nn/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nn/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nn/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nn/LC_MESSAGES/kipiplugin_smug.mo share/locale/nn/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nn/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pa/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_smug.mo share/locale/pl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ro/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ro/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ro/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ro/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo share/locale/ro/LC_MESSAGES/kipiplugins.mo share/locale/ru/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ru/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ru/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ru/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ru/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ru/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ru/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ru/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ru/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ru/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo share/locale/se/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo share/locale/sk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo share/locale/sl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_smug.mo share/locale/sl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sl/LC_MESSAGES/kipiplugins.mo share/locale/sq/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sq/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sq/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sq/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sq/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sv/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sv/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sv/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sv/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sv/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sv/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sv/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo share/locale/sv/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/tr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/tr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/tr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/tr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/tr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/tr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo share/locale/tr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/ug/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ug/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ug/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ug/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ug/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ug/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ug/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ug/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ug/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ug/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_smug.mo share/locale/ug/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ug/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/uk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/uk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/uk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/uk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/uk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/uk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/uk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo share/locale/uk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo share/metainfo/org.kde.kipi_plugins.metainfo.xml diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index 38cec2147710..35840846f461 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672075 -SHA256 (KDE/release-service/22.04.2/kolourpaint-22.04.2.tar.xz) = 980e56400f54437e51bbe0d71863b678a40108af77689731b64ac01aa54656a4 -SIZE (KDE/release-service/22.04.2/kolourpaint-22.04.2.tar.xz) = 5717336 +TIMESTAMP = 1657013409 +SHA256 (KDE/release-service/22.04.3/kolourpaint-22.04.3.tar.xz) = d0c5f0d38d7226dbd493314bd7e29e33ebd2464a6f82e59570d7599b80c6757d +SIZE (KDE/release-service/22.04.3/kolourpaint-22.04.3.tar.xz) = 5717964 diff --git a/graphics/kolourpaint/pkg-plist b/graphics/kolourpaint/pkg-plist index a986ccc1b002..6a8290da49f6 100644 --- a/graphics/kolourpaint/pkg-plist +++ b/graphics/kolourpaint/pkg-plist @@ -1,159 +1,160 @@ bin/kolourpaint lib/libkolourpaint_lgpl.so lib/libkolourpaint_lgpl.so.5 share/applications/org.kde.kolourpaint.desktop share/icons/hicolor/16x16/apps/kolourpaint.png share/icons/hicolor/22x22/apps/kolourpaint.png share/icons/hicolor/32x32/apps/kolourpaint.png share/icons/hicolor/48x48/apps/kolourpaint.png share/icons/hicolor/128x128/apps/kolourpaint.png share/icons/hicolor/scalable/apps/kolourpaint.svgz %%DATADIR%%/icons/hicolor/16x16/actions/tool_brush.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_curve.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_line.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_pen.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_brush.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_curve.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_line.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_pen.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_text.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_brush.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_curve.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_line.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_pen.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_text.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_brush.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_curve.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_line.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_pen.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_text.png %%DATADIR%%/icons/hicolor/scalable/actions/tool_brush.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_picker.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_curve.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_ellipse.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_elliptical_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_flood_fill.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_free_form_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_pen.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polyline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rect_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rounded_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_spraycan.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_text.svgz share/kxmlgui5/kolourpaint/kolourpaintui.rc share/locale/ar/LC_MESSAGES/kolourpaint.mo share/locale/be/LC_MESSAGES/kolourpaint.mo share/locale/bg/LC_MESSAGES/kolourpaint.mo share/locale/bs/LC_MESSAGES/kolourpaint.mo share/locale/ca/LC_MESSAGES/kolourpaint.mo share/locale/ca@valencia/LC_MESSAGES/kolourpaint.mo share/locale/cs/LC_MESSAGES/kolourpaint.mo share/locale/da/LC_MESSAGES/kolourpaint.mo share/locale/de/LC_MESSAGES/kolourpaint.mo share/locale/el/LC_MESSAGES/kolourpaint.mo share/locale/en_GB/LC_MESSAGES/kolourpaint.mo share/locale/eo/LC_MESSAGES/kolourpaint.mo share/locale/es/LC_MESSAGES/kolourpaint.mo share/locale/et/LC_MESSAGES/kolourpaint.mo share/locale/eu/LC_MESSAGES/kolourpaint.mo share/locale/fa/LC_MESSAGES/kolourpaint.mo share/locale/fi/LC_MESSAGES/kolourpaint.mo share/locale/fr/LC_MESSAGES/kolourpaint.mo share/locale/ga/LC_MESSAGES/kolourpaint.mo share/locale/gl/LC_MESSAGES/kolourpaint.mo share/locale/he/LC_MESSAGES/kolourpaint.mo share/locale/hi/LC_MESSAGES/kolourpaint.mo share/locale/hr/LC_MESSAGES/kolourpaint.mo share/locale/hu/LC_MESSAGES/kolourpaint.mo share/locale/ia/LC_MESSAGES/kolourpaint.mo +share/locale/id/LC_MESSAGES/kolourpaint.mo share/locale/is/LC_MESSAGES/kolourpaint.mo share/locale/it/LC_MESSAGES/kolourpaint.mo share/locale/ja/LC_MESSAGES/kolourpaint.mo share/locale/kk/LC_MESSAGES/kolourpaint.mo share/locale/km/LC_MESSAGES/kolourpaint.mo share/locale/ko/LC_MESSAGES/kolourpaint.mo share/locale/lt/LC_MESSAGES/kolourpaint.mo share/locale/lv/LC_MESSAGES/kolourpaint.mo share/locale/ml/LC_MESSAGES/kolourpaint.mo share/locale/mr/LC_MESSAGES/kolourpaint.mo share/locale/nb/LC_MESSAGES/kolourpaint.mo share/locale/nds/LC_MESSAGES/kolourpaint.mo share/locale/nl/LC_MESSAGES/kolourpaint.mo share/locale/nn/LC_MESSAGES/kolourpaint.mo share/locale/pa/LC_MESSAGES/kolourpaint.mo share/locale/pl/LC_MESSAGES/kolourpaint.mo share/locale/pt/LC_MESSAGES/kolourpaint.mo share/locale/pt_BR/LC_MESSAGES/kolourpaint.mo share/locale/ro/LC_MESSAGES/kolourpaint.mo share/locale/ru/LC_MESSAGES/kolourpaint.mo share/locale/se/LC_MESSAGES/kolourpaint.mo share/locale/sk/LC_MESSAGES/kolourpaint.mo share/locale/sl/LC_MESSAGES/kolourpaint.mo share/locale/sq/LC_MESSAGES/kolourpaint.mo share/locale/sv/LC_MESSAGES/kolourpaint.mo share/locale/ta/LC_MESSAGES/kolourpaint.mo share/locale/tg/LC_MESSAGES/kolourpaint.mo share/locale/tr/LC_MESSAGES/kolourpaint.mo share/locale/ug/LC_MESSAGES/kolourpaint.mo share/locale/uk/LC_MESSAGES/kolourpaint.mo share/locale/zh_CN/LC_MESSAGES/kolourpaint.mo share/locale/zh_TW/LC_MESSAGES/kolourpaint.mo share/metainfo/org.kde.kolourpaint.appdata.xml diff --git a/graphics/kontrast/distinfo b/graphics/kontrast/distinfo index 57eb631ad12a..712cf36a3b60 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672078 -SHA256 (KDE/release-service/22.04.2/kontrast-22.04.2.tar.xz) = 812c25d399eb322b369753f8d242d8f0a04e03aceade7d33ffc1aa6988146f56 -SIZE (KDE/release-service/22.04.2/kontrast-22.04.2.tar.xz) = 125844 +TIMESTAMP = 1657013412 +SHA256 (KDE/release-service/22.04.3/kontrast-22.04.3.tar.xz) = 4c9f4e8f19b0366e63c02d3d89539ec4cbeb859cba6eb881acb2b8ff3f7e2e60 +SIZE (KDE/release-service/22.04.3/kontrast-22.04.3.tar.xz) = 125860 diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 8caee7fad3f9..ef2995de3ea3 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672079 -SHA256 (KDE/release-service/22.04.2/kqtquickcharts-22.04.2.tar.xz) = f9a34b383e587136f26dd1e5e33c94b00d4b252286e55b02cfee42e3beb7b9f2 -SIZE (KDE/release-service/22.04.2/kqtquickcharts-22.04.2.tar.xz) = 30160 +TIMESTAMP = 1657013414 +SHA256 (KDE/release-service/22.04.3/kqtquickcharts-22.04.3.tar.xz) = b71af768edb34a6ef5474545c0f740180d41fb1c311ee4b775d6d1ad7dcba72e +SIZE (KDE/release-service/22.04.3/kqtquickcharts-22.04.3.tar.xz) = 30164 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index ce52659bd8ce..e16c6aaa9947 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672078 -SHA256 (KDE/release-service/22.04.2/libkdcraw-22.04.2.tar.xz) = c669f629077df69febba2e1fbd91dd6452fa49b14f6b1ac382e177c7423828fd -SIZE (KDE/release-service/22.04.2/libkdcraw-22.04.2.tar.xz) = 37420 +TIMESTAMP = 1657013413 +SHA256 (KDE/release-service/22.04.3/libkdcraw-22.04.3.tar.xz) = bd04e74c6a7b5c717ce70397ddf70f43bc0fd050ac97703b9bd46f5e767a2499 +SIZE (KDE/release-service/22.04.3/libkdcraw-22.04.3.tar.xz) = 37420 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 3ece388f4ff8..9a0e97415aa3 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672068 -SHA256 (KDE/release-service/22.04.2/libkexiv2-22.04.2.tar.xz) = e395c8cc4291dd03e97b739b9b8a224a3c5be335d19caded97c5af902cdd317b -SIZE (KDE/release-service/22.04.2/libkexiv2-22.04.2.tar.xz) = 59596 +TIMESTAMP = 1657013402 +SHA256 (KDE/release-service/22.04.3/libkexiv2-22.04.3.tar.xz) = 29d0bec9eda4636252914e35001362f3f6ffaeb4be0f0b43455316e893f9835c +SIZE (KDE/release-service/22.04.3/libkexiv2-22.04.3.tar.xz) = 59612 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 38759442e8bf..3b591edd61eb 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672067 -SHA256 (KDE/release-service/22.04.2/libkipi-22.04.2.tar.xz) = acec30ea2fce9a91bcc6ff04d66e46192fe47296f3caef89155151f9d6df7009 -SIZE (KDE/release-service/22.04.2/libkipi-22.04.2.tar.xz) = 88472 +TIMESTAMP = 1657013401 +SHA256 (KDE/release-service/22.04.3/libkipi-22.04.3.tar.xz) = f0881215036b60df4b46e0f8ceb4bc7ee5ab853c51e7abd447a4a77d16680775 +SIZE (KDE/release-service/22.04.3/libkipi-22.04.3.tar.xz) = 88476 diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 3a0a8103ccf2..8416d0329470 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672070 -SHA256 (KDE/release-service/22.04.2/libksane-22.04.2.tar.xz) = 37ac1358d19e062eec782de31632885abd203eec0dade8f0c13f2f720e6c40b3 -SIZE (KDE/release-service/22.04.2/libksane-22.04.2.tar.xz) = 165840 +TIMESTAMP = 1657013404 +SHA256 (KDE/release-service/22.04.3/libksane-22.04.3.tar.xz) = 6354b997c7ee20b235dcf25cad8ed9023fa5ddc09eb898de1c95922560306740 +SIZE (KDE/release-service/22.04.3/libksane-22.04.3.tar.xz) = 165764 diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index c14066772ccf..ba02ab0fedfe 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672076 -SHA256 (KDE/release-service/22.04.2/okular-22.04.2.tar.xz) = c9a1dd06bcd3045e9c5a9f4cca83e4372587c9f716ee34880045be1d91a8ecb8 -SIZE (KDE/release-service/22.04.2/okular-22.04.2.tar.xz) = 8205624 +TIMESTAMP = 1657013410 +SHA256 (KDE/release-service/22.04.3/okular-22.04.3.tar.xz) = 7c563572e31da5c1ae23b0333c31980ca115bd859d0e181e09dd3f09f3e3570e +SIZE (KDE/release-service/22.04.3/okular-22.04.3.tar.xz) = 8219616 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 6b68faeb3b07..607348798f42 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1169 +1,1171 @@ bin/okular include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.10 lib/libOkular5Core.so.10.0.0 %%QT_PLUGINDIR%%/kf5/kio/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/16x16/apps/okular.png share/icons/hicolor/22x22/apps/okular.png share/icons/hicolor/32x32/apps/okular.png share/icons/hicolor/48x48/apps/okular.png share/icons/hicolor/64x64/apps/okular.png share/icons/hicolor/128x128/apps/okular.png share/kconf_update/okular.upd share/kservices5/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_markdown.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_tiff.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ar/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ast/LC_MESSAGES/okular_chm.mo share/locale/ast/LC_MESSAGES/okular_fax.mo share/locale/ast/LC_MESSAGES/okular_plucker.mo share/locale/ast/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/okular.mo share/locale/az/LC_MESSAGES/okular_chm.mo share/locale/az/LC_MESSAGES/okular_comicbook.mo share/locale/az/LC_MESSAGES/okular_djvu.mo share/locale/az/LC_MESSAGES/okular_dvi.mo share/locale/az/LC_MESSAGES/okular_epub.mo share/locale/az/LC_MESSAGES/okular_fax.mo share/locale/az/LC_MESSAGES/okular_fictionbook.mo share/locale/az/LC_MESSAGES/okular_ghostview.mo share/locale/az/LC_MESSAGES/okular_kimgio.mo share/locale/az/LC_MESSAGES/okular_markdown.mo share/locale/az/LC_MESSAGES/okular_mobi.mo share/locale/az/LC_MESSAGES/okular_plucker.mo share/locale/az/LC_MESSAGES/okular_poppler.mo share/locale/az/LC_MESSAGES/okular_tiff.mo share/locale/az/LC_MESSAGES/okular_txt.mo share/locale/az/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/be/LC_MESSAGES/okular.mo share/locale/be/LC_MESSAGES/okular_chm.mo share/locale/be/LC_MESSAGES/okular_djvu.mo share/locale/be/LC_MESSAGES/okular_dvi.mo share/locale/be/LC_MESSAGES/okular_fictionbook.mo share/locale/be/LC_MESSAGES/okular_ghostview.mo share/locale/be/LC_MESSAGES/okular_kimgio.mo share/locale/be/LC_MESSAGES/okular_plucker.mo share/locale/be/LC_MESSAGES/okular_poppler.mo share/locale/be/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_chm.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo +share/locale/bg/LC_MESSAGES/okular_markdown.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo +share/locale/bg/LC_MESSAGES/okular_tiff.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/bs/LC_MESSAGES/okular.mo share/locale/bs/LC_MESSAGES/okular_chm.mo share/locale/bs/LC_MESSAGES/okular_comicbook.mo share/locale/bs/LC_MESSAGES/okular_djvu.mo share/locale/bs/LC_MESSAGES/okular_dvi.mo share/locale/bs/LC_MESSAGES/okular_epub.mo share/locale/bs/LC_MESSAGES/okular_fax.mo share/locale/bs/LC_MESSAGES/okular_fictionbook.mo share/locale/bs/LC_MESSAGES/okular_ghostview.mo share/locale/bs/LC_MESSAGES/okular_kimgio.mo share/locale/bs/LC_MESSAGES/okular_mobi.mo share/locale/bs/LC_MESSAGES/okular_plucker.mo share/locale/bs/LC_MESSAGES/okular_poppler.mo share/locale/bs/LC_MESSAGES/okular_txt.mo share/locale/bs/LC_MESSAGES/okular_xps.mo share/locale/bs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca/LC_MESSAGES/okular.mo share/locale/ca/LC_MESSAGES/okular_chm.mo share/locale/ca/LC_MESSAGES/okular_comicbook.mo share/locale/ca/LC_MESSAGES/okular_djvu.mo share/locale/ca/LC_MESSAGES/okular_dvi.mo share/locale/ca/LC_MESSAGES/okular_epub.mo share/locale/ca/LC_MESSAGES/okular_fax.mo share/locale/ca/LC_MESSAGES/okular_fictionbook.mo share/locale/ca/LC_MESSAGES/okular_ghostview.mo share/locale/ca/LC_MESSAGES/okular_kimgio.mo share/locale/ca/LC_MESSAGES/okular_markdown.mo share/locale/ca/LC_MESSAGES/okular_mobi.mo share/locale/ca/LC_MESSAGES/okular_plucker.mo share/locale/ca/LC_MESSAGES/okular_poppler.mo share/locale/ca/LC_MESSAGES/okular_tiff.mo share/locale/ca/LC_MESSAGES/okular_txt.mo share/locale/ca/LC_MESSAGES/okular_xps.mo share/locale/ca/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ca@valencia/LC_MESSAGES/okular.mo share/locale/ca@valencia/LC_MESSAGES/okular_chm.mo share/locale/ca@valencia/LC_MESSAGES/okular_comicbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_djvu.mo share/locale/ca@valencia/LC_MESSAGES/okular_dvi.mo share/locale/ca@valencia/LC_MESSAGES/okular_epub.mo share/locale/ca@valencia/LC_MESSAGES/okular_fax.mo share/locale/ca@valencia/LC_MESSAGES/okular_fictionbook.mo share/locale/ca@valencia/LC_MESSAGES/okular_ghostview.mo share/locale/ca@valencia/LC_MESSAGES/okular_kimgio.mo share/locale/ca@valencia/LC_MESSAGES/okular_markdown.mo share/locale/ca@valencia/LC_MESSAGES/okular_mobi.mo share/locale/ca@valencia/LC_MESSAGES/okular_plucker.mo share/locale/ca@valencia/LC_MESSAGES/okular_poppler.mo share/locale/ca@valencia/LC_MESSAGES/okular_tiff.mo share/locale/ca@valencia/LC_MESSAGES/okular_txt.mo share/locale/ca@valencia/LC_MESSAGES/okular_xps.mo share/locale/ca@valencia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/cs/LC_MESSAGES/okular.mo share/locale/cs/LC_MESSAGES/okular_chm.mo share/locale/cs/LC_MESSAGES/okular_comicbook.mo share/locale/cs/LC_MESSAGES/okular_djvu.mo share/locale/cs/LC_MESSAGES/okular_dvi.mo share/locale/cs/LC_MESSAGES/okular_epub.mo share/locale/cs/LC_MESSAGES/okular_fax.mo share/locale/cs/LC_MESSAGES/okular_fictionbook.mo share/locale/cs/LC_MESSAGES/okular_ghostview.mo share/locale/cs/LC_MESSAGES/okular_kimgio.mo share/locale/cs/LC_MESSAGES/okular_markdown.mo share/locale/cs/LC_MESSAGES/okular_mobi.mo share/locale/cs/LC_MESSAGES/okular_plucker.mo share/locale/cs/LC_MESSAGES/okular_poppler.mo share/locale/cs/LC_MESSAGES/okular_tiff.mo share/locale/cs/LC_MESSAGES/okular_txt.mo share/locale/cs/LC_MESSAGES/okular_xps.mo share/locale/cs/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/da/LC_MESSAGES/okular.mo share/locale/da/LC_MESSAGES/okular_chm.mo share/locale/da/LC_MESSAGES/okular_comicbook.mo share/locale/da/LC_MESSAGES/okular_djvu.mo share/locale/da/LC_MESSAGES/okular_dvi.mo share/locale/da/LC_MESSAGES/okular_epub.mo share/locale/da/LC_MESSAGES/okular_fax.mo share/locale/da/LC_MESSAGES/okular_fictionbook.mo share/locale/da/LC_MESSAGES/okular_ghostview.mo share/locale/da/LC_MESSAGES/okular_kimgio.mo share/locale/da/LC_MESSAGES/okular_markdown.mo share/locale/da/LC_MESSAGES/okular_mobi.mo share/locale/da/LC_MESSAGES/okular_plucker.mo share/locale/da/LC_MESSAGES/okular_poppler.mo share/locale/da/LC_MESSAGES/okular_txt.mo share/locale/da/LC_MESSAGES/okular_xps.mo share/locale/da/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/de/LC_MESSAGES/okular.mo share/locale/de/LC_MESSAGES/okular_chm.mo share/locale/de/LC_MESSAGES/okular_comicbook.mo share/locale/de/LC_MESSAGES/okular_djvu.mo share/locale/de/LC_MESSAGES/okular_dvi.mo share/locale/de/LC_MESSAGES/okular_epub.mo share/locale/de/LC_MESSAGES/okular_fax.mo share/locale/de/LC_MESSAGES/okular_fictionbook.mo share/locale/de/LC_MESSAGES/okular_ghostview.mo share/locale/de/LC_MESSAGES/okular_kimgio.mo share/locale/de/LC_MESSAGES/okular_markdown.mo share/locale/de/LC_MESSAGES/okular_mobi.mo share/locale/de/LC_MESSAGES/okular_plucker.mo share/locale/de/LC_MESSAGES/okular_poppler.mo share/locale/de/LC_MESSAGES/okular_tiff.mo share/locale/de/LC_MESSAGES/okular_txt.mo share/locale/de/LC_MESSAGES/okular_xps.mo share/locale/de/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/el/LC_MESSAGES/okular.mo share/locale/el/LC_MESSAGES/okular_chm.mo share/locale/el/LC_MESSAGES/okular_comicbook.mo share/locale/el/LC_MESSAGES/okular_djvu.mo share/locale/el/LC_MESSAGES/okular_dvi.mo share/locale/el/LC_MESSAGES/okular_epub.mo share/locale/el/LC_MESSAGES/okular_fax.mo share/locale/el/LC_MESSAGES/okular_fictionbook.mo share/locale/el/LC_MESSAGES/okular_ghostview.mo share/locale/el/LC_MESSAGES/okular_kimgio.mo share/locale/el/LC_MESSAGES/okular_markdown.mo share/locale/el/LC_MESSAGES/okular_mobi.mo share/locale/el/LC_MESSAGES/okular_plucker.mo share/locale/el/LC_MESSAGES/okular_poppler.mo share/locale/el/LC_MESSAGES/okular_tiff.mo share/locale/el/LC_MESSAGES/okular_txt.mo share/locale/el/LC_MESSAGES/okular_xps.mo share/locale/el/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/en_GB/LC_MESSAGES/okular.mo share/locale/en_GB/LC_MESSAGES/okular_chm.mo share/locale/en_GB/LC_MESSAGES/okular_comicbook.mo share/locale/en_GB/LC_MESSAGES/okular_djvu.mo share/locale/en_GB/LC_MESSAGES/okular_dvi.mo share/locale/en_GB/LC_MESSAGES/okular_epub.mo share/locale/en_GB/LC_MESSAGES/okular_fax.mo share/locale/en_GB/LC_MESSAGES/okular_fictionbook.mo share/locale/en_GB/LC_MESSAGES/okular_ghostview.mo share/locale/en_GB/LC_MESSAGES/okular_kimgio.mo share/locale/en_GB/LC_MESSAGES/okular_markdown.mo share/locale/en_GB/LC_MESSAGES/okular_mobi.mo share/locale/en_GB/LC_MESSAGES/okular_plucker.mo share/locale/en_GB/LC_MESSAGES/okular_poppler.mo share/locale/en_GB/LC_MESSAGES/okular_tiff.mo share/locale/en_GB/LC_MESSAGES/okular_txt.mo share/locale/en_GB/LC_MESSAGES/okular_xps.mo share/locale/en_GB/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eo/LC_MESSAGES/okular.mo share/locale/eo/LC_MESSAGES/okular_chm.mo share/locale/eo/LC_MESSAGES/okular_comicbook.mo share/locale/eo/LC_MESSAGES/okular_djvu.mo share/locale/eo/LC_MESSAGES/okular_dvi.mo share/locale/eo/LC_MESSAGES/okular_epub.mo share/locale/eo/LC_MESSAGES/okular_fax.mo share/locale/eo/LC_MESSAGES/okular_fictionbook.mo share/locale/eo/LC_MESSAGES/okular_ghostview.mo share/locale/eo/LC_MESSAGES/okular_kimgio.mo share/locale/eo/LC_MESSAGES/okular_mobi.mo share/locale/eo/LC_MESSAGES/okular_plucker.mo share/locale/eo/LC_MESSAGES/okular_poppler.mo share/locale/eo/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/okular.mo share/locale/es/LC_MESSAGES/okular_chm.mo share/locale/es/LC_MESSAGES/okular_comicbook.mo share/locale/es/LC_MESSAGES/okular_djvu.mo share/locale/es/LC_MESSAGES/okular_dvi.mo share/locale/es/LC_MESSAGES/okular_epub.mo share/locale/es/LC_MESSAGES/okular_fax.mo share/locale/es/LC_MESSAGES/okular_fictionbook.mo share/locale/es/LC_MESSAGES/okular_ghostview.mo share/locale/es/LC_MESSAGES/okular_kimgio.mo share/locale/es/LC_MESSAGES/okular_markdown.mo share/locale/es/LC_MESSAGES/okular_mobi.mo share/locale/es/LC_MESSAGES/okular_plucker.mo share/locale/es/LC_MESSAGES/okular_poppler.mo share/locale/es/LC_MESSAGES/okular_tiff.mo share/locale/es/LC_MESSAGES/okular_txt.mo share/locale/es/LC_MESSAGES/okular_xps.mo share/locale/es/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/et/LC_MESSAGES/okular.mo share/locale/et/LC_MESSAGES/okular_chm.mo share/locale/et/LC_MESSAGES/okular_comicbook.mo share/locale/et/LC_MESSAGES/okular_djvu.mo share/locale/et/LC_MESSAGES/okular_dvi.mo share/locale/et/LC_MESSAGES/okular_epub.mo share/locale/et/LC_MESSAGES/okular_fax.mo share/locale/et/LC_MESSAGES/okular_fictionbook.mo share/locale/et/LC_MESSAGES/okular_ghostview.mo share/locale/et/LC_MESSAGES/okular_kimgio.mo share/locale/et/LC_MESSAGES/okular_markdown.mo share/locale/et/LC_MESSAGES/okular_mobi.mo share/locale/et/LC_MESSAGES/okular_plucker.mo share/locale/et/LC_MESSAGES/okular_poppler.mo share/locale/et/LC_MESSAGES/okular_txt.mo share/locale/et/LC_MESSAGES/okular_xps.mo share/locale/et/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/eu/LC_MESSAGES/okular.mo share/locale/eu/LC_MESSAGES/okular_chm.mo share/locale/eu/LC_MESSAGES/okular_comicbook.mo share/locale/eu/LC_MESSAGES/okular_djvu.mo share/locale/eu/LC_MESSAGES/okular_dvi.mo share/locale/eu/LC_MESSAGES/okular_epub.mo share/locale/eu/LC_MESSAGES/okular_fax.mo share/locale/eu/LC_MESSAGES/okular_fictionbook.mo share/locale/eu/LC_MESSAGES/okular_ghostview.mo share/locale/eu/LC_MESSAGES/okular_kimgio.mo share/locale/eu/LC_MESSAGES/okular_markdown.mo share/locale/eu/LC_MESSAGES/okular_mobi.mo share/locale/eu/LC_MESSAGES/okular_plucker.mo share/locale/eu/LC_MESSAGES/okular_poppler.mo share/locale/eu/LC_MESSAGES/okular_tiff.mo share/locale/eu/LC_MESSAGES/okular_txt.mo share/locale/eu/LC_MESSAGES/okular_xps.mo share/locale/eu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fa/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular.mo share/locale/fi/LC_MESSAGES/okular_chm.mo share/locale/fi/LC_MESSAGES/okular_comicbook.mo share/locale/fi/LC_MESSAGES/okular_djvu.mo share/locale/fi/LC_MESSAGES/okular_dvi.mo share/locale/fi/LC_MESSAGES/okular_epub.mo share/locale/fi/LC_MESSAGES/okular_fax.mo share/locale/fi/LC_MESSAGES/okular_fictionbook.mo share/locale/fi/LC_MESSAGES/okular_ghostview.mo share/locale/fi/LC_MESSAGES/okular_kimgio.mo share/locale/fi/LC_MESSAGES/okular_markdown.mo share/locale/fi/LC_MESSAGES/okular_mobi.mo share/locale/fi/LC_MESSAGES/okular_plucker.mo share/locale/fi/LC_MESSAGES/okular_poppler.mo share/locale/fi/LC_MESSAGES/okular_tiff.mo share/locale/fi/LC_MESSAGES/okular_txt.mo share/locale/fi/LC_MESSAGES/okular_xps.mo share/locale/fi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/fr/LC_MESSAGES/okular.mo share/locale/fr/LC_MESSAGES/okular_chm.mo share/locale/fr/LC_MESSAGES/okular_comicbook.mo share/locale/fr/LC_MESSAGES/okular_djvu.mo share/locale/fr/LC_MESSAGES/okular_dvi.mo share/locale/fr/LC_MESSAGES/okular_epub.mo share/locale/fr/LC_MESSAGES/okular_fax.mo share/locale/fr/LC_MESSAGES/okular_fictionbook.mo share/locale/fr/LC_MESSAGES/okular_ghostview.mo share/locale/fr/LC_MESSAGES/okular_kimgio.mo share/locale/fr/LC_MESSAGES/okular_markdown.mo share/locale/fr/LC_MESSAGES/okular_mobi.mo share/locale/fr/LC_MESSAGES/okular_plucker.mo share/locale/fr/LC_MESSAGES/okular_poppler.mo share/locale/fr/LC_MESSAGES/okular_tiff.mo share/locale/fr/LC_MESSAGES/okular_txt.mo share/locale/fr/LC_MESSAGES/okular_xps.mo share/locale/fr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo share/locale/hi/LC_MESSAGES/okular_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_epub.mo share/locale/hi/LC_MESSAGES/okular_fax.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_markdown.mo share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_tiff.mo share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/hr/LC_MESSAGES/okular.mo share/locale/hr/LC_MESSAGES/okular_chm.mo share/locale/hr/LC_MESSAGES/okular_comicbook.mo share/locale/hr/LC_MESSAGES/okular_djvu.mo share/locale/hr/LC_MESSAGES/okular_dvi.mo share/locale/hr/LC_MESSAGES/okular_epub.mo share/locale/hr/LC_MESSAGES/okular_fax.mo share/locale/hr/LC_MESSAGES/okular_fictionbook.mo share/locale/hr/LC_MESSAGES/okular_ghostview.mo share/locale/hr/LC_MESSAGES/okular_kimgio.mo share/locale/hr/LC_MESSAGES/okular_mobi.mo share/locale/hr/LC_MESSAGES/okular_plucker.mo share/locale/hr/LC_MESSAGES/okular_poppler.mo share/locale/hr/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/okular.mo share/locale/hu/LC_MESSAGES/okular_chm.mo share/locale/hu/LC_MESSAGES/okular_comicbook.mo share/locale/hu/LC_MESSAGES/okular_djvu.mo share/locale/hu/LC_MESSAGES/okular_dvi.mo share/locale/hu/LC_MESSAGES/okular_epub.mo share/locale/hu/LC_MESSAGES/okular_fax.mo share/locale/hu/LC_MESSAGES/okular_fictionbook.mo share/locale/hu/LC_MESSAGES/okular_ghostview.mo share/locale/hu/LC_MESSAGES/okular_kimgio.mo share/locale/hu/LC_MESSAGES/okular_markdown.mo share/locale/hu/LC_MESSAGES/okular_mobi.mo share/locale/hu/LC_MESSAGES/okular_plucker.mo share/locale/hu/LC_MESSAGES/okular_poppler.mo share/locale/hu/LC_MESSAGES/okular_tiff.mo share/locale/hu/LC_MESSAGES/okular_txt.mo share/locale/hu/LC_MESSAGES/okular_xps.mo share/locale/hu/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ia/LC_MESSAGES/okular.mo share/locale/ia/LC_MESSAGES/okular_chm.mo share/locale/ia/LC_MESSAGES/okular_comicbook.mo share/locale/ia/LC_MESSAGES/okular_djvu.mo share/locale/ia/LC_MESSAGES/okular_dvi.mo share/locale/ia/LC_MESSAGES/okular_epub.mo share/locale/ia/LC_MESSAGES/okular_fax.mo share/locale/ia/LC_MESSAGES/okular_fictionbook.mo share/locale/ia/LC_MESSAGES/okular_ghostview.mo share/locale/ia/LC_MESSAGES/okular_kimgio.mo share/locale/ia/LC_MESSAGES/okular_markdown.mo share/locale/ia/LC_MESSAGES/okular_mobi.mo share/locale/ia/LC_MESSAGES/okular_plucker.mo share/locale/ia/LC_MESSAGES/okular_poppler.mo share/locale/ia/LC_MESSAGES/okular_tiff.mo share/locale/ia/LC_MESSAGES/okular_txt.mo share/locale/ia/LC_MESSAGES/okular_xps.mo share/locale/ia/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/id/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular.mo share/locale/is/LC_MESSAGES/okular_chm.mo share/locale/is/LC_MESSAGES/okular_comicbook.mo share/locale/is/LC_MESSAGES/okular_djvu.mo share/locale/is/LC_MESSAGES/okular_dvi.mo share/locale/is/LC_MESSAGES/okular_epub.mo share/locale/is/LC_MESSAGES/okular_fax.mo share/locale/is/LC_MESSAGES/okular_fictionbook.mo share/locale/is/LC_MESSAGES/okular_ghostview.mo share/locale/is/LC_MESSAGES/okular_kimgio.mo share/locale/is/LC_MESSAGES/okular_mobi.mo share/locale/is/LC_MESSAGES/okular_plucker.mo share/locale/is/LC_MESSAGES/okular_poppler.mo share/locale/is/LC_MESSAGES/okular_xps.mo share/locale/is/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/it/LC_MESSAGES/okular.mo share/locale/it/LC_MESSAGES/okular_chm.mo share/locale/it/LC_MESSAGES/okular_comicbook.mo share/locale/it/LC_MESSAGES/okular_djvu.mo share/locale/it/LC_MESSAGES/okular_dvi.mo share/locale/it/LC_MESSAGES/okular_epub.mo share/locale/it/LC_MESSAGES/okular_fax.mo share/locale/it/LC_MESSAGES/okular_fictionbook.mo share/locale/it/LC_MESSAGES/okular_ghostview.mo share/locale/it/LC_MESSAGES/okular_kimgio.mo share/locale/it/LC_MESSAGES/okular_markdown.mo share/locale/it/LC_MESSAGES/okular_mobi.mo share/locale/it/LC_MESSAGES/okular_plucker.mo share/locale/it/LC_MESSAGES/okular_poppler.mo share/locale/it/LC_MESSAGES/okular_tiff.mo share/locale/it/LC_MESSAGES/okular_txt.mo share/locale/it/LC_MESSAGES/okular_xps.mo share/locale/it/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ja/LC_MESSAGES/okular.mo share/locale/ja/LC_MESSAGES/okular_chm.mo share/locale/ja/LC_MESSAGES/okular_comicbook.mo share/locale/ja/LC_MESSAGES/okular_djvu.mo share/locale/ja/LC_MESSAGES/okular_dvi.mo share/locale/ja/LC_MESSAGES/okular_epub.mo share/locale/ja/LC_MESSAGES/okular_fax.mo share/locale/ja/LC_MESSAGES/okular_fictionbook.mo share/locale/ja/LC_MESSAGES/okular_ghostview.mo share/locale/ja/LC_MESSAGES/okular_kimgio.mo share/locale/ja/LC_MESSAGES/okular_markdown.mo share/locale/ja/LC_MESSAGES/okular_mobi.mo share/locale/ja/LC_MESSAGES/okular_plucker.mo share/locale/ja/LC_MESSAGES/okular_poppler.mo share/locale/ja/LC_MESSAGES/okular_tiff.mo share/locale/ja/LC_MESSAGES/okular_txt.mo share/locale/ja/LC_MESSAGES/okular_xps.mo share/locale/ja/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/kk/LC_MESSAGES/okular.mo share/locale/kk/LC_MESSAGES/okular_chm.mo share/locale/kk/LC_MESSAGES/okular_comicbook.mo share/locale/kk/LC_MESSAGES/okular_djvu.mo share/locale/kk/LC_MESSAGES/okular_dvi.mo share/locale/kk/LC_MESSAGES/okular_epub.mo share/locale/kk/LC_MESSAGES/okular_fax.mo share/locale/kk/LC_MESSAGES/okular_fictionbook.mo share/locale/kk/LC_MESSAGES/okular_ghostview.mo share/locale/kk/LC_MESSAGES/okular_kimgio.mo share/locale/kk/LC_MESSAGES/okular_mobi.mo share/locale/kk/LC_MESSAGES/okular_plucker.mo share/locale/kk/LC_MESSAGES/okular_poppler.mo share/locale/kk/LC_MESSAGES/okular_txt.mo share/locale/kk/LC_MESSAGES/okular_xps.mo share/locale/kk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/km/LC_MESSAGES/okular.mo share/locale/km/LC_MESSAGES/okular_chm.mo share/locale/km/LC_MESSAGES/okular_comicbook.mo share/locale/km/LC_MESSAGES/okular_djvu.mo share/locale/km/LC_MESSAGES/okular_dvi.mo share/locale/km/LC_MESSAGES/okular_epub.mo share/locale/km/LC_MESSAGES/okular_fax.mo share/locale/km/LC_MESSAGES/okular_fictionbook.mo share/locale/km/LC_MESSAGES/okular_ghostview.mo share/locale/km/LC_MESSAGES/okular_kimgio.mo share/locale/km/LC_MESSAGES/okular_mobi.mo share/locale/km/LC_MESSAGES/okular_plucker.mo share/locale/km/LC_MESSAGES/okular_poppler.mo share/locale/km/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/okular.mo share/locale/ko/LC_MESSAGES/okular_chm.mo share/locale/ko/LC_MESSAGES/okular_comicbook.mo share/locale/ko/LC_MESSAGES/okular_djvu.mo share/locale/ko/LC_MESSAGES/okular_dvi.mo share/locale/ko/LC_MESSAGES/okular_epub.mo share/locale/ko/LC_MESSAGES/okular_fax.mo share/locale/ko/LC_MESSAGES/okular_fictionbook.mo share/locale/ko/LC_MESSAGES/okular_ghostview.mo share/locale/ko/LC_MESSAGES/okular_kimgio.mo share/locale/ko/LC_MESSAGES/okular_markdown.mo share/locale/ko/LC_MESSAGES/okular_mobi.mo share/locale/ko/LC_MESSAGES/okular_plucker.mo share/locale/ko/LC_MESSAGES/okular_poppler.mo share/locale/ko/LC_MESSAGES/okular_tiff.mo share/locale/ko/LC_MESSAGES/okular_txt.mo share/locale/ko/LC_MESSAGES/okular_xps.mo share/locale/ko/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lt/LC_MESSAGES/okular.mo share/locale/lt/LC_MESSAGES/okular_chm.mo share/locale/lt/LC_MESSAGES/okular_comicbook.mo share/locale/lt/LC_MESSAGES/okular_djvu.mo share/locale/lt/LC_MESSAGES/okular_dvi.mo share/locale/lt/LC_MESSAGES/okular_epub.mo share/locale/lt/LC_MESSAGES/okular_fax.mo share/locale/lt/LC_MESSAGES/okular_fictionbook.mo share/locale/lt/LC_MESSAGES/okular_ghostview.mo share/locale/lt/LC_MESSAGES/okular_kimgio.mo share/locale/lt/LC_MESSAGES/okular_markdown.mo share/locale/lt/LC_MESSAGES/okular_mobi.mo share/locale/lt/LC_MESSAGES/okular_plucker.mo share/locale/lt/LC_MESSAGES/okular_poppler.mo share/locale/lt/LC_MESSAGES/okular_tiff.mo share/locale/lt/LC_MESSAGES/okular_txt.mo share/locale/lt/LC_MESSAGES/okular_xps.mo share/locale/lt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/lv/LC_MESSAGES/okular.mo share/locale/lv/LC_MESSAGES/okular_chm.mo share/locale/lv/LC_MESSAGES/okular_comicbook.mo share/locale/lv/LC_MESSAGES/okular_djvu.mo share/locale/lv/LC_MESSAGES/okular_dvi.mo share/locale/lv/LC_MESSAGES/okular_epub.mo share/locale/lv/LC_MESSAGES/okular_fax.mo share/locale/lv/LC_MESSAGES/okular_fictionbook.mo share/locale/lv/LC_MESSAGES/okular_ghostview.mo share/locale/lv/LC_MESSAGES/okular_kimgio.mo share/locale/lv/LC_MESSAGES/okular_mobi.mo share/locale/lv/LC_MESSAGES/okular_plucker.mo share/locale/lv/LC_MESSAGES/okular_poppler.mo share/locale/lv/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/okular.mo share/locale/ml/LC_MESSAGES/okular_chm.mo share/locale/ml/LC_MESSAGES/okular_comicbook.mo share/locale/ml/LC_MESSAGES/okular_djvu.mo share/locale/ml/LC_MESSAGES/okular_dvi.mo share/locale/ml/LC_MESSAGES/okular_epub.mo share/locale/ml/LC_MESSAGES/okular_fax.mo share/locale/ml/LC_MESSAGES/okular_fictionbook.mo share/locale/ml/LC_MESSAGES/okular_ghostview.mo share/locale/ml/LC_MESSAGES/okular_kimgio.mo share/locale/ml/LC_MESSAGES/okular_markdown.mo share/locale/ml/LC_MESSAGES/okular_mobi.mo share/locale/ml/LC_MESSAGES/okular_plucker.mo share/locale/ml/LC_MESSAGES/okular_poppler.mo share/locale/ml/LC_MESSAGES/okular_txt.mo share/locale/ml/LC_MESSAGES/okular_xps.mo share/locale/ml/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/mr/LC_MESSAGES/okular.mo share/locale/mr/LC_MESSAGES/okular_chm.mo share/locale/mr/LC_MESSAGES/okular_comicbook.mo share/locale/mr/LC_MESSAGES/okular_djvu.mo share/locale/mr/LC_MESSAGES/okular_dvi.mo share/locale/mr/LC_MESSAGES/okular_epub.mo share/locale/mr/LC_MESSAGES/okular_fax.mo share/locale/mr/LC_MESSAGES/okular_fictionbook.mo share/locale/mr/LC_MESSAGES/okular_ghostview.mo share/locale/mr/LC_MESSAGES/okular_kimgio.mo share/locale/mr/LC_MESSAGES/okular_mobi.mo share/locale/mr/LC_MESSAGES/okular_plucker.mo share/locale/mr/LC_MESSAGES/okular_poppler.mo share/locale/mr/LC_MESSAGES/okular_xps.mo share/locale/mr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nb/LC_MESSAGES/okular.mo share/locale/nb/LC_MESSAGES/okular_chm.mo share/locale/nb/LC_MESSAGES/okular_comicbook.mo share/locale/nb/LC_MESSAGES/okular_djvu.mo share/locale/nb/LC_MESSAGES/okular_dvi.mo share/locale/nb/LC_MESSAGES/okular_epub.mo share/locale/nb/LC_MESSAGES/okular_fax.mo share/locale/nb/LC_MESSAGES/okular_fictionbook.mo share/locale/nb/LC_MESSAGES/okular_ghostview.mo share/locale/nb/LC_MESSAGES/okular_kimgio.mo share/locale/nb/LC_MESSAGES/okular_mobi.mo share/locale/nb/LC_MESSAGES/okular_plucker.mo share/locale/nb/LC_MESSAGES/okular_poppler.mo share/locale/nb/LC_MESSAGES/okular_txt.mo share/locale/nb/LC_MESSAGES/okular_xps.mo share/locale/nb/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nds/LC_MESSAGES/okular.mo share/locale/nds/LC_MESSAGES/okular_chm.mo share/locale/nds/LC_MESSAGES/okular_comicbook.mo share/locale/nds/LC_MESSAGES/okular_djvu.mo share/locale/nds/LC_MESSAGES/okular_dvi.mo share/locale/nds/LC_MESSAGES/okular_epub.mo share/locale/nds/LC_MESSAGES/okular_fax.mo share/locale/nds/LC_MESSAGES/okular_fictionbook.mo share/locale/nds/LC_MESSAGES/okular_ghostview.mo share/locale/nds/LC_MESSAGES/okular_kimgio.mo share/locale/nds/LC_MESSAGES/okular_mobi.mo share/locale/nds/LC_MESSAGES/okular_plucker.mo share/locale/nds/LC_MESSAGES/okular_poppler.mo share/locale/nds/LC_MESSAGES/okular_txt.mo share/locale/nds/LC_MESSAGES/okular_xps.mo share/locale/nds/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nl/LC_MESSAGES/okular.mo share/locale/nl/LC_MESSAGES/okular_chm.mo share/locale/nl/LC_MESSAGES/okular_comicbook.mo share/locale/nl/LC_MESSAGES/okular_djvu.mo share/locale/nl/LC_MESSAGES/okular_dvi.mo share/locale/nl/LC_MESSAGES/okular_epub.mo share/locale/nl/LC_MESSAGES/okular_fax.mo share/locale/nl/LC_MESSAGES/okular_fictionbook.mo share/locale/nl/LC_MESSAGES/okular_ghostview.mo share/locale/nl/LC_MESSAGES/okular_kimgio.mo share/locale/nl/LC_MESSAGES/okular_markdown.mo share/locale/nl/LC_MESSAGES/okular_mobi.mo share/locale/nl/LC_MESSAGES/okular_plucker.mo share/locale/nl/LC_MESSAGES/okular_poppler.mo share/locale/nl/LC_MESSAGES/okular_tiff.mo share/locale/nl/LC_MESSAGES/okular_txt.mo share/locale/nl/LC_MESSAGES/okular_xps.mo share/locale/nl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/nn/LC_MESSAGES/okular.mo share/locale/nn/LC_MESSAGES/okular_chm.mo share/locale/nn/LC_MESSAGES/okular_comicbook.mo share/locale/nn/LC_MESSAGES/okular_djvu.mo share/locale/nn/LC_MESSAGES/okular_dvi.mo share/locale/nn/LC_MESSAGES/okular_epub.mo share/locale/nn/LC_MESSAGES/okular_fax.mo share/locale/nn/LC_MESSAGES/okular_fictionbook.mo share/locale/nn/LC_MESSAGES/okular_ghostview.mo share/locale/nn/LC_MESSAGES/okular_kimgio.mo share/locale/nn/LC_MESSAGES/okular_markdown.mo share/locale/nn/LC_MESSAGES/okular_mobi.mo share/locale/nn/LC_MESSAGES/okular_plucker.mo share/locale/nn/LC_MESSAGES/okular_poppler.mo share/locale/nn/LC_MESSAGES/okular_tiff.mo share/locale/nn/LC_MESSAGES/okular_txt.mo share/locale/nn/LC_MESSAGES/okular_xps.mo share/locale/nn/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_markdown.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_chm.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_plucker.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/okular.mo share/locale/sk/LC_MESSAGES/okular_chm.mo share/locale/sk/LC_MESSAGES/okular_comicbook.mo share/locale/sk/LC_MESSAGES/okular_djvu.mo share/locale/sk/LC_MESSAGES/okular_dvi.mo share/locale/sk/LC_MESSAGES/okular_epub.mo share/locale/sk/LC_MESSAGES/okular_fax.mo share/locale/sk/LC_MESSAGES/okular_fictionbook.mo share/locale/sk/LC_MESSAGES/okular_ghostview.mo share/locale/sk/LC_MESSAGES/okular_kimgio.mo share/locale/sk/LC_MESSAGES/okular_markdown.mo share/locale/sk/LC_MESSAGES/okular_mobi.mo share/locale/sk/LC_MESSAGES/okular_plucker.mo share/locale/sk/LC_MESSAGES/okular_poppler.mo share/locale/sk/LC_MESSAGES/okular_tiff.mo share/locale/sk/LC_MESSAGES/okular_txt.mo share/locale/sk/LC_MESSAGES/okular_xps.mo share/locale/sk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sl/LC_MESSAGES/okular.mo share/locale/sl/LC_MESSAGES/okular_chm.mo share/locale/sl/LC_MESSAGES/okular_comicbook.mo share/locale/sl/LC_MESSAGES/okular_djvu.mo share/locale/sl/LC_MESSAGES/okular_dvi.mo share/locale/sl/LC_MESSAGES/okular_epub.mo share/locale/sl/LC_MESSAGES/okular_fax.mo share/locale/sl/LC_MESSAGES/okular_fictionbook.mo share/locale/sl/LC_MESSAGES/okular_ghostview.mo share/locale/sl/LC_MESSAGES/okular_kimgio.mo share/locale/sl/LC_MESSAGES/okular_markdown.mo share/locale/sl/LC_MESSAGES/okular_mobi.mo share/locale/sl/LC_MESSAGES/okular_plucker.mo share/locale/sl/LC_MESSAGES/okular_poppler.mo share/locale/sl/LC_MESSAGES/okular_tiff.mo share/locale/sl/LC_MESSAGES/okular_txt.mo share/locale/sl/LC_MESSAGES/okular_xps.mo share/locale/sl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/sq/LC_MESSAGES/okular_chm.mo share/locale/sq/LC_MESSAGES/okular_comicbook.mo share/locale/sq/LC_MESSAGES/okular_djvu.mo share/locale/sq/LC_MESSAGES/okular_dvi.mo share/locale/sq/LC_MESSAGES/okular_epub.mo share/locale/sq/LC_MESSAGES/okular_fax.mo share/locale/sq/LC_MESSAGES/okular_fictionbook.mo share/locale/sq/LC_MESSAGES/okular_ghostview.mo share/locale/sq/LC_MESSAGES/okular_kimgio.mo share/locale/sq/LC_MESSAGES/okular_mobi.mo share/locale/sq/LC_MESSAGES/okular_plucker.mo share/locale/sq/LC_MESSAGES/okular_poppler.mo share/locale/sq/LC_MESSAGES/okular_xps.mo share/locale/sr/LC_MESSAGES/okular.mo share/locale/sr/LC_MESSAGES/okular_chm.mo share/locale/sr/LC_MESSAGES/okular_comicbook.mo share/locale/sr/LC_MESSAGES/okular_djvu.mo share/locale/sr/LC_MESSAGES/okular_dvi.mo share/locale/sr/LC_MESSAGES/okular_epub.mo share/locale/sr/LC_MESSAGES/okular_fax.mo share/locale/sr/LC_MESSAGES/okular_fictionbook.mo share/locale/sr/LC_MESSAGES/okular_ghostview.mo share/locale/sr/LC_MESSAGES/okular_kimgio.mo share/locale/sr/LC_MESSAGES/okular_markdown.mo share/locale/sr/LC_MESSAGES/okular_mobi.mo share/locale/sr/LC_MESSAGES/okular_plucker.mo share/locale/sr/LC_MESSAGES/okular_poppler.mo share/locale/sr/LC_MESSAGES/okular_txt.mo share/locale/sr/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_djvu.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_fax.mo share/locale/ta/LC_MESSAGES/okular_fictionbook.mo share/locale/ta/LC_MESSAGES/okular_ghostview.mo share/locale/ta/LC_MESSAGES/okular_kimgio.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_plucker.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_txt.mo share/locale/ta/LC_MESSAGES/okular_xps.mo share/locale/ta/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tg/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_markdown.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_tiff.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/vi/LC_MESSAGES/okular.mo share/locale/vi/LC_MESSAGES/okular_chm.mo share/locale/vi/LC_MESSAGES/okular_comicbook.mo share/locale/vi/LC_MESSAGES/okular_djvu.mo share/locale/vi/LC_MESSAGES/okular_dvi.mo share/locale/vi/LC_MESSAGES/okular_epub.mo share/locale/vi/LC_MESSAGES/okular_fax.mo share/locale/vi/LC_MESSAGES/okular_fictionbook.mo share/locale/vi/LC_MESSAGES/okular_ghostview.mo share/locale/vi/LC_MESSAGES/okular_kimgio.mo share/locale/vi/LC_MESSAGES/okular_markdown.mo share/locale/vi/LC_MESSAGES/okular_mobi.mo share/locale/vi/LC_MESSAGES/okular_plucker.mo share/locale/vi/LC_MESSAGES/okular_poppler.mo share/locale/vi/LC_MESSAGES/okular_tiff.mo share/locale/vi/LC_MESSAGES/okular_txt.mo share/locale/vi/LC_MESSAGES/okular_xps.mo share/locale/vi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/okular.mo share/locale/zh_CN/LC_MESSAGES/okular_chm.mo share/locale/zh_CN/LC_MESSAGES/okular_comicbook.mo share/locale/zh_CN/LC_MESSAGES/okular_djvu.mo share/locale/zh_CN/LC_MESSAGES/okular_dvi.mo share/locale/zh_CN/LC_MESSAGES/okular_epub.mo share/locale/zh_CN/LC_MESSAGES/okular_fax.mo share/locale/zh_CN/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_CN/LC_MESSAGES/okular_ghostview.mo share/locale/zh_CN/LC_MESSAGES/okular_kimgio.mo share/locale/zh_CN/LC_MESSAGES/okular_markdown.mo share/locale/zh_CN/LC_MESSAGES/okular_mobi.mo share/locale/zh_CN/LC_MESSAGES/okular_plucker.mo share/locale/zh_CN/LC_MESSAGES/okular_poppler.mo share/locale/zh_CN/LC_MESSAGES/okular_tiff.mo share/locale/zh_CN/LC_MESSAGES/okular_txt.mo share/locale/zh_CN/LC_MESSAGES/okular_xps.mo share/locale/zh_CN/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/zh_TW/LC_MESSAGES/okular.mo share/locale/zh_TW/LC_MESSAGES/okular_chm.mo share/locale/zh_TW/LC_MESSAGES/okular_comicbook.mo share/locale/zh_TW/LC_MESSAGES/okular_djvu.mo share/locale/zh_TW/LC_MESSAGES/okular_dvi.mo share/locale/zh_TW/LC_MESSAGES/okular_epub.mo share/locale/zh_TW/LC_MESSAGES/okular_fax.mo share/locale/zh_TW/LC_MESSAGES/okular_fictionbook.mo share/locale/zh_TW/LC_MESSAGES/okular_ghostview.mo share/locale/zh_TW/LC_MESSAGES/okular_kimgio.mo share/locale/zh_TW/LC_MESSAGES/okular_markdown.mo share/locale/zh_TW/LC_MESSAGES/okular_mobi.mo share/locale/zh_TW/LC_MESSAGES/okular_plucker.mo share/locale/zh_TW/LC_MESSAGES/okular_poppler.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml share/qlogging-categories5/okular.categories diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index 712f32ea1a71..ecdf66d23686 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672081 -SHA256 (KDE/release-service/22.04.2/skanlite-22.04.2.tar.xz) = 2821939ec40da5dce9526408fcea6906446d60023e4329a8fd280f4054fc72cd -SIZE (KDE/release-service/22.04.2/skanlite-22.04.2.tar.xz) = 2441152 +TIMESTAMP = 1657013415 +SHA256 (KDE/release-service/22.04.3/skanlite-22.04.3.tar.xz) = 76fcbaf69797ca3d83dd6ef995fef1eaa5a57207e7cc2d368656ff7e019932ec +SIZE (KDE/release-service/22.04.3/skanlite-22.04.3.tar.xz) = 2441472 diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 7ee32a803b87..553184a833ea 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672070 -SHA256 (KDE/release-service/22.04.2/spectacle-22.04.2.tar.xz) = 1e84a1781cacfc96e7990accbe23a88ea5f8c3597cc283a05907a3273fabf73c -SIZE (KDE/release-service/22.04.2/spectacle-22.04.2.tar.xz) = 1261492 +TIMESTAMP = 1657013404 +SHA256 (KDE/release-service/22.04.3/spectacle-22.04.3.tar.xz) = 96bb7885bcc26ee6331e414263c93e51499ef1f4db9f701b334629581abb6b9d +SIZE (KDE/release-service/22.04.3/spectacle-22.04.3.tar.xz) = 1263584 diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index d19be2c70919..878a1ecb3bed 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671958 -SHA256 (KDE/release-service/22.04.2/konversation-22.04.2.tar.xz) = 39468c044feca8d4e2391ce41dbbceea54c199382b878f1a0163ee96b71743f2 -SIZE (KDE/release-service/22.04.2/konversation-22.04.2.tar.xz) = 4289524 +TIMESTAMP = 1657013292 +SHA256 (KDE/release-service/22.04.3/konversation-22.04.3.tar.xz) = e03ed3afd39f7d37b66b362255fc275289760552e00638e7b66b4163aadd6421 +SIZE (KDE/release-service/22.04.3/konversation-22.04.3.tar.xz) = 4286084 diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 41fa57fe20b7..6a368097fd84 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672021 -SHA256 (KDE/release-service/22.04.2/kiten-22.04.2.tar.xz) = e976107ceb76d0d86f13d3592232390e3d546a8486e8bf838b167d288e63f23e -SIZE (KDE/release-service/22.04.2/kiten-22.04.2.tar.xz) = 11318040 +TIMESTAMP = 1657013355 +SHA256 (KDE/release-service/22.04.3/kiten-22.04.3.tar.xz) = e310627ff20c573d33c49c5f97c849e9b298c821ef325e04de9be51dbe15ceab +SIZE (KDE/release-service/22.04.3/kiten-22.04.3.tar.xz) = 11316368 diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 5355d7e2b033..4765805b3865 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671976 -SHA256 (KDE/release-service/22.04.2/kross-interpreters-22.04.2.tar.xz) = 527c9a547d4600dd76306503972a6099b0aa81835421c0a40081754e1f7d73c7 -SIZE (KDE/release-service/22.04.2/kross-interpreters-22.04.2.tar.xz) = 151800 +TIMESTAMP = 1657013311 +SHA256 (KDE/release-service/22.04.3/kross-interpreters-22.04.3.tar.xz) = d5db24765812e506b0c3f621e8c46489763082d852aa96aea1d8ba82053186fb +SIZE (KDE/release-service/22.04.3/kross-interpreters-22.04.3.tar.xz) = 151764 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 891966da3c62..f61bef48dbec 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671976 -SHA256 (KDE/release-service/22.04.2/kturtle-22.04.2.tar.xz) = 5e72868adc604ceb9873291747f88c85a05e42cb34443d4831c2dfbee5e392d5 -SIZE (KDE/release-service/22.04.2/kturtle-22.04.2.tar.xz) = 1978300 +TIMESTAMP = 1657013310 +SHA256 (KDE/release-service/22.04.3/kturtle-22.04.3.tar.xz) = 1b1a611624c254113766fab326553a16b705f919877cd5d89356df1f3f124925 +SIZE (KDE/release-service/22.04.3/kturtle-22.04.3.tar.xz) = 1976376 diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 0d6c21a320de..b00174eabe10 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671949 -SHA256 (KDE/release-service/22.04.2/analitza-22.04.2.tar.xz) = d83cfe22c5e5111273cd8d3f2c3d03e7cf516d24935be8ef35551e026ef7ec69 -SIZE (KDE/release-service/22.04.2/analitza-22.04.2.tar.xz) = 349644 +TIMESTAMP = 1657013284 +SHA256 (KDE/release-service/22.04.3/analitza-22.04.3.tar.xz) = ac8b6c8e5609e6126740fe2c443642e18a2a05f90745fe239d903afe3b55a922 +SIZE (KDE/release-service/22.04.3/analitza-22.04.3.tar.xz) = 349664 diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 6eab10d0648c..2d568713fbe1 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671955 -SHA256 (KDE/release-service/22.04.2/cantor-22.04.2.tar.xz) = 56b398ead16f02f3ea700702e4c007ee78e2717dab09ee07d89cd02a67e41ec8 -SIZE (KDE/release-service/22.04.2/cantor-22.04.2.tar.xz) = 9197580 +TIMESTAMP = 1657013289 +SHA256 (KDE/release-service/22.04.3/cantor-22.04.3.tar.xz) = 0346dc2ffcc33e1a3ea7b4bec2ff50d57a388b54c867be803b7cf1149d01fd00 +SIZE (KDE/release-service/22.04.3/cantor-22.04.3.tar.xz) = 9196052 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index bf695a5434af..8b771b90ab58 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,180 +1,181 @@ bin/cantor bin/cantor_pythonserver %%R%%bin/cantor_rserver bin/cantor_scripteditor include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/latexresult.h include/cantor/mimeresult.h include/cantor/panelplugin.h include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cantor_pythonbackend.so lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% lib/libcantorlibs.so.28 %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_documentationpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/kf5/parts/cantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octave/graphic_packages.xml %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/python/graphic_packages.xml %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg share/config.kcfg/kalgebrabackend.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg.in share/config.kcfg/pythonbackend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/icons/hicolor/128x128/apps/cantor.png share/knsrcfiles/cantor-documentation.knsrc share/knsrcfiles/cantor.knsrc share/knsrcfiles/cantor_kalgebra.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_maxima.knsrc share/knsrcfiles/cantor_octave.knsrc share/knsrcfiles/cantor_python.knsrc share/knsrcfiles/cantor_qalculate.knsrc %%R%%share/knsrcfiles/cantor_r.knsrc share/knsrcfiles/cantor_sage.knsrc share/knsrcfiles/cantor_scilab.knsrc share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/ar/LC_MESSAGES/cantor.mo +share/locale/bg/LC_MESSAGES/cantor.mo share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml share/mime/packages/cantor.xml diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 91024887abd9..07cb11b25d36 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671953 -SHA256 (KDE/release-service/22.04.2/kalgebra-22.04.2.tar.xz) = 9b0ac5319bdbf3a9bdb02c936b92ccb490ee8de9cceb37bd113fa8c106cd5333 -SIZE (KDE/release-service/22.04.2/kalgebra-22.04.2.tar.xz) = 1032576 +TIMESTAMP = 1657013287 +SHA256 (KDE/release-service/22.04.3/kalgebra-22.04.3.tar.xz) = d0d1319e620a74f5d3bbaad65c5427ff033f521b574a1e0d285fd830e53c8d14 +SIZE (KDE/release-service/22.04.3/kalgebra-22.04.3.tar.xz) = 1031684 diff --git a/math/kalgebra/pkg-plist b/math/kalgebra/pkg-plist index 0c2612f44e67..5ab1175fa8e2 100644 --- a/math/kalgebra/pkg-plist +++ b/math/kalgebra/pkg-plist @@ -1,139 +1,140 @@ bin/calgebra %%WEBENGINE%%bin/kalgebra bin/kalgebramobile %%WEBENGINE%%share/applications/org.kde.kalgebra.desktop share/applications/org.kde.kalgebramobile.desktop share/icons/hicolor/64x64/apps/kalgebra.png share/icons/hicolor/scalable/apps/kalgebra.svgz %%WEBENGINE%%share/katepart5/syntax/kalgebra.xml %%WEBENGINE%%share/kservices5/graphsplasmoid.desktop share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/ar/LC_MESSAGES/kalgebramobile.mo share/locale/ar/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/be/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.mo +share/locale/bg/LC_MESSAGES/kalgebramobile.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/bs/LC_MESSAGES/kalgebra.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalgebramobile.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kalgebra.mo share/locale/ca@valencia/LC_MESSAGES/kalgebramobile.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalgebramobile.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/da/LC_MESSAGES/kalgebra.mo share/locale/da/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/de/LC_MESSAGES/kalgebra.mo share/locale/de/LC_MESSAGES/kalgebramobile.mo share/locale/de/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/el/LC_MESSAGES/kalgebra.mo share/locale/el/LC_MESSAGES/kalgebramobile.mo share/locale/el/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/en_GB/LC_MESSAGES/kalgebra.mo share/locale/en_GB/LC_MESSAGES/kalgebramobile.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eo/LC_MESSAGES/kalgebra.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/es/LC_MESSAGES/kalgebra.mo share/locale/es/LC_MESSAGES/kalgebramobile.mo share/locale/es/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/et/LC_MESSAGES/kalgebra.mo share/locale/et/LC_MESSAGES/kalgebramobile.mo share/locale/et/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/eu/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebra.mo share/locale/fi/LC_MESSAGES/kalgebramobile.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/fr/LC_MESSAGES/kalgebra.mo share/locale/fr/LC_MESSAGES/kalgebramobile.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ga/LC_MESSAGES/kalgebra.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/gl/LC_MESSAGES/kalgebra.mo share/locale/gl/LC_MESSAGES/kalgebramobile.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/hi/LC_MESSAGES/kalgebra.mo share/locale/hr/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/kalgebra.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/it/LC_MESSAGES/kalgebra.mo share/locale/it/LC_MESSAGES/kalgebramobile.mo share/locale/it/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ja/LC_MESSAGES/kalgebra.mo share/locale/ja/LC_MESSAGES/kalgebramobile.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/kk/LC_MESSAGES/kalgebra.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/km/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebra.mo share/locale/ko/LC_MESSAGES/kalgebramobile.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lt/LC_MESSAGES/kalgebra.mo share/locale/lt/LC_MESSAGES/kalgebramobile.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/lv/LC_MESSAGES/kalgebra.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ml/LC_MESSAGES/kalgebra.mo share/locale/ml/LC_MESSAGES/kalgebramobile.mo share/locale/ml/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/mr/LC_MESSAGES/kalgebra.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nb/LC_MESSAGES/kalgebra.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nds/LC_MESSAGES/kalgebra.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nl/LC_MESSAGES/kalgebra.mo share/locale/nl/LC_MESSAGES/kalgebramobile.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/nn/LC_MESSAGES/kalgebra.mo share/locale/nn/LC_MESSAGES/kalgebramobile.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pa/LC_MESSAGES/kalgebra.mo share/locale/pa/LC_MESSAGES/kalgebramobile.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pl/LC_MESSAGES/kalgebra.mo share/locale/pl/LC_MESSAGES/kalgebramobile.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt/LC_MESSAGES/kalgebra.mo share/locale/pt/LC_MESSAGES/kalgebramobile.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kalgebra.mo share/locale/pt_BR/LC_MESSAGES/kalgebramobile.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ro/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebra.mo share/locale/ru/LC_MESSAGES/kalgebramobile.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/se/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebra.mo share/locale/sk/LC_MESSAGES/kalgebramobile.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sl/LC_MESSAGES/kalgebra.mo share/locale/sl/LC_MESSAGES/kalgebramobile.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sq/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/sv/LC_MESSAGES/kalgebra.mo share/locale/sv/LC_MESSAGES/kalgebramobile.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/tg/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ug/LC_MESSAGES/kalgebra.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/uk/LC_MESSAGES/kalgebra.mo share/locale/uk/LC_MESSAGES/kalgebramobile.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kalgebra.mo share/locale/zh_CN/LC_MESSAGES/kalgebramobile.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kalgebra.mo share/locale/zh_TW/LC_MESSAGES/kalgebramobile.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo %%WEBENGINE%%share/metainfo/org.kde.kalgebra.appdata.xml share/metainfo/org.kde.kalgebramobile.appdata.xml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/config.ui %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/contents/ui/main.qml %%WEBENGINE%%share/plasma/plasmoids/org.kde.graphsplasmoid/metadata.desktop diff --git a/math/kbruch/distinfo b/math/kbruch/distinfo index c7030d42aacd..ebcc04965bdc 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671951 -SHA256 (KDE/release-service/22.04.2/kbruch-22.04.2.tar.xz) = f7c52e2cd4694752bbb24289a45ce20330879fb04a364437f9841af1dcfb1f9c -SIZE (KDE/release-service/22.04.2/kbruch-22.04.2.tar.xz) = 5634224 +TIMESTAMP = 1657013285 +SHA256 (KDE/release-service/22.04.3/kbruch-22.04.3.tar.xz) = a454dbcdfd71afd6794133e96c092cfc5e121e5264689fc3eeda6edbfd4f15e4 +SIZE (KDE/release-service/22.04.3/kbruch-22.04.3.tar.xz) = 5633496 diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 330a6ce2c817..b59e5c25ee33 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671948 -SHA256 (KDE/release-service/22.04.2/kcalc-22.04.2.tar.xz) = 8fc8e07016528d5308ecb30e555329122eb2181279983235842b6012b45587d7 -SIZE (KDE/release-service/22.04.2/kcalc-22.04.2.tar.xz) = 392896 +TIMESTAMP = 1657013283 +SHA256 (KDE/release-service/22.04.3/kcalc-22.04.3.tar.xz) = f992031df432e97b0624f1995c5d44431f74cd93d7da7cf2c6e2a7dc2b5f60dd +SIZE (KDE/release-service/22.04.3/kcalc-22.04.3.tar.xz) = 394688 diff --git a/math/kig/distinfo b/math/kig/distinfo index 4f358efe7e47..54005e12fb90 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671950 -SHA256 (KDE/release-service/22.04.2/kig-22.04.2.tar.xz) = cb309faceed3a4e63f930226c84ec117d3dbbf2b1f95899315770f39d1dd310a -SIZE (KDE/release-service/22.04.2/kig-22.04.2.tar.xz) = 3186232 +TIMESTAMP = 1657013284 +SHA256 (KDE/release-service/22.04.3/kig-22.04.3.tar.xz) = 618d31c19849f9ccdded9d69ac6c52a548ca4914e1765deb10f5994e8df50c29 +SIZE (KDE/release-service/22.04.3/kig-22.04.3.tar.xz) = 3184864 diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 3371f93eab32..0a903abc548b 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671952 -SHA256 (KDE/release-service/22.04.2/kmplot-22.04.2.tar.xz) = 6cdd48e54a765a77e2326a048137e0b00662cbcb9d8f2c06f02bda732b22ef49 -SIZE (KDE/release-service/22.04.2/kmplot-22.04.2.tar.xz) = 3044796 +TIMESTAMP = 1657013286 +SHA256 (KDE/release-service/22.04.3/kmplot-22.04.3.tar.xz) = b86531f6e8c24c405c5fbdeccced9b7fec65467c3ec43ac7651f8221a51c164d +SIZE (KDE/release-service/22.04.3/kmplot-22.04.3.tar.xz) = 3048548 diff --git a/math/rocs/distinfo b/math/rocs/distinfo index d846768301b7..13430c99c249 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671954 -SHA256 (KDE/release-service/22.04.2/rocs-22.04.2.tar.xz) = 6ac88c4f2003671c62e991cad5a3d6793c527ff0c4af3e7fddba37dd749c20f8 -SIZE (KDE/release-service/22.04.2/rocs-22.04.2.tar.xz) = 1555072 +TIMESTAMP = 1657013288 +SHA256 (KDE/release-service/22.04.3/rocs-22.04.3.tar.xz) = 837becf4ead9bd3e5ce079ded5209f7f0510c46c66fb6b8142f89d6b90457be7 +SIZE (KDE/release-service/22.04.3/rocs-22.04.3.tar.xz) = 1562444 diff --git a/math/rocs/pkg-plist b/math/rocs/pkg-plist index 80a2db599657..e0fca9c1e24b 100644 --- a/math/rocs/pkg-plist +++ b/math/rocs/pkg-plist @@ -1,138 +1,140 @@ bin/rocs include/rocs/edge.h include/rocs/graphdocument.h include/rocs/node.h lib/librocsgraphtheory.so lib/librocsgraphtheory.so.0 %%QT_PLUGINDIR%%/rocs/editorplugins/assignvaluesplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/generategraphplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/graphlayoutplugin.so %%QT_PLUGINDIR%%/rocs/editorplugins/transformedgesplugin.so %%QT_PLUGINDIR%%/rocs/fileformats/dotfileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/gmlfileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/rocs1fileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/rocs2fileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/tgffileformat.so %%QT_PLUGINDIR%%/rocs/fileformats/tikzfileformat.so share/applications/org.kde.rocs.desktop share/config.kcfg/rocs.kcfg share/icons/hicolor/16x16/apps/rocs.png share/icons/hicolor/22x22/apps/rocs.png share/icons/hicolor/32x32/apps/rocs.png share/icons/hicolor/48x48/apps/rocs.png share/icons/hicolor/64x64/apps/rocs.png share/icons/hicolor/128x128/apps/rocs.png share/icons/hicolor/scalable/actions/rocsadvancedsetup.svgz share/icons/hicolor/scalable/actions/rocsalignbottom.svgz share/icons/hicolor/scalable/actions/rocsaligncircle.svgz share/icons/hicolor/scalable/actions/rocsalignleft.svgz share/icons/hicolor/scalable/actions/rocsalignmiddle.svgz share/icons/hicolor/scalable/actions/rocsalignright.svgz share/icons/hicolor/scalable/actions/rocsaligntop.svgz share/icons/hicolor/scalable/actions/rocsaligntree.svgz share/icons/hicolor/scalable/actions/rocsalignvmiddle.svgz share/icons/hicolor/scalable/actions/rocsbidirectional.svgz share/icons/hicolor/scalable/actions/rocsdelete.svgz share/icons/hicolor/scalable/actions/rocsedge.svgz share/icons/hicolor/scalable/actions/rocsnode.svgz share/icons/hicolor/scalable/actions/rocsselect.svgz share/icons/hicolor/scalable/actions/rocsunidirectional.svgz share/icons/hicolor/scalable/actions/rocsvisible.svgz share/icons/hicolor/scalable/apps/rocs.svgz share/kxmlgui5/rocs/rocsui.rc share/locale/ar/LC_MESSAGES/libgraphtheory.mo share/locale/ar/LC_MESSAGES/rocs.mo +share/locale/bg/LC_MESSAGES/libgraphtheory.mo +share/locale/bg/LC_MESSAGES/rocs.mo share/locale/bs/LC_MESSAGES/libgraphtheory.mo share/locale/bs/LC_MESSAGES/rocs.mo share/locale/ca/LC_MESSAGES/libgraphtheory.mo share/locale/ca/LC_MESSAGES/rocs.mo share/locale/ca@valencia/LC_MESSAGES/libgraphtheory.mo share/locale/ca@valencia/LC_MESSAGES/rocs.mo share/locale/cs/LC_MESSAGES/libgraphtheory.mo share/locale/cs/LC_MESSAGES/rocs.mo share/locale/da/LC_MESSAGES/libgraphtheory.mo share/locale/da/LC_MESSAGES/rocs.mo share/locale/de/LC_MESSAGES/libgraphtheory.mo share/locale/de/LC_MESSAGES/rocs.mo share/locale/el/LC_MESSAGES/libgraphtheory.mo share/locale/el/LC_MESSAGES/rocs.mo share/locale/en_GB/LC_MESSAGES/libgraphtheory.mo share/locale/en_GB/LC_MESSAGES/rocs.mo share/locale/eo/LC_MESSAGES/libgraphtheory.mo share/locale/eo/LC_MESSAGES/rocs.mo share/locale/es/LC_MESSAGES/libgraphtheory.mo share/locale/es/LC_MESSAGES/rocs.mo share/locale/et/LC_MESSAGES/libgraphtheory.mo share/locale/et/LC_MESSAGES/rocs.mo share/locale/fi/LC_MESSAGES/libgraphtheory.mo share/locale/fi/LC_MESSAGES/rocs.mo share/locale/fr/LC_MESSAGES/libgraphtheory.mo share/locale/fr/LC_MESSAGES/rocs.mo share/locale/ga/LC_MESSAGES/libgraphtheory.mo share/locale/ga/LC_MESSAGES/rocs.mo share/locale/gl/LC_MESSAGES/libgraphtheory.mo share/locale/gl/LC_MESSAGES/rocs.mo share/locale/hr/LC_MESSAGES/libgraphtheory.mo share/locale/hr/LC_MESSAGES/rocs.mo share/locale/hu/LC_MESSAGES/libgraphtheory.mo share/locale/hu/LC_MESSAGES/rocs.mo share/locale/it/LC_MESSAGES/libgraphtheory.mo share/locale/it/LC_MESSAGES/rocs.mo share/locale/ja/LC_MESSAGES/libgraphtheory.mo share/locale/ja/LC_MESSAGES/rocs.mo share/locale/kk/LC_MESSAGES/libgraphtheory.mo share/locale/kk/LC_MESSAGES/rocs.mo share/locale/ko/LC_MESSAGES/libgraphtheory.mo share/locale/ko/LC_MESSAGES/rocs.mo share/locale/lt/LC_MESSAGES/libgraphtheory.mo share/locale/lt/LC_MESSAGES/rocs.mo share/locale/lv/LC_MESSAGES/libgraphtheory.mo share/locale/lv/LC_MESSAGES/rocs.mo share/locale/ml/LC_MESSAGES/libgraphtheory.mo share/locale/ml/LC_MESSAGES/rocs.mo share/locale/mr/LC_MESSAGES/libgraphtheory.mo share/locale/mr/LC_MESSAGES/rocs.mo share/locale/nb/LC_MESSAGES/libgraphtheory.mo share/locale/nb/LC_MESSAGES/rocs.mo share/locale/nds/LC_MESSAGES/libgraphtheory.mo share/locale/nds/LC_MESSAGES/rocs.mo share/locale/nl/LC_MESSAGES/libgraphtheory.mo share/locale/nl/LC_MESSAGES/rocs.mo share/locale/nn/LC_MESSAGES/libgraphtheory.mo share/locale/nn/LC_MESSAGES/rocs.mo share/locale/pa/LC_MESSAGES/libgraphtheory.mo share/locale/pa/LC_MESSAGES/rocs.mo share/locale/pl/LC_MESSAGES/libgraphtheory.mo share/locale/pl/LC_MESSAGES/rocs.mo share/locale/pt/LC_MESSAGES/libgraphtheory.mo share/locale/pt/LC_MESSAGES/rocs.mo share/locale/pt_BR/LC_MESSAGES/libgraphtheory.mo share/locale/pt_BR/LC_MESSAGES/rocs.mo share/locale/ro/LC_MESSAGES/libgraphtheory.mo share/locale/ro/LC_MESSAGES/rocs.mo share/locale/ru/LC_MESSAGES/libgraphtheory.mo share/locale/ru/LC_MESSAGES/rocs.mo share/locale/sk/LC_MESSAGES/libgraphtheory.mo share/locale/sk/LC_MESSAGES/rocs.mo share/locale/sl/LC_MESSAGES/libgraphtheory.mo share/locale/sl/LC_MESSAGES/rocs.mo share/locale/sv/LC_MESSAGES/libgraphtheory.mo share/locale/sv/LC_MESSAGES/rocs.mo share/locale/tr/LC_MESSAGES/libgraphtheory.mo share/locale/tr/LC_MESSAGES/rocs.mo share/locale/ug/LC_MESSAGES/libgraphtheory.mo share/locale/ug/LC_MESSAGES/rocs.mo share/locale/uk/LC_MESSAGES/libgraphtheory.mo share/locale/uk/LC_MESSAGES/rocs.mo share/locale/zh_CN/LC_MESSAGES/libgraphtheory.mo share/locale/zh_CN/LC_MESSAGES/rocs.mo share/locale/zh_TW/LC_MESSAGES/libgraphtheory.mo share/locale/zh_TW/LC_MESSAGES/rocs.mo share/metainfo/org.kde.rocs.appdata.xml %%DATADIR%%/kernelapi/console.xml %%DATADIR%%/kernelapi/document.xml %%DATADIR%%/kernelapi/edge.xml %%DATADIR%%/kernelapi/node.xml %%DATADIR%%/plugin/apidoc/objectApi.html %%DATADIR%%/plugin/apidoc/overview.html %%DATADIR%%/schemes/kernelapi.xsd diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 58d99743ddc4..1e2e5db704f1 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672117 -SHA256 (KDE/release-service/22.04.2/artikulate-22.04.2.tar.xz) = 5148b440d702c49c704e3d6257abf0e701675d8cc60da619e236c50ad6b8bb14 -SIZE (KDE/release-service/22.04.2/artikulate-22.04.2.tar.xz) = 1094468 +TIMESTAMP = 1657013451 +SHA256 (KDE/release-service/22.04.3/artikulate-22.04.3.tar.xz) = 23aba08d81ef6e6bffa20048bc5c4d7117fd00e21912440f2b4605b05b1f9a62 +SIZE (KDE/release-service/22.04.3/artikulate-22.04.3.tar.xz) = 1094472 diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index fa82a3cee1dc..022c4d2040f4 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672119 -SHA256 (KDE/release-service/22.04.2/kdeedu-data-22.04.2.tar.xz) = cd242299ad83bc52a4dc593f456a21a73de35dcd087fb0ef034409574839eada -SIZE (KDE/release-service/22.04.2/kdeedu-data-22.04.2.tar.xz) = 335920 +TIMESTAMP = 1657013453 +SHA256 (KDE/release-service/22.04.3/kdeedu-data-22.04.3.tar.xz) = 320463fe32177e49ffb4747f890d83b471f091477473439bfe0531b0ba5fb3e4 +SIZE (KDE/release-service/22.04.3/kdeedu-data-22.04.3.tar.xz) = 335968 diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index 73c598a6ee72..befb3acb7f61 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672118 -SHA256 (KDE/release-service/22.04.2/kgeography-22.04.2.tar.xz) = 2865db9b7c30e17a30ee5dc56f6372f12376b792554f0005dbaf8c4548174b3b -SIZE (KDE/release-service/22.04.2/kgeography-22.04.2.tar.xz) = 11086560 +TIMESTAMP = 1657013452 +SHA256 (KDE/release-service/22.04.3/kgeography-22.04.3.tar.xz) = 5a8c63d3f619962d739d24a7da27aa1b8a58da81ab150c5da02f04d8c9ef4409 +SIZE (KDE/release-service/22.04.3/kgeography-22.04.3.tar.xz) = 11082560 diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 1db14cf5c95a..34131df99e1e 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672117 -SHA256 (KDE/release-service/22.04.2/klettres-22.04.2.tar.xz) = 6411158aa869d6551fccfabd2a8a4dcf5523bce03c674aa4c7c1db5cdb68b7b0 -SIZE (KDE/release-service/22.04.2/klettres-22.04.2.tar.xz) = 47137604 +TIMESTAMP = 1657013450 +SHA256 (KDE/release-service/22.04.3/klettres-22.04.3.tar.xz) = d73f486739f546a7efcfc7d965bbd053ef237166ca316942ca9590d3cd6926c9 +SIZE (KDE/release-service/22.04.3/klettres-22.04.3.tar.xz) = 47188076 diff --git a/misc/klettres/pkg-plist b/misc/klettres/pkg-plist index 76ebc61a077e..d45afad5246d 100644 --- a/misc/klettres/pkg-plist +++ b/misc/klettres/pkg-plist @@ -1,2027 +1,2057 @@ bin/klettres share/applications/org.kde.klettres.desktop share/config.kcfg/klettres.kcfg share/icons/hicolor/16x16/apps/klettres.png share/icons/hicolor/22x22/apps/klettres.png share/icons/hicolor/32x32/apps/klettres.png share/icons/hicolor/48x48/apps/klettres.png share/icons/hicolor/64x64/apps/klettres.png share/icons/hicolor/128x128/apps/klettres.png %%DATADIR%%/ar/alpha/a-01.ogg %%DATADIR%%/ar/alpha/a-02.ogg %%DATADIR%%/ar/alpha/a-03.ogg %%DATADIR%%/ar/alpha/a-04.ogg %%DATADIR%%/ar/alpha/a-05.ogg %%DATADIR%%/ar/alpha/a-06.ogg %%DATADIR%%/ar/alpha/a-07.ogg %%DATADIR%%/ar/alpha/a-08.ogg %%DATADIR%%/ar/alpha/a-09.ogg %%DATADIR%%/ar/alpha/a-10.ogg %%DATADIR%%/ar/alpha/a-11.ogg %%DATADIR%%/ar/alpha/a-12.ogg %%DATADIR%%/ar/alpha/a-13.ogg %%DATADIR%%/ar/alpha/a-14.ogg %%DATADIR%%/ar/alpha/a-15.ogg %%DATADIR%%/ar/alpha/a-16.ogg %%DATADIR%%/ar/alpha/a-17.ogg %%DATADIR%%/ar/alpha/a-18.ogg %%DATADIR%%/ar/alpha/a-19.ogg %%DATADIR%%/ar/alpha/a-20.ogg %%DATADIR%%/ar/alpha/a-21.ogg %%DATADIR%%/ar/alpha/a-22.ogg %%DATADIR%%/ar/alpha/a-23.ogg %%DATADIR%%/ar/alpha/a-24.ogg %%DATADIR%%/ar/alpha/a-25.ogg %%DATADIR%%/ar/alpha/a-26.ogg %%DATADIR%%/ar/alpha/a-27.ogg %%DATADIR%%/ar/alpha/a-28.ogg %%DATADIR%%/ar/sounds.xml %%DATADIR%%/cs.txt %%DATADIR%%/cs/alpha/a-0.ogg %%DATADIR%%/cs/alpha/a-1.ogg %%DATADIR%%/cs/alpha/a-2.ogg %%DATADIR%%/cs/alpha/a-3.ogg %%DATADIR%%/cs/alpha/a-4.ogg %%DATADIR%%/cs/alpha/a-5.ogg %%DATADIR%%/cs/alpha/a-6.ogg %%DATADIR%%/cs/alpha/a-7.ogg %%DATADIR%%/cs/alpha/a-8.ogg %%DATADIR%%/cs/alpha/a-9.ogg %%DATADIR%%/cs/alpha/a-10.ogg %%DATADIR%%/cs/alpha/a-11.ogg %%DATADIR%%/cs/alpha/a-12.ogg %%DATADIR%%/cs/alpha/a-13.ogg %%DATADIR%%/cs/alpha/a-14.ogg %%DATADIR%%/cs/alpha/a-15.ogg %%DATADIR%%/cs/alpha/a-16.ogg %%DATADIR%%/cs/alpha/a-17.ogg %%DATADIR%%/cs/alpha/a-18.ogg %%DATADIR%%/cs/alpha/a-19.ogg %%DATADIR%%/cs/alpha/a-20.ogg %%DATADIR%%/cs/alpha/a-21.ogg %%DATADIR%%/cs/alpha/a-22.ogg %%DATADIR%%/cs/alpha/a-23.ogg %%DATADIR%%/cs/alpha/a-24.ogg %%DATADIR%%/cs/alpha/a-25.ogg %%DATADIR%%/cs/alpha/a-26.ogg %%DATADIR%%/cs/alpha/a-27.ogg %%DATADIR%%/cs/alpha/a-28.ogg %%DATADIR%%/cs/alpha/a-29.ogg %%DATADIR%%/cs/alpha/a-30.ogg %%DATADIR%%/cs/alpha/a-31.ogg %%DATADIR%%/cs/sounds.xml %%DATADIR%%/cs/syllab/ad-0.ogg %%DATADIR%%/cs/syllab/ad-1.ogg %%DATADIR%%/cs/syllab/ad-2.ogg %%DATADIR%%/cs/syllab/ad-3.ogg %%DATADIR%%/cs/syllab/ad-4.ogg %%DATADIR%%/cs/syllab/ad-5.ogg %%DATADIR%%/cs/syllab/ad-6.ogg %%DATADIR%%/cs/syllab/ad-7.ogg %%DATADIR%%/cs/syllab/ad-8.ogg %%DATADIR%%/cs/syllab/ad-9.ogg %%DATADIR%%/cs/syllab/ad-10.ogg %%DATADIR%%/cs/syllab/ad-11.ogg %%DATADIR%%/cs/syllab/ad-12.ogg %%DATADIR%%/cs/syllab/ad-13.ogg %%DATADIR%%/cs/syllab/ad-14.ogg %%DATADIR%%/cs/syllab/ad-15.ogg %%DATADIR%%/cs/syllab/ad-16.ogg %%DATADIR%%/cs/syllab/ad-17.ogg %%DATADIR%%/da.txt %%DATADIR%%/da/alpha/a-0.ogg %%DATADIR%%/da/alpha/a-1.ogg %%DATADIR%%/da/alpha/a-2.ogg %%DATADIR%%/da/alpha/a-3.ogg %%DATADIR%%/da/alpha/a-4.ogg %%DATADIR%%/da/alpha/a-5.ogg %%DATADIR%%/da/alpha/a-6.ogg %%DATADIR%%/da/alpha/a-7.ogg %%DATADIR%%/da/alpha/a-8.ogg %%DATADIR%%/da/alpha/a-9.ogg %%DATADIR%%/da/alpha/a-10.ogg %%DATADIR%%/da/alpha/a-11.ogg %%DATADIR%%/da/alpha/a-12.ogg %%DATADIR%%/da/alpha/a-13.ogg %%DATADIR%%/da/alpha/a-14.ogg %%DATADIR%%/da/alpha/a-15.ogg %%DATADIR%%/da/alpha/a-16.ogg %%DATADIR%%/da/alpha/a-17.ogg %%DATADIR%%/da/alpha/a-18.ogg %%DATADIR%%/da/alpha/a-19.ogg %%DATADIR%%/da/alpha/a-20.ogg %%DATADIR%%/da/alpha/a-21.ogg %%DATADIR%%/da/alpha/a-22.ogg %%DATADIR%%/da/alpha/a-23.ogg %%DATADIR%%/da/alpha/a-24.ogg %%DATADIR%%/da/alpha/a-25.ogg %%DATADIR%%/da/alpha/a-26.ogg %%DATADIR%%/da/alpha/a-27.ogg %%DATADIR%%/da/alpha/a-28.ogg %%DATADIR%%/da/sounds.xml %%DATADIR%%/da/syllab/ad-0.ogg %%DATADIR%%/da/syllab/ad-1.ogg %%DATADIR%%/da/syllab/ad-2.ogg %%DATADIR%%/da/syllab/ad-3.ogg %%DATADIR%%/da/syllab/ad-4.ogg %%DATADIR%%/da/syllab/ad-5.ogg %%DATADIR%%/da/syllab/ad-6.ogg %%DATADIR%%/da/syllab/ad-7.ogg %%DATADIR%%/da/syllab/ad-8.ogg %%DATADIR%%/da/syllab/ad-9.ogg %%DATADIR%%/da/syllab/ad-10.ogg %%DATADIR%%/da/syllab/ad-11.ogg %%DATADIR%%/da/syllab/ad-12.ogg %%DATADIR%%/da/syllab/ad-13.ogg %%DATADIR%%/da/syllab/ad-14.ogg %%DATADIR%%/da/syllab/ad-15.ogg %%DATADIR%%/da/syllab/ad-16.ogg %%DATADIR%%/da/syllab/ad-17.ogg %%DATADIR%%/da/syllab/ad-18.ogg %%DATADIR%%/da/syllab/ad-19.ogg %%DATADIR%%/da/syllab/ad-20.ogg %%DATADIR%%/da/syllab/ad-21.ogg %%DATADIR%%/da/syllab/ad-22.ogg %%DATADIR%%/da/syllab/ad-23.ogg %%DATADIR%%/da/syllab/ad-24.ogg %%DATADIR%%/da/syllab/ad-25.ogg %%DATADIR%%/da/syllab/ad-26.ogg %%DATADIR%%/da/syllab/ad-27.ogg %%DATADIR%%/data/sounds.xml %%DATADIR%%/de.txt %%DATADIR%%/de/alpha/a.ogg %%DATADIR%%/de/alpha/ae.ogg %%DATADIR%%/de/alpha/b.ogg %%DATADIR%%/de/alpha/c.ogg %%DATADIR%%/de/alpha/d.ogg %%DATADIR%%/de/alpha/e.ogg %%DATADIR%%/de/alpha/f.ogg %%DATADIR%%/de/alpha/g.ogg %%DATADIR%%/de/alpha/h.ogg %%DATADIR%%/de/alpha/i.ogg %%DATADIR%%/de/alpha/j.ogg %%DATADIR%%/de/alpha/k.ogg %%DATADIR%%/de/alpha/l.ogg %%DATADIR%%/de/alpha/m.ogg %%DATADIR%%/de/alpha/n.ogg %%DATADIR%%/de/alpha/o.ogg %%DATADIR%%/de/alpha/oe.ogg %%DATADIR%%/de/alpha/p.ogg %%DATADIR%%/de/alpha/q.ogg %%DATADIR%%/de/alpha/r.ogg %%DATADIR%%/de/alpha/s.ogg %%DATADIR%%/de/alpha/sz.ogg %%DATADIR%%/de/alpha/t.ogg %%DATADIR%%/de/alpha/u.ogg %%DATADIR%%/de/alpha/ue.ogg %%DATADIR%%/de/alpha/v.ogg %%DATADIR%%/de/alpha/w.ogg %%DATADIR%%/de/alpha/x.ogg %%DATADIR%%/de/alpha/y.ogg %%DATADIR%%/de/alpha/z.ogg %%DATADIR%%/de/sounds.xml %%DATADIR%%/de/syllab/affe.ogg %%DATADIR%%/de/syllab/auch.ogg %%DATADIR%%/de/syllab/baer.ogg %%DATADIR%%/de/syllab/bus.ogg %%DATADIR%%/de/syllab/dem.ogg %%DATADIR%%/de/syllab/die.ogg %%DATADIR%%/de/syllab/dir.ogg %%DATADIR%%/de/syllab/ein.ogg %%DATADIR%%/de/syllab/eule.ogg %%DATADIR%%/de/syllab/fisch.ogg %%DATADIR%%/de/syllab/frau.ogg %%DATADIR%%/de/syllab/fusz.ogg %%DATADIR%%/de/syllab/gut.ogg %%DATADIR%%/de/syllab/haus.ogg %%DATADIR%%/de/syllab/heu.ogg %%DATADIR%%/de/syllab/hund.ogg %%DATADIR%%/de/syllab/ist.ogg %%DATADIR%%/de/syllab/ja.ogg %%DATADIR%%/de/syllab/kind.ogg %%DATADIR%%/de/syllab/lisa.ogg %%DATADIR%%/de/syllab/nase.ogg %%DATADIR%%/de/syllab/oel.ogg %%DATADIR%%/de/syllab/opa.ogg %%DATADIR%%/de/syllab/pute.ogg %%DATADIR%%/de/syllab/reh.ogg %%DATADIR%%/de/syllab/rot.ogg %%DATADIR%%/de/syllab/sein.ogg %%DATADIR%%/de/syllab/sitz.ogg %%DATADIR%%/de/syllab/tuer.ogg %%DATADIR%%/de/syllab/vor.ogg %%DATADIR%%/de/syllab/was.ogg %%DATADIR%%/de/syllab/will.ogg %%DATADIR%%/de/syllab/wo.ogg %%DATADIR%%/de/syllab/zu.ogg %%DATADIR%%/en/alpha/A.ogg %%DATADIR%%/en/alpha/B.ogg %%DATADIR%%/en/alpha/C.ogg %%DATADIR%%/en/alpha/D.ogg %%DATADIR%%/en/alpha/E.ogg %%DATADIR%%/en/alpha/F.ogg %%DATADIR%%/en/alpha/G.ogg %%DATADIR%%/en/alpha/H.ogg %%DATADIR%%/en/alpha/I.ogg %%DATADIR%%/en/alpha/J.ogg %%DATADIR%%/en/alpha/K.ogg %%DATADIR%%/en/alpha/L.ogg %%DATADIR%%/en/alpha/M.ogg %%DATADIR%%/en/alpha/N.ogg %%DATADIR%%/en/alpha/O.ogg %%DATADIR%%/en/alpha/P.ogg %%DATADIR%%/en/alpha/Q.ogg %%DATADIR%%/en/alpha/R.ogg %%DATADIR%%/en/alpha/S.ogg %%DATADIR%%/en/alpha/T.ogg %%DATADIR%%/en/alpha/U.ogg %%DATADIR%%/en/alpha/V.ogg %%DATADIR%%/en/alpha/W.ogg %%DATADIR%%/en/alpha/X.ogg %%DATADIR%%/en/alpha/Y.ogg %%DATADIR%%/en/alpha/Z.ogg %%DATADIR%%/en/sounds.xml %%DATADIR%%/en/syllab/aw.ogg %%DATADIR%%/en/syllab/car.ogg %%DATADIR%%/en/syllab/ch.ogg %%DATADIR%%/en/syllab/dog.ogg %%DATADIR%%/en/syllab/fix.ogg %%DATADIR%%/en/syllab/gas.ogg %%DATADIR%%/en/syllab/gem.ogg %%DATADIR%%/en/syllab/hot.ogg %%DATADIR%%/en/syllab/jet.ogg %%DATADIR%%/en/syllab/key.ogg %%DATADIR%%/en/syllab/me.ogg %%DATADIR%%/en/syllab/my.ogg %%DATADIR%%/en/syllab/no.ogg %%DATADIR%%/en/syllab/pet.ogg %%DATADIR%%/en/syllab/saw.ogg %%DATADIR%%/en/syllab/say.ogg %%DATADIR%%/en/syllab/sit.ogg %%DATADIR%%/en/syllab/sky.ogg %%DATADIR%%/en/syllab/th.ogg %%DATADIR%%/en_GB/alpha/a.ogg %%DATADIR%%/en_GB/alpha/b.ogg %%DATADIR%%/en_GB/alpha/c.ogg %%DATADIR%%/en_GB/alpha/d.ogg %%DATADIR%%/en_GB/alpha/e.ogg %%DATADIR%%/en_GB/alpha/f.ogg %%DATADIR%%/en_GB/alpha/g.ogg %%DATADIR%%/en_GB/alpha/h.ogg %%DATADIR%%/en_GB/alpha/i.ogg %%DATADIR%%/en_GB/alpha/j.ogg %%DATADIR%%/en_GB/alpha/k.ogg %%DATADIR%%/en_GB/alpha/l.ogg %%DATADIR%%/en_GB/alpha/m.ogg %%DATADIR%%/en_GB/alpha/n.ogg %%DATADIR%%/en_GB/alpha/o.ogg %%DATADIR%%/en_GB/alpha/p.ogg %%DATADIR%%/en_GB/alpha/q.ogg %%DATADIR%%/en_GB/alpha/r.ogg %%DATADIR%%/en_GB/alpha/s.ogg %%DATADIR%%/en_GB/alpha/t.ogg %%DATADIR%%/en_GB/alpha/u.ogg %%DATADIR%%/en_GB/alpha/v.ogg %%DATADIR%%/en_GB/alpha/w.ogg %%DATADIR%%/en_GB/alpha/x.ogg %%DATADIR%%/en_GB/alpha/y.ogg %%DATADIR%%/en_GB/alpha/z.ogg %%DATADIR%%/en_GB/sounds.xml %%DATADIR%%/en_GB/syllab/arm.ogg %%DATADIR%%/en_GB/syllab/ball.ogg %%DATADIR%%/en_GB/syllab/car.ogg %%DATADIR%%/en_GB/syllab/dog.ogg %%DATADIR%%/en_GB/syllab/ear.ogg %%DATADIR%%/en_GB/syllab/fix.ogg %%DATADIR%%/en_GB/syllab/gas.ogg %%DATADIR%%/en_GB/syllab/gem.ogg %%DATADIR%%/en_GB/syllab/hot.ogg %%DATADIR%%/en_GB/syllab/hut.ogg %%DATADIR%%/en_GB/syllab/jet.ogg %%DATADIR%%/en_GB/syllab/key.ogg %%DATADIR%%/en_GB/syllab/me.ogg %%DATADIR%%/en_GB/syllab/my.ogg %%DATADIR%%/en_GB/syllab/no.ogg %%DATADIR%%/en_GB/syllab/or.ogg %%DATADIR%%/en_GB/syllab/pet.ogg %%DATADIR%%/en_GB/syllab/saw.ogg %%DATADIR%%/en_GB/syllab/say.ogg %%DATADIR%%/en_GB/syllab/sit.ogg %%DATADIR%%/en_GB/syllab/sky.ogg %%DATADIR%%/en_GB/syllab/the.ogg %%DATADIR%%/en_GB/syllab/well.ogg %%DATADIR%%/es.txt %%DATADIR%%/es/alpha/a.ogg %%DATADIR%%/es/alpha/b.ogg %%DATADIR%%/es/alpha/c.ogg %%DATADIR%%/es/alpha/d.ogg %%DATADIR%%/es/alpha/e.ogg %%DATADIR%%/es/alpha/f.ogg %%DATADIR%%/es/alpha/g.ogg %%DATADIR%%/es/alpha/h.ogg %%DATADIR%%/es/alpha/i.ogg %%DATADIR%%/es/alpha/j.ogg %%DATADIR%%/es/alpha/k.ogg %%DATADIR%%/es/alpha/l.ogg %%DATADIR%%/es/alpha/m.ogg %%DATADIR%%/es/alpha/n.ogg %%DATADIR%%/es/alpha/nn.ogg %%DATADIR%%/es/alpha/o.ogg %%DATADIR%%/es/alpha/p.ogg %%DATADIR%%/es/alpha/q.ogg %%DATADIR%%/es/alpha/r.ogg %%DATADIR%%/es/alpha/s.ogg %%DATADIR%%/es/alpha/t.ogg %%DATADIR%%/es/alpha/u.ogg %%DATADIR%%/es/alpha/v.ogg %%DATADIR%%/es/alpha/w.ogg %%DATADIR%%/es/alpha/x.ogg %%DATADIR%%/es/alpha/y.ogg %%DATADIR%%/es/alpha/z.ogg %%DATADIR%%/es/sounds.xml %%DATADIR%%/es/syllab/ba.ogg %%DATADIR%%/es/syllab/be.ogg %%DATADIR%%/es/syllab/bi.ogg %%DATADIR%%/es/syllab/bo.ogg %%DATADIR%%/es/syllab/bu.ogg %%DATADIR%%/es/syllab/ca.ogg %%DATADIR%%/es/syllab/ce.ogg %%DATADIR%%/es/syllab/ci.ogg %%DATADIR%%/es/syllab/co.ogg %%DATADIR%%/es/syllab/cu.ogg %%DATADIR%%/es/syllab/da.ogg %%DATADIR%%/es/syllab/de.ogg %%DATADIR%%/es/syllab/di.ogg %%DATADIR%%/es/syllab/do.ogg %%DATADIR%%/es/syllab/du.ogg %%DATADIR%%/es/syllab/fa.ogg %%DATADIR%%/es/syllab/fe.ogg %%DATADIR%%/es/syllab/fi.ogg %%DATADIR%%/es/syllab/fo.ogg %%DATADIR%%/es/syllab/fu.ogg %%DATADIR%%/es/syllab/ga.ogg %%DATADIR%%/es/syllab/ge.ogg %%DATADIR%%/es/syllab/gi.ogg %%DATADIR%%/es/syllab/go.ogg %%DATADIR%%/es/syllab/gu.ogg %%DATADIR%%/es/syllab/gue.ogg %%DATADIR%%/es/syllab/gui.ogg %%DATADIR%%/es/syllab/guue.ogg %%DATADIR%%/es/syllab/guui.ogg %%DATADIR%%/es/syllab/ha.ogg %%DATADIR%%/es/syllab/he.ogg %%DATADIR%%/es/syllab/hi.ogg %%DATADIR%%/es/syllab/ho.ogg %%DATADIR%%/es/syllab/hu.ogg %%DATADIR%%/es/syllab/ja.ogg %%DATADIR%%/es/syllab/je.ogg %%DATADIR%%/es/syllab/ji.ogg %%DATADIR%%/es/syllab/jo.ogg %%DATADIR%%/es/syllab/ju.ogg %%DATADIR%%/es/syllab/ka.ogg %%DATADIR%%/es/syllab/ke.ogg %%DATADIR%%/es/syllab/ki.ogg %%DATADIR%%/es/syllab/ko.ogg %%DATADIR%%/es/syllab/ku.ogg %%DATADIR%%/es/syllab/la.ogg %%DATADIR%%/es/syllab/le.ogg %%DATADIR%%/es/syllab/li.ogg %%DATADIR%%/es/syllab/ll.ogg %%DATADIR%%/es/syllab/lla.ogg %%DATADIR%%/es/syllab/lle.ogg %%DATADIR%%/es/syllab/lli.ogg %%DATADIR%%/es/syllab/llo.ogg %%DATADIR%%/es/syllab/llu.ogg %%DATADIR%%/es/syllab/lo.ogg %%DATADIR%%/es/syllab/lu.ogg %%DATADIR%%/es/syllab/ma.ogg %%DATADIR%%/es/syllab/me.ogg %%DATADIR%%/es/syllab/mi.ogg %%DATADIR%%/es/syllab/mo.ogg %%DATADIR%%/es/syllab/mu.ogg %%DATADIR%%/es/syllab/na.ogg %%DATADIR%%/es/syllab/ne.ogg %%DATADIR%%/es/syllab/ni.ogg %%DATADIR%%/es/syllab/nna.ogg %%DATADIR%%/es/syllab/nne.ogg %%DATADIR%%/es/syllab/nni.ogg %%DATADIR%%/es/syllab/nno.ogg %%DATADIR%%/es/syllab/nnu.ogg %%DATADIR%%/es/syllab/no.ogg %%DATADIR%%/es/syllab/nu.ogg %%DATADIR%%/es/syllab/pa.ogg %%DATADIR%%/es/syllab/pe.ogg %%DATADIR%%/es/syllab/pi.ogg %%DATADIR%%/es/syllab/po.ogg %%DATADIR%%/es/syllab/pu.ogg %%DATADIR%%/es/syllab/que.ogg %%DATADIR%%/es/syllab/qui.ogg %%DATADIR%%/es/syllab/ra.ogg %%DATADIR%%/es/syllab/re.ogg %%DATADIR%%/es/syllab/ri.ogg %%DATADIR%%/es/syllab/ro.ogg %%DATADIR%%/es/syllab/ru.ogg %%DATADIR%%/es/syllab/sa.ogg %%DATADIR%%/es/syllab/se.ogg %%DATADIR%%/es/syllab/si.ogg %%DATADIR%%/es/syllab/so.ogg %%DATADIR%%/es/syllab/su.ogg %%DATADIR%%/es/syllab/ta.ogg %%DATADIR%%/es/syllab/te.ogg %%DATADIR%%/es/syllab/ti.ogg %%DATADIR%%/es/syllab/to.ogg %%DATADIR%%/es/syllab/tu.ogg %%DATADIR%%/es/syllab/va.ogg %%DATADIR%%/es/syllab/ve.ogg %%DATADIR%%/es/syllab/vi.ogg %%DATADIR%%/es/syllab/vo.ogg %%DATADIR%%/es/syllab/vu.ogg %%DATADIR%%/es/syllab/wa.ogg %%DATADIR%%/es/syllab/we.ogg %%DATADIR%%/es/syllab/wi.ogg %%DATADIR%%/es/syllab/wo.ogg %%DATADIR%%/es/syllab/wu.ogg %%DATADIR%%/es/syllab/xa.ogg %%DATADIR%%/es/syllab/xe.ogg %%DATADIR%%/es/syllab/xi.ogg %%DATADIR%%/es/syllab/xo.ogg %%DATADIR%%/es/syllab/xu.ogg %%DATADIR%%/es/syllab/ya.ogg %%DATADIR%%/es/syllab/ye.ogg %%DATADIR%%/es/syllab/yi.ogg %%DATADIR%%/es/syllab/yo.ogg %%DATADIR%%/es/syllab/yu.ogg %%DATADIR%%/es/syllab/za.ogg %%DATADIR%%/es/syllab/ze.ogg %%DATADIR%%/es/syllab/zi.ogg %%DATADIR%%/es/syllab/zo.ogg %%DATADIR%%/es/syllab/zu.ogg %%DATADIR%%/fr/alpha/a-0.ogg %%DATADIR%%/fr/alpha/a-1.ogg %%DATADIR%%/fr/alpha/a-2.ogg %%DATADIR%%/fr/alpha/a-3.ogg %%DATADIR%%/fr/alpha/a-4.ogg %%DATADIR%%/fr/alpha/a-5.ogg %%DATADIR%%/fr/alpha/a-6.ogg %%DATADIR%%/fr/alpha/a-7.ogg %%DATADIR%%/fr/alpha/a-8.ogg %%DATADIR%%/fr/alpha/a-9.ogg %%DATADIR%%/fr/alpha/a-10.ogg %%DATADIR%%/fr/alpha/a-11.ogg %%DATADIR%%/fr/alpha/a-12.ogg %%DATADIR%%/fr/alpha/a-13.ogg %%DATADIR%%/fr/alpha/a-14.ogg %%DATADIR%%/fr/alpha/a-15.ogg %%DATADIR%%/fr/alpha/a-16.ogg %%DATADIR%%/fr/alpha/a-17.ogg %%DATADIR%%/fr/alpha/a-18.ogg %%DATADIR%%/fr/alpha/a-19.ogg %%DATADIR%%/fr/alpha/a-20.ogg %%DATADIR%%/fr/alpha/a-21.ogg %%DATADIR%%/fr/alpha/a-22.ogg %%DATADIR%%/fr/alpha/a-23.ogg %%DATADIR%%/fr/alpha/a-24.ogg %%DATADIR%%/fr/alpha/a-25.ogg %%DATADIR%%/fr/sounds.xml %%DATADIR%%/fr/syllab/ad-0.ogg %%DATADIR%%/fr/syllab/ad-1.ogg %%DATADIR%%/fr/syllab/ad-2.ogg %%DATADIR%%/fr/syllab/ad-3.ogg %%DATADIR%%/fr/syllab/ad-4.ogg %%DATADIR%%/fr/syllab/ad-5.ogg %%DATADIR%%/fr/syllab/ad-6.ogg %%DATADIR%%/fr/syllab/ad-7.ogg %%DATADIR%%/fr/syllab/ad-8.ogg %%DATADIR%%/fr/syllab/ad-9.ogg %%DATADIR%%/fr/syllab/ad-10.ogg %%DATADIR%%/fr/syllab/ad-11.ogg %%DATADIR%%/fr/syllab/ad-12.ogg %%DATADIR%%/fr/syllab/ad-13.ogg %%DATADIR%%/fr/syllab/ad-14.ogg %%DATADIR%%/fr/syllab/ad-15.ogg %%DATADIR%%/fr/syllab/ad-16.ogg %%DATADIR%%/fr/syllab/ad-17.ogg %%DATADIR%%/fr/syllab/ad-18.ogg %%DATADIR%%/fr/syllab/ad-19.ogg %%DATADIR%%/fr/syllab/ad-20.ogg %%DATADIR%%/fr/syllab/ad-21.ogg %%DATADIR%%/fr/syllab/ad-22.ogg %%DATADIR%%/fr/syllab/ad-23.ogg %%DATADIR%%/fr/syllab/ad-24.ogg %%DATADIR%%/fr/syllab/ad-25.ogg %%DATADIR%%/fr/syllab/ad-26.ogg %%DATADIR%%/fr/syllab/ad-27.ogg %%DATADIR%%/he/alpha/a-01.ogg %%DATADIR%%/he/alpha/a-02.ogg %%DATADIR%%/he/alpha/a-03.ogg %%DATADIR%%/he/alpha/a-04.ogg %%DATADIR%%/he/alpha/a-05.ogg %%DATADIR%%/he/alpha/a-06.ogg %%DATADIR%%/he/alpha/a-07.ogg %%DATADIR%%/he/alpha/a-08.ogg %%DATADIR%%/he/alpha/a-09.ogg %%DATADIR%%/he/alpha/a-10.ogg %%DATADIR%%/he/alpha/a-11.ogg %%DATADIR%%/he/alpha/a-12.ogg %%DATADIR%%/he/alpha/a-13.ogg %%DATADIR%%/he/alpha/a-14.ogg %%DATADIR%%/he/alpha/a-15.ogg %%DATADIR%%/he/alpha/a-16.ogg %%DATADIR%%/he/alpha/a-17.ogg %%DATADIR%%/he/alpha/a-18.ogg %%DATADIR%%/he/alpha/a-19.ogg %%DATADIR%%/he/alpha/a-20.ogg %%DATADIR%%/he/alpha/a-21.ogg %%DATADIR%%/he/alpha/a-22.ogg %%DATADIR%%/he/alpha/a-23.ogg %%DATADIR%%/he/alpha/a-24.ogg %%DATADIR%%/he/alpha/a-25.ogg %%DATADIR%%/he/alpha/a-26.ogg %%DATADIR%%/he/alpha/a-27.ogg %%DATADIR%%/he/sounds.xml %%DATADIR%%/he/syllab/ad-01.ogg %%DATADIR%%/he/syllab/ad-02.ogg %%DATADIR%%/he/syllab/ad-03.ogg %%DATADIR%%/he/syllab/ad-04.ogg %%DATADIR%%/he/syllab/ad-05.ogg %%DATADIR%%/he/syllab/ad-07.ogg %%DATADIR%%/he/syllab/ad-08.ogg %%DATADIR%%/he/syllab/ad-09.ogg %%DATADIR%%/he/syllab/ad-10.ogg %%DATADIR%%/he/syllab/ad-11.ogg %%DATADIR%%/he/syllab/ad-12.ogg %%DATADIR%%/he/syllab/ad-13.ogg %%DATADIR%%/he/syllab/ad-14.ogg %%DATADIR%%/he/syllab/ad-15.ogg %%DATADIR%%/he/syllab/ad-16.ogg %%DATADIR%%/he/syllab/ad-17.ogg %%DATADIR%%/he/syllab/ad-18.ogg %%DATADIR%%/he/syllab/ad-19.ogg %%DATADIR%%/he/syllab/ad-20.ogg %%DATADIR%%/he/syllab/ad-21.ogg %%DATADIR%%/he/syllab/ad-22.ogg %%DATADIR%%/he/syllab/ad-23.ogg %%DATADIR%%/he/syllab/ad-24.ogg %%DATADIR%%/he/syllab/ad-25.ogg %%DATADIR%%/he/syllab/ad-26.ogg %%DATADIR%%/hu.txt %%DATADIR%%/hu/alpha/a1.ogg %%DATADIR%%/hu/alpha/a2.ogg %%DATADIR%%/hu/alpha/b.ogg %%DATADIR%%/hu/alpha/c.ogg %%DATADIR%%/hu/alpha/cs.ogg %%DATADIR%%/hu/alpha/d.ogg %%DATADIR%%/hu/alpha/dz.ogg %%DATADIR%%/hu/alpha/dzs.ogg %%DATADIR%%/hu/alpha/e1.ogg %%DATADIR%%/hu/alpha/e2.ogg %%DATADIR%%/hu/alpha/f.ogg %%DATADIR%%/hu/alpha/g.ogg %%DATADIR%%/hu/alpha/gy.ogg %%DATADIR%%/hu/alpha/h.ogg %%DATADIR%%/hu/alpha/i1.ogg %%DATADIR%%/hu/alpha/i2.ogg %%DATADIR%%/hu/alpha/j.ogg %%DATADIR%%/hu/alpha/k.ogg %%DATADIR%%/hu/alpha/l.ogg %%DATADIR%%/hu/alpha/ly.ogg %%DATADIR%%/hu/alpha/m.ogg %%DATADIR%%/hu/alpha/n.ogg %%DATADIR%%/hu/alpha/ny.ogg %%DATADIR%%/hu/alpha/o1.ogg %%DATADIR%%/hu/alpha/o2.ogg %%DATADIR%%/hu/alpha/o3.ogg %%DATADIR%%/hu/alpha/o4.ogg %%DATADIR%%/hu/alpha/p.ogg %%DATADIR%%/hu/alpha/q.ogg %%DATADIR%%/hu/alpha/r.ogg %%DATADIR%%/hu/alpha/s.ogg %%DATADIR%%/hu/alpha/sz.ogg %%DATADIR%%/hu/alpha/t.ogg %%DATADIR%%/hu/alpha/ty.ogg %%DATADIR%%/hu/alpha/u1.ogg %%DATADIR%%/hu/alpha/u2.ogg %%DATADIR%%/hu/alpha/u3.ogg %%DATADIR%%/hu/alpha/u4.ogg %%DATADIR%%/hu/alpha/v.ogg %%DATADIR%%/hu/alpha/w.ogg %%DATADIR%%/hu/alpha/x.ogg %%DATADIR%%/hu/alpha/y.ogg %%DATADIR%%/hu/alpha/z.ogg %%DATADIR%%/hu/alpha/zs.ogg %%DATADIR%%/hu/sounds.xml %%DATADIR%%/hu/syllab/01-az.ogg %%DATADIR%%/hu/syllab/02-ar.ogg %%DATADIR%%/hu/syllab/03-ber.ogg %%DATADIR%%/hu/syllab/04-cel.ogg %%DATADIR%%/hu/syllab/05-csik.ogg %%DATADIR%%/hu/syllab/06-del.ogg %%DATADIR%%/hu/syllab/07-egy.ogg %%DATADIR%%/hu/syllab/08-ek.ogg %%DATADIR%%/hu/syllab/09-fal.ogg %%DATADIR%%/hu/syllab/10-gez.ogg %%DATADIR%%/hu/syllab/11-gyik.ogg %%DATADIR%%/hu/syllab/12-ho.ogg %%DATADIR%%/hu/syllab/13-itt.ogg %%DATADIR%%/hu/syllab/14-ij.ogg %%DATADIR%%/hu/syllab/15-jo.ogg %%DATADIR%%/hu/syllab/16-kad.ogg %%DATADIR%%/hu/syllab/17-lo.ogg %%DATADIR%%/hu/syllab/18-lyuk.ogg %%DATADIR%%/hu/syllab/19-ma.ogg %%DATADIR%%/hu/syllab/20-negy.ogg %%DATADIR%%/hu/syllab/21-nyolc.ogg %%DATADIR%%/hu/syllab/22-oszt.ogg %%DATADIR%%/hu/syllab/23-ol.ogg %%DATADIR%%/hu/syllab/24-ot.ogg %%DATADIR%%/hu/syllab/25-or.ogg %%DATADIR%%/hu/syllab/26-pek.ogg %%DATADIR%%/hu/syllab/27-ret.ogg %%DATADIR%%/hu/syllab/28-so.ogg %%DATADIR%%/hu/syllab/29-szog.ogg %%DATADIR%%/hu/syllab/30-tok.ogg %%DATADIR%%/hu/syllab/31-tyuk.ogg %%DATADIR%%/hu/syllab/32-ujj.ogg %%DATADIR%%/hu/syllab/33-ut.ogg %%DATADIR%%/hu/syllab/34-ul.ogg %%DATADIR%%/hu/syllab/35-ur.ogg %%DATADIR%%/hu/syllab/36-ven.ogg %%DATADIR%%/hu/syllab/37-zab.ogg %%DATADIR%%/hu/syllab/38-zsak.ogg %%DATADIR%%/icons/hicolor/16x16/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/16x16/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/16x16/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/22x22/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/32x32/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/48x48/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/64x64/actions/klettres_kids.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_kids.png %%DATADIR%%/id/alpha/a.wav %%DATADIR%%/id/alpha/b.wav %%DATADIR%%/id/alpha/c.wav %%DATADIR%%/id/alpha/d.wav %%DATADIR%%/id/alpha/e.wav %%DATADIR%%/id/alpha/f.wav %%DATADIR%%/id/alpha/g.wav %%DATADIR%%/id/alpha/h.wav %%DATADIR%%/id/alpha/i.wav %%DATADIR%%/id/alpha/j.wav %%DATADIR%%/id/alpha/k.wav %%DATADIR%%/id/alpha/l.wav %%DATADIR%%/id/alpha/m.wav %%DATADIR%%/id/alpha/n.wav %%DATADIR%%/id/alpha/o.wav %%DATADIR%%/id/alpha/p.wav %%DATADIR%%/id/alpha/q.wav %%DATADIR%%/id/alpha/r.wav %%DATADIR%%/id/alpha/s.wav %%DATADIR%%/id/alpha/t.wav %%DATADIR%%/id/alpha/u.wav %%DATADIR%%/id/alpha/v.wav %%DATADIR%%/id/alpha/w.wav %%DATADIR%%/id/alpha/x.wav %%DATADIR%%/id/alpha/y.wav %%DATADIR%%/id/alpha/z.wav %%DATADIR%%/id/sounds.xml %%DATADIR%%/id/syllab/ba.wav %%DATADIR%%/id/syllab/be.wav %%DATADIR%%/id/syllab/bi.wav %%DATADIR%%/id/syllab/bo.wav %%DATADIR%%/id/syllab/bu.wav %%DATADIR%%/id/syllab/ca.wav %%DATADIR%%/id/syllab/ce.wav %%DATADIR%%/id/syllab/co.wav %%DATADIR%%/id/syllab/cu.wav %%DATADIR%%/id/syllab/da.wav %%DATADIR%%/id/syllab/de.wav %%DATADIR%%/id/syllab/di.wav %%DATADIR%%/id/syllab/do.wav %%DATADIR%%/id/syllab/du.wav %%DATADIR%%/id/syllab/fa.wav %%DATADIR%%/id/syllab/fe.wav %%DATADIR%%/id/syllab/fi.wav %%DATADIR%%/id/syllab/fo.wav %%DATADIR%%/id/syllab/fu.wav %%DATADIR%%/id/syllab/ga.wav %%DATADIR%%/id/syllab/go.wav %%DATADIR%%/id/syllab/gu.wav %%DATADIR%%/id/syllab/ja.wav %%DATADIR%%/id/syllab/je.wav %%DATADIR%%/id/syllab/ji.wav %%DATADIR%%/id/syllab/jo.wav %%DATADIR%%/id/syllab/ju.wav %%DATADIR%%/id/syllab/la.wav %%DATADIR%%/id/syllab/le.wav %%DATADIR%%/id/syllab/li.wav %%DATADIR%%/id/syllab/lo.wav %%DATADIR%%/id/syllab/lu.wav %%DATADIR%%/id/syllab/ma.wav %%DATADIR%%/id/syllab/me.wav %%DATADIR%%/id/syllab/mi.wav %%DATADIR%%/id/syllab/mo.wav %%DATADIR%%/id/syllab/mu.wav %%DATADIR%%/id/syllab/na.wav %%DATADIR%%/id/syllab/ne.wav %%DATADIR%%/id/syllab/ni.wav %%DATADIR%%/id/syllab/no.wav %%DATADIR%%/id/syllab/nu.wav %%DATADIR%%/id/syllab/pa.wav %%DATADIR%%/id/syllab/pe.wav %%DATADIR%%/id/syllab/pi.wav %%DATADIR%%/id/syllab/po.wav %%DATADIR%%/id/syllab/pu.wav %%DATADIR%%/id/syllab/ra.wav %%DATADIR%%/id/syllab/re.wav %%DATADIR%%/id/syllab/ri.wav %%DATADIR%%/id/syllab/ro.wav %%DATADIR%%/id/syllab/ru.wav %%DATADIR%%/id/syllab/sa.wav %%DATADIR%%/id/syllab/se.wav %%DATADIR%%/id/syllab/si.wav %%DATADIR%%/id/syllab/so.wav %%DATADIR%%/id/syllab/su.wav %%DATADIR%%/id/syllab/ta.wav %%DATADIR%%/id/syllab/te.wav %%DATADIR%%/id/syllab/ti.wav %%DATADIR%%/id/syllab/to.wav %%DATADIR%%/id/syllab/tu.wav %%DATADIR%%/id/syllab/va.wav %%DATADIR%%/id/syllab/ve.wav %%DATADIR%%/id/syllab/vi.wav %%DATADIR%%/id/syllab/vo.wav %%DATADIR%%/id/syllab/vu.wav %%DATADIR%%/id/syllab/wa.wav %%DATADIR%%/id/syllab/we.wav %%DATADIR%%/id/syllab/wi.wav %%DATADIR%%/id/syllab/wo.wav %%DATADIR%%/id/syllab/wu.wav %%DATADIR%%/id/syllab/ya.wav %%DATADIR%%/id/syllab/ye.wav %%DATADIR%%/id/syllab/yi.wav %%DATADIR%%/id/syllab/yo.wav %%DATADIR%%/id/syllab/yu.wav %%DATADIR%%/id/syllab/za.wav %%DATADIR%%/id/syllab/ze.wav %%DATADIR%%/id/syllab/zi.wav %%DATADIR%%/id/syllab/zo.wav %%DATADIR%%/id/syllab/zu.wav %%DATADIR%%/it/alpha/a.ogg %%DATADIR%%/it/alpha/b.ogg %%DATADIR%%/it/alpha/c.ogg %%DATADIR%%/it/alpha/d.ogg %%DATADIR%%/it/alpha/e.ogg %%DATADIR%%/it/alpha/f.ogg %%DATADIR%%/it/alpha/g.ogg %%DATADIR%%/it/alpha/h.ogg %%DATADIR%%/it/alpha/i.ogg %%DATADIR%%/it/alpha/j.ogg %%DATADIR%%/it/alpha/k.ogg %%DATADIR%%/it/alpha/l.ogg %%DATADIR%%/it/alpha/m.ogg %%DATADIR%%/it/alpha/n.ogg %%DATADIR%%/it/alpha/o.ogg %%DATADIR%%/it/alpha/p.ogg %%DATADIR%%/it/alpha/q.ogg %%DATADIR%%/it/alpha/r.ogg %%DATADIR%%/it/alpha/s.ogg %%DATADIR%%/it/alpha/t.ogg %%DATADIR%%/it/alpha/u.ogg %%DATADIR%%/it/alpha/w.ogg %%DATADIR%%/it/alpha/x.ogg %%DATADIR%%/it/alpha/y.ogg %%DATADIR%%/it/alpha/z.ogg %%DATADIR%%/it/sounds.xml %%DATADIR%%/it/syllab/ba.ogg %%DATADIR%%/it/syllab/be.ogg %%DATADIR%%/it/syllab/bi.ogg %%DATADIR%%/it/syllab/bo.ogg %%DATADIR%%/it/syllab/bu.ogg %%DATADIR%%/it/syllab/ca.ogg %%DATADIR%%/it/syllab/ce.ogg %%DATADIR%%/it/syllab/ci.ogg %%DATADIR%%/it/syllab/co.ogg %%DATADIR%%/it/syllab/cu.ogg %%DATADIR%%/it/syllab/da.ogg %%DATADIR%%/it/syllab/de.ogg %%DATADIR%%/it/syllab/di.ogg %%DATADIR%%/it/syllab/do.ogg %%DATADIR%%/it/syllab/du.ogg %%DATADIR%%/it/syllab/fa.ogg %%DATADIR%%/it/syllab/fe.ogg %%DATADIR%%/it/syllab/fi.ogg %%DATADIR%%/it/syllab/fo.ogg %%DATADIR%%/it/syllab/ga.ogg %%DATADIR%%/it/syllab/ge.ogg %%DATADIR%%/it/syllab/gi.ogg %%DATADIR%%/it/syllab/gli.ogg %%DATADIR%%/it/syllab/gna.ogg %%DATADIR%%/it/syllab/gne.ogg %%DATADIR%%/it/syllab/gni.ogg %%DATADIR%%/it/syllab/gno.ogg %%DATADIR%%/it/syllab/gnu.ogg %%DATADIR%%/it/syllab/go.ogg %%DATADIR%%/it/syllab/gu.ogg %%DATADIR%%/it/syllab/la.ogg %%DATADIR%%/it/syllab/le.ogg %%DATADIR%%/it/syllab/li.ogg %%DATADIR%%/it/syllab/lo.ogg %%DATADIR%%/it/syllab/lu.ogg %%DATADIR%%/it/syllab/ma.ogg %%DATADIR%%/it/syllab/me.ogg %%DATADIR%%/it/syllab/mi.ogg %%DATADIR%%/it/syllab/mo.ogg %%DATADIR%%/it/syllab/mu.ogg %%DATADIR%%/it/syllab/na.ogg %%DATADIR%%/it/syllab/ne.ogg %%DATADIR%%/it/syllab/ni.ogg %%DATADIR%%/it/syllab/no.ogg %%DATADIR%%/it/syllab/nu.ogg %%DATADIR%%/it/syllab/pa.ogg %%DATADIR%%/it/syllab/pe.ogg %%DATADIR%%/it/syllab/pi.ogg %%DATADIR%%/it/syllab/po.ogg %%DATADIR%%/it/syllab/pu.ogg %%DATADIR%%/it/syllab/ra.ogg %%DATADIR%%/it/syllab/re.ogg %%DATADIR%%/it/syllab/ri.ogg %%DATADIR%%/it/syllab/ro.ogg %%DATADIR%%/it/syllab/ru.ogg %%DATADIR%%/it/syllab/sa.ogg %%DATADIR%%/it/syllab/se.ogg %%DATADIR%%/it/syllab/si.ogg %%DATADIR%%/it/syllab/so.ogg %%DATADIR%%/it/syllab/su.ogg %%DATADIR%%/it/syllab/ta.ogg %%DATADIR%%/it/syllab/te.ogg %%DATADIR%%/it/syllab/ti.ogg %%DATADIR%%/it/syllab/to.ogg %%DATADIR%%/it/syllab/tu.ogg %%DATADIR%%/it/syllab/va.ogg %%DATADIR%%/it/syllab/ve.ogg %%DATADIR%%/it/syllab/vi.ogg %%DATADIR%%/it/syllab/vo.ogg %%DATADIR%%/it/syllab/vu.ogg %%DATADIR%%/it/syllab/za.ogg %%DATADIR%%/it/syllab/ze.ogg %%DATADIR%%/it/syllab/zi.ogg %%DATADIR%%/it/syllab/zo.ogg %%DATADIR%%/it/syllab/zu.ogg %%DATADIR%%/lt.txt %%DATADIR%%/lt/alpha/a-1.ogg %%DATADIR%%/lt/alpha/a-2.ogg %%DATADIR%%/lt/alpha/b.ogg %%DATADIR%%/lt/alpha/c-1.ogg %%DATADIR%%/lt/alpha/c-2.ogg %%DATADIR%%/lt/alpha/d.ogg %%DATADIR%%/lt/alpha/e-1.ogg %%DATADIR%%/lt/alpha/e-2.ogg %%DATADIR%%/lt/alpha/e-3.ogg %%DATADIR%%/lt/alpha/f.ogg %%DATADIR%%/lt/alpha/g.ogg %%DATADIR%%/lt/alpha/h.ogg %%DATADIR%%/lt/alpha/i-1.ogg %%DATADIR%%/lt/alpha/i-2.ogg %%DATADIR%%/lt/alpha/j.ogg %%DATADIR%%/lt/alpha/k.ogg %%DATADIR%%/lt/alpha/l.ogg %%DATADIR%%/lt/alpha/m.ogg %%DATADIR%%/lt/alpha/n.ogg %%DATADIR%%/lt/alpha/o.ogg %%DATADIR%%/lt/alpha/p.ogg %%DATADIR%%/lt/alpha/r.ogg %%DATADIR%%/lt/alpha/s-1.ogg %%DATADIR%%/lt/alpha/s-2.ogg %%DATADIR%%/lt/alpha/t.ogg %%DATADIR%%/lt/alpha/u-1.ogg %%DATADIR%%/lt/alpha/u-2.ogg %%DATADIR%%/lt/alpha/u-3.ogg %%DATADIR%%/lt/alpha/v.ogg %%DATADIR%%/lt/alpha/y.ogg %%DATADIR%%/lt/alpha/z-1.ogg %%DATADIR%%/lt/alpha/z-2.ogg %%DATADIR%%/lt/sounds.xml %%DATADIR%%/lt/syllab/al.ogg %%DATADIR%%/lt/syllab/am.ogg %%DATADIR%%/lt/syllab/an.ogg %%DATADIR%%/lt/syllab/ar.ogg %%DATADIR%%/lt/syllab/au.ogg %%DATADIR%%/lt/syllab/bals.ogg %%DATADIR%%/lt/syllab/bels.ogg %%DATADIR%%/lt/syllab/bus.ogg %%DATADIR%%/lt/syllab/duos.ogg %%DATADIR%%/lt/syllab/dz2iu.ogg %%DATADIR%%/lt/syllab/dzin.ogg %%DATADIR%%/lt/syllab/eu.ogg %%DATADIR%%/lt/syllab/fui.ogg %%DATADIR%%/lt/syllab/gros.ogg %%DATADIR%%/lt/syllab/ie.ogg %%DATADIR%%/lt/syllab/il.ogg %%DATADIR%%/lt/syllab/im.ogg %%DATADIR%%/lt/syllab/in.ogg %%DATADIR%%/lt/syllab/ir.ogg %%DATADIR%%/lt/syllab/jau.ogg %%DATADIR%%/lt/syllab/jei.ogg %%DATADIR%%/lt/syllab/ji.ogg %%DATADIR%%/lt/syllab/jie.ogg %%DATADIR%%/lt/syllab/jis.ogg %%DATADIR%%/lt/syllab/joks.ogg %%DATADIR%%/lt/syllab/juos.ogg %%DATADIR%%/lt/syllab/jus.ogg %%DATADIR%%/lt/syllab/kaip.ogg %%DATADIR%%/lt/syllab/kas.ogg %%DATADIR%%/lt/syllab/kilo.ogg %%DATADIR%%/lt/syllab/ko.ogg %%DATADIR%%/lt/syllab/lai.ogg %%DATADIR%%/lt/syllab/le3k.ogg %%DATADIR%%/lt/syllab/leis.ogg %%DATADIR%%/lt/syllab/lis.ogg %%DATADIR%%/lt/syllab/lok.ogg %%DATADIR%%/lt/syllab/mels.ogg %%DATADIR%%/lt/syllab/mes.ogg %%DATADIR%%/lt/syllab/mur.ogg %%DATADIR%%/lt/syllab/na.ogg -%%DATADIR%%/lt/syllab/ne3r.ogg %%DATADIR%%/lt/syllab/ne.ogg +%%DATADIR%%/lt/syllab/ne3r.ogg %%DATADIR%%/lt/syllab/nes2.ogg %%DATADIR%%/lt/syllab/nors.ogg %%DATADIR%%/lt/syllab/ou.ogg %%DATADIR%%/lt/syllab/pats.ogg %%DATADIR%%/lt/syllab/pur.ogg %%DATADIR%%/lt/syllab/ras.ogg %%DATADIR%%/lt/syllab/re3k.ogg %%DATADIR%%/lt/syllab/ries.ogg %%DATADIR%%/lt/syllab/s2a.ogg %%DATADIR%%/lt/syllab/s2als.ogg %%DATADIR%%/lt/syllab/s2ok.ogg %%DATADIR%%/lt/syllab/tai.ogg %%DATADIR%%/lt/syllab/taip.ogg %%DATADIR%%/lt/syllab/teis.ogg %%DATADIR%%/lt/syllab/ties.ogg %%DATADIR%%/lt/syllab/tuoj.ogg %%DATADIR%%/lt/syllab/tuos.ogg %%DATADIR%%/lt/syllab/tur.ogg %%DATADIR%%/lt/syllab/ul.ogg %%DATADIR%%/lt/syllab/um.ogg %%DATADIR%%/lt/syllab/un.ogg %%DATADIR%%/lt/syllab/uo.ogg %%DATADIR%%/lt/syllab/ur.ogg %%DATADIR%%/lt/syllab/ve3l.ogg %%DATADIR%%/lt/syllab/vis.ogg %%DATADIR%%/lt/syllab/vok.ogg %%DATADIR%%/lt/syllab/yra.ogg %%DATADIR%%/lt/syllab/zip.ogg %%DATADIR%%/ml/alpha/a.ogg %%DATADIR%%/ml/alpha/aa.ogg %%DATADIR%%/ml/alpha/ae.ogg %%DATADIR%%/ml/alpha/aeae.ogg %%DATADIR%%/ml/alpha/aha.ogg %%DATADIR%%/ml/alpha/am.ogg %%DATADIR%%/ml/alpha/ba.ogg %%DATADIR%%/ml/alpha/bha.ogg %%DATADIR%%/ml/alpha/cha.ogg %%DATADIR%%/ml/alpha/chha.ogg %%DATADIR%%/ml/alpha/da.ogg %%DATADIR%%/ml/alpha/dda.ogg %%DATADIR%%/ml/alpha/dha.ogg %%DATADIR%%/ml/alpha/e.ogg %%DATADIR%%/ml/alpha/ee.ogg %%DATADIR%%/ml/alpha/el.ogg %%DATADIR%%/ml/alpha/ell.ogg %%DATADIR%%/ml/alpha/en.ogg %%DATADIR%%/ml/alpha/er.ogg %%DATADIR%%/ml/alpha/ga.ogg %%DATADIR%%/ml/alpha/gha.ogg %%DATADIR%%/ml/alpha/ha.ogg %%DATADIR%%/ml/alpha/i.ogg %%DATADIR%%/ml/alpha/ja.ogg %%DATADIR%%/ml/alpha/jjha.ogg %%DATADIR%%/ml/alpha/ka.ogg %%DATADIR%%/ml/alpha/kha.ogg %%DATADIR%%/ml/alpha/la.ogg %%DATADIR%%/ml/alpha/lla.ogg %%DATADIR%%/ml/alpha/ma.ogg %%DATADIR%%/ml/alpha/na.ogg %%DATADIR%%/ml/alpha/nga.ogg %%DATADIR%%/ml/alpha/nja.ogg %%DATADIR%%/ml/alpha/nn.ogg %%DATADIR%%/ml/alpha/nna.ogg %%DATADIR%%/ml/alpha/o.ogg %%DATADIR%%/ml/alpha/oo.ogg %%DATADIR%%/ml/alpha/ou.ogg %%DATADIR%%/ml/alpha/pa.ogg %%DATADIR%%/ml/alpha/pha.ogg %%DATADIR%%/ml/alpha/ra.ogg %%DATADIR%%/ml/alpha/rra.ogg %%DATADIR%%/ml/alpha/ru.ogg %%DATADIR%%/ml/alpha/sa.ogg %%DATADIR%%/ml/alpha/sha.ogg %%DATADIR%%/ml/alpha/shsha.ogg %%DATADIR%%/ml/alpha/ta.ogg %%DATADIR%%/ml/alpha/tda.ogg %%DATADIR%%/ml/alpha/tha.ogg %%DATADIR%%/ml/alpha/thha.ogg %%DATADIR%%/ml/alpha/tta.ogg %%DATADIR%%/ml/alpha/u.ogg %%DATADIR%%/ml/alpha/uu.ogg %%DATADIR%%/ml/alpha/va.ogg %%DATADIR%%/ml/alpha/ya.ogg %%DATADIR%%/ml/alpha/zha.ogg %%DATADIR%%/ml/sounds.xml %%DATADIR%%/ml/syllab/baa.ogg %%DATADIR%%/ml/syllab/baha.ogg %%DATADIR%%/ml/syllab/bai.ogg %%DATADIR%%/ml/syllab/bam.ogg %%DATADIR%%/ml/syllab/bau.ogg %%DATADIR%%/ml/syllab/be.ogg %%DATADIR%%/ml/syllab/beae.ogg %%DATADIR%%/ml/syllab/bhaa.ogg %%DATADIR%%/ml/syllab/bhaha.ogg %%DATADIR%%/ml/syllab/bhai.ogg %%DATADIR%%/ml/syllab/bham.ogg %%DATADIR%%/ml/syllab/bhau.ogg %%DATADIR%%/ml/syllab/bhe.ogg %%DATADIR%%/ml/syllab/bheae.ogg %%DATADIR%%/ml/syllab/bhi.ogg %%DATADIR%%/ml/syllab/bhii.ogg %%DATADIR%%/ml/syllab/bho.ogg %%DATADIR%%/ml/syllab/bhoo.ogg %%DATADIR%%/ml/syllab/bhu.ogg %%DATADIR%%/ml/syllab/bhuu.ogg %%DATADIR%%/ml/syllab/bi.ogg %%DATADIR%%/ml/syllab/bii.ogg %%DATADIR%%/ml/syllab/bo.ogg %%DATADIR%%/ml/syllab/boo.ogg %%DATADIR%%/ml/syllab/bu.ogg %%DATADIR%%/ml/syllab/buu.ogg %%DATADIR%%/ml/syllab/cchaa.ogg %%DATADIR%%/ml/syllab/cchae.ogg %%DATADIR%%/ml/syllab/cchaha.ogg %%DATADIR%%/ml/syllab/cchai.ogg %%DATADIR%%/ml/syllab/ccham.ogg %%DATADIR%%/ml/syllab/cchau.ogg %%DATADIR%%/ml/syllab/cche.ogg %%DATADIR%%/ml/syllab/cchee.ogg %%DATADIR%%/ml/syllab/cchi.ogg %%DATADIR%%/ml/syllab/ccho.ogg %%DATADIR%%/ml/syllab/cchoo.ogg %%DATADIR%%/ml/syllab/cchooo.ogg %%DATADIR%%/ml/syllab/cchu.ogg %%DATADIR%%/ml/syllab/chaa.ogg %%DATADIR%%/ml/syllab/chae.ogg %%DATADIR%%/ml/syllab/chaha.ogg %%DATADIR%%/ml/syllab/chai.ogg %%DATADIR%%/ml/syllab/cham.ogg %%DATADIR%%/ml/syllab/chau.ogg %%DATADIR%%/ml/syllab/che.ogg %%DATADIR%%/ml/syllab/chee.ogg %%DATADIR%%/ml/syllab/chi.ogg %%DATADIR%%/ml/syllab/cho.ogg %%DATADIR%%/ml/syllab/choo.ogg %%DATADIR%%/ml/syllab/chu.ogg %%DATADIR%%/ml/syllab/chuu.ogg %%DATADIR%%/ml/syllab/daa.ogg %%DATADIR%%/ml/syllab/daha.ogg %%DATADIR%%/ml/syllab/dai.ogg %%DATADIR%%/ml/syllab/dam.ogg %%DATADIR%%/ml/syllab/dau.ogg %%DATADIR%%/ml/syllab/ddaa.ogg %%DATADIR%%/ml/syllab/ddaha.ogg %%DATADIR%%/ml/syllab/ddai.ogg %%DATADIR%%/ml/syllab/ddam.ogg %%DATADIR%%/ml/syllab/ddau.ogg %%DATADIR%%/ml/syllab/dde.ogg %%DATADIR%%/ml/syllab/ddeae.ogg %%DATADIR%%/ml/syllab/ddi.ogg %%DATADIR%%/ml/syllab/ddii.ogg %%DATADIR%%/ml/syllab/ddo.ogg %%DATADIR%%/ml/syllab/ddoo.ogg %%DATADIR%%/ml/syllab/ddu.ogg %%DATADIR%%/ml/syllab/dduu.ogg %%DATADIR%%/ml/syllab/de.ogg %%DATADIR%%/ml/syllab/deae.ogg %%DATADIR%%/ml/syllab/dhaa.ogg %%DATADIR%%/ml/syllab/dhaha.ogg %%DATADIR%%/ml/syllab/dhai.ogg %%DATADIR%%/ml/syllab/dham.ogg %%DATADIR%%/ml/syllab/dhau.ogg %%DATADIR%%/ml/syllab/dhe.ogg %%DATADIR%%/ml/syllab/dheae.ogg %%DATADIR%%/ml/syllab/dhhaa.ogg %%DATADIR%%/ml/syllab/dhhaha.ogg %%DATADIR%%/ml/syllab/dhhai.ogg %%DATADIR%%/ml/syllab/dhham.ogg %%DATADIR%%/ml/syllab/dhhau.ogg %%DATADIR%%/ml/syllab/dhhe.ogg %%DATADIR%%/ml/syllab/dhheae.ogg %%DATADIR%%/ml/syllab/dhhi.ogg %%DATADIR%%/ml/syllab/dhhii.ogg %%DATADIR%%/ml/syllab/dhho.ogg %%DATADIR%%/ml/syllab/dhhoo.ogg %%DATADIR%%/ml/syllab/dhhu.ogg %%DATADIR%%/ml/syllab/dhhuu.ogg %%DATADIR%%/ml/syllab/dhi.ogg %%DATADIR%%/ml/syllab/dhii.ogg %%DATADIR%%/ml/syllab/dho.ogg %%DATADIR%%/ml/syllab/dhoo.ogg %%DATADIR%%/ml/syllab/dhu.ogg %%DATADIR%%/ml/syllab/dhuu.ogg %%DATADIR%%/ml/syllab/di.ogg %%DATADIR%%/ml/syllab/dii.ogg %%DATADIR%%/ml/syllab/do.ogg %%DATADIR%%/ml/syllab/doo.ogg %%DATADIR%%/ml/syllab/du.ogg %%DATADIR%%/ml/syllab/duu.ogg %%DATADIR%%/ml/syllab/faa.ogg %%DATADIR%%/ml/syllab/faha.ogg %%DATADIR%%/ml/syllab/fai.ogg %%DATADIR%%/ml/syllab/fam.ogg %%DATADIR%%/ml/syllab/fau.ogg %%DATADIR%%/ml/syllab/fe.ogg %%DATADIR%%/ml/syllab/feae.ogg %%DATADIR%%/ml/syllab/fi.ogg %%DATADIR%%/ml/syllab/fii.ogg %%DATADIR%%/ml/syllab/fo.ogg %%DATADIR%%/ml/syllab/foo.ogg %%DATADIR%%/ml/syllab/fu.ogg %%DATADIR%%/ml/syllab/fuu.ogg %%DATADIR%%/ml/syllab/gaa.ogg %%DATADIR%%/ml/syllab/gae.ogg %%DATADIR%%/ml/syllab/gah.ogg %%DATADIR%%/ml/syllab/gam.ogg %%DATADIR%%/ml/syllab/ge.ogg %%DATADIR%%/ml/syllab/gee.ogg %%DATADIR%%/ml/syllab/ghaa.ogg %%DATADIR%%/ml/syllab/ghae.ogg %%DATADIR%%/ml/syllab/ghaha.ogg %%DATADIR%%/ml/syllab/ghai.ogg %%DATADIR%%/ml/syllab/gham.ogg %%DATADIR%%/ml/syllab/ghau.ogg %%DATADIR%%/ml/syllab/ghe.ogg %%DATADIR%%/ml/syllab/ghee.ogg %%DATADIR%%/ml/syllab/ghi.ogg %%DATADIR%%/ml/syllab/gho.ogg %%DATADIR%%/ml/syllab/ghoo.ogg %%DATADIR%%/ml/syllab/ghoooo.ogg %%DATADIR%%/ml/syllab/ghu.ogg %%DATADIR%%/ml/syllab/gi.ogg %%DATADIR%%/ml/syllab/go.ogg %%DATADIR%%/ml/syllab/goo.ogg %%DATADIR%%/ml/syllab/gooo.ogg %%DATADIR%%/ml/syllab/gou.ogg %%DATADIR%%/ml/syllab/gu.ogg %%DATADIR%%/ml/syllab/haa.ogg %%DATADIR%%/ml/syllab/haha.ogg %%DATADIR%%/ml/syllab/hai.ogg %%DATADIR%%/ml/syllab/ham.ogg %%DATADIR%%/ml/syllab/hau.ogg %%DATADIR%%/ml/syllab/he.ogg %%DATADIR%%/ml/syllab/heae.ogg %%DATADIR%%/ml/syllab/hi.ogg %%DATADIR%%/ml/syllab/hii.ogg %%DATADIR%%/ml/syllab/ho.ogg %%DATADIR%%/ml/syllab/hoo.ogg %%DATADIR%%/ml/syllab/hu.ogg %%DATADIR%%/ml/syllab/huu.ogg %%DATADIR%%/ml/syllab/jaa.ogg %%DATADIR%%/ml/syllab/jaha.ogg %%DATADIR%%/ml/syllab/jai.ogg %%DATADIR%%/ml/syllab/jam.ogg %%DATADIR%%/ml/syllab/jau.ogg %%DATADIR%%/ml/syllab/je.ogg %%DATADIR%%/ml/syllab/jeae.ogg %%DATADIR%%/ml/syllab/jee.ogg %%DATADIR%%/ml/syllab/jha.ogg %%DATADIR%%/ml/syllab/jhaa.ogg %%DATADIR%%/ml/syllab/jhaha.ogg %%DATADIR%%/ml/syllab/jhai.ogg %%DATADIR%%/ml/syllab/jham.ogg %%DATADIR%%/ml/syllab/jhau.ogg %%DATADIR%%/ml/syllab/jhe.ogg %%DATADIR%%/ml/syllab/jheae.ogg %%DATADIR%%/ml/syllab/jhee.ogg %%DATADIR%%/ml/syllab/jho.ogg %%DATADIR%%/ml/syllab/jhoo.ogg %%DATADIR%%/ml/syllab/jhu.ogg %%DATADIR%%/ml/syllab/jhuu.ogg %%DATADIR%%/ml/syllab/ji.ogg %%DATADIR%%/ml/syllab/jo.ogg %%DATADIR%%/ml/syllab/joo.ogg %%DATADIR%%/ml/syllab/ju.ogg %%DATADIR%%/ml/syllab/juu.ogg %%DATADIR%%/ml/syllab/k.ogg %%DATADIR%%/ml/syllab/kaa.ogg %%DATADIR%%/ml/syllab/kae.ogg %%DATADIR%%/ml/syllab/kah.ogg %%DATADIR%%/ml/syllab/kai.ogg %%DATADIR%%/ml/syllab/kam.ogg %%DATADIR%%/ml/syllab/kau.ogg %%DATADIR%%/ml/syllab/kee.ogg %%DATADIR%%/ml/syllab/kha.ogg %%DATADIR%%/ml/syllab/khae.ogg %%DATADIR%%/ml/syllab/khaha.ogg %%DATADIR%%/ml/syllab/khai.ogg %%DATADIR%%/ml/syllab/kham.ogg %%DATADIR%%/ml/syllab/khe.ogg %%DATADIR%%/ml/syllab/khi.ogg %%DATADIR%%/ml/syllab/khii.ogg %%DATADIR%%/ml/syllab/kho.ogg %%DATADIR%%/ml/syllab/khoo.ogg %%DATADIR%%/ml/syllab/khou.ogg %%DATADIR%%/ml/syllab/khu.ogg %%DATADIR%%/ml/syllab/khuu.ogg %%DATADIR%%/ml/syllab/ki.ogg %%DATADIR%%/ml/syllab/ko.ogg %%DATADIR%%/ml/syllab/koo.ogg %%DATADIR%%/ml/syllab/ku.ogg %%DATADIR%%/ml/syllab/kuu.ogg %%DATADIR%%/ml/syllab/laa.ogg %%DATADIR%%/ml/syllab/laha.ogg %%DATADIR%%/ml/syllab/lai.ogg %%DATADIR%%/ml/syllab/lam.ogg %%DATADIR%%/ml/syllab/lau.ogg %%DATADIR%%/ml/syllab/le.ogg %%DATADIR%%/ml/syllab/leae.ogg %%DATADIR%%/ml/syllab/li.ogg %%DATADIR%%/ml/syllab/lii.ogg %%DATADIR%%/ml/syllab/llaa.ogg %%DATADIR%%/ml/syllab/llaha.ogg %%DATADIR%%/ml/syllab/llai.ogg %%DATADIR%%/ml/syllab/llam.ogg %%DATADIR%%/ml/syllab/llau.ogg %%DATADIR%%/ml/syllab/lle.ogg %%DATADIR%%/ml/syllab/lleae.ogg %%DATADIR%%/ml/syllab/llo.ogg %%DATADIR%%/ml/syllab/lloo.ogg %%DATADIR%%/ml/syllab/llu.ogg %%DATADIR%%/ml/syllab/lluu.ogg %%DATADIR%%/ml/syllab/lo.ogg %%DATADIR%%/ml/syllab/loo.ogg %%DATADIR%%/ml/syllab/lu.ogg %%DATADIR%%/ml/syllab/luu.ogg %%DATADIR%%/ml/syllab/maa.ogg %%DATADIR%%/ml/syllab/maha.ogg %%DATADIR%%/ml/syllab/mai.ogg %%DATADIR%%/ml/syllab/mam.ogg %%DATADIR%%/ml/syllab/mau.ogg %%DATADIR%%/ml/syllab/me.ogg %%DATADIR%%/ml/syllab/meae.ogg %%DATADIR%%/ml/syllab/mi.ogg %%DATADIR%%/ml/syllab/mii.ogg %%DATADIR%%/ml/syllab/mo.ogg %%DATADIR%%/ml/syllab/moo.ogg %%DATADIR%%/ml/syllab/mu.ogg %%DATADIR%%/ml/syllab/muu.ogg %%DATADIR%%/ml/syllab/naa.ogg %%DATADIR%%/ml/syllab/naha.ogg %%DATADIR%%/ml/syllab/nai.ogg %%DATADIR%%/ml/syllab/nam.ogg %%DATADIR%%/ml/syllab/nau.ogg %%DATADIR%%/ml/syllab/ne.ogg %%DATADIR%%/ml/syllab/neae.ogg %%DATADIR%%/ml/syllab/ngaa.ogg %%DATADIR%%/ml/syllab/ngae.ogg %%DATADIR%%/ml/syllab/ngaha.ogg %%DATADIR%%/ml/syllab/ngai.ogg %%DATADIR%%/ml/syllab/ngam.ogg %%DATADIR%%/ml/syllab/ngau.ogg %%DATADIR%%/ml/syllab/nge.ogg %%DATADIR%%/ml/syllab/ngi.ogg %%DATADIR%%/ml/syllab/ngii.ogg %%DATADIR%%/ml/syllab/ngo.ogg %%DATADIR%%/ml/syllab/ngoo.ogg %%DATADIR%%/ml/syllab/ngu.ogg %%DATADIR%%/ml/syllab/nguu.ogg %%DATADIR%%/ml/syllab/nhaa.ogg %%DATADIR%%/ml/syllab/nhaha.ogg %%DATADIR%%/ml/syllab/nhai.ogg %%DATADIR%%/ml/syllab/nham.ogg %%DATADIR%%/ml/syllab/nhau.ogg %%DATADIR%%/ml/syllab/nhe.ogg %%DATADIR%%/ml/syllab/nheae.ogg %%DATADIR%%/ml/syllab/nhi.ogg %%DATADIR%%/ml/syllab/nhii.ogg %%DATADIR%%/ml/syllab/nho.ogg %%DATADIR%%/ml/syllab/nhoo.ogg %%DATADIR%%/ml/syllab/nhu.ogg %%DATADIR%%/ml/syllab/nhuu.ogg %%DATADIR%%/ml/syllab/ni.ogg %%DATADIR%%/ml/syllab/nii.ogg %%DATADIR%%/ml/syllab/njaa.ogg %%DATADIR%%/ml/syllab/njaha.ogg %%DATADIR%%/ml/syllab/njai.ogg %%DATADIR%%/ml/syllab/njam.ogg %%DATADIR%%/ml/syllab/njau.ogg %%DATADIR%%/ml/syllab/nje.ogg %%DATADIR%%/ml/syllab/njeae.ogg %%DATADIR%%/ml/syllab/nji.ogg %%DATADIR%%/ml/syllab/njii.ogg %%DATADIR%%/ml/syllab/njo.ogg %%DATADIR%%/ml/syllab/njoo.ogg %%DATADIR%%/ml/syllab/nju.ogg %%DATADIR%%/ml/syllab/njuu.ogg %%DATADIR%%/ml/syllab/no.ogg %%DATADIR%%/ml/syllab/noo.ogg %%DATADIR%%/ml/syllab/nu.ogg %%DATADIR%%/ml/syllab/nuu.ogg %%DATADIR%%/ml/syllab/paa.ogg %%DATADIR%%/ml/syllab/paha.ogg %%DATADIR%%/ml/syllab/pai.ogg %%DATADIR%%/ml/syllab/pam.ogg %%DATADIR%%/ml/syllab/pau.ogg %%DATADIR%%/ml/syllab/pe.ogg %%DATADIR%%/ml/syllab/peae.ogg %%DATADIR%%/ml/syllab/pi.ogg %%DATADIR%%/ml/syllab/pii.ogg %%DATADIR%%/ml/syllab/po.ogg %%DATADIR%%/ml/syllab/poo.ogg %%DATADIR%%/ml/syllab/pu.ogg %%DATADIR%%/ml/syllab/puu.ogg %%DATADIR%%/ml/syllab/raa.ogg %%DATADIR%%/ml/syllab/raha.ogg %%DATADIR%%/ml/syllab/rai.ogg %%DATADIR%%/ml/syllab/ram.ogg %%DATADIR%%/ml/syllab/rau.ogg %%DATADIR%%/ml/syllab/re.ogg %%DATADIR%%/ml/syllab/reae.ogg %%DATADIR%%/ml/syllab/ri.ogg %%DATADIR%%/ml/syllab/rii.ogg %%DATADIR%%/ml/syllab/ro.ogg %%DATADIR%%/ml/syllab/roo.ogg %%DATADIR%%/ml/syllab/rraa.ogg %%DATADIR%%/ml/syllab/rraha.ogg %%DATADIR%%/ml/syllab/rrai.ogg %%DATADIR%%/ml/syllab/rram.ogg %%DATADIR%%/ml/syllab/rrau.ogg %%DATADIR%%/ml/syllab/rre.ogg %%DATADIR%%/ml/syllab/rreae.ogg %%DATADIR%%/ml/syllab/rri.ogg %%DATADIR%%/ml/syllab/rrii.ogg %%DATADIR%%/ml/syllab/rro.ogg %%DATADIR%%/ml/syllab/rroo.ogg %%DATADIR%%/ml/syllab/rru.ogg %%DATADIR%%/ml/syllab/rruu.ogg %%DATADIR%%/ml/syllab/ru.ogg %%DATADIR%%/ml/syllab/ruu.ogg %%DATADIR%%/ml/syllab/saa.ogg %%DATADIR%%/ml/syllab/saha.ogg %%DATADIR%%/ml/syllab/sai.ogg %%DATADIR%%/ml/syllab/sam.ogg %%DATADIR%%/ml/syllab/sau.ogg %%DATADIR%%/ml/syllab/se.ogg %%DATADIR%%/ml/syllab/seae.ogg %%DATADIR%%/ml/syllab/shaa.ogg %%DATADIR%%/ml/syllab/shaha.ogg %%DATADIR%%/ml/syllab/shai.ogg %%DATADIR%%/ml/syllab/sham.ogg %%DATADIR%%/ml/syllab/shau.ogg %%DATADIR%%/ml/syllab/she.ogg %%DATADIR%%/ml/syllab/sheae.ogg %%DATADIR%%/ml/syllab/shi.ogg %%DATADIR%%/ml/syllab/shii.ogg %%DATADIR%%/ml/syllab/sho.ogg %%DATADIR%%/ml/syllab/shoo.ogg %%DATADIR%%/ml/syllab/shshaa.ogg %%DATADIR%%/ml/syllab/shshaha.ogg %%DATADIR%%/ml/syllab/shshai.ogg %%DATADIR%%/ml/syllab/shsham.ogg %%DATADIR%%/ml/syllab/shshau.ogg %%DATADIR%%/ml/syllab/shshe.ogg %%DATADIR%%/ml/syllab/shsheae.ogg %%DATADIR%%/ml/syllab/shshi.ogg %%DATADIR%%/ml/syllab/shshii.ogg %%DATADIR%%/ml/syllab/shsho.ogg %%DATADIR%%/ml/syllab/shshoo.ogg %%DATADIR%%/ml/syllab/shshu.ogg %%DATADIR%%/ml/syllab/shshuu.ogg %%DATADIR%%/ml/syllab/shu.ogg %%DATADIR%%/ml/syllab/shuu.ogg %%DATADIR%%/ml/syllab/si.ogg %%DATADIR%%/ml/syllab/sii.ogg %%DATADIR%%/ml/syllab/so.ogg %%DATADIR%%/ml/syllab/soo.ogg %%DATADIR%%/ml/syllab/su.ogg %%DATADIR%%/ml/syllab/suu.ogg %%DATADIR%%/ml/syllab/taa.ogg %%DATADIR%%/ml/syllab/taha.ogg %%DATADIR%%/ml/syllab/tai.ogg %%DATADIR%%/ml/syllab/tam.ogg %%DATADIR%%/ml/syllab/tau.ogg %%DATADIR%%/ml/syllab/te.ogg %%DATADIR%%/ml/syllab/tee.ogg %%DATADIR%%/ml/syllab/thaa.ogg %%DATADIR%%/ml/syllab/thaha.ogg %%DATADIR%%/ml/syllab/thai.ogg %%DATADIR%%/ml/syllab/tham.ogg %%DATADIR%%/ml/syllab/thau.ogg %%DATADIR%%/ml/syllab/the.ogg %%DATADIR%%/ml/syllab/theae.ogg %%DATADIR%%/ml/syllab/thi.ogg %%DATADIR%%/ml/syllab/thii.ogg %%DATADIR%%/ml/syllab/tho.ogg %%DATADIR%%/ml/syllab/thoo.ogg %%DATADIR%%/ml/syllab/thu.ogg %%DATADIR%%/ml/syllab/thuu.ogg %%DATADIR%%/ml/syllab/ti.ogg %%DATADIR%%/ml/syllab/tii.ogg %%DATADIR%%/ml/syllab/to.ogg %%DATADIR%%/ml/syllab/too.ogg %%DATADIR%%/ml/syllab/ttaa.ogg %%DATADIR%%/ml/syllab/ttaha.ogg %%DATADIR%%/ml/syllab/ttai.ogg %%DATADIR%%/ml/syllab/ttam.ogg %%DATADIR%%/ml/syllab/ttau.ogg %%DATADIR%%/ml/syllab/tte.ogg %%DATADIR%%/ml/syllab/tteae.ogg %%DATADIR%%/ml/syllab/tthaa.ogg %%DATADIR%%/ml/syllab/tthaha.ogg %%DATADIR%%/ml/syllab/tthai.ogg %%DATADIR%%/ml/syllab/ttham.ogg %%DATADIR%%/ml/syllab/tthau.ogg %%DATADIR%%/ml/syllab/tthe.ogg %%DATADIR%%/ml/syllab/ttheae.ogg %%DATADIR%%/ml/syllab/tthi.ogg %%DATADIR%%/ml/syllab/tthii.ogg %%DATADIR%%/ml/syllab/ttho.ogg %%DATADIR%%/ml/syllab/tthoo.ogg %%DATADIR%%/ml/syllab/tthu.ogg %%DATADIR%%/ml/syllab/tthuu.ogg %%DATADIR%%/ml/syllab/tti.ogg %%DATADIR%%/ml/syllab/ttii.ogg %%DATADIR%%/ml/syllab/tto.ogg %%DATADIR%%/ml/syllab/ttoo.ogg %%DATADIR%%/ml/syllab/ttu.ogg %%DATADIR%%/ml/syllab/ttuu.ogg %%DATADIR%%/ml/syllab/tu.ogg %%DATADIR%%/ml/syllab/tuu.ogg %%DATADIR%%/ml/syllab/vaa.ogg %%DATADIR%%/ml/syllab/vaha.ogg %%DATADIR%%/ml/syllab/vai.ogg %%DATADIR%%/ml/syllab/vam.ogg %%DATADIR%%/ml/syllab/vau.ogg %%DATADIR%%/ml/syllab/ve.ogg %%DATADIR%%/ml/syllab/veae.ogg %%DATADIR%%/ml/syllab/vi.ogg %%DATADIR%%/ml/syllab/vii.ogg %%DATADIR%%/ml/syllab/vo.ogg %%DATADIR%%/ml/syllab/voo.ogg %%DATADIR%%/ml/syllab/vu.ogg %%DATADIR%%/ml/syllab/vuu.ogg %%DATADIR%%/ml/syllab/yaa.ogg %%DATADIR%%/ml/syllab/yaha.ogg %%DATADIR%%/ml/syllab/yai.ogg %%DATADIR%%/ml/syllab/yam.ogg %%DATADIR%%/ml/syllab/yau.ogg %%DATADIR%%/ml/syllab/ye.ogg %%DATADIR%%/ml/syllab/yeae.ogg %%DATADIR%%/ml/syllab/yi.ogg %%DATADIR%%/ml/syllab/yii.ogg %%DATADIR%%/ml/syllab/yo.ogg %%DATADIR%%/ml/syllab/yoo.ogg %%DATADIR%%/ml/syllab/yu.ogg %%DATADIR%%/ml/syllab/yuu.ogg %%DATADIR%%/ml/syllab/zhaa.ogg %%DATADIR%%/ml/syllab/zhaha.ogg %%DATADIR%%/ml/syllab/zhai.ogg %%DATADIR%%/ml/syllab/zham.ogg %%DATADIR%%/ml/syllab/zhau.ogg %%DATADIR%%/ml/syllab/zhe.ogg %%DATADIR%%/ml/syllab/zheae.ogg %%DATADIR%%/ml/syllab/zhi.ogg %%DATADIR%%/ml/syllab/zhii.ogg %%DATADIR%%/ml/syllab/zho.ogg %%DATADIR%%/ml/syllab/zhoo.ogg %%DATADIR%%/ml/syllab/zhu.ogg %%DATADIR%%/ml/syllab/zhuu.ogg -%%DATADIR%%/nb/alpha/U00E5.ogg -%%DATADIR%%/nb/alpha/U00E6.ogg -%%DATADIR%%/nb/alpha/U00F8.ogg -%%DATADIR%%/nb/alpha/U006A.ogg -%%DATADIR%%/nb/alpha/U006B.ogg -%%DATADIR%%/nb/alpha/U006C.ogg -%%DATADIR%%/nb/alpha/U006D.ogg -%%DATADIR%%/nb/alpha/U006E.ogg -%%DATADIR%%/nb/alpha/U006F.ogg -%%DATADIR%%/nb/alpha/U007A.ogg %%DATADIR%%/nb/alpha/U0061.ogg %%DATADIR%%/nb/alpha/U0062.ogg %%DATADIR%%/nb/alpha/U0063.ogg %%DATADIR%%/nb/alpha/U0064.ogg %%DATADIR%%/nb/alpha/U0065.ogg %%DATADIR%%/nb/alpha/U0066.ogg %%DATADIR%%/nb/alpha/U0067.ogg %%DATADIR%%/nb/alpha/U0068.ogg %%DATADIR%%/nb/alpha/U0069.ogg +%%DATADIR%%/nb/alpha/U006A.ogg +%%DATADIR%%/nb/alpha/U006B.ogg +%%DATADIR%%/nb/alpha/U006C.ogg +%%DATADIR%%/nb/alpha/U006D.ogg +%%DATADIR%%/nb/alpha/U006E.ogg +%%DATADIR%%/nb/alpha/U006F.ogg %%DATADIR%%/nb/alpha/U0070.ogg %%DATADIR%%/nb/alpha/U0071.ogg %%DATADIR%%/nb/alpha/U0072.ogg %%DATADIR%%/nb/alpha/U0073.ogg %%DATADIR%%/nb/alpha/U0074.ogg %%DATADIR%%/nb/alpha/U0075.ogg %%DATADIR%%/nb/alpha/U0076.ogg %%DATADIR%%/nb/alpha/U0077.ogg %%DATADIR%%/nb/alpha/U0078.ogg %%DATADIR%%/nb/alpha/U0079.ogg +%%DATADIR%%/nb/alpha/U007A.ogg +%%DATADIR%%/nb/alpha/U00E5.ogg +%%DATADIR%%/nb/alpha/U00E6.ogg +%%DATADIR%%/nb/alpha/U00F8.ogg %%DATADIR%%/nb/sounds.xml %%DATADIR%%/nds.txt %%DATADIR%%/nds/alpha/a.ogg %%DATADIR%%/nds/alpha/ae.ogg %%DATADIR%%/nds/alpha/b.ogg %%DATADIR%%/nds/alpha/c.ogg %%DATADIR%%/nds/alpha/d.ogg %%DATADIR%%/nds/alpha/e.ogg %%DATADIR%%/nds/alpha/f.ogg %%DATADIR%%/nds/alpha/g.ogg %%DATADIR%%/nds/alpha/h.ogg %%DATADIR%%/nds/alpha/i.ogg %%DATADIR%%/nds/alpha/j.ogg %%DATADIR%%/nds/alpha/k.ogg %%DATADIR%%/nds/alpha/l.ogg %%DATADIR%%/nds/alpha/m.ogg %%DATADIR%%/nds/alpha/n.ogg %%DATADIR%%/nds/alpha/o.ogg %%DATADIR%%/nds/alpha/oe.ogg %%DATADIR%%/nds/alpha/p.ogg %%DATADIR%%/nds/alpha/q.ogg %%DATADIR%%/nds/alpha/r.ogg %%DATADIR%%/nds/alpha/s.ogg %%DATADIR%%/nds/alpha/sz.ogg %%DATADIR%%/nds/alpha/t.ogg %%DATADIR%%/nds/alpha/u.ogg %%DATADIR%%/nds/alpha/ue.ogg %%DATADIR%%/nds/alpha/v.ogg %%DATADIR%%/nds/alpha/w.ogg %%DATADIR%%/nds/alpha/x.ogg %%DATADIR%%/nds/alpha/y.ogg %%DATADIR%%/nds/alpha/z.ogg %%DATADIR%%/nds/sounds.xml %%DATADIR%%/nds/syllab/aal.ogg %%DATADIR%%/nds/syllab/aennern.ogg %%DATADIR%%/nds/syllab/aeten.ogg %%DATADIR%%/nds/syllab/al.ogg %%DATADIR%%/nds/syllab/all.ogg %%DATADIR%%/nds/syllab/baeaer.ogg %%DATADIR%%/nds/syllab/boom.ogg %%DATADIR%%/nds/syllab/cent.ogg %%DATADIR%%/nds/syllab/deert.ogg %%DATADIR%%/nds/syllab/eer.ogg %%DATADIR%%/nds/syllab/ehr.ogg %%DATADIR%%/nds/syllab/en.ogg %%DATADIR%%/nds/syllab/faehr.ogg %%DATADIR%%/nds/syllab/fix.ogg %%DATADIR%%/nds/syllab/greeksch.ogg %%DATADIR%%/nds/syllab/huus.ogg %%DATADIR%%/nds/syllab/ies.ogg %%DATADIR%%/nds/syllab/ik.ogg %%DATADIR%%/nds/syllab/imm.ogg %%DATADIR%%/nds/syllab/juest.ogg %%DATADIR%%/nds/syllab/keerl.ogg %%DATADIR%%/nds/syllab/leef.ogg %%DATADIR%%/nds/syllab/muur.ogg %%DATADIR%%/nds/syllab/naam.ogg %%DATADIR%%/nds/syllab/och.ogg %%DATADIR%%/nds/syllab/oeko.ogg %%DATADIR%%/nds/syllab/oeller.ogg %%DATADIR%%/nds/syllab/oeoel.ogg %%DATADIR%%/nds/syllab/oll.ogg %%DATADIR%%/nds/syllab/oolt.ogg %%DATADIR%%/nds/syllab/pann.ogg %%DATADIR%%/nds/syllab/queern.ogg %%DATADIR%%/nds/syllab/reeg.ogg %%DATADIR%%/nds/syllab/sachts.ogg %%DATADIR%%/nds/syllab/schiet.ogg %%DATADIR%%/nds/syllab/spaasz.ogg %%DATADIR%%/nds/syllab/stunn.ogg %%DATADIR%%/nds/syllab/taach.ogg %%DATADIR%%/nds/syllab/typ.ogg %%DATADIR%%/nds/syllab/uem.ogg %%DATADIR%%/nds/syllab/uenner.ogg %%DATADIR%%/nds/syllab/ueuetz.ogg %%DATADIR%%/nds/syllab/ut.ogg %%DATADIR%%/nds/syllab/uul.ogg %%DATADIR%%/nds/syllab/veegtoorsch.ogg %%DATADIR%%/nds/syllab/veel.ogg %%DATADIR%%/nds/syllab/waag.ogg %%DATADIR%%/nds/syllab/zeeg.ogg %%DATADIR%%/nl/alpha/a-0.ogg %%DATADIR%%/nl/alpha/a-1.ogg -%%DATADIR%%/nl/alpha/a-2.ogg -%%DATADIR%%/nl/alpha/a-3.ogg -%%DATADIR%%/nl/alpha/a-4.ogg -%%DATADIR%%/nl/alpha/a-5.ogg -%%DATADIR%%/nl/alpha/a-6.ogg -%%DATADIR%%/nl/alpha/a-7.ogg -%%DATADIR%%/nl/alpha/a-8.ogg -%%DATADIR%%/nl/alpha/a-9.ogg %%DATADIR%%/nl/alpha/a-10.ogg %%DATADIR%%/nl/alpha/a-11.ogg %%DATADIR%%/nl/alpha/a-12.ogg %%DATADIR%%/nl/alpha/a-13.ogg %%DATADIR%%/nl/alpha/a-14.ogg %%DATADIR%%/nl/alpha/a-15.ogg %%DATADIR%%/nl/alpha/a-16.ogg %%DATADIR%%/nl/alpha/a-17.ogg %%DATADIR%%/nl/alpha/a-18.ogg %%DATADIR%%/nl/alpha/a-19.ogg +%%DATADIR%%/nl/alpha/a-2.ogg %%DATADIR%%/nl/alpha/a-20.ogg %%DATADIR%%/nl/alpha/a-21.ogg +%%DATADIR%%/nl/alpha/a-3.ogg +%%DATADIR%%/nl/alpha/a-4.ogg +%%DATADIR%%/nl/alpha/a-5.ogg +%%DATADIR%%/nl/alpha/a-6.ogg +%%DATADIR%%/nl/alpha/a-7.ogg +%%DATADIR%%/nl/alpha/a-8.ogg +%%DATADIR%%/nl/alpha/a-9.ogg %%DATADIR%%/nl/sounds.xml %%DATADIR%%/nl/syllab/ad-0.ogg %%DATADIR%%/nl/syllab/ad-1.ogg -%%DATADIR%%/nl/syllab/ad-2.ogg -%%DATADIR%%/nl/syllab/ad-3.ogg -%%DATADIR%%/nl/syllab/ad-4.ogg -%%DATADIR%%/nl/syllab/ad-5.ogg -%%DATADIR%%/nl/syllab/ad-6.ogg -%%DATADIR%%/nl/syllab/ad-7.ogg -%%DATADIR%%/nl/syllab/ad-8.ogg -%%DATADIR%%/nl/syllab/ad-9.ogg %%DATADIR%%/nl/syllab/ad-10.ogg %%DATADIR%%/nl/syllab/ad-11.ogg %%DATADIR%%/nl/syllab/ad-12.ogg %%DATADIR%%/nl/syllab/ad-13.ogg %%DATADIR%%/nl/syllab/ad-14.ogg %%DATADIR%%/nl/syllab/ad-15.ogg %%DATADIR%%/nl/syllab/ad-16.ogg %%DATADIR%%/nl/syllab/ad-17.ogg %%DATADIR%%/nl/syllab/ad-18.ogg %%DATADIR%%/nl/syllab/ad-19.ogg +%%DATADIR%%/nl/syllab/ad-2.ogg %%DATADIR%%/nl/syllab/ad-20.ogg %%DATADIR%%/nl/syllab/ad-21.ogg %%DATADIR%%/nl/syllab/ad-22.ogg %%DATADIR%%/nl/syllab/ad-23.ogg %%DATADIR%%/nl/syllab/ad-24.ogg %%DATADIR%%/nl/syllab/ad-25.ogg +%%DATADIR%%/nl/syllab/ad-3.ogg +%%DATADIR%%/nl/syllab/ad-4.ogg +%%DATADIR%%/nl/syllab/ad-5.ogg +%%DATADIR%%/nl/syllab/ad-6.ogg +%%DATADIR%%/nl/syllab/ad-7.ogg +%%DATADIR%%/nl/syllab/ad-8.ogg +%%DATADIR%%/nl/syllab/ad-9.ogg +%%DATADIR%%/nn/alpha/U0061.opus +%%DATADIR%%/nn/alpha/U0062.opus +%%DATADIR%%/nn/alpha/U0063.opus +%%DATADIR%%/nn/alpha/U0064.opus +%%DATADIR%%/nn/alpha/U0065.opus +%%DATADIR%%/nn/alpha/U0066.opus +%%DATADIR%%/nn/alpha/U0067.opus +%%DATADIR%%/nn/alpha/U0068.opus +%%DATADIR%%/nn/alpha/U0069.opus +%%DATADIR%%/nn/alpha/U006A.opus +%%DATADIR%%/nn/alpha/U006B.opus +%%DATADIR%%/nn/alpha/U006C.opus +%%DATADIR%%/nn/alpha/U006D.opus +%%DATADIR%%/nn/alpha/U006E.opus +%%DATADIR%%/nn/alpha/U006F.opus +%%DATADIR%%/nn/alpha/U0070.opus +%%DATADIR%%/nn/alpha/U0071.opus +%%DATADIR%%/nn/alpha/U0072.opus +%%DATADIR%%/nn/alpha/U0073.opus +%%DATADIR%%/nn/alpha/U0074.opus +%%DATADIR%%/nn/alpha/U0075.opus +%%DATADIR%%/nn/alpha/U0076.opus +%%DATADIR%%/nn/alpha/U0077.opus +%%DATADIR%%/nn/alpha/U0078.opus +%%DATADIR%%/nn/alpha/U0079.opus +%%DATADIR%%/nn/alpha/U007A.opus +%%DATADIR%%/nn/alpha/U00E5.opus +%%DATADIR%%/nn/alpha/U00E6.opus +%%DATADIR%%/nn/alpha/U00F8.opus +%%DATADIR%%/nn/sounds.xml %%DATADIR%%/pics/aqua/klettres_aqua.svg %%DATADIR%%/pics/desert/klettres_desert.svg %%DATADIR%%/pics/kids/klettres_kids.svg %%DATADIR%%/pics/klettres_desert.png %%DATADIR%%/pics/klettres_grownup.png %%DATADIR%%/pics/klettres_kids.jpeg %%DATADIR%%/pics/savannah/klettres_savannah.svg %%DATADIR%%/pt_BR/alpha/a.ogg %%DATADIR%%/pt_BR/alpha/b.ogg %%DATADIR%%/pt_BR/alpha/c.ogg %%DATADIR%%/pt_BR/alpha/d.ogg %%DATADIR%%/pt_BR/alpha/e.ogg %%DATADIR%%/pt_BR/alpha/f.ogg %%DATADIR%%/pt_BR/alpha/g.ogg %%DATADIR%%/pt_BR/alpha/h.ogg %%DATADIR%%/pt_BR/alpha/i.ogg %%DATADIR%%/pt_BR/alpha/j.ogg %%DATADIR%%/pt_BR/alpha/k.ogg %%DATADIR%%/pt_BR/alpha/l.ogg %%DATADIR%%/pt_BR/alpha/m.ogg %%DATADIR%%/pt_BR/alpha/n.ogg %%DATADIR%%/pt_BR/alpha/o.ogg %%DATADIR%%/pt_BR/alpha/p.ogg %%DATADIR%%/pt_BR/alpha/q.ogg %%DATADIR%%/pt_BR/alpha/r.ogg %%DATADIR%%/pt_BR/alpha/s.ogg %%DATADIR%%/pt_BR/alpha/t.ogg %%DATADIR%%/pt_BR/alpha/u.ogg %%DATADIR%%/pt_BR/alpha/v.ogg %%DATADIR%%/pt_BR/alpha/w.ogg %%DATADIR%%/pt_BR/alpha/x.ogg %%DATADIR%%/pt_BR/alpha/y.ogg %%DATADIR%%/pt_BR/alpha/z.ogg %%DATADIR%%/pt_BR/sounds.xml %%DATADIR%%/pt_BR/syllab/ba.ogg %%DATADIR%%/pt_BR/syllab/be.ogg %%DATADIR%%/pt_BR/syllab/bi.ogg %%DATADIR%%/pt_BR/syllab/bo.ogg %%DATADIR%%/pt_BR/syllab/bu.ogg %%DATADIR%%/pt_BR/syllab/ca.ogg %%DATADIR%%/pt_BR/syllab/co.ogg %%DATADIR%%/pt_BR/syllab/cu.ogg %%DATADIR%%/pt_BR/syllab/da.ogg %%DATADIR%%/pt_BR/syllab/de.ogg %%DATADIR%%/pt_BR/syllab/di.ogg %%DATADIR%%/pt_BR/syllab/do.ogg %%DATADIR%%/pt_BR/syllab/du.ogg %%DATADIR%%/pt_BR/syllab/fa.ogg %%DATADIR%%/pt_BR/syllab/fe.ogg %%DATADIR%%/pt_BR/syllab/fi.ogg %%DATADIR%%/pt_BR/syllab/fo.ogg %%DATADIR%%/pt_BR/syllab/fu.ogg %%DATADIR%%/pt_BR/syllab/ga.ogg %%DATADIR%%/pt_BR/syllab/go.ogg %%DATADIR%%/pt_BR/syllab/gu.ogg %%DATADIR%%/pt_BR/syllab/ja.ogg %%DATADIR%%/pt_BR/syllab/je.ogg %%DATADIR%%/pt_BR/syllab/ji.ogg %%DATADIR%%/pt_BR/syllab/jo.ogg %%DATADIR%%/pt_BR/syllab/ju.ogg %%DATADIR%%/pt_BR/syllab/la.ogg %%DATADIR%%/pt_BR/syllab/le.ogg %%DATADIR%%/pt_BR/syllab/li.ogg %%DATADIR%%/pt_BR/syllab/lo.ogg %%DATADIR%%/pt_BR/syllab/lu.ogg %%DATADIR%%/pt_BR/syllab/ma.ogg %%DATADIR%%/pt_BR/syllab/me.ogg %%DATADIR%%/pt_BR/syllab/mi.ogg %%DATADIR%%/pt_BR/syllab/mo.ogg %%DATADIR%%/pt_BR/syllab/mu.ogg %%DATADIR%%/pt_BR/syllab/na.ogg %%DATADIR%%/pt_BR/syllab/ne.ogg %%DATADIR%%/pt_BR/syllab/ni.ogg %%DATADIR%%/pt_BR/syllab/no.ogg %%DATADIR%%/pt_BR/syllab/nu.ogg %%DATADIR%%/pt_BR/syllab/pa.ogg %%DATADIR%%/pt_BR/syllab/pe.ogg %%DATADIR%%/pt_BR/syllab/pi.ogg %%DATADIR%%/pt_BR/syllab/po.ogg %%DATADIR%%/pt_BR/syllab/pu.ogg %%DATADIR%%/pt_BR/syllab/ra.ogg %%DATADIR%%/pt_BR/syllab/re.ogg %%DATADIR%%/pt_BR/syllab/ri.ogg %%DATADIR%%/pt_BR/syllab/ro.ogg %%DATADIR%%/pt_BR/syllab/ru.ogg %%DATADIR%%/pt_BR/syllab/sa.ogg %%DATADIR%%/pt_BR/syllab/se.ogg %%DATADIR%%/pt_BR/syllab/si.ogg %%DATADIR%%/pt_BR/syllab/so.ogg %%DATADIR%%/pt_BR/syllab/su.ogg %%DATADIR%%/pt_BR/syllab/ta.ogg %%DATADIR%%/pt_BR/syllab/te.ogg %%DATADIR%%/pt_BR/syllab/ti.ogg %%DATADIR%%/pt_BR/syllab/to.ogg %%DATADIR%%/pt_BR/syllab/tu.ogg %%DATADIR%%/pt_BR/syllab/va.ogg %%DATADIR%%/pt_BR/syllab/ve.ogg %%DATADIR%%/pt_BR/syllab/vi.ogg %%DATADIR%%/pt_BR/syllab/vo.ogg %%DATADIR%%/pt_BR/syllab/vu.ogg %%DATADIR%%/pt_BR/syllab/xa.ogg %%DATADIR%%/pt_BR/syllab/xe.ogg %%DATADIR%%/pt_BR/syllab/xi.ogg %%DATADIR%%/pt_BR/syllab/xo.ogg %%DATADIR%%/pt_BR/syllab/xu.ogg %%DATADIR%%/pt_BR/syllab/za.ogg %%DATADIR%%/pt_BR/syllab/ze.ogg %%DATADIR%%/pt_BR/syllab/zi.ogg %%DATADIR%%/pt_BR/syllab/zo.ogg %%DATADIR%%/pt_BR/syllab/zu.ogg %%DATADIR%%/ru/alpha/a.ogg %%DATADIR%%/ru/alpha/ae.ogg %%DATADIR%%/ru/alpha/be.ogg %%DATADIR%%/ru/alpha/che.ogg %%DATADIR%%/ru/alpha/de.ogg %%DATADIR%%/ru/alpha/e.ogg %%DATADIR%%/ru/alpha/em.ogg %%DATADIR%%/ru/alpha/en.ogg %%DATADIR%%/ru/alpha/er.ogg %%DATADIR%%/ru/alpha/es.ogg %%DATADIR%%/ru/alpha/f.ogg %%DATADIR%%/ru/alpha/ge.ogg %%DATADIR%%/ru/alpha/ha.ogg %%DATADIR%%/ru/alpha/hard.ogg %%DATADIR%%/ru/alpha/i.ogg %%DATADIR%%/ru/alpha/iu.ogg %%DATADIR%%/ru/alpha/k.ogg %%DATADIR%%/ru/alpha/l.ogg %%DATADIR%%/ru/alpha/o.ogg %%DATADIR%%/ru/alpha/pe.ogg %%DATADIR%%/ru/alpha/scha.ogg %%DATADIR%%/ru/alpha/sha.ogg %%DATADIR%%/ru/alpha/soft.ogg %%DATADIR%%/ru/alpha/te.ogg %%DATADIR%%/ru/alpha/tse.ogg %%DATADIR%%/ru/alpha/u.ogg %%DATADIR%%/ru/alpha/ve.ogg %%DATADIR%%/ru/alpha/y.ogg %%DATADIR%%/ru/alpha/ya.ogg %%DATADIR%%/ru/alpha/yo.ogg %%DATADIR%%/ru/alpha/yu.ogg %%DATADIR%%/ru/alpha/ze.ogg %%DATADIR%%/ru/alpha/zh.ogg %%DATADIR%%/ru/sounds.xml %%DATADIR%%/ru/syllab/ba.ogg %%DATADIR%%/ru/syllab/be.ogg %%DATADIR%%/ru/syllab/bro.ogg %%DATADIR%%/ru/syllab/bu.ogg %%DATADIR%%/ru/syllab/chey.ogg %%DATADIR%%/ru/syllab/chka.ogg %%DATADIR%%/ru/syllab/chok.ogg %%DATADIR%%/ru/syllab/chto.ogg %%DATADIR%%/ru/syllab/chu.ogg %%DATADIR%%/ru/syllab/chut.ogg %%DATADIR%%/ru/syllab/chyk.ogg %%DATADIR%%/ru/syllab/da.ogg %%DATADIR%%/ru/syllab/do.ogg %%DATADIR%%/ru/syllab/du.ogg %%DATADIR%%/ru/syllab/ha.ogg %%DATADIR%%/ru/syllab/ka.ogg %%DATADIR%%/ru/syllab/ko.ogg %%DATADIR%%/ru/syllab/ku.ogg %%DATADIR%%/ru/syllab/lo.ogg %%DATADIR%%/ru/syllab/ly.ogg %%DATADIR%%/ru/syllab/lya.ogg %%DATADIR%%/ru/syllab/lyu.ogg %%DATADIR%%/ru/syllab/ma.ogg %%DATADIR%%/ru/syllab/may.ogg %%DATADIR%%/ru/syllab/miu.ogg %%DATADIR%%/ru/syllab/na.ogg %%DATADIR%%/ru/syllab/ne.ogg %%DATADIR%%/ru/syllab/net.ogg %%DATADIR%%/ru/syllab/niuy.ogg %%DATADIR%%/ru/syllab/no.ogg %%DATADIR%%/ru/syllab/noy.ogg %%DATADIR%%/ru/syllab/ny.ogg %%DATADIR%%/ru/syllab/nya.ogg %%DATADIR%%/ru/syllab/pa.ogg %%DATADIR%%/ru/syllab/pi.ogg %%DATADIR%%/ru/syllab/ro.ogg %%DATADIR%%/ru/syllab/russ.ogg %%DATADIR%%/ru/syllab/rys.ogg %%DATADIR%%/ru/syllab/schy.ogg %%DATADIR%%/ru/syllab/sha.ogg %%DATADIR%%/ru/syllab/she.ogg %%DATADIR%%/ru/syllab/ska.ogg %%DATADIR%%/ru/syllab/so.ogg %%DATADIR%%/ru/syllab/sy.ogg %%DATADIR%%/ru/syllab/syt.ogg %%DATADIR%%/ru/syllab/ta.ogg %%DATADIR%%/ru/syllab/te.ogg %%DATADIR%%/ru/syllab/tiu.ogg %%DATADIR%%/ru/syllab/to.ogg %%DATADIR%%/ru/syllab/tsya.ogg %%DATADIR%%/ru/syllab/tvoy.ogg %%DATADIR%%/ru/syllab/ty.ogg %%DATADIR%%/ru/syllab/viu.ogg %%DATADIR%%/ru/syllab/vo.ogg %%DATADIR%%/ru/syllab/vse.ogg %%DATADIR%%/ru/syllab/yizh.ogg %%DATADIR%%/ru/syllab/zhe.ogg %%DATADIR%%/ru/syllab/zhi.ogg %%DATADIR%%/ru/syllab/zhyt.ogg %%DATADIR%%/ru/syllab/zlo.ogg %%DATADIR%%/ru/syllab/zyk.ogg %%DATADIR%%/sk.txt %%DATADIR%%/uk/alpha/a.ogg %%DATADIR%%/uk/alpha/be.ogg %%DATADIR%%/uk/alpha/che.ogg %%DATADIR%%/uk/alpha/de.ogg %%DATADIR%%/uk/alpha/e.ogg %%DATADIR%%/uk/alpha/er.ogg %%DATADIR%%/uk/alpha/es.ogg %%DATADIR%%/uk/alpha/f.ogg %%DATADIR%%/uk/alpha/ge.ogg %%DATADIR%%/uk/alpha/ha.ogg %%DATADIR%%/uk/alpha/he.ogg %%DATADIR%%/uk/alpha/i.ogg %%DATADIR%%/uk/alpha/k.ogg %%DATADIR%%/uk/alpha/l.ogg %%DATADIR%%/uk/alpha/m.ogg %%DATADIR%%/uk/alpha/n.ogg %%DATADIR%%/uk/alpha/o.ogg %%DATADIR%%/uk/alpha/pe.ogg %%DATADIR%%/uk/alpha/scha.ogg %%DATADIR%%/uk/alpha/sha.ogg %%DATADIR%%/uk/alpha/te.ogg %%DATADIR%%/uk/alpha/tse.ogg %%DATADIR%%/uk/alpha/u.ogg %%DATADIR%%/uk/alpha/ve.ogg %%DATADIR%%/uk/alpha/y.ogg %%DATADIR%%/uk/alpha/ya.ogg %%DATADIR%%/uk/alpha/ye.ogg %%DATADIR%%/uk/alpha/yi.ogg %%DATADIR%%/uk/alpha/yot.ogg %%DATADIR%%/uk/alpha/yu.ogg %%DATADIR%%/uk/alpha/ze.ogg %%DATADIR%%/uk/alpha/zhe.ogg %%DATADIR%%/uk/alpha/zm.ogg %%DATADIR%%/uk/sounds.xml %%DATADIR%%/uk/syllab/ba.ogg %%DATADIR%%/uk/syllab/bi.ogg %%DATADIR%%/uk/syllab/bo.ogg %%DATADIR%%/uk/syllab/boh.ogg %%DATADIR%%/uk/syllab/bu.ogg %%DATADIR%%/uk/syllab/chi.ogg %%DATADIR%%/uk/syllab/cho.ogg %%DATADIR%%/uk/syllab/chut.ogg %%DATADIR%%/uk/syllab/chy.ogg %%DATADIR%%/uk/syllab/do.ogg %%DATADIR%%/uk/syllab/du.ogg %%DATADIR%%/uk/syllab/dzha.ogg %%DATADIR%%/uk/syllab/dzho.ogg %%DATADIR%%/uk/syllab/dzy.ogg %%DATADIR%%/uk/syllab/ga.ogg %%DATADIR%%/uk/syllab/gy.ogg %%DATADIR%%/uk/syllab/ha.ogg %%DATADIR%%/uk/syllab/hli.ogg %%DATADIR%%/uk/syllab/hy.ogg %%DATADIR%%/uk/syllab/hyzh.ogg %%DATADIR%%/uk/syllab/ko.ogg %%DATADIR%%/uk/syllab/ku.ogg %%DATADIR%%/uk/syllab/lo.ogg %%DATADIR%%/uk/syllab/ly.ogg %%DATADIR%%/uk/syllab/lya.ogg %%DATADIR%%/uk/syllab/lyu.ogg %%DATADIR%%/uk/syllab/mi.ogg %%DATADIR%%/uk/syllab/ni.ogg %%DATADIR%%/uk/syllab/ny.ogg %%DATADIR%%/uk/syllab/nya.ogg %%DATADIR%%/uk/syllab/pi.ogg %%DATADIR%%/uk/syllab/ro.ogg %%DATADIR%%/uk/syllab/rys.ogg %%DATADIR%%/uk/syllab/ryss.ogg %%DATADIR%%/uk/syllab/schy.ogg %%DATADIR%%/uk/syllab/she.ogg %%DATADIR%%/uk/syllab/so.ogg %%DATADIR%%/uk/syllab/sya.ogg %%DATADIR%%/uk/syllab/sych.ogg %%DATADIR%%/uk/syllab/syt.ogg %%DATADIR%%/uk/syllab/syu.ogg %%DATADIR%%/uk/syllab/ta.ogg %%DATADIR%%/uk/syllab/te.ogg %%DATADIR%%/uk/syllab/til.ogg %%DATADIR%%/uk/syllab/to.ogg %%DATADIR%%/uk/syllab/tsy.ogg %%DATADIR%%/uk/syllab/tsya.ogg %%DATADIR%%/uk/syllab/tviy.ogg %%DATADIR%%/uk/syllab/tvoya.ogg %%DATADIR%%/uk/syllab/vay.ogg %%DATADIR%%/uk/syllab/vo.ogg %%DATADIR%%/uk/syllab/vov.ogg %%DATADIR%%/uk/syllab/yem.ogg %%DATADIR%%/uk/syllab/yim.ogg %%DATADIR%%/uk/syllab/yizh.ogg %%DATADIR%%/uk/syllab/yo.ogg %%DATADIR%%/uk/syllab/zhe.ogg %%DATADIR%%/uk/syllab/zhy.ogg %%DATADIR%%/uk/syllab/zhyt.ogg %%DATADIR%%/uk/syllab/zmi.ogg %%DATADIR%%/uk/syllab/zyk.ogg share/knsrcfiles/klettres.knsrc share/kxmlgui5/klettres/klettresui.rc share/locale/ar/LC_MESSAGES/klettres.mo share/locale/be/LC_MESSAGES/klettres.mo share/locale/bg/LC_MESSAGES/klettres.mo share/locale/bs/LC_MESSAGES/klettres.mo share/locale/ca/LC_MESSAGES/klettres.mo share/locale/ca@valencia/LC_MESSAGES/klettres.mo share/locale/cs/LC_MESSAGES/klettres.mo share/locale/da/LC_MESSAGES/klettres.mo share/locale/de/LC_MESSAGES/klettres.mo share/locale/el/LC_MESSAGES/klettres.mo share/locale/en_GB/LC_MESSAGES/klettres.mo share/locale/eo/LC_MESSAGES/klettres.mo share/locale/es/LC_MESSAGES/klettres.mo share/locale/et/LC_MESSAGES/klettres.mo share/locale/eu/LC_MESSAGES/klettres.mo share/locale/fa/LC_MESSAGES/klettres.mo share/locale/fi/LC_MESSAGES/klettres.mo share/locale/fr/LC_MESSAGES/klettres.mo share/locale/ga/LC_MESSAGES/klettres.mo share/locale/gl/LC_MESSAGES/klettres.mo share/locale/he/LC_MESSAGES/klettres.mo share/locale/hi/LC_MESSAGES/klettres.mo share/locale/hr/LC_MESSAGES/klettres.mo share/locale/hu/LC_MESSAGES/klettres.mo share/locale/id/LC_MESSAGES/klettres.mo share/locale/is/LC_MESSAGES/klettres.mo share/locale/it/LC_MESSAGES/klettres.mo share/locale/ja/LC_MESSAGES/klettres.mo share/locale/kk/LC_MESSAGES/klettres.mo share/locale/km/LC_MESSAGES/klettres.mo share/locale/ko/LC_MESSAGES/klettres.mo share/locale/lt/LC_MESSAGES/klettres.mo share/locale/lv/LC_MESSAGES/klettres.mo share/locale/ml/LC_MESSAGES/klettres.mo share/locale/mr/LC_MESSAGES/klettres.mo share/locale/nb/LC_MESSAGES/klettres.mo share/locale/nds/LC_MESSAGES/klettres.mo share/locale/nl/LC_MESSAGES/klettres.mo share/locale/nn/LC_MESSAGES/klettres.mo share/locale/pa/LC_MESSAGES/klettres.mo share/locale/pl/LC_MESSAGES/klettres.mo share/locale/pt/LC_MESSAGES/klettres.mo share/locale/pt_BR/LC_MESSAGES/klettres.mo share/locale/ro/LC_MESSAGES/klettres.mo share/locale/ru/LC_MESSAGES/klettres.mo share/locale/se/LC_MESSAGES/klettres.mo share/locale/sk/LC_MESSAGES/klettres.mo share/locale/sl/LC_MESSAGES/klettres.mo share/locale/sq/LC_MESSAGES/klettres.mo share/locale/sv/LC_MESSAGES/klettres.mo share/locale/ta/LC_MESSAGES/klettres.mo share/locale/tg/LC_MESSAGES/klettres.mo share/locale/tr/LC_MESSAGES/klettres.mo share/locale/ug/LC_MESSAGES/klettres.mo share/locale/uk/LC_MESSAGES/klettres.mo share/locale/vi/LC_MESSAGES/klettres.mo share/locale/wa/LC_MESSAGES/klettres.mo share/locale/zh_CN/LC_MESSAGES/klettres.mo share/locale/zh_TW/LC_MESSAGES/klettres.mo share/metainfo/org.kde.klettres.appdata.xml share/qlogging-categories5/klettres.categories diff --git a/misc/ktouch/distinfo b/misc/ktouch/distinfo index 9680e09f4250..15dcddba18da 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672113 -SHA256 (KDE/release-service/22.04.2/ktouch-22.04.2.tar.xz) = 71acd7380229a623e60e72032946f0a5a2d98216212a9d9edaf88186cbaba7a8 -SIZE (KDE/release-service/22.04.2/ktouch-22.04.2.tar.xz) = 4983352 +TIMESTAMP = 1657013447 +SHA256 (KDE/release-service/22.04.3/ktouch-22.04.3.tar.xz) = b167bdd47f7d4e074c27d147a6e5f33e4eb08f81a263b003ba8161bd6db17f06 +SIZE (KDE/release-service/22.04.3/ktouch-22.04.3.tar.xz) = 4978228 diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 1755a6cda815..6fb2f179df47 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672115 -SHA256 (KDE/release-service/22.04.2/kwordquiz-22.04.2.tar.xz) = 703e6ba00dd26206c2487768c02e720ee281db4b474595b325c7682c1e52aed4 -SIZE (KDE/release-service/22.04.2/kwordquiz-22.04.2.tar.xz) = 4208736 +TIMESTAMP = 1657013449 +SHA256 (KDE/release-service/22.04.3/kwordquiz-22.04.3.tar.xz) = 50952728234ddb4eec70695e10889bcddecfa657005f6d598d39140a62e45bec +SIZE (KDE/release-service/22.04.3/kwordquiz-22.04.3.tar.xz) = 4215240 diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index e27c35d84fea..f3b1b699f155 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672114 -SHA256 (KDE/release-service/22.04.2/libkeduvocdocument-22.04.2.tar.xz) = 18cd8676fe407530136d251e6e5f4c80284ea2a87effbac63d73e5dd88caa1bc -SIZE (KDE/release-service/22.04.2/libkeduvocdocument-22.04.2.tar.xz) = 215140 +TIMESTAMP = 1657013448 +SHA256 (KDE/release-service/22.04.3/libkeduvocdocument-22.04.3.tar.xz) = 02a4b5945c938c119784b8e9d96778f613e6f2d6ddb9615f71c8c8cae07d6033 +SIZE (KDE/release-service/22.04.3/libkeduvocdocument-22.04.3.tar.xz) = 214824 diff --git a/misc/parley/distinfo b/misc/parley/distinfo index d28e677b95ac..35f1476def6e 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672114 -SHA256 (KDE/release-service/22.04.2/parley-22.04.2.tar.xz) = 8524b58d0360ecfd31c0aaa6eacaf2d4bde842d40ac48d35e66f9a3ecda52fe2 -SIZE (KDE/release-service/22.04.2/parley-22.04.2.tar.xz) = 8502368 +TIMESTAMP = 1657013448 +SHA256 (KDE/release-service/22.04.3/parley-22.04.3.tar.xz) = bab73b65b87965114d76e07167fff6182cb0f026e2f76d63d82546d46fb948cf +SIZE (KDE/release-service/22.04.3/parley-22.04.3.tar.xz) = 8491288 diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index be93268850fc..ad5656ce0a4f 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671959 -SHA256 (KDE/release-service/22.04.2/dragon-22.04.2.tar.xz) = 130905a4e24bf57da0185b9666db89f182a39a7e350219008b0ce33d4e148142 -SIZE (KDE/release-service/22.04.2/dragon-22.04.2.tar.xz) = 1666200 +TIMESTAMP = 1657013293 +SHA256 (KDE/release-service/22.04.3/dragon-22.04.3.tar.xz) = 5a84d205c1acbce9f7a6a5c47f8eda3673f9b0c22785ea4749012e8e2dd40409 +SIZE (KDE/release-service/22.04.3/dragon-22.04.3.tar.xz) = 1666316 diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 3ede005607aa..2a21bcfdef57 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671959 -SHA256 (KDE/release-service/22.04.2/kamoso-22.04.2.tar.xz) = ac66d37aaa0ad6e9c10bb63f92dde58abca158be5c06e67cd19aafd16bf26749 -SIZE (KDE/release-service/22.04.2/kamoso-22.04.2.tar.xz) = 227100 +TIMESTAMP = 1657013294 +SHA256 (KDE/release-service/22.04.3/kamoso-22.04.3.tar.xz) = 376295baf689865c960142f69e99cff765be41e6e8327d4ba1ed7a51ed6a272f +SIZE (KDE/release-service/22.04.3/kamoso-22.04.3.tar.xz) = 227264 diff --git a/multimedia/kamoso/pkg-plist b/multimedia/kamoso/pkg-plist index b7949e9f8ad1..69a5d99b9009 100644 --- a/multimedia/kamoso/pkg-plist +++ b/multimedia/kamoso/pkg-plist @@ -1,60 +1,61 @@ bin/kamoso lib/gstreamer-1.0/gstkamosoqt5videosink.so share/applications/org.kde.kamoso.desktop share/icons/hicolor/16x16/apps/kamoso.png share/icons/hicolor/22x22/apps/kamoso.png share/icons/hicolor/32x32/apps/kamoso.png share/icons/hicolor/48x48/apps/kamoso.png share/icons/hicolor/64x64/apps/kamoso.png share/icons/hicolor/128x128/apps/kamoso.png share/icons/hicolor/scalable/actions/burst.svgz share/icons/hicolor/scalable/apps/kamoso.svgz share/knotifications5/kamoso.notifyrc share/locale/ar/LC_MESSAGES/kamoso.mo +share/locale/bg/LC_MESSAGES/kamoso.mo share/locale/bs/LC_MESSAGES/kamoso.mo share/locale/ca/LC_MESSAGES/kamoso.mo share/locale/ca@valencia/LC_MESSAGES/kamoso.mo share/locale/cs/LC_MESSAGES/kamoso.mo share/locale/da/LC_MESSAGES/kamoso.mo share/locale/de/LC_MESSAGES/kamoso.mo share/locale/el/LC_MESSAGES/kamoso.mo share/locale/en_GB/LC_MESSAGES/kamoso.mo share/locale/eo/LC_MESSAGES/kamoso.mo share/locale/es/LC_MESSAGES/kamoso.mo share/locale/et/LC_MESSAGES/kamoso.mo share/locale/eu/LC_MESSAGES/kamoso.mo share/locale/fi/LC_MESSAGES/kamoso.mo share/locale/fr/LC_MESSAGES/kamoso.mo share/locale/ga/LC_MESSAGES/kamoso.mo share/locale/gl/LC_MESSAGES/kamoso.mo share/locale/hu/LC_MESSAGES/kamoso.mo share/locale/ia/LC_MESSAGES/kamoso.mo share/locale/id/LC_MESSAGES/kamoso.mo share/locale/is/LC_MESSAGES/kamoso.mo share/locale/it/LC_MESSAGES/kamoso.mo share/locale/ja/LC_MESSAGES/kamoso.mo share/locale/kk/LC_MESSAGES/kamoso.mo share/locale/ko/LC_MESSAGES/kamoso.mo share/locale/lt/LC_MESSAGES/kamoso.mo share/locale/lv/LC_MESSAGES/kamoso.mo share/locale/mr/LC_MESSAGES/kamoso.mo share/locale/nb/LC_MESSAGES/kamoso.mo share/locale/nds/LC_MESSAGES/kamoso.mo share/locale/nl/LC_MESSAGES/kamoso.mo share/locale/nn/LC_MESSAGES/kamoso.mo share/locale/pa/LC_MESSAGES/kamoso.mo share/locale/pl/LC_MESSAGES/kamoso.mo share/locale/pt/LC_MESSAGES/kamoso.mo share/locale/pt_BR/LC_MESSAGES/kamoso.mo share/locale/ro/LC_MESSAGES/kamoso.mo share/locale/ru/LC_MESSAGES/kamoso.mo share/locale/sk/LC_MESSAGES/kamoso.mo share/locale/sl/LC_MESSAGES/kamoso.mo share/locale/sv/LC_MESSAGES/kamoso.mo share/locale/tr/LC_MESSAGES/kamoso.mo share/locale/ug/LC_MESSAGES/kamoso.mo share/locale/uk/LC_MESSAGES/kamoso.mo share/locale/zh_CN/LC_MESSAGES/kamoso.mo share/locale/zh_TW/LC_MESSAGES/kamoso.mo share/metainfo/org.kde.kamoso.appdata.xml share/sounds/kamoso-shutter.wav diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 5b3edf4389f5..7c9fb23b10b8 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671961 -SHA256 (KDE/release-service/22.04.2/ffmpegthumbs-22.04.2.tar.xz) = e46b30ba98b16a6307d03ad03b5801fb745630b4b14734ab2574043bcd54645d -SIZE (KDE/release-service/22.04.2/ffmpegthumbs-22.04.2.tar.xz) = 30392 +TIMESTAMP = 1657013296 +SHA256 (KDE/release-service/22.04.3/ffmpegthumbs-22.04.3.tar.xz) = 1bb0e19e28db5661028df118bd2da4f1513c6ab6c54afed70ce7392aeca087ca +SIZE (KDE/release-service/22.04.3/ffmpegthumbs-22.04.3.tar.xz) = 30388 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 57b3b89f6044..5ff5a4b39868 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671960 -SHA256 (KDE/release-service/22.04.2/kdenlive-22.04.2.tar.xz) = 1f74804ece89b4a95b2971e959e5fc9403b7b723acb5e4406acde88e4e02dcc9 -SIZE (KDE/release-service/22.04.2/kdenlive-22.04.2.tar.xz) = 12418940 +TIMESTAMP = 1657013295 +SHA256 (KDE/release-service/22.04.3/kdenlive-22.04.3.tar.xz) = 7ee62ff9ed3a9e81552ff48b908976e73b5a78f1c93dfa858317af503c345790 +SIZE (KDE/release-service/22.04.3/kdenlive-22.04.3.tar.xz) = 12418392 diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 47716cc0f994..b2385ee414d4 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671971 -SHA256 (KDE/release-service/22.04.2/kaccounts-integration-22.04.2.tar.xz) = 6a14364e37e87bc5acefc0caa0925bf4baa610b189254936a70a51750e5e28e8 -SIZE (KDE/release-service/22.04.2/kaccounts-integration-22.04.2.tar.xz) = 87608 +TIMESTAMP = 1657013305 +SHA256 (KDE/release-service/22.04.3/kaccounts-integration-22.04.3.tar.xz) = 1edb9b8984b000f953ea2368c39485e31939b3dc1844dfb3d2a9476e0a15619b +SIZE (KDE/release-service/22.04.3/kaccounts-integration-22.04.3.tar.xz) = 87568 diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index a6e71509ee56..c97b6d65730a 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671967 -SHA256 (KDE/release-service/22.04.2/kaccounts-providers-22.04.2.tar.xz) = 0a67a6ec230cffaea9cf9e9d7742afcba7681d9ed73e690e2329e70fcc937ea2 -SIZE (KDE/release-service/22.04.2/kaccounts-providers-22.04.2.tar.xz) = 64172 +TIMESTAMP = 1657013301 +SHA256 (KDE/release-service/22.04.3/kaccounts-providers-22.04.3.tar.xz) = f2c6c57c7c7306f7751f347eec8f1e483ce5464d3dd22597283dfc84834402e8 +SIZE (KDE/release-service/22.04.3/kaccounts-providers-22.04.3.tar.xz) = 64108 diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 7d27a28cf8db..49f6a0ff6617 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671968 -SHA256 (KDE/release-service/22.04.2/kopete-22.04.2.tar.xz) = 7c3bc64c86ff30e8db81a917931a20f83f211c8a02968745c76a7c5e98b0b97f -SIZE (KDE/release-service/22.04.2/kopete-22.04.2.tar.xz) = 9675720 +TIMESTAMP = 1657013303 +SHA256 (KDE/release-service/22.04.3/kopete-22.04.3.tar.xz) = e96edbc051d8bbf9ba78386444206e4854e1c36563614af1f5ba4afdbaa88939 +SIZE (KDE/release-service/22.04.3/kopete-22.04.3.tar.xz) = 9665112 diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 5768bf00a58a..49d2cee4fe6b 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671963 -SHA256 (KDE/release-service/22.04.2/ktp-accounts-kcm-22.04.2.tar.xz) = 5b1d40744f8879d2a9f76144bf46db414837faea55e496637622eefc371fe125 -SIZE (KDE/release-service/22.04.2/ktp-accounts-kcm-22.04.2.tar.xz) = 266884 +TIMESTAMP = 1657013297 +SHA256 (KDE/release-service/22.04.3/ktp-accounts-kcm-22.04.3.tar.xz) = a030fa874e9ed7a7a342027cd2e6643903532d4d1b828bf4c9ff3c6db1be35d3 +SIZE (KDE/release-service/22.04.3/ktp-accounts-kcm-22.04.3.tar.xz) = 266764 diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index ce03c7e61a03..54f2c1af9966 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671969 -SHA256 (KDE/release-service/22.04.2/ktp-approver-22.04.2.tar.xz) = 09bd4b483586fe457c28908aec277e28034b605a900b5db5c38ad3fc2c5ab3df -SIZE (KDE/release-service/22.04.2/ktp-approver-22.04.2.tar.xz) = 38352 +TIMESTAMP = 1657013304 +SHA256 (KDE/release-service/22.04.3/ktp-approver-22.04.3.tar.xz) = d7e20c08b208366e80995674526914c6074632c49542151bb23573da0e21d333 +SIZE (KDE/release-service/22.04.3/ktp-approver-22.04.3.tar.xz) = 38328 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 440039c92dcd..b0d5de20b17c 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671975 -SHA256 (KDE/release-service/22.04.2/ktp-auth-handler-22.04.2.tar.xz) = 280acc094c1a75d2b818f265829c26bbf924c557c3cff5cf71bf642d1ed3a20f -SIZE (KDE/release-service/22.04.2/ktp-auth-handler-22.04.2.tar.xz) = 48136 +TIMESTAMP = 1657013309 +SHA256 (KDE/release-service/22.04.3/ktp-auth-handler-22.04.3.tar.xz) = abae011e50891999aee50d95be9f5abd88e323bb270146b9e0642bf829f9d2c2 +SIZE (KDE/release-service/22.04.3/ktp-auth-handler-22.04.3.tar.xz) = 48092 diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index 3cabd8a27483..b76d6a82cf8c 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671972 -SHA256 (KDE/release-service/22.04.2/ktp-call-ui-22.04.2.tar.xz) = 078063987125f1a4b2dc1089112ea16976be2a1cc34f6b8ea30669e540066e6a -SIZE (KDE/release-service/22.04.2/ktp-call-ui-22.04.2.tar.xz) = 99200 +TIMESTAMP = 1657013306 +SHA256 (KDE/release-service/22.04.3/ktp-call-ui-22.04.3.tar.xz) = f3d512babd050cfaee912d3dd51d6d0e3ca26618ed7b49346e4997a86582efcd +SIZE (KDE/release-service/22.04.3/ktp-call-ui-22.04.3.tar.xz) = 98484 diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 404478ee259b..4c81429b0281 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671967 -SHA256 (KDE/release-service/22.04.2/ktp-common-internals-22.04.2.tar.xz) = e258518ecf71acfd9cc2675fed1e975a0293d7bbe9f0fca6150a4b5332564d5b -SIZE (KDE/release-service/22.04.2/ktp-common-internals-22.04.2.tar.xz) = 451668 +TIMESTAMP = 1657013302 +SHA256 (KDE/release-service/22.04.3/ktp-common-internals-22.04.3.tar.xz) = 57d79e6deeae6ac07aac8aed84b2ac9d4654953c31660a26887008962c92cd1a +SIZE (KDE/release-service/22.04.3/ktp-common-internals-22.04.3.tar.xz) = 451460 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index a20b1b7cb5b1..3e3ee8ba8e91 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671973 -SHA256 (KDE/release-service/22.04.2/ktp-contact-list-22.04.2.tar.xz) = d2bf867c4d18a1681149a13c89b4b579a4d7a0dd3297e14cfd54a1d5e1e9dfcd -SIZE (KDE/release-service/22.04.2/ktp-contact-list-22.04.2.tar.xz) = 154948 +TIMESTAMP = 1657013307 +SHA256 (KDE/release-service/22.04.3/ktp-contact-list-22.04.3.tar.xz) = e62a8d24e2acaa9ca715020a2cdf6cd928717823a4ebca329a3a00c446801703 +SIZE (KDE/release-service/22.04.3/ktp-contact-list-22.04.3.tar.xz) = 155684 diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index 33d9a2392974..2e822bb7e3da 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671962 -SHA256 (KDE/release-service/22.04.2/ktp-contact-runner-22.04.2.tar.xz) = 352d0f81327eb3baf3b28d16dc738a3c7fdaad7d9089c04ef35386293de67493 -SIZE (KDE/release-service/22.04.2/ktp-contact-runner-22.04.2.tar.xz) = 44140 +TIMESTAMP = 1657013297 +SHA256 (KDE/release-service/22.04.3/ktp-contact-runner-22.04.3.tar.xz) = a8adf787ae9f1ab094d3ab21b8a3efe9ae402c9bc67078786ad20869466b9c73 +SIZE (KDE/release-service/22.04.3/ktp-contact-runner-22.04.3.tar.xz) = 44156 diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index e0c16b84d388..4cc52f187b2f 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671970 -SHA256 (KDE/release-service/22.04.2/ktp-desktop-applets-22.04.2.tar.xz) = 2ff97a23d37f1d956ddaf2b7576837dfdd655f84317d66596d32f598192c6cf3 -SIZE (KDE/release-service/22.04.2/ktp-desktop-applets-22.04.2.tar.xz) = 43744 +TIMESTAMP = 1657013304 +SHA256 (KDE/release-service/22.04.3/ktp-desktop-applets-22.04.3.tar.xz) = b22511c75a1e389f2da7e9fdcd92f938487c43a0905fdf7ae1bf31f1ba3c620e +SIZE (KDE/release-service/22.04.3/ktp-desktop-applets-22.04.3.tar.xz) = 43784 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index af26f6399bb6..24f24c51b1d5 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671965 -SHA256 (KDE/release-service/22.04.2/ktp-filetransfer-handler-22.04.2.tar.xz) = f475e08898701fa609689c1346b22cbfa2fab0642064f21f277e479e07b8cbca -SIZE (KDE/release-service/22.04.2/ktp-filetransfer-handler-22.04.2.tar.xz) = 46736 +TIMESTAMP = 1657013299 +SHA256 (KDE/release-service/22.04.3/ktp-filetransfer-handler-22.04.3.tar.xz) = 4799d6c007ed2cacd7c5be63e23c25d3234a4d97bee16e3595f05e3e7218a854 +SIZE (KDE/release-service/22.04.3/ktp-filetransfer-handler-22.04.3.tar.xz) = 46676 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index cefe58b1bb86..31c9630d045c 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671974 -SHA256 (KDE/release-service/22.04.2/ktp-kded-module-22.04.2.tar.xz) = 5aed7ce5dcaf90e31c0c1ab6de5bd72112dc6220ddb67c1f717190263ecbb236 -SIZE (KDE/release-service/22.04.2/ktp-kded-module-22.04.2.tar.xz) = 99996 +TIMESTAMP = 1657013308 +SHA256 (KDE/release-service/22.04.3/ktp-kded-module-22.04.3.tar.xz) = 2f82802d4507779d982ffb4c79798d5f0941ba039bac34824c0edee8ab8daa26 +SIZE (KDE/release-service/22.04.3/ktp-kded-module-22.04.3.tar.xz) = 100504 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index 62dd83fe5de7..a9a4a6507828 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671966 -SHA256 (KDE/release-service/22.04.2/ktp-send-file-22.04.2.tar.xz) = 6f16220afe512a1a65c9ca39b8f399260b228c3165c846a3de24220c535efcc9 -SIZE (KDE/release-service/22.04.2/ktp-send-file-22.04.2.tar.xz) = 28980 +TIMESTAMP = 1657013300 +SHA256 (KDE/release-service/22.04.3/ktp-send-file-22.04.3.tar.xz) = d1ce3a7d833eec925518cceaad53e954dde5187bcdd1b3983a9818e86c0465aa +SIZE (KDE/release-service/22.04.3/ktp-send-file-22.04.3.tar.xz) = 28900 diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index db2ddcab9566..515a83b24b40 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671964 -SHA256 (KDE/release-service/22.04.2/ktp-text-ui-22.04.2.tar.xz) = a7d22ce8b3f32c6a712650ccbf1ab7b725639ff54ade9b8781946545989fc1cc -SIZE (KDE/release-service/22.04.2/ktp-text-ui-22.04.2.tar.xz) = 475380 +TIMESTAMP = 1657013298 +SHA256 (KDE/release-service/22.04.3/ktp-text-ui-22.04.3.tar.xz) = 276376a2d0000bea465230495a2ce9a3d772e5a552e5c40e445b4f66b696ab5c +SIZE (KDE/release-service/22.04.3/ktp-text-ui-22.04.3.tar.xz) = 475096 diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 0a6f73beb07e..c3e04280b8b5 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672012 -SHA256 (KDE/release-service/22.04.2/ktorrent-22.04.2.tar.xz) = 0f089aadef0007539e4f8c2144b5b48930a3350e861386d5528508c51f1c9a9b -SIZE (KDE/release-service/22.04.2/ktorrent-22.04.2.tar.xz) = 2061996 +TIMESTAMP = 1657013347 +SHA256 (KDE/release-service/22.04.3/ktorrent-22.04.3.tar.xz) = 90e40baef19853a369b0cf383bf17fa79cd0cc45e1b5bf1213b18b38898325c1 +SIZE (KDE/release-service/22.04.3/ktorrent-22.04.3.tar.xz) = 2056504 diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index a5565ae9c78b..b36feddd8aeb 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672012 -SHA256 (KDE/release-service/22.04.2/libktorrent-22.04.2.tar.xz) = 628832529d183ac46805fbe4ac21ae39a5ca35e2bf97c214ffeceeec7b17941f -SIZE (KDE/release-service/22.04.2/libktorrent-22.04.2.tar.xz) = 606372 +TIMESTAMP = 1657013346 +SHA256 (KDE/release-service/22.04.3/libktorrent-22.04.3.tar.xz) = 381d6c05bd536492a43343e48785c8170549080f3d938db736fb285ed6610a25 +SIZE (KDE/release-service/22.04.3/libktorrent-22.04.3.tar.xz) = 595672 diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index 26df110306ee..5245e5255d52 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672141 -SHA256 (KDE/release-service/22.04.2/akonadi-calendar-22.04.2.tar.xz) = d9f9ce4913683856837367bf602a707370b86a6062322f10fc5e515d4a7becc7 -SIZE (KDE/release-service/22.04.2/akonadi-calendar-22.04.2.tar.xz) = 366208 +TIMESTAMP = 1657013477 +SHA256 (KDE/release-service/22.04.3/akonadi-calendar-22.04.3.tar.xz) = e4fd0bbcca26a9660ca3902fd1d04b593f222893171e5f5310a75de82f148c41 +SIZE (KDE/release-service/22.04.3/akonadi-calendar-22.04.3.tar.xz) = 376572 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index 1dca13db237f..be093d8cdbda 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,156 +1,161 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KF5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KF5/AkonadiCalendar/Akonadi/CalendarBase include/KF5/AkonadiCalendar/Akonadi/CalendarClipboard include/KF5/AkonadiCalendar/Akonadi/ETMCalendar include/KF5/AkonadiCalendar/Akonadi/FetchJobCalendar include/KF5/AkonadiCalendar/Akonadi/FreeBusyManager include/KF5/AkonadiCalendar/Akonadi/FreeBusyProviderBase include/KF5/AkonadiCalendar/Akonadi/History include/KF5/AkonadiCalendar/Akonadi/ICalImporter include/KF5/AkonadiCalendar/Akonadi/ITIPHandler include/KF5/AkonadiCalendar/Akonadi/IncidenceChanger include/KF5/AkonadiCalendar/Akonadi/PublishDialog include/KF5/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KF5/AkonadiCalendar/Akonadi/TodoPurger include/KF5/AkonadiCalendar/akonadi-calendar_version.h include/KF5/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KF5/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KF5/AkonadiCalendar/akonadi/calendarbase.h include/KF5/AkonadiCalendar/akonadi/calendarclipboard.h include/KF5/AkonadiCalendar/akonadi/calendarsettings.h include/KF5/AkonadiCalendar/akonadi/etmcalendar.h include/KF5/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KF5/AkonadiCalendar/akonadi/freebusymanager.h include/KF5/AkonadiCalendar/akonadi/freebusyproviderbase.h include/KF5/AkonadiCalendar/akonadi/history.h include/KF5/AkonadiCalendar/akonadi/icalimporter.h include/KF5/AkonadiCalendar/akonadi/incidencechanger.h include/KF5/AkonadiCalendar/akonadi/itiphandler.h include/KF5/AkonadiCalendar/akonadi/publishdialog.h include/KF5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KF5/AkonadiCalendar/akonadi/todopurger.h lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfig.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfigVersion.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets.cmake lib/libKF5AkonadiCalendar.so lib/libKF5AkonadiCalendar.so.5 lib/libKF5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiCalendar.pri %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications5/kalendarac.notifyrc share/locale/ar/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/bg/LC_MESSAGES/kalendarac.mo +share/locale/bg/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/bg/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/id/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/id/LC_MESSAGES/libakonadi-calendar5.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5.mo share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories share/qlogging-categories5/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index 216b58c5d999..c2823acca53c 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672143 -SHA256 (KDE/release-service/22.04.2/akonadi-contacts-22.04.2.tar.xz) = 7e92e7569d12a67176ebc3719766a41e17fe578c6b45ac9903d571d304105034 -SIZE (KDE/release-service/22.04.2/akonadi-contacts-22.04.2.tar.xz) = 426352 +TIMESTAMP = 1657013479 +SHA256 (KDE/release-service/22.04.3/akonadi-contacts-22.04.3.tar.xz) = dd3e23b9867c16fef0504cd245e4458cdf37a629f524650f8de9acae11500b20 +SIZE (KDE/release-service/22.04.3/akonadi-contacts-22.04.3.tar.xz) = 431176 diff --git a/net/akonadi-contacts/pkg-plist b/net/akonadi-contacts/pkg-plist index 16a6bc6d9b58..cb1325e6fcd5 100644 --- a/net/akonadi-contacts/pkg-plist +++ b/net/akonadi-contacts/pkg-plist @@ -1,251 +1,254 @@ include/KF5/AkonadiContact/Akonadi/AbstractContactFormatter include/KF5/AkonadiContact/Akonadi/AbstractContactGroupFormatter include/KF5/AkonadiContact/Akonadi/AbstractEmailAddressSelectionDialog include/KF5/AkonadiContact/Akonadi/AddContactJob include/KF5/AkonadiContact/Akonadi/AddEmailAddressJob include/KF5/AkonadiContact/Akonadi/AddEmailDisplayJob include/KF5/AkonadiContact/Akonadi/ContactDefaultActions include/KF5/AkonadiContact/Akonadi/ContactEditor include/KF5/AkonadiContact/Akonadi/ContactEditorDialog include/KF5/AkonadiContact/Akonadi/ContactGrantleeWrapper include/KF5/AkonadiContact/Akonadi/ContactGroupEditor include/KF5/AkonadiContact/Akonadi/ContactGroupEditorDialog include/KF5/AkonadiContact/Akonadi/ContactGroupExpandJob include/KF5/AkonadiContact/Akonadi/ContactGroupSearchJob include/KF5/AkonadiContact/Akonadi/ContactGroupViewer include/KF5/AkonadiContact/Akonadi/ContactParts include/KF5/AkonadiContact/Akonadi/ContactSearchJob include/KF5/AkonadiContact/Akonadi/ContactViewer include/KF5/AkonadiContact/Akonadi/ContactViewerDialog include/KF5/AkonadiContact/Akonadi/ContactsFilterProxyModel include/KF5/AkonadiContact/Akonadi/ContactsTreeModel include/KF5/AkonadiContact/Akonadi/EmailAddressRequester include/KF5/AkonadiContact/Akonadi/EmailAddressSelection include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionDialog include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionModel include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionWidget include/KF5/AkonadiContact/Akonadi/GrantleeContactFormatter include/KF5/AkonadiContact/Akonadi/GrantleeContactGroupFormatter include/KF5/AkonadiContact/Akonadi/GrantleeContactViewer include/KF5/AkonadiContact/Akonadi/GrantleePrint include/KF5/AkonadiContact/Akonadi/OpenEmailAddressJob include/KF5/AkonadiContact/Akonadi/RecipientsEditorManager include/KF5/AkonadiContact/Akonadi/RecipientsPickerWidget include/KF5/AkonadiContact/Akonadi/SelectAddressBookDialog include/KF5/AkonadiContact/Akonadi/StandardContactActionManager include/KF5/AkonadiContact/Akonadi/StandardContactFormatter include/KF5/AkonadiContact/Akonadi/StandardContactGroupFormatter include/KF5/AkonadiContact/akonadi-contact_version.h include/KF5/AkonadiContact/akonadi/abstractcontactformatter.h include/KF5/AkonadiContact/akonadi/abstractcontactgroupformatter.h include/KF5/AkonadiContact/akonadi/abstractemailaddressselectiondialog.h include/KF5/AkonadiContact/akonadi/addcontactjob.h include/KF5/AkonadiContact/akonadi/addemailaddressjob.h include/KF5/AkonadiContact/akonadi/addemaildisplayjob.h include/KF5/AkonadiContact/akonadi/akonadi-contact_export.h include/KF5/AkonadiContact/akonadi/contactdefaultactions.h include/KF5/AkonadiContact/akonadi/contacteditor.h include/KF5/AkonadiContact/akonadi/contacteditordialog.h include/KF5/AkonadiContact/akonadi/contactgrantleewrapper.h include/KF5/AkonadiContact/akonadi/contactgroupeditor.h include/KF5/AkonadiContact/akonadi/contactgroupeditordialog.h include/KF5/AkonadiContact/akonadi/contactgroupexpandjob.h include/KF5/AkonadiContact/akonadi/contactgroupsearchjob.h include/KF5/AkonadiContact/akonadi/contactgroupviewer.h include/KF5/AkonadiContact/akonadi/contactparts.h include/KF5/AkonadiContact/akonadi/contactsearchjob.h include/KF5/AkonadiContact/akonadi/contactsfilterproxymodel.h include/KF5/AkonadiContact/akonadi/contactstreemodel.h include/KF5/AkonadiContact/akonadi/contactviewer.h include/KF5/AkonadiContact/akonadi/contactviewerdialog.h include/KF5/AkonadiContact/akonadi/emailaddressrequester.h include/KF5/AkonadiContact/akonadi/emailaddressselection.h include/KF5/AkonadiContact/akonadi/emailaddressselectiondialog.h include/KF5/AkonadiContact/akonadi/emailaddressselectionmodel.h include/KF5/AkonadiContact/akonadi/emailaddressselectionwidget.h include/KF5/AkonadiContact/akonadi/grantleecontactformatter.h include/KF5/AkonadiContact/akonadi/grantleecontactgroupformatter.h include/KF5/AkonadiContact/akonadi/grantleecontactviewer.h include/KF5/AkonadiContact/akonadi/grantleeprint.h include/KF5/AkonadiContact/akonadi/openemailaddressjob.h include/KF5/AkonadiContact/akonadi/recipientseditormanager.h include/KF5/AkonadiContact/akonadi/recipientspickerwidget.h include/KF5/AkonadiContact/akonadi/selectaddressbookdialog.h include/KF5/AkonadiContact/akonadi/standardcontactactionmanager.h include/KF5/AkonadiContact/akonadi/standardcontactformatter.h include/KF5/AkonadiContact/akonadi/standardcontactgroupformatter.h include/KF5/AkonadiContactEditor/Akonadi/CategoriesEditAbstractWidget include/KF5/AkonadiContactEditor/Akonadi/ContactEditorPagePlugin include/KF5/AkonadiContactEditor/akonadi-contact-editor_version.h include/KF5/AkonadiContactEditor/akonadi/categorieseditabstractwidget.h include/KF5/AkonadiContactEditor/akonadi/contacteditor_export.h include/KF5/AkonadiContactEditor/akonadi/contacteditorpageplugin.h lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfig.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfigVersion.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfig.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfigVersion.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets.cmake lib/libKF5AkonadiContact.so lib/libKF5AkonadiContact.so.5 lib/libKF5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5ContactEditor.so lib/libKF5ContactEditor.so.5 lib/libKF5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiContact.pri %%QT_MKSPECDIR%%/modules/qt_ContactEditor.pri %%QT_PLUGINDIR%%/akonadi/contacts/plugins/categorieseditwidgetplugin.so %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so %%QT_PLUGINDIR%%/pim/kcms/kaddressbook/kcm_akonadicontact_actions.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf5/akonadi/contact/data/zone.tab share/kf5/akonadi/contact/pics/world.jpg share/kservices5/akonadicontact_actions.desktop share/locale/ar/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact5.mo share/locale/ar/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/az/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/az/LC_MESSAGES/akonadicontact5.mo share/locale/az/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/locale/bg/LC_MESSAGES/akonadicontact5-serializer.mo +share/locale/bg/LC_MESSAGES/akonadicontact5.mo +share/locale/bg/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact5.mo share/locale/bs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact5.mo share/locale/ca/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/cs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact5.mo share/locale/cs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/da/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact5.mo share/locale/da/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/de/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact5.mo share/locale/de/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/el/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact5.mo share/locale/el/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5.mo share/locale/en_GB/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eo/LC_MESSAGES/akonadicontact5.mo share/locale/eo/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/es/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact5.mo share/locale/es/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/et/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact5.mo share/locale/et/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/eu/LC_MESSAGES/akonadicontact5.mo share/locale/eu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fi/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact5.mo share/locale/fi/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact5.mo share/locale/fr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ga/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact5.mo share/locale/ga/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/gl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact5.mo share/locale/gl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/he/LC_MESSAGES/akonadicontact5.mo share/locale/he/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/hr/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact5.mo share/locale/ia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/it/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact5.mo share/locale/it/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ja/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact5.mo share/locale/ja/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/kk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/kk/LC_MESSAGES/akonadicontact5.mo share/locale/kk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/km/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/km/LC_MESSAGES/akonadicontact5.mo share/locale/km/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ko/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ko/LC_MESSAGES/akonadicontact5.mo share/locale/ko/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lt/LC_MESSAGES/akonadicontact5.mo share/locale/lt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/lv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/lv/LC_MESSAGES/akonadicontact5.mo share/locale/lv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/mr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/mr/LC_MESSAGES/akonadicontact5.mo share/locale/mr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nb/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nb/LC_MESSAGES/akonadicontact5.mo share/locale/nb/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nds/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nds/LC_MESSAGES/akonadicontact5.mo share/locale/nds/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/nl/LC_MESSAGES/akonadicontact5.mo share/locale/nl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/nn/LC_MESSAGES/akonadicontact5.mo share/locale/nn/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pa/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pa/LC_MESSAGES/akonadicontact5.mo share/locale/pa/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pl/LC_MESSAGES/akonadicontact5.mo share/locale/pl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt/LC_MESSAGES/akonadicontact5.mo share/locale/pt/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/pt_BR/LC_MESSAGES/akonadicontact5.mo share/locale/pt_BR/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ro/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ro/LC_MESSAGES/akonadicontact5.mo share/locale/ro/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ru/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ru/LC_MESSAGES/akonadicontact5.mo share/locale/ru/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sk/LC_MESSAGES/akonadicontact5.mo share/locale/sk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sl/LC_MESSAGES/akonadicontact5.mo share/locale/sl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sr/LC_MESSAGES/akonadicontact5.mo share/locale/sr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/sv/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/sv/LC_MESSAGES/akonadicontact5.mo share/locale/sv/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/tr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/tr/LC_MESSAGES/akonadicontact5.mo share/locale/tr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ug/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ug/LC_MESSAGES/akonadicontact5.mo share/locale/ug/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/uk/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/uk/LC_MESSAGES/akonadicontact5.mo share/locale/uk/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_CN/LC_MESSAGES/akonadicontact5.mo share/locale/zh_CN/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/zh_TW/LC_MESSAGES/akonadicontact5.mo share/locale/zh_TW/LC_MESSAGES/kcm_akonadicontact_actions.mo share/qlogging-categories5/akonadi-contacts.categories share/qlogging-categories5/akonadi-contacts.renamecategories diff --git a/net/akonadi-mime/distinfo b/net/akonadi-mime/distinfo index 10201c8b70c0..ae80e757a7c1 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672150 -SHA256 (KDE/release-service/22.04.2/akonadi-mime-22.04.2.tar.xz) = 927e8429d33abdd96b5045cfcd9f0100eb6ade1fcd68f5a19e65aa5fb87c5226 -SIZE (KDE/release-service/22.04.2/akonadi-mime-22.04.2.tar.xz) = 145180 +TIMESTAMP = 1657013487 +SHA256 (KDE/release-service/22.04.3/akonadi-mime-22.04.3.tar.xz) = a129496c3ce8c6a6292fce8556188323d0ab60a65987cb61de6515091b53efe1 +SIZE (KDE/release-service/22.04.3/akonadi-mime-22.04.3.tar.xz) = 146896 diff --git a/net/akonadi-mime/pkg-plist b/net/akonadi-mime/pkg-plist index 444548fb44e0..68f6256c2acb 100644 --- a/net/akonadi-mime/pkg-plist +++ b/net/akonadi-mime/pkg-plist @@ -1,91 +1,92 @@ include/KF5/AkonadiMime/Akonadi/AddressAttribute include/KF5/AkonadiMime/Akonadi/CommandBase include/KF5/AkonadiMime/Akonadi/MarkAsCommand include/KF5/AkonadiMime/Akonadi/MessageFlags include/KF5/AkonadiMime/Akonadi/MessageFolderAttribute include/KF5/AkonadiMime/Akonadi/MessageModel include/KF5/AkonadiMime/Akonadi/MessageParts include/KF5/AkonadiMime/Akonadi/MessageStatus include/KF5/AkonadiMime/Akonadi/MoveCommand include/KF5/AkonadiMime/Akonadi/NewMailNotifierAttribute include/KF5/AkonadiMime/Akonadi/Pop3ResourceAttribute include/KF5/AkonadiMime/Akonadi/RemoveDuplicatesJob include/KF5/AkonadiMime/Akonadi/SpecialMailCollections include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsDiscoveryJob include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsRequestJob include/KF5/AkonadiMime/Akonadi/StandardMailActionManager include/KF5/AkonadiMime/akonadi-mime_version.h include/KF5/AkonadiMime/akonadi/addressattribute.h include/KF5/AkonadiMime/akonadi/akonadi-mime_export.h include/KF5/AkonadiMime/akonadi/commandbase.h include/KF5/AkonadiMime/akonadi/markascommand.h include/KF5/AkonadiMime/akonadi/messageflags.h include/KF5/AkonadiMime/akonadi/messagefolderattribute.h include/KF5/AkonadiMime/akonadi/messagemodel.h include/KF5/AkonadiMime/akonadi/messageparts.h include/KF5/AkonadiMime/akonadi/messagestatus.h include/KF5/AkonadiMime/akonadi/movecommand.h include/KF5/AkonadiMime/akonadi/newmailnotifierattribute.h include/KF5/AkonadiMime/akonadi/pop3resourceattribute.h include/KF5/AkonadiMime/akonadi/removeduplicatesjob.h include/KF5/AkonadiMime/akonadi/specialmailcollections.h include/KF5/AkonadiMime/akonadi/specialmailcollectionsdiscoveryjob.h include/KF5/AkonadiMime/akonadi/specialmailcollectionsrequestjob.h include/KF5/AkonadiMime/akonadi/standardmailactionmanager.h lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfig.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfigVersion.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets.cmake lib/libKF5AkonadiMime.so lib/libKF5AkonadiMime.so.5 lib/libKF5AkonadiMime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiMime.pri %%QT_PLUGINDIR%%/akonadi_serializer_mail.so share/akonadi/plugins/serializer/akonadi_serializer_mail.desktop share/config.kcfg/specialmailcollections.kcfg share/locale/ar/LC_MESSAGES/libakonadi-kmime5.mo share/locale/az/LC_MESSAGES/libakonadi-kmime5.mo +share/locale/bg/LC_MESSAGES/libakonadi-kmime5.mo share/locale/bs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-kmime5.mo share/locale/cs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/da/LC_MESSAGES/libakonadi-kmime5.mo share/locale/de/LC_MESSAGES/libakonadi-kmime5.mo share/locale/el/LC_MESSAGES/libakonadi-kmime5.mo share/locale/en_GB/LC_MESSAGES/libakonadi-kmime5.mo share/locale/es/LC_MESSAGES/libakonadi-kmime5.mo share/locale/et/LC_MESSAGES/libakonadi-kmime5.mo share/locale/eu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fi/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ga/LC_MESSAGES/libakonadi-kmime5.mo share/locale/gl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/hu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ia/LC_MESSAGES/libakonadi-kmime5.mo share/locale/it/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ja/LC_MESSAGES/libakonadi-kmime5.mo share/locale/kk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/km/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ko/LC_MESSAGES/libakonadi-kmime5.mo share/locale/lt/LC_MESSAGES/libakonadi-kmime5.mo share/locale/mr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nb/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nds/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/nn/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pt/LC_MESSAGES/libakonadi-kmime5.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ro/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ru/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sv/LC_MESSAGES/libakonadi-kmime5.mo share/locale/tr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ug/LC_MESSAGES/libakonadi-kmime5.mo share/locale/uk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-kmime5.mo share/mime/packages/x-vnd.kde.contactgroup.xml share/qlogging-categories5/akonadi-mime.categories diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 097d9965200a..b30e2bd50b94 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672123 -SHA256 (KDE/release-service/22.04.2/akonadi-notes-22.04.2.tar.xz) = 488c2243656e03c8a095ce9cfe2452f2d95d9f65be6f188529956e63b6fca7f2 -SIZE (KDE/release-service/22.04.2/akonadi-notes-22.04.2.tar.xz) = 27276 +TIMESTAMP = 1657013457 +SHA256 (KDE/release-service/22.04.3/akonadi-notes-22.04.3.tar.xz) = b4525d32dcd2559eaa2f5ec5a86c4a4c17fe7ab14ffd019d30586f78c249495f +SIZE (KDE/release-service/22.04.3/akonadi-notes-22.04.3.tar.xz) = 27280 diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 9f237aba63c3..ab231a315eed 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672130 -SHA256 (KDE/release-service/22.04.2/akonadi-search-22.04.2.tar.xz) = d8992134d37db201c3e572443f538d6a737bc0cd3fe07b93f820954c9f16b04a -SIZE (KDE/release-service/22.04.2/akonadi-search-22.04.2.tar.xz) = 99888 +TIMESTAMP = 1657013464 +SHA256 (KDE/release-service/22.04.3/akonadi-search-22.04.3.tar.xz) = 75634ad06a8d5d25ae549fc28b68019567022e9d9feee29e88d32c75adcdf14a +SIZE (KDE/release-service/22.04.3/akonadi-search-22.04.3.tar.xz) = 100244 diff --git a/net/akonadi-search/pkg-plist b/net/akonadi-search/pkg-plist index b4c8912eea4d..eb84c70588e0 100644 --- a/net/akonadi-search/pkg-plist +++ b/net/akonadi-search/pkg-plist @@ -1,93 +1,94 @@ bin/akonadi_indexing_agent include/KF5/AkonadiSearch/Core/Query include/KF5/AkonadiSearch/Core/ResultIterator include/KF5/AkonadiSearch/Core/SearchStore include/KF5/AkonadiSearch/Core/Term include/KF5/AkonadiSearch/Debug/akonadisearchdebugdialog.h include/KF5/AkonadiSearch/Debug/akonadisearchdebugsearchpathcombobox.h include/KF5/AkonadiSearch/Debug/search_debug_export.h include/KF5/AkonadiSearch/PIM/collectionquery.h include/KF5/AkonadiSearch/PIM/contactcompleter.h include/KF5/AkonadiSearch/PIM/contactquery.h include/KF5/AkonadiSearch/PIM/emailquery.h include/KF5/AkonadiSearch/PIM/indexeditems.h include/KF5/AkonadiSearch/PIM/notequery.h include/KF5/AkonadiSearch/PIM/query.h include/KF5/AkonadiSearch/PIM/resultiterator.h include/KF5/AkonadiSearch/PIM/search_pim_export.h include/KF5/AkonadiSearch/Xapian/search_xapian_export.h include/KF5/AkonadiSearch/Xapian/xapiandatabase.h include/KF5/AkonadiSearch/Xapian/xapiandocument.h include/KF5/AkonadiSearch/Xapian/xapianqueryparser.h include/KF5/AkonadiSearch/Xapian/xapiansearchstore.h include/KF5/AkonadiSearch/Xapian/xapiantermgenerator.h include/KF5/AkonadiSearch/akonadi_search_version.h include/KF5/AkonadiSearch/core/query.h include/KF5/AkonadiSearch/core/resultiterator.h include/KF5/AkonadiSearch/core/searchstore.h include/KF5/AkonadiSearch/core/term.h include/KF5/AkonadiSearch/search_core_export.h lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfig.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfigVersion.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets.cmake lib/libKF5AkonadiSearchCore.so lib/libKF5AkonadiSearchCore.so.5 lib/libKF5AkonadiSearchCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchDebug.so lib/libKF5AkonadiSearchDebug.so.5 lib/libKF5AkonadiSearchDebug.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchPIM.so lib/libKF5AkonadiSearchPIM.so.5 lib/libKF5AkonadiSearchPIM.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchXapian.so lib/libKF5AkonadiSearchXapian.so.5 lib/libKF5AkonadiSearchXapian.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akonadi/akonadi_search_plugin.so %%QT_PLUGINDIR%%/akonadi/calendarsearchstore.so %%QT_PLUGINDIR%%/akonadi/contactsearchstore.so %%QT_PLUGINDIR%%/akonadi/emailsearchstore.so %%QT_PLUGINDIR%%/akonadi/notesearchstore.so %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_pimcontacts.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_pimcontacts.so share/akonadi/agents/akonadiindexingagent.desktop share/locale/ar/LC_MESSAGES/akonadi_search.mo share/locale/az/LC_MESSAGES/akonadi_search.mo +share/locale/bg/LC_MESSAGES/akonadi_search.mo share/locale/ca/LC_MESSAGES/akonadi_search.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_search.mo share/locale/cs/LC_MESSAGES/akonadi_search.mo share/locale/da/LC_MESSAGES/akonadi_search.mo share/locale/de/LC_MESSAGES/akonadi_search.mo share/locale/el/LC_MESSAGES/akonadi_search.mo share/locale/en_GB/LC_MESSAGES/akonadi_search.mo share/locale/es/LC_MESSAGES/akonadi_search.mo share/locale/et/LC_MESSAGES/akonadi_search.mo share/locale/eu/LC_MESSAGES/akonadi_search.mo share/locale/fi/LC_MESSAGES/akonadi_search.mo share/locale/fr/LC_MESSAGES/akonadi_search.mo share/locale/gl/LC_MESSAGES/akonadi_search.mo share/locale/hi/LC_MESSAGES/akonadi_search.mo share/locale/hu/LC_MESSAGES/akonadi_search.mo share/locale/ia/LC_MESSAGES/akonadi_search.mo share/locale/it/LC_MESSAGES/akonadi_search.mo share/locale/ja/LC_MESSAGES/akonadi_search.mo share/locale/ko/LC_MESSAGES/akonadi_search.mo share/locale/lt/LC_MESSAGES/akonadi_search.mo share/locale/nb/LC_MESSAGES/akonadi_search.mo share/locale/nl/LC_MESSAGES/akonadi_search.mo share/locale/nn/LC_MESSAGES/akonadi_search.mo share/locale/pl/LC_MESSAGES/akonadi_search.mo share/locale/pt/LC_MESSAGES/akonadi_search.mo share/locale/pt_BR/LC_MESSAGES/akonadi_search.mo share/locale/ro/LC_MESSAGES/akonadi_search.mo share/locale/ru/LC_MESSAGES/akonadi_search.mo share/locale/sk/LC_MESSAGES/akonadi_search.mo share/locale/sl/LC_MESSAGES/akonadi_search.mo share/locale/sr/LC_MESSAGES/akonadi_search.mo share/locale/sv/LC_MESSAGES/akonadi_search.mo share/locale/tr/LC_MESSAGES/akonadi_search.mo share/locale/uk/LC_MESSAGES/akonadi_search.mo share/locale/zh_CN/LC_MESSAGES/akonadi_search.mo share/locale/zh_TW/LC_MESSAGES/akonadi_search.mo share/qlogging-categories5/akonadi-search.categories share/qlogging-categories5/akonadi-search.renamecategories diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index fd859b0d26f2..bb9677f53437 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672146 -SHA256 (KDE/release-service/22.04.2/calendarsupport-22.04.2.tar.xz) = dbad9e6478ed160f3daa5fbc4785eb40c6b47cb0c201c822f41e90ac995203b5 -SIZE (KDE/release-service/22.04.2/calendarsupport-22.04.2.tar.xz) = 767824 +TIMESTAMP = 1657013482 +SHA256 (KDE/release-service/22.04.3/calendarsupport-22.04.3.tar.xz) = 0d575da02635327c8219bcc5a6948fbe64e33e4f0555452a037b4d5882bea517 +SIZE (KDE/release-service/22.04.3/calendarsupport-22.04.3.tar.xz) = 763796 diff --git a/net/calendarsupport/pkg-plist b/net/calendarsupport/pkg-plist index 14dd3df6b989..112a19556366 100644 --- a/net/calendarsupport/pkg-plist +++ b/net/calendarsupport/pkg-plist @@ -1,126 +1,127 @@ include/KF5/CalendarSupport/CalendarSupport/ArchiveDialog include/KF5/CalendarSupport/CalendarSupport/CalPrintDefaultPlugins include/KF5/CalendarSupport/CalendarSupport/CalPrintPluginBase include/KF5/CalendarSupport/CalendarSupport/CalPrinter include/KF5/CalendarSupport/CalendarSupport/CalendarSingleton include/KF5/CalendarSupport/CalendarSupport/CategoryConfig include/KF5/CalendarSupport/CalendarSupport/CategoryHierarchyReader include/KF5/CalendarSupport/CalendarSupport/CellItem include/KF5/CalendarSupport/CalendarSupport/CollectionSelection include/KF5/CalendarSupport/CalendarSupport/EventArchiver include/KF5/CalendarSupport/CalendarSupport/FreeBusyCalendar include/KF5/CalendarSupport/CalendarSupport/FreeBusyItem include/KF5/CalendarSupport/CalendarSupport/FreeBusyItemModel include/KF5/CalendarSupport/CalendarSupport/FreePeriodModel include/KF5/CalendarSupport/CalendarSupport/IdentityManager include/KF5/CalendarSupport/CalendarSupport/IncidenceViewer include/KF5/CalendarSupport/CalendarSupport/KCalPrefs include/KF5/CalendarSupport/CalendarSupport/KDatePickerPopup include/KF5/CalendarSupport/CalendarSupport/MessageWidget include/KF5/CalendarSupport/CalendarSupport/NoteEditDialog include/KF5/CalendarSupport/CalendarSupport/Plugin include/KF5/CalendarSupport/CalendarSupport/PrintPlugin include/KF5/CalendarSupport/CalendarSupport/UriHandler include/KF5/CalendarSupport/CalendarSupport/Utils include/KF5/CalendarSupport/calendarsupport/archivedialog.h include/KF5/CalendarSupport/calendarsupport/calendarsingleton.h include/KF5/CalendarSupport/calendarsupport/calendarsupport_export.h include/KF5/CalendarSupport/calendarsupport/calprintdefaultplugins.h include/KF5/CalendarSupport/calendarsupport/calprinter.h include/KF5/CalendarSupport/calendarsupport/calprintpluginbase.h include/KF5/CalendarSupport/calendarsupport/categoryconfig.h include/KF5/CalendarSupport/calendarsupport/categoryhierarchyreader.h include/KF5/CalendarSupport/calendarsupport/cellitem.h include/KF5/CalendarSupport/calendarsupport/collectionselection.h include/KF5/CalendarSupport/calendarsupport/eventarchiver.h include/KF5/CalendarSupport/calendarsupport/freebusycalendar.h include/KF5/CalendarSupport/calendarsupport/freebusyitem.h include/KF5/CalendarSupport/calendarsupport/freebusyitemmodel.h include/KF5/CalendarSupport/calendarsupport/freeperiodmodel.h include/KF5/CalendarSupport/calendarsupport/identitymanager.h include/KF5/CalendarSupport/calendarsupport/incidenceviewer.h include/KF5/CalendarSupport/calendarsupport/kcalprefs.h include/KF5/CalendarSupport/calendarsupport/kcalprefs_base.h include/KF5/CalendarSupport/calendarsupport/kdatepickerpopup.h include/KF5/CalendarSupport/calendarsupport/messagewidget.h include/KF5/CalendarSupport/calendarsupport/noteeditdialog.h include/KF5/CalendarSupport/calendarsupport/plugin.h include/KF5/CalendarSupport/calendarsupport/printplugin.h include/KF5/CalendarSupport/calendarsupport/ui_calprintdayconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintincidenceconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintmonthconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprinttodoconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintweekconfig_base.h include/KF5/CalendarSupport/calendarsupport/urihandler.h include/KF5/CalendarSupport/calendarsupport/utils.h include/KF5/CalendarSupport/calendarsupport_version.h lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfig.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfigVersion.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets.cmake lib/libKF5CalendarSupport.so lib/libKF5CalendarSupport.so.5 lib/libKF5CalendarSupport.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_CalendarSupport.pri share/kservicetypes5/calendarplugin.desktop share/locale/ar/LC_MESSAGES/calendarsupport.mo share/locale/az/LC_MESSAGES/calendarsupport.mo share/locale/be/LC_MESSAGES/calendarsupport.mo share/locale/bg/LC_MESSAGES/calendarsupport.mo share/locale/bs/LC_MESSAGES/calendarsupport.mo share/locale/ca/LC_MESSAGES/calendarsupport.mo share/locale/ca@valencia/LC_MESSAGES/calendarsupport.mo share/locale/cs/LC_MESSAGES/calendarsupport.mo share/locale/da/LC_MESSAGES/calendarsupport.mo share/locale/de/LC_MESSAGES/calendarsupport.mo share/locale/el/LC_MESSAGES/calendarsupport.mo share/locale/en_GB/LC_MESSAGES/calendarsupport.mo share/locale/eo/LC_MESSAGES/calendarsupport.mo share/locale/es/LC_MESSAGES/calendarsupport.mo share/locale/et/LC_MESSAGES/calendarsupport.mo share/locale/eu/LC_MESSAGES/calendarsupport.mo share/locale/fa/LC_MESSAGES/calendarsupport.mo share/locale/fi/LC_MESSAGES/calendarsupport.mo share/locale/fr/LC_MESSAGES/calendarsupport.mo share/locale/ga/LC_MESSAGES/calendarsupport.mo share/locale/gl/LC_MESSAGES/calendarsupport.mo share/locale/he/LC_MESSAGES/calendarsupport.mo share/locale/hi/LC_MESSAGES/calendarsupport.mo share/locale/hr/LC_MESSAGES/calendarsupport.mo share/locale/hu/LC_MESSAGES/calendarsupport.mo share/locale/ia/LC_MESSAGES/calendarsupport.mo +share/locale/id/LC_MESSAGES/calendarsupport.mo share/locale/is/LC_MESSAGES/calendarsupport.mo share/locale/it/LC_MESSAGES/calendarsupport.mo share/locale/ja/LC_MESSAGES/calendarsupport.mo share/locale/kk/LC_MESSAGES/calendarsupport.mo share/locale/km/LC_MESSAGES/calendarsupport.mo share/locale/ko/LC_MESSAGES/calendarsupport.mo share/locale/lt/LC_MESSAGES/calendarsupport.mo share/locale/lv/LC_MESSAGES/calendarsupport.mo share/locale/mr/LC_MESSAGES/calendarsupport.mo share/locale/nb/LC_MESSAGES/calendarsupport.mo share/locale/nds/LC_MESSAGES/calendarsupport.mo share/locale/nl/LC_MESSAGES/calendarsupport.mo share/locale/nn/LC_MESSAGES/calendarsupport.mo share/locale/pa/LC_MESSAGES/calendarsupport.mo share/locale/pl/LC_MESSAGES/calendarsupport.mo share/locale/pt/LC_MESSAGES/calendarsupport.mo share/locale/pt_BR/LC_MESSAGES/calendarsupport.mo share/locale/ro/LC_MESSAGES/calendarsupport.mo share/locale/ru/LC_MESSAGES/calendarsupport.mo share/locale/se/LC_MESSAGES/calendarsupport.mo share/locale/sk/LC_MESSAGES/calendarsupport.mo share/locale/sl/LC_MESSAGES/calendarsupport.mo share/locale/sq/LC_MESSAGES/calendarsupport.mo share/locale/sr/LC_MESSAGES/calendarsupport.mo share/locale/sv/LC_MESSAGES/calendarsupport.mo share/locale/ta/LC_MESSAGES/calendarsupport.mo share/locale/tg/LC_MESSAGES/calendarsupport.mo share/locale/tr/LC_MESSAGES/calendarsupport.mo share/locale/ug/LC_MESSAGES/calendarsupport.mo share/locale/uk/LC_MESSAGES/calendarsupport.mo share/locale/wa/LC_MESSAGES/calendarsupport.mo share/locale/zh_CN/LC_MESSAGES/calendarsupport.mo share/locale/zh_TW/LC_MESSAGES/calendarsupport.mo share/qlogging-categories5/calendarsupport.categories share/qlogging-categories5/calendarsupport.renamecategories diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 371e71d248a6..999c23bb402b 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672145 -SHA256 (KDE/release-service/22.04.2/eventviews-22.04.2.tar.xz) = b36ed64fd25c3b0301120d5a290e9e002df3d26970722c01a81decb600c4d78e -SIZE (KDE/release-service/22.04.2/eventviews-22.04.2.tar.xz) = 457180 +TIMESTAMP = 1657013481 +SHA256 (KDE/release-service/22.04.3/eventviews-22.04.3.tar.xz) = 99d52b4933d6a8303989e0b92d58bf55a552f461ab0207a583fd35b95d99868c +SIZE (KDE/release-service/22.04.3/eventviews-22.04.3.tar.xz) = 456996 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 5c1c4c0d40e5..f2d671c02fdb 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672127 -SHA256 (KDE/release-service/22.04.2/incidenceeditor-22.04.2.tar.xz) = 4ae8c21c11bacfac8d9f92ade718ee4cdc51c602c66b024e2f4c6a2fc3ccb07c -SIZE (KDE/release-service/22.04.2/incidenceeditor-22.04.2.tar.xz) = 548800 +TIMESTAMP = 1657013461 +SHA256 (KDE/release-service/22.04.3/incidenceeditor-22.04.3.tar.xz) = 0be83b0450a6ad7030f156211c8af1a075f32a2ced9edf278538b444472ea22e +SIZE (KDE/release-service/22.04.3/incidenceeditor-22.04.3.tar.xz) = 548408 diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 21dfd95a47b8..b3eba69e4c2f 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672132 -SHA256 (KDE/release-service/22.04.2/kcalutils-22.04.2.tar.xz) = 7bc63dc9bc56bf9f24a025d714227dbd1babe02e9bc280190b6219b3c524d640 -SIZE (KDE/release-service/22.04.2/kcalutils-22.04.2.tar.xz) = 340848 +TIMESTAMP = 1657013467 +SHA256 (KDE/release-service/22.04.3/kcalutils-22.04.3.tar.xz) = 7082232f10716184d982d200d62a55eaaed76b6712ccb4c2881c0ae6c9b662ef +SIZE (KDE/release-service/22.04.3/kcalutils-22.04.3.tar.xz) = 344888 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index e43a22863954..bffba137085b 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,76 +1,77 @@ include/KF5/KCalUtils/KCalUtils/DndFactory include/KF5/KCalUtils/KCalUtils/HTMLExportSettings include/KF5/KCalUtils/KCalUtils/HtmlExport include/KF5/KCalUtils/KCalUtils/ICalDrag include/KF5/KCalUtils/KCalUtils/IncidenceFormatter include/KF5/KCalUtils/KCalUtils/RecurrenceActions include/KF5/KCalUtils/KCalUtils/Stringify include/KF5/KCalUtils/KCalUtils/VCalDrag include/KF5/KCalUtils/kcalutils/dndfactory.h include/KF5/KCalUtils/kcalutils/htmlexport.h include/KF5/KCalUtils/kcalutils/htmlexportsettings.h include/KF5/KCalUtils/kcalutils/icaldrag.h include/KF5/KCalUtils/kcalutils/incidenceformatter.h include/KF5/KCalUtils/kcalutils/kcalutils_export.h include/KF5/KCalUtils/kcalutils/recurrenceactions.h include/KF5/KCalUtils/kcalutils/stringify.h include/KF5/KCalUtils/kcalutils/vcaldrag.h include/KF5/KCalUtils/kcalutils_version.h lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfig.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfigVersion.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kcalendar_grantlee_plugin.so lib/libKF5CalendarUtils.so lib/libKF5CalendarUtils.so.5 lib/libKF5CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KCalUtils.pri share/locale/ar/LC_MESSAGES/libkcalutils5.mo share/locale/az/LC_MESSAGES/libkcalutils5.mo +share/locale/bg/LC_MESSAGES/libkcalutils5.mo share/locale/bs/LC_MESSAGES/libkcalutils5.mo share/locale/ca/LC_MESSAGES/libkcalutils5.mo share/locale/ca@valencia/LC_MESSAGES/libkcalutils5.mo share/locale/cs/LC_MESSAGES/libkcalutils5.mo share/locale/da/LC_MESSAGES/libkcalutils5.mo share/locale/de/LC_MESSAGES/libkcalutils5.mo share/locale/el/LC_MESSAGES/libkcalutils5.mo share/locale/en_GB/LC_MESSAGES/libkcalutils5.mo share/locale/es/LC_MESSAGES/libkcalutils5.mo share/locale/et/LC_MESSAGES/libkcalutils5.mo share/locale/eu/LC_MESSAGES/libkcalutils5.mo share/locale/fi/LC_MESSAGES/libkcalutils5.mo share/locale/fr/LC_MESSAGES/libkcalutils5.mo share/locale/ga/LC_MESSAGES/libkcalutils5.mo share/locale/gl/LC_MESSAGES/libkcalutils5.mo share/locale/hr/LC_MESSAGES/libkcalutils5.mo share/locale/hu/LC_MESSAGES/libkcalutils5.mo share/locale/ia/LC_MESSAGES/libkcalutils5.mo share/locale/it/LC_MESSAGES/libkcalutils5.mo share/locale/ja/LC_MESSAGES/libkcalutils5.mo share/locale/kk/LC_MESSAGES/libkcalutils5.mo share/locale/km/LC_MESSAGES/libkcalutils5.mo share/locale/ko/LC_MESSAGES/libkcalutils5.mo share/locale/lt/LC_MESSAGES/libkcalutils5.mo share/locale/mr/LC_MESSAGES/libkcalutils5.mo share/locale/nb/LC_MESSAGES/libkcalutils5.mo share/locale/nds/LC_MESSAGES/libkcalutils5.mo share/locale/nl/LC_MESSAGES/libkcalutils5.mo share/locale/nn/LC_MESSAGES/libkcalutils5.mo share/locale/pa/LC_MESSAGES/libkcalutils5.mo share/locale/pl/LC_MESSAGES/libkcalutils5.mo share/locale/pt/LC_MESSAGES/libkcalutils5.mo share/locale/pt_BR/LC_MESSAGES/libkcalutils5.mo share/locale/ro/LC_MESSAGES/libkcalutils5.mo share/locale/ru/LC_MESSAGES/libkcalutils5.mo share/locale/se/LC_MESSAGES/libkcalutils5.mo share/locale/sk/LC_MESSAGES/libkcalutils5.mo share/locale/sl/LC_MESSAGES/libkcalutils5.mo share/locale/sr/LC_MESSAGES/libkcalutils5.mo share/locale/sv/LC_MESSAGES/libkcalutils5.mo share/locale/tr/LC_MESSAGES/libkcalutils5.mo share/locale/ug/LC_MESSAGES/libkcalutils5.mo share/locale/uk/LC_MESSAGES/libkcalutils5.mo share/locale/zh_CN/LC_MESSAGES/libkcalutils5.mo share/locale/zh_TW/LC_MESSAGES/libkcalutils5.mo share/qlogging-categories5/kcalutils.categories share/qlogging-categories5/kcalutils.renamecategories diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 614825243682..f515be6f84fc 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672149 -SHA256 (KDE/release-service/22.04.2/kdenetwork-filesharing-22.04.2.tar.xz) = 450c3bca70c50f8801c04c6ae0947a9892d595545ec4224026f46f13be481f10 -SIZE (KDE/release-service/22.04.2/kdenetwork-filesharing-22.04.2.tar.xz) = 382868 +TIMESTAMP = 1657013486 +SHA256 (KDE/release-service/22.04.3/kdenetwork-filesharing-22.04.3.tar.xz) = 851f1e575a0d89a32114489daf5e14bfb632f0f89924acbda845ab97d17d25a0 +SIZE (KDE/release-service/22.04.3/kdenetwork-filesharing-22.04.3.tar.xz) = 373052 diff --git a/net/kget/distinfo b/net/kget/distinfo index cccec1a58934..58cc609358fd 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672134 -SHA256 (KDE/release-service/22.04.2/kget-22.04.2.tar.xz) = 4f75430fe14badd7562e5040561b5e09cf595a835ac29ce4fbf9e15de5605744 -SIZE (KDE/release-service/22.04.2/kget-22.04.2.tar.xz) = 5442344 +TIMESTAMP = 1657013468 +SHA256 (KDE/release-service/22.04.3/kget-22.04.3.tar.xz) = d717a8a29be5de832201214f181f4746a48a794d346f5e4cfc005b78bdb61f67 +SIZE (KDE/release-service/22.04.3/kget-22.04.3.tar.xz) = 5444040 diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 2e2cabe9aa44..00ca132cec2d 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672151 -SHA256 (KDE/release-service/22.04.2/kidentitymanagement-22.04.2.tar.xz) = 31bc30e5209f56388098bfe3e353e62b75d4e67c60fb338a1be6e2db171d07f7 -SIZE (KDE/release-service/22.04.2/kidentitymanagement-22.04.2.tar.xz) = 159712 +TIMESTAMP = 1657013488 +SHA256 (KDE/release-service/22.04.3/kidentitymanagement-22.04.3.tar.xz) = 1cb598d9feafbc742235840d1240ce573ea02a170edeafbbfbedd49629ef317c +SIZE (KDE/release-service/22.04.3/kidentitymanagement-22.04.3.tar.xz) = 159644 diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 6945df803ace..c9eb29c1d5a2 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672135 -SHA256 (KDE/release-service/22.04.2/kimap-22.04.2.tar.xz) = 673108a49636c30c58e20724510e90b08bca4564d377a75cdf7013abbe924ec5 -SIZE (KDE/release-service/22.04.2/kimap-22.04.2.tar.xz) = 130144 +TIMESTAMP = 1657013470 +SHA256 (KDE/release-service/22.04.3/kimap-22.04.3.tar.xz) = c032ec30e0692b0f63f187ee9290c8b7905cfa0b0e4c1c51c11cbdfeab3cb0cc +SIZE (KDE/release-service/22.04.3/kimap-22.04.3.tar.xz) = 130228 diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index f4453d76286f..6ea8a403af93 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672133 -SHA256 (KDE/release-service/22.04.2/kio-gdrive-22.04.2.tar.xz) = 20296785c8517a2362301cb4db9b415a9de961639ea9e95eb3640cd97ee188d7 -SIZE (KDE/release-service/22.04.2/kio-gdrive-22.04.2.tar.xz) = 72036 +TIMESTAMP = 1657013467 +SHA256 (KDE/release-service/22.04.3/kio-gdrive-22.04.3.tar.xz) = 621a53b9dff22bea57c3f6e7f8a880e6c90695db7842815817f9e3c39b603a41 +SIZE (KDE/release-service/22.04.3/kio-gdrive-22.04.3.tar.xz) = 72040 diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 9293d0b32b21..1106fe21e2c7 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672140 -SHA256 (KDE/release-service/22.04.2/kitinerary-22.04.2.tar.xz) = ecb3493099518d1c119e0ae8130a3a1e84e0eccfb90d15d8089e99bf71f872bf -SIZE (KDE/release-service/22.04.2/kitinerary-22.04.2.tar.xz) = 1531268 +TIMESTAMP = 1657013476 +SHA256 (KDE/release-service/22.04.3/kitinerary-22.04.3.tar.xz) = 9fc6970e633584c88c5283dd2a5d3a4638f704439229abd9c6267d907a6ab3cb +SIZE (KDE/release-service/22.04.3/kitinerary-22.04.3.tar.xz) = 1530056 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index 7652182ab6a4..436313c203c1 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672142 -SHA256 (KDE/release-service/22.04.2/kldap-22.04.2.tar.xz) = 60d934c1a2468ed2012033d9953652a7524e68d36820a8f31de884e13c343a83 -SIZE (KDE/release-service/22.04.2/kldap-22.04.2.tar.xz) = 172684 +TIMESTAMP = 1657013478 +SHA256 (KDE/release-service/22.04.3/kldap-22.04.3.tar.xz) = e55cdf712f80e151d7f91feeba74697668e42e3ad1002dcdffc896ef9c7c9d08 +SIZE (KDE/release-service/22.04.3/kldap-22.04.3.tar.xz) = 172864 diff --git a/net/kldap/pkg-plist b/net/kldap/pkg-plist index f4f579dfdf14..c56cf573ec26 100644 --- a/net/kldap/pkg-plist +++ b/net/kldap/pkg-plist @@ -1,157 +1,158 @@ include/KF5/KLDAP/KLDAP/AddHostDialog include/KF5/KLDAP/KLDAP/Ber include/KF5/KLDAP/KLDAP/LdapClient include/KF5/KLDAP/KLDAP/LdapClientSearch include/KF5/KLDAP/KLDAP/LdapClientSearchConfig include/KF5/KLDAP/KLDAP/LdapClientSearchConfigReadConfigJob include/KF5/KLDAP/KLDAP/LdapClientSearchConfigWriteConfigJob include/KF5/KLDAP/KLDAP/LdapConfigWidget include/KF5/KLDAP/KLDAP/LdapConfigureWidget include/KF5/KLDAP/KLDAP/LdapConnection include/KF5/KLDAP/KLDAP/LdapControl include/KF5/KLDAP/KLDAP/LdapDN include/KF5/KLDAP/KLDAP/LdapDefs include/KF5/KLDAP/KLDAP/LdapObject include/KF5/KLDAP/KLDAP/LdapOperation include/KF5/KLDAP/KLDAP/LdapSearch include/KF5/KLDAP/KLDAP/LdapSearchClientReadConfigServerJob include/KF5/KLDAP/KLDAP/LdapServer include/KF5/KLDAP/KLDAP/LdapUrl include/KF5/KLDAP/KLDAP/Ldif include/KF5/KLDAP/kldap/addhostdialog.h include/KF5/KLDAP/kldap/ber.h include/KF5/KLDAP/kldap/kldap_export.h include/KF5/KLDAP/kldap/ldapclient.h include/KF5/KLDAP/kldap/ldapclientsearch.h include/KF5/KLDAP/kldap/ldapclientsearchconfig.h include/KF5/KLDAP/kldap/ldapclientsearchconfigreadconfigjob.h include/KF5/KLDAP/kldap/ldapclientsearchconfigwriteconfigjob.h include/KF5/KLDAP/kldap/ldapconfigurewidget.h include/KF5/KLDAP/kldap/ldapconfigwidget.h include/KF5/KLDAP/kldap/ldapconnection.h include/KF5/KLDAP/kldap/ldapcontrol.h include/KF5/KLDAP/kldap/ldapdefs.h include/KF5/KLDAP/kldap/ldapdn.h include/KF5/KLDAP/kldap/ldapobject.h include/KF5/KLDAP/kldap/ldapoperation.h include/KF5/KLDAP/kldap/ldapsearch.h include/KF5/KLDAP/kldap/ldapsearchclientreadconfigserverjob.h include/KF5/KLDAP/kldap/ldapserver.h include/KF5/KLDAP/kldap/ldapurl.h include/KF5/KLDAP/kldap/ldif.h include/KF5/KLDAP/kldap_version.h lib/cmake/KF5Ldap/KF5LdapConfig.cmake lib/cmake/KF5Ldap/KF5LdapConfigVersion.cmake lib/cmake/KF5Ldap/KF5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Ldap/KF5LdapTargets.cmake lib/libKF5Ldap.so lib/libKF5Ldap.so.5 lib/libKF5Ldap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Ldap.pri %%QT_PLUGINDIR%%/kf5/kio/ldap.so share/locale/ar/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/libkldap5.mo share/locale/be/LC_MESSAGES/kio_ldap.mo share/locale/be/LC_MESSAGES/libkldap5.mo share/locale/bg/LC_MESSAGES/kio_ldap.mo +share/locale/bg/LC_MESSAGES/libkldap5.mo share/locale/bs/LC_MESSAGES/kio_ldap.mo share/locale/bs/LC_MESSAGES/libkldap5.mo share/locale/ca/LC_MESSAGES/kio_ldap.mo share/locale/ca/LC_MESSAGES/libkldap5.mo share/locale/ca@valencia/LC_MESSAGES/kio_ldap.mo share/locale/ca@valencia/LC_MESSAGES/libkldap5.mo share/locale/cs/LC_MESSAGES/kio_ldap.mo share/locale/cs/LC_MESSAGES/libkldap5.mo share/locale/da/LC_MESSAGES/kio_ldap.mo share/locale/da/LC_MESSAGES/libkldap5.mo share/locale/de/LC_MESSAGES/kio_ldap.mo share/locale/de/LC_MESSAGES/libkldap5.mo share/locale/el/LC_MESSAGES/kio_ldap.mo share/locale/el/LC_MESSAGES/libkldap5.mo share/locale/en_GB/LC_MESSAGES/kio_ldap.mo share/locale/en_GB/LC_MESSAGES/libkldap5.mo share/locale/eo/LC_MESSAGES/kio_ldap.mo share/locale/eo/LC_MESSAGES/libkldap5.mo share/locale/es/LC_MESSAGES/kio_ldap.mo share/locale/es/LC_MESSAGES/libkldap5.mo share/locale/et/LC_MESSAGES/kio_ldap.mo share/locale/et/LC_MESSAGES/libkldap5.mo share/locale/eu/LC_MESSAGES/kio_ldap.mo share/locale/fa/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/kio_ldap.mo share/locale/fi/LC_MESSAGES/libkldap5.mo share/locale/fr/LC_MESSAGES/kio_ldap.mo share/locale/fr/LC_MESSAGES/libkldap5.mo share/locale/ga/LC_MESSAGES/kio_ldap.mo share/locale/ga/LC_MESSAGES/libkldap5.mo share/locale/gl/LC_MESSAGES/kio_ldap.mo share/locale/gl/LC_MESSAGES/libkldap5.mo share/locale/he/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/kio_ldap.mo share/locale/hi/LC_MESSAGES/libkldap5.mo share/locale/hu/LC_MESSAGES/kio_ldap.mo share/locale/hu/LC_MESSAGES/libkldap5.mo share/locale/ia/LC_MESSAGES/kio_ldap.mo share/locale/ia/LC_MESSAGES/libkldap5.mo share/locale/is/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/kio_ldap.mo share/locale/it/LC_MESSAGES/libkldap5.mo share/locale/ja/LC_MESSAGES/kio_ldap.mo share/locale/ja/LC_MESSAGES/libkldap5.mo share/locale/kk/LC_MESSAGES/kio_ldap.mo share/locale/kk/LC_MESSAGES/libkldap5.mo share/locale/km/LC_MESSAGES/kio_ldap.mo share/locale/km/LC_MESSAGES/libkldap5.mo share/locale/ko/LC_MESSAGES/kio_ldap.mo share/locale/ko/LC_MESSAGES/libkldap5.mo share/locale/lt/LC_MESSAGES/kio_ldap.mo share/locale/lt/LC_MESSAGES/libkldap5.mo share/locale/lv/LC_MESSAGES/kio_ldap.mo share/locale/lv/LC_MESSAGES/libkldap5.mo share/locale/mr/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/libkldap5.mo share/locale/nb/LC_MESSAGES/kio_ldap.mo share/locale/nb/LC_MESSAGES/libkldap5.mo share/locale/nds/LC_MESSAGES/kio_ldap.mo share/locale/nds/LC_MESSAGES/libkldap5.mo share/locale/nl/LC_MESSAGES/kio_ldap.mo share/locale/nl/LC_MESSAGES/libkldap5.mo share/locale/nn/LC_MESSAGES/kio_ldap.mo share/locale/nn/LC_MESSAGES/libkldap5.mo share/locale/pa/LC_MESSAGES/kio_ldap.mo share/locale/pa/LC_MESSAGES/libkldap5.mo share/locale/pl/LC_MESSAGES/kio_ldap.mo share/locale/pl/LC_MESSAGES/libkldap5.mo share/locale/pt/LC_MESSAGES/kio_ldap.mo share/locale/pt/LC_MESSAGES/libkldap5.mo share/locale/pt_BR/LC_MESSAGES/kio_ldap.mo share/locale/pt_BR/LC_MESSAGES/libkldap5.mo share/locale/ro/LC_MESSAGES/kio_ldap.mo share/locale/ro/LC_MESSAGES/libkldap5.mo share/locale/ru/LC_MESSAGES/kio_ldap.mo share/locale/ru/LC_MESSAGES/libkldap5.mo share/locale/se/LC_MESSAGES/kio_ldap.mo share/locale/se/LC_MESSAGES/libkldap5.mo share/locale/sk/LC_MESSAGES/kio_ldap.mo share/locale/sk/LC_MESSAGES/libkldap5.mo share/locale/sl/LC_MESSAGES/kio_ldap.mo share/locale/sl/LC_MESSAGES/libkldap5.mo share/locale/sq/LC_MESSAGES/libkldap5.mo share/locale/sr/LC_MESSAGES/kio_ldap.mo share/locale/sr/LC_MESSAGES/libkldap5.mo share/locale/sv/LC_MESSAGES/kio_ldap.mo share/locale/sv/LC_MESSAGES/libkldap5.mo share/locale/ta/LC_MESSAGES/kio_ldap.mo share/locale/tr/LC_MESSAGES/kio_ldap.mo share/locale/tr/LC_MESSAGES/libkldap5.mo share/locale/ug/LC_MESSAGES/kio_ldap.mo share/locale/ug/LC_MESSAGES/libkldap5.mo share/locale/uk/LC_MESSAGES/kio_ldap.mo share/locale/uk/LC_MESSAGES/libkldap5.mo share/locale/vi/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/kio_ldap.mo share/locale/zh_CN/LC_MESSAGES/libkldap5.mo share/locale/zh_TW/LC_MESSAGES/kio_ldap.mo share/locale/zh_TW/LC_MESSAGES/libkldap5.mo share/qlogging-categories5/kldap.categories share/qlogging-categories5/kldap.renamecategories diff --git a/net/kmailtransport/distinfo b/net/kmailtransport/distinfo index d567ab600045..1643d3c8381b 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672144 -SHA256 (KDE/release-service/22.04.2/kmailtransport-22.04.2.tar.xz) = 8bbb45c781c5635da13ec51b628997f4a39e97a4cb1ee6d31f2418762ebbbb68 -SIZE (KDE/release-service/22.04.2/kmailtransport-22.04.2.tar.xz) = 174424 +TIMESTAMP = 1657013481 +SHA256 (KDE/release-service/22.04.3/kmailtransport-22.04.3.tar.xz) = f7c379b502f7b7c9f0aa0a7c6955844590994e25b7a252491e3035402ce58f39 +SIZE (KDE/release-service/22.04.3/kmailtransport-22.04.3.tar.xz) = 176696 diff --git a/net/kmailtransport/pkg-plist b/net/kmailtransport/pkg-plist index b1b3c2ac3999..074fbfe85787 100644 --- a/net/kmailtransport/pkg-plist +++ b/net/kmailtransport/pkg-plist @@ -1,111 +1,112 @@ include/KF5/MailTransport/MailTransport/PrecommandJob include/KF5/MailTransport/MailTransport/ServerTest include/KF5/MailTransport/MailTransport/Transport include/KF5/MailTransport/MailTransport/TransportAbstractPlugin include/KF5/MailTransport/MailTransport/TransportComboBox include/KF5/MailTransport/MailTransport/TransportConfigWidget include/KF5/MailTransport/MailTransport/TransportJob include/KF5/MailTransport/MailTransport/TransportManagementWidget include/KF5/MailTransport/MailTransport/TransportManager include/KF5/MailTransport/MailTransport/TransportType include/KF5/MailTransport/mailtransport/mailtransport_export.h include/KF5/MailTransport/mailtransport/precommandjob.h include/KF5/MailTransport/mailtransport/private/transportconfigwidget_p.h include/KF5/MailTransport/mailtransport/servertest.h include/KF5/MailTransport/mailtransport/transport.h include/KF5/MailTransport/mailtransport/transportabstractplugin.h include/KF5/MailTransport/mailtransport/transportbase.h include/KF5/MailTransport/mailtransport/transportcombobox.h include/KF5/MailTransport/mailtransport/transportconfigwidget.h include/KF5/MailTransport/mailtransport/transportjob.h include/KF5/MailTransport/mailtransport/transportmanagementwidget.h include/KF5/MailTransport/mailtransport/transportmanager.h include/KF5/MailTransport/mailtransport/transporttype.h include/KF5/MailTransport/mailtransport_version.h include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatchModeAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatcherInterface include/KF5/MailTransportAkonadi/MailTransportAkonadi/ErrorAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/MessageQueueJob include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentActionAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentBehaviourAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/TransportAttribute include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatcherinterface.h include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatchmodeattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/errorattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/mailtransportakonadi_export.h include/KF5/MailTransportAkonadi/mailtransportakonadi/messagequeuejob.h include/KF5/MailTransportAkonadi/mailtransportakonadi/sentactionattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/sentbehaviourattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/transportattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi_version.h lib/cmake/KF5MailTransport/KF5MailTransportConfig.cmake lib/cmake/KF5MailTransport/KF5MailTransportConfigVersion.cmake lib/cmake/KF5MailTransport/KF5MailTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailTransport/KF5MailTransportTargets.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfig.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfigVersion.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets.cmake lib/libKF5MailTransport.so lib/libKF5MailTransport.so.5 lib/libKF5MailTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MailTransportAkonadi.so lib/libKF5MailTransportAkonadi.so.5 lib/libKF5MailTransportAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMailTransport.pri %%QT_MKSPECDIR%%/modules/qt_KMailTransportAkonadi.pri %%QT_PLUGINDIR%%/kcm_mailtransport.so %%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_akonadiplugin.so %%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_smtpplugin.so share/config.kcfg/mailtransport.kcfg share/kservices5/kcm_mailtransport.desktop share/locale/ar/LC_MESSAGES/libmailtransport5.mo share/locale/be/LC_MESSAGES/libmailtransport5.mo +share/locale/bg/LC_MESSAGES/libmailtransport5.mo share/locale/bs/LC_MESSAGES/libmailtransport5.mo share/locale/ca/LC_MESSAGES/libmailtransport5.mo share/locale/ca@valencia/LC_MESSAGES/libmailtransport5.mo share/locale/cs/LC_MESSAGES/libmailtransport5.mo share/locale/da/LC_MESSAGES/libmailtransport5.mo share/locale/de/LC_MESSAGES/libmailtransport5.mo share/locale/el/LC_MESSAGES/libmailtransport5.mo share/locale/en_GB/LC_MESSAGES/libmailtransport5.mo share/locale/eo/LC_MESSAGES/libmailtransport5.mo share/locale/es/LC_MESSAGES/libmailtransport5.mo share/locale/et/LC_MESSAGES/libmailtransport5.mo share/locale/fi/LC_MESSAGES/libmailtransport5.mo share/locale/fr/LC_MESSAGES/libmailtransport5.mo share/locale/ga/LC_MESSAGES/libmailtransport5.mo share/locale/gl/LC_MESSAGES/libmailtransport5.mo share/locale/hi/LC_MESSAGES/libmailtransport5.mo share/locale/hu/LC_MESSAGES/libmailtransport5.mo share/locale/ia/LC_MESSAGES/libmailtransport5.mo share/locale/it/LC_MESSAGES/libmailtransport5.mo share/locale/ja/LC_MESSAGES/libmailtransport5.mo share/locale/kk/LC_MESSAGES/libmailtransport5.mo share/locale/km/LC_MESSAGES/libmailtransport5.mo share/locale/ko/LC_MESSAGES/libmailtransport5.mo share/locale/lt/LC_MESSAGES/libmailtransport5.mo share/locale/lv/LC_MESSAGES/libmailtransport5.mo share/locale/mr/LC_MESSAGES/libmailtransport5.mo share/locale/nb/LC_MESSAGES/libmailtransport5.mo share/locale/nds/LC_MESSAGES/libmailtransport5.mo share/locale/nl/LC_MESSAGES/libmailtransport5.mo share/locale/nn/LC_MESSAGES/libmailtransport5.mo share/locale/pa/LC_MESSAGES/libmailtransport5.mo share/locale/pl/LC_MESSAGES/libmailtransport5.mo share/locale/pt/LC_MESSAGES/libmailtransport5.mo share/locale/pt_BR/LC_MESSAGES/libmailtransport5.mo share/locale/ro/LC_MESSAGES/libmailtransport5.mo share/locale/ru/LC_MESSAGES/libmailtransport5.mo share/locale/se/LC_MESSAGES/libmailtransport5.mo share/locale/sk/LC_MESSAGES/libmailtransport5.mo share/locale/sl/LC_MESSAGES/libmailtransport5.mo share/locale/sr/LC_MESSAGES/libmailtransport5.mo share/locale/sv/LC_MESSAGES/libmailtransport5.mo share/locale/tr/LC_MESSAGES/libmailtransport5.mo share/locale/ug/LC_MESSAGES/libmailtransport5.mo share/locale/uk/LC_MESSAGES/libmailtransport5.mo share/locale/zh_CN/LC_MESSAGES/libmailtransport5.mo share/locale/zh_TW/LC_MESSAGES/libmailtransport5.mo share/qlogging-categories5/kmailtransport.categories share/qlogging-categories5/kmailtransport.renamecategories diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index cf25bca4fe8a..5a3d7d4d8cdc 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672139 -SHA256 (KDE/release-service/22.04.2/kmbox-22.04.2.tar.xz) = b904ae89fc71e02942920a69fdcee57c6935064b3b4bfe96075b7154b2e3168d -SIZE (KDE/release-service/22.04.2/kmbox-22.04.2.tar.xz) = 28728 +TIMESTAMP = 1657013475 +SHA256 (KDE/release-service/22.04.3/kmbox-22.04.3.tar.xz) = 2fb6714b8988793f9d79ce4ed45f1768ccfcea1806eb35b164570d3bbf197134 +SIZE (KDE/release-service/22.04.3/kmbox-22.04.3.tar.xz) = 28732 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index 0ad7c9490cdf..2f10515c31e6 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672128 -SHA256 (KDE/release-service/22.04.2/kmime-22.04.2.tar.xz) = 60d2264337009b4d466c9e35433ee459338cce6ab43e148ab7b92694b4389003 -SIZE (KDE/release-service/22.04.2/kmime-22.04.2.tar.xz) = 156096 +TIMESTAMP = 1657013462 +SHA256 (KDE/release-service/22.04.3/kmime-22.04.3.tar.xz) = cf96dab08c27715698cdca6a424d11ef4133c2a3331fa968090089a306de34cd +SIZE (KDE/release-service/22.04.3/kmime-22.04.3.tar.xz) = 156100 diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index c92bb328256f..2722b941459f 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672129 -SHA256 (KDE/release-service/22.04.2/kontactinterface-22.04.2.tar.xz) = a6618c9f1340a65eba5c8f57395feae75fbf09152f55396f9b694dec1a4bfc5d -SIZE (KDE/release-service/22.04.2/kontactinterface-22.04.2.tar.xz) = 40540 +TIMESTAMP = 1657013463 +SHA256 (KDE/release-service/22.04.3/kontactinterface-22.04.3.tar.xz) = 35b1ff8dcddcd8c81533989819508beb5effc41c4063d538bae2ddb733edea5a +SIZE (KDE/release-service/22.04.3/kontactinterface-22.04.3.tar.xz) = 40548 diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index 05692dbd2df2..46bf51aae67b 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672147 -SHA256 (KDE/release-service/22.04.2/kpimtextedit-22.04.2.tar.xz) = e41d4b2f8ecb39e13333f5410384fcce7a86e3ca2c6c08cdfe95d70eb2a79b55 -SIZE (KDE/release-service/22.04.2/kpimtextedit-22.04.2.tar.xz) = 216052 +TIMESTAMP = 1657013483 +SHA256 (KDE/release-service/22.04.3/kpimtextedit-22.04.3.tar.xz) = 2dbc53584524477e8bbf8f8a919438e47c2ae1345ace5787f2e3989e2db260bd +SIZE (KDE/release-service/22.04.3/kpimtextedit-22.04.3.tar.xz) = 216340 diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 4cdcfbe3f406..7dc4858edde4 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672134 -SHA256 (KDE/release-service/22.04.2/krdc-22.04.2.tar.xz) = f12f4c0505b24cbe36d7ed2995dccf67bad40a7db50774eb49657da0bb6ffeae -SIZE (KDE/release-service/22.04.2/krdc-22.04.2.tar.xz) = 1584416 +TIMESTAMP = 1657013469 +SHA256 (KDE/release-service/22.04.3/krdc-22.04.3.tar.xz) = 99b656431d2b8e6306b1561c07e0fe0c37602d970898a272b59488a4ecc0482f +SIZE (KDE/release-service/22.04.3/krdc-22.04.3.tar.xz) = 1582516 diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 075a851bed39..fe3f1e0976e4 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672136 -SHA256 (KDE/release-service/22.04.2/krfb-22.04.2.tar.xz) = 37a4d8c0176011e74790334cdb6db548f1cc008ad83d9c33fda0df4cbbf8f98c -SIZE (KDE/release-service/22.04.2/krfb-22.04.2.tar.xz) = 1303192 +TIMESTAMP = 1657013471 +SHA256 (KDE/release-service/22.04.3/krfb-22.04.3.tar.xz) = c13e0e2ee052be97cd6c7be4ca9533e410118292b69a2bdcbfc9ed78a82a0026 +SIZE (KDE/release-service/22.04.3/krfb-22.04.3.tar.xz) = 1301788 diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 7b1264598b03..9780e5e4c1ff 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672137 -SHA256 (KDE/release-service/22.04.2/ksmtp-22.04.2.tar.xz) = 76321620c7aa0c1b1e858145a9d47723d419d9e5e96ba6518604f00e1acc7c00 -SIZE (KDE/release-service/22.04.2/ksmtp-22.04.2.tar.xz) = 48636 +TIMESTAMP = 1657013472 +SHA256 (KDE/release-service/22.04.3/ksmtp-22.04.3.tar.xz) = 9f50f4a0caace0511f6e13ea98bb07f32826d638ce27b2171772ee5abb3f1cd0 +SIZE (KDE/release-service/22.04.3/ksmtp-22.04.3.tar.xz) = 48680 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index d91432ba273e..854e7c703e03 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672124 -SHA256 (KDE/release-service/22.04.2/ktnef-22.04.2.tar.xz) = ffc242379d34679b65f0053e2790486d6d32615648358be97d9f65a6ed5c9b7a -SIZE (KDE/release-service/22.04.2/ktnef-22.04.2.tar.xz) = 303712 +TIMESTAMP = 1657013458 +SHA256 (KDE/release-service/22.04.3/ktnef-22.04.3.tar.xz) = 70dab3e8e10f6bf4458fa0f918c82efe829b4a692799b0816d383228a7527b5b +SIZE (KDE/release-service/22.04.3/ktnef-22.04.3.tar.xz) = 303724 diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 2a9dabf68164..190d900217f3 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672122 -SHA256 (KDE/release-service/22.04.2/libgravatar-22.04.2.tar.xz) = 5f82177bd0acfd0510fc1ea53cf2dd700b083732e73e47616dee98ae26b7ed56 -SIZE (KDE/release-service/22.04.2/libgravatar-22.04.2.tar.xz) = 35820 +TIMESTAMP = 1657013457 +SHA256 (KDE/release-service/22.04.3/libgravatar-22.04.3.tar.xz) = 3826da4d1eb64826db12876e9d484ba6322675e14532e3c5f7f8b158832733fe +SIZE (KDE/release-service/22.04.3/libgravatar-22.04.3.tar.xz) = 35820 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 3b617dc3b83f..31f42907c102 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672130 -SHA256 (KDE/release-service/22.04.2/libkgapi-22.04.2.tar.xz) = 9fc3f8a0472db6199473f87b3efaa096df865b681d293f134365043692028bb9 -SIZE (KDE/release-service/22.04.2/libkgapi-22.04.2.tar.xz) = 245612 +TIMESTAMP = 1657013465 +SHA256 (KDE/release-service/22.04.3/libkgapi-22.04.3.tar.xz) = 276b6a1cf35573e8b80574f46aac6535545d938868d47fbd6687842a32e68754 +SIZE (KDE/release-service/22.04.3/libkgapi-22.04.3.tar.xz) = 245496 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 59be3682f2d1..29bfc2ddd7ac 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672144 -SHA256 (KDE/release-service/22.04.2/libksieve-22.04.2.tar.xz) = fd5fe3a46a8a59edf4c3fde0872fd25f533ee96c3bdf848385f6a58b9d3a9c64 -SIZE (KDE/release-service/22.04.2/libksieve-22.04.2.tar.xz) = 576908 +TIMESTAMP = 1657013480 +SHA256 (KDE/release-service/22.04.3/libksieve-22.04.3.tar.xz) = 8c96095993fe0d67d86e4857467b5adb6cb3095892c315a6bfab62fd7622ac68 +SIZE (KDE/release-service/22.04.3/libksieve-22.04.3.tar.xz) = 576588 diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 42a25c4ef1fc..5911521be516 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672148 -SHA256 (KDE/release-service/22.04.2/mailcommon-22.04.2.tar.xz) = d9d00e4509b919f745a5e8f662e8c92375733cc73757f108e1d41a45a0097df8 -SIZE (KDE/release-service/22.04.2/mailcommon-22.04.2.tar.xz) = 739816 +TIMESTAMP = 1657013484 +SHA256 (KDE/release-service/22.04.3/mailcommon-22.04.3.tar.xz) = eb3b2b848574f086c6e9642adfbb61fa0e69e6f857f368d0fa0ec6a9ce15396e +SIZE (KDE/release-service/22.04.3/mailcommon-22.04.3.tar.xz) = 748616 diff --git a/net/mailcommon/pkg-plist b/net/mailcommon/pkg-plist index 2f458001f421..a5344f278eda 100644 --- a/net/mailcommon/pkg-plist +++ b/net/mailcommon/pkg-plist @@ -1,165 +1,166 @@ include/KF5/MailCommon/MailCommon/AccountConfigOrderDialog include/KF5/MailCommon/MailCommon/AddTagDialog include/KF5/MailCommon/MailCommon/BackupJob include/KF5/MailCommon/MailCommon/CollectionExpiryPage include/KF5/MailCommon/MailCommon/CollectionExpiryWidget include/KF5/MailCommon/MailCommon/CollectionGeneralPage include/KF5/MailCommon/MailCommon/CollectionGeneralWidget include/KF5/MailCommon/MailCommon/CollectionTemplatesWidget include/KF5/MailCommon/MailCommon/CollectionViewWidget include/KF5/MailCommon/MailCommon/CryptoUtils include/KF5/MailCommon/MailCommon/DBusOperators include/KF5/MailCommon/MailCommon/ExpireCollectionAttribute include/KF5/MailCommon/MailCommon/FavoriteCollectionOrderProxyModel include/KF5/MailCommon/MailCommon/FavoriteCollectionWidget include/KF5/MailCommon/MailCommon/FilterAction include/KF5/MailCommon/MailCommon/FilterActionDict include/KF5/MailCommon/MailCommon/FilterImporterAbstract include/KF5/MailCommon/MailCommon/FilterImporterBalsa include/KF5/MailCommon/MailCommon/FilterImporterClawsMail include/KF5/MailCommon/MailCommon/FilterImporterExporter include/KF5/MailCommon/MailCommon/FilterImporterPathCache include/KF5/MailCommon/MailCommon/FilterLog include/KF5/MailCommon/MailCommon/FilterManager include/KF5/MailCommon/MailCommon/FolderCollectionMonitor include/KF5/MailCommon/MailCommon/FolderJob include/KF5/MailCommon/MailCommon/FolderRequester include/KF5/MailCommon/MailCommon/FolderSelectionDialog include/KF5/MailCommon/MailCommon/FolderSettings include/KF5/MailCommon/MailCommon/FolderTreeView include/KF5/MailCommon/MailCommon/FolderTreeWidget include/KF5/MailCommon/MailCommon/FolderTreeWidgetProxyModel include/KF5/MailCommon/MailCommon/ItemContext include/KF5/MailCommon/MailCommon/JobScheduler include/KF5/MailCommon/MailCommon/KMFilterDialog include/KF5/MailCommon/MailCommon/MDNStateAttribute include/KF5/MailCommon/MailCommon/MailFilter include/KF5/MailCommon/MailCommon/MailInterfaces include/KF5/MailCommon/MailCommon/MailKernel include/KF5/MailCommon/MailCommon/MailUtil include/KF5/MailCommon/MailCommon/RedirectDialog include/KF5/MailCommon/MailCommon/ResourceReadConfigFile include/KF5/MailCommon/MailCommon/SearchPattern include/KF5/MailCommon/MailCommon/SearchPatternEdit include/KF5/MailCommon/MailCommon/SearchRule include/KF5/MailCommon/MailCommon/SearchRuleStatus include/KF5/MailCommon/MailCommon/SendMdnHandler include/KF5/MailCommon/MailCommon/SnippetTreeView include/KF5/MailCommon/MailCommon/SnippetWidget include/KF5/MailCommon/MailCommon/SnippetsManager include/KF5/MailCommon/MailCommon/SnippetsModel include/KF5/MailCommon/MailCommon/Tag include/KF5/MailCommon/MailCommon/TagWidget include/KF5/MailCommon/mailcommon/accountconfigorderdialog.h include/KF5/MailCommon/mailcommon/addtagdialog.h include/KF5/MailCommon/mailcommon/backupjob.h include/KF5/MailCommon/mailcommon/collectionexpirypage.h include/KF5/MailCommon/mailcommon/collectionexpirywidget.h include/KF5/MailCommon/mailcommon/collectiongeneralpage.h include/KF5/MailCommon/mailcommon/collectiongeneralwidget.h include/KF5/MailCommon/mailcommon/collectiontemplateswidget.h include/KF5/MailCommon/mailcommon/collectionviewwidget.h include/KF5/MailCommon/mailcommon/cryptoutils.h include/KF5/MailCommon/mailcommon/dbusoperators.h include/KF5/MailCommon/mailcommon/expirecollectionattribute.h include/KF5/MailCommon/mailcommon/favoritecollectionorderproxymodel.h include/KF5/MailCommon/mailcommon/favoritecollectionwidget.h include/KF5/MailCommon/mailcommon/filteraction.h include/KF5/MailCommon/mailcommon/filteractiondict.h include/KF5/MailCommon/mailcommon/filterimporterabstract.h include/KF5/MailCommon/mailcommon/filterimporterbalsa.h include/KF5/MailCommon/mailcommon/filterimporterclawsmail.h include/KF5/MailCommon/mailcommon/filterimporterexporter.h include/KF5/MailCommon/mailcommon/filterimporterpathcache.h include/KF5/MailCommon/mailcommon/filterlog.h include/KF5/MailCommon/mailcommon/filtermanager.h include/KF5/MailCommon/mailcommon/foldercollectionmonitor.h include/KF5/MailCommon/mailcommon/folderjob.h include/KF5/MailCommon/mailcommon/folderrequester.h include/KF5/MailCommon/mailcommon/folderselectiondialog.h include/KF5/MailCommon/mailcommon/foldersettings.h include/KF5/MailCommon/mailcommon/foldertreeview.h include/KF5/MailCommon/mailcommon/foldertreewidget.h include/KF5/MailCommon/mailcommon/foldertreewidgetproxymodel.h include/KF5/MailCommon/mailcommon/itemcontext.h include/KF5/MailCommon/mailcommon/jobscheduler.h include/KF5/MailCommon/mailcommon/kmfilterdialog.h include/KF5/MailCommon/mailcommon/mailcommon_export.h include/KF5/MailCommon/mailcommon/mailcommonsettings_base.h include/KF5/MailCommon/mailcommon/mailfilter.h include/KF5/MailCommon/mailcommon/mailinterfaces.h include/KF5/MailCommon/mailcommon/mailkernel.h include/KF5/MailCommon/mailcommon/mailutil.h include/KF5/MailCommon/mailcommon/mdnstateattribute.h include/KF5/MailCommon/mailcommon/pop3settings.h include/KF5/MailCommon/mailcommon/redirectdialog.h include/KF5/MailCommon/mailcommon/resourcereadconfigfile.h include/KF5/MailCommon/mailcommon/searchpattern.h include/KF5/MailCommon/mailcommon/searchpatternedit.h include/KF5/MailCommon/mailcommon/searchrule.h include/KF5/MailCommon/mailcommon/searchrulestatus.h include/KF5/MailCommon/mailcommon/sendmdnhandler.h include/KF5/MailCommon/mailcommon/snippetsmanager.h include/KF5/MailCommon/mailcommon/snippetsmodel.h include/KF5/MailCommon/mailcommon/snippettreeview.h include/KF5/MailCommon/mailcommon/snippetwidget.h include/KF5/MailCommon/mailcommon/tag.h include/KF5/MailCommon/mailcommon/tagwidget.h include/KF5/MailCommon/mailcommon_export.h include/KF5/MailCommon/mailcommon_version.h lib/cmake/KF5MailCommon/KF5MailCommonConfig.cmake lib/cmake/KF5MailCommon/KF5MailCommonConfigVersion.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets.cmake lib/libKF5MailCommon.so lib/libKF5MailCommon.so.5 lib/libKF5MailCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailCommon.pri %%QT_PLUGINDIR%%/designer/mailcommonwidgets.so share/locale/ar/LC_MESSAGES/libmailcommon.mo +share/locale/bg/LC_MESSAGES/libmailcommon.mo share/locale/bs/LC_MESSAGES/libmailcommon.mo share/locale/ca/LC_MESSAGES/libmailcommon.mo share/locale/ca@valencia/LC_MESSAGES/libmailcommon.mo share/locale/cs/LC_MESSAGES/libmailcommon.mo share/locale/da/LC_MESSAGES/libmailcommon.mo share/locale/de/LC_MESSAGES/libmailcommon.mo share/locale/el/LC_MESSAGES/libmailcommon.mo share/locale/en_GB/LC_MESSAGES/libmailcommon.mo share/locale/es/LC_MESSAGES/libmailcommon.mo share/locale/et/LC_MESSAGES/libmailcommon.mo share/locale/eu/LC_MESSAGES/libmailcommon.mo share/locale/fi/LC_MESSAGES/libmailcommon.mo share/locale/fr/LC_MESSAGES/libmailcommon.mo share/locale/ga/LC_MESSAGES/libmailcommon.mo share/locale/gl/LC_MESSAGES/libmailcommon.mo share/locale/hr/LC_MESSAGES/libmailcommon.mo share/locale/hu/LC_MESSAGES/libmailcommon.mo share/locale/ia/LC_MESSAGES/libmailcommon.mo share/locale/it/LC_MESSAGES/libmailcommon.mo share/locale/ja/LC_MESSAGES/libmailcommon.mo share/locale/kk/LC_MESSAGES/libmailcommon.mo share/locale/ko/LC_MESSAGES/libmailcommon.mo share/locale/lt/LC_MESSAGES/libmailcommon.mo share/locale/mr/LC_MESSAGES/libmailcommon.mo share/locale/nb/LC_MESSAGES/libmailcommon.mo share/locale/nds/LC_MESSAGES/libmailcommon.mo share/locale/nl/LC_MESSAGES/libmailcommon.mo share/locale/nn/LC_MESSAGES/libmailcommon.mo share/locale/pa/LC_MESSAGES/libmailcommon.mo share/locale/pl/LC_MESSAGES/libmailcommon.mo share/locale/pt/LC_MESSAGES/libmailcommon.mo share/locale/pt_BR/LC_MESSAGES/libmailcommon.mo share/locale/ro/LC_MESSAGES/libmailcommon.mo share/locale/ru/LC_MESSAGES/libmailcommon.mo share/locale/se/LC_MESSAGES/libmailcommon.mo share/locale/sk/LC_MESSAGES/libmailcommon.mo share/locale/sl/LC_MESSAGES/libmailcommon.mo share/locale/sr/LC_MESSAGES/libmailcommon.mo share/locale/sv/LC_MESSAGES/libmailcommon.mo share/locale/tr/LC_MESSAGES/libmailcommon.mo share/locale/ug/LC_MESSAGES/libmailcommon.mo share/locale/uk/LC_MESSAGES/libmailcommon.mo share/locale/zh_CN/LC_MESSAGES/libmailcommon.mo share/locale/zh_TW/LC_MESSAGES/libmailcommon.mo share/qlogging-categories5/mailcommon.categories share/qlogging-categories5/mailcommon.renamecategories diff --git a/net/mailimporter/distinfo b/net/mailimporter/distinfo index ba646c930252..1140baf4b190 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672131 -SHA256 (KDE/release-service/22.04.2/mailimporter-22.04.2.tar.xz) = 0d0952c304dfc3cfe5f87cfef7a8fbb7fc98b7afbddc63bf7b74e2c4d10aaadf -SIZE (KDE/release-service/22.04.2/mailimporter-22.04.2.tar.xz) = 559836 +TIMESTAMP = 1657013466 +SHA256 (KDE/release-service/22.04.3/mailimporter-22.04.3.tar.xz) = 6eb12a3d0803cc3f71c8bd4fbe348c262787288bf0b0cc2ae2999fbc915a6441 +SIZE (KDE/release-service/22.04.3/mailimporter-22.04.3.tar.xz) = 559312 diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index db5011a71211..35e41262540b 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672138 -SHA256 (KDE/release-service/22.04.2/messagelib-22.04.2.tar.xz) = df14ec401c32b3f85242a9ed41cceca37e0a5a2d018a27b40d0d0a8b0bbe37ec -SIZE (KDE/release-service/22.04.2/messagelib-22.04.2.tar.xz) = 10870812 +TIMESTAMP = 1657013474 +SHA256 (KDE/release-service/22.04.3/messagelib-22.04.3.tar.xz) = 50de2bdd2bdba547b8b318a0ad075a1176f496457056988a2709ea94915a7a1b +SIZE (KDE/release-service/22.04.3/messagelib-22.04.3.tar.xz) = 10828024 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 553342b22e91..443496642403 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,944 +1,948 @@ include/KF5/MessageComposer/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/MessageComposer/AkonadiSender include/KF5/MessageComposer/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/MessageComposer/AttachmentJob include/KF5/MessageComposer/MessageComposer/AttachmentModel include/KF5/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob include/KF5/MessageComposer/MessageComposer/AutocryptHeadersJob include/KF5/MessageComposer/MessageComposer/Composer include/KF5/MessageComposer/MessageComposer/ComposerAttachmentInterface include/KF5/MessageComposer/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/MessageComposer/ComposerViewBase include/KF5/MessageComposer/MessageComposer/ComposerViewInterface include/KF5/MessageComposer/MessageComposer/ContentJobBase include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariableMenu include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesJob include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil include/KF5/MessageComposer/MessageComposer/DraftStatus include/KF5/MessageComposer/MessageComposer/EncryptJob include/KF5/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/MessageComposer/FollowupReminder include/KF5/MessageComposer/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/MessageComposer/GlobalPart include/KF5/MessageComposer/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/MessageComposer/InfoPart include/KF5/MessageComposer/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/MessageComposer/JobBase include/KF5/MessageComposer/MessageComposer/Kleo_Util include/KF5/MessageComposer/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageComposer/MessageHelper include/KF5/MessageComposer/MessageComposer/MessagePart include/KF5/MessageComposer/MessageComposer/MessageSender include/KF5/MessageComposer/MessageComposer/MultipartJob include/KF5/MessageComposer/MessageComposer/PluginActionType include/KF5/MessageComposer/MessageComposer/PluginComposerInterface include/KF5/MessageComposer/MessageComposer/PluginEditor include/KF5/MessageComposer/MessageComposer/PluginEditorBase include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget include/KF5/MessageComposer/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/MessageComposer/PluginEditorConverterInitialData include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/MessageComposer/PluginEditorInit include/KF5/MessageComposer/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/MessageComposer/PluginEditorManager include/KF5/MessageComposer/MessageComposer/ProtectedHeadersJob include/KF5/MessageComposer/MessageComposer/Recipient include/KF5/MessageComposer/MessageComposer/RecipientLine include/KF5/MessageComposer/MessageComposer/RecipientsEditor include/KF5/MessageComposer/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/MessageComposer/RichTextComposerSignatures include/KF5/MessageComposer/MessageComposer/SendLaterCreateJob include/KF5/MessageComposer/MessageComposer/SendLaterDialog include/KF5/MessageComposer/MessageComposer/SendLaterInfo include/KF5/MessageComposer/MessageComposer/SendLaterJob include/KF5/MessageComposer/MessageComposer/SendLaterRemoveJob include/KF5/MessageComposer/MessageComposer/SendLaterUtil include/KF5/MessageComposer/MessageComposer/SignEncryptJob include/KF5/MessageComposer/MessageComposer/SignJob include/KF5/MessageComposer/MessageComposer/SignatureController include/KF5/MessageComposer/MessageComposer/SinglepartJob include/KF5/MessageComposer/MessageComposer/SkeletonMessageJob include/KF5/MessageComposer/MessageComposer/StatusBarLabelToggledState include/KF5/MessageComposer/MessageComposer/TextPart include/KF5/MessageComposer/MessageComposer/TransparentJob include/KF5/MessageComposer/MessageComposer/Util include/KF5/MessageComposer/messagecomposer/abstractencryptjob.h include/KF5/MessageComposer/messagecomposer/akonadisender.h include/KF5/MessageComposer/messagecomposer/aliasesexpandjob.h include/KF5/MessageComposer/messagecomposer/attachmentclipboardjob.h include/KF5/MessageComposer/messagecomposer/attachmentcontrollerbase.h include/KF5/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h include/KF5/MessageComposer/messagecomposer/attachmentjob.h include/KF5/MessageComposer/messagecomposer/attachmentmodel.h include/KF5/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h include/KF5/MessageComposer/messagecomposer/autocryptheadersjob.h include/KF5/MessageComposer/messagecomposer/composer.h include/KF5/MessageComposer/messagecomposer/composerattachmentinterface.h include/KF5/MessageComposer/messagecomposer/composerlineedit.h include/KF5/MessageComposer/messagecomposer/composerviewbase.h include/KF5/MessageComposer/messagecomposer/composerviewinterface.h include/KF5/MessageComposer/messagecomposer/contentjobbase.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablemenu.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesjob.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesutil.h include/KF5/MessageComposer/messagecomposer/draftstatus.h include/KF5/MessageComposer/messagecomposer/encryptjob.h include/KF5/MessageComposer/messagecomposer/followupreminder.h include/KF5/MessageComposer/messagecomposer/followupremindercreatejob.h include/KF5/MessageComposer/messagecomposer/followupreminderselectdatedialog.h include/KF5/MessageComposer/messagecomposer/globalpart.h include/KF5/MessageComposer/messagecomposer/imagescalingwidget.h include/KF5/MessageComposer/messagecomposer/infopart.h include/KF5/MessageComposer/messagecomposer/inserttextfilejob.h include/KF5/MessageComposer/messagecomposer/jobbase.h include/KF5/MessageComposer/messagecomposer/kleo_util.h include/KF5/MessageComposer/messagecomposer/maintextjob.h include/KF5/MessageComposer/messagecomposer/messagecomposer_debug.h include/KF5/MessageComposer/messagecomposer/messagecomposer_export.h include/KF5/MessageComposer/messagecomposer/messagecomposersettings.h include/KF5/MessageComposer/messagecomposer/messagecomposersettings_base.h include/KF5/MessageComposer/messagecomposer/messagefactoryng.h include/KF5/MessageComposer/messagecomposer/messagehelper.h include/KF5/MessageComposer/messagecomposer/messagepart.h include/KF5/MessageComposer/messagecomposer/messagesender.h include/KF5/MessageComposer/messagecomposer/multipartjob.h include/KF5/MessageComposer/messagecomposer/pluginactiontype.h include/KF5/MessageComposer/messagecomposer/plugincomposerinterface.h include/KF5/MessageComposer/messagecomposer/plugineditor.h include/KF5/MessageComposer/messagecomposer/plugineditorbase.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h include/KF5/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttext.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttextinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttextmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorgrammarmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorinit.h include/KF5/MessageComposer/messagecomposer/plugineditorinitinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorinitmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorinterface.h include/KF5/MessageComposer/messagecomposer/plugineditormanager.h include/KF5/MessageComposer/messagecomposer/protectedheadersjob.h include/KF5/MessageComposer/messagecomposer/recipient.h include/KF5/MessageComposer/messagecomposer/recipientline.h include/KF5/MessageComposer/messagecomposer/recipientseditor.h include/KF5/MessageComposer/messagecomposer/richtextcomposerng.h include/KF5/MessageComposer/messagecomposer/richtextcomposersignatures.h include/KF5/MessageComposer/messagecomposer/sendlatercreatejob.h include/KF5/MessageComposer/messagecomposer/sendlaterdialog.h include/KF5/MessageComposer/messagecomposer/sendlaterinfo.h include/KF5/MessageComposer/messagecomposer/sendlaterjob.h include/KF5/MessageComposer/messagecomposer/sendlaterremovejob.h include/KF5/MessageComposer/messagecomposer/sendlaterutil.h include/KF5/MessageComposer/messagecomposer/signaturecontroller.h include/KF5/MessageComposer/messagecomposer/signencryptjob.h include/KF5/MessageComposer/messagecomposer/signjob.h include/KF5/MessageComposer/messagecomposer/singlepartjob.h include/KF5/MessageComposer/messagecomposer/skeletonmessagejob.h include/KF5/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h include/KF5/MessageComposer/messagecomposer/textpart.h include/KF5/MessageComposer/messagecomposer/transparentjob.h include/KF5/MessageComposer/messagecomposer/util.h include/KF5/MessageComposer/messagecomposer_version.h include/KF5/MessageCore/MessageCore/AttachmentCompressJob include/KF5/MessageCore/MessageCore/AttachmentFromUrlBaseJob include/KF5/MessageCore/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/MessageCore/AttachmentLoadJob include/KF5/MessageCore/MessageCore/AttachmentPart include/KF5/MessageCore/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/MessageCore/AttachmentUpdateJob include/KF5/MessageCore/MessageCore/AutocryptRecipient include/KF5/MessageCore/MessageCore/AutocryptStorage include/KF5/MessageCore/MessageCore/AutocryptUtils include/KF5/MessageCore/MessageCore/ColorUtil include/KF5/MessageCore/MessageCore/ImageCollector include/KF5/MessageCore/MessageCore/MailingList include/KF5/MessageCore/MessageCore/MessageCoreSettings include/KF5/MessageCore/MessageCore/NodeHelper include/KF5/MessageCore/MessageCore/StringUtil include/KF5/MessageCore/MessageCore/Util include/KF5/MessageCore/messagecore/attachmentcompressjob.h include/KF5/MessageCore/messagecore/attachmentfromurlbasejob.h include/KF5/MessageCore/messagecore/attachmentfromurlutils.h include/KF5/MessageCore/messagecore/attachmentloadjob.h include/KF5/MessageCore/messagecore/attachmentpart.h include/KF5/MessageCore/messagecore/attachmentpropertiesdialog.h include/KF5/MessageCore/messagecore/attachmentupdatejob.h include/KF5/MessageCore/messagecore/autocryptrecipient.h include/KF5/MessageCore/messagecore/autocryptstorage.h include/KF5/MessageCore/messagecore/autocryptutils.h include/KF5/MessageCore/messagecore/colorutil.h include/KF5/MessageCore/messagecore/globalsettings_messagecore.h include/KF5/MessageCore/messagecore/imagecollector.h include/KF5/MessageCore/messagecore/mailinglist.h include/KF5/MessageCore/messagecore/messagecore_export.h include/KF5/MessageCore/messagecore/messagecoresettings.h include/KF5/MessageCore/messagecore/nodehelper.h include/KF5/MessageCore/messagecore/stringutil.h include/KF5/MessageCore/messagecore/util.h include/KF5/MessageCore/messagecore_version.h include/KF5/MessageList/MessageList/AggregationComboBox include/KF5/MessageList/MessageList/AggregationConfigButton include/KF5/MessageList/MessageList/Enums include/KF5/MessageList/MessageList/MessageListUtil include/KF5/MessageList/MessageList/Pane include/KF5/MessageList/MessageList/QuickSearchLine include/KF5/MessageList/MessageList/StorageModel include/KF5/MessageList/MessageList/StorageModelBase include/KF5/MessageList/MessageList/ThemeComboBox include/KF5/MessageList/MessageList/ThemeConfigButton include/KF5/MessageList/MessageList/View include/KF5/MessageList/MessageList/WidgetBase include/KF5/MessageList/messagelist/aggregationcombobox.h include/KF5/MessageList/messagelist/aggregationconfigbutton.h include/KF5/MessageList/messagelist/enums.h include/KF5/MessageList/messagelist/messagelist_export.h include/KF5/MessageList/messagelist/messagelistsettings.h include/KF5/MessageList/messagelist/messagelistutil.h include/KF5/MessageList/messagelist/pane.h include/KF5/MessageList/messagelist/quicksearchline.h include/KF5/MessageList/messagelist/storagemodel.h include/KF5/MessageList/messagelist/storagemodelbase.h include/KF5/MessageList/messagelist/themecombobox.h include/KF5/MessageList/messagelist/themeconfigbutton.h include/KF5/MessageList/messagelist/view.h include/KF5/MessageList/messagelist/widgetbase.h include/KF5/MessageList/messagelist_version.h include/KF5/MessageViewer/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/MessageViewer/CSSHelper include/KF5/MessageViewer/MessageViewer/CSSHelperBase include/KF5/MessageViewer/MessageViewer/ConfigureWidget include/KF5/MessageViewer/MessageViewer/DKIMCheckPolicy include/KF5/MessageViewer/MessageViewer/DKIMCheckSignatureJob include/KF5/MessageViewer/MessageViewer/DKIMHeaderParser include/KF5/MessageViewer/MessageViewer/DKIMInfo include/KF5/MessageViewer/MessageViewer/DKIMKeyRecord include/KF5/MessageViewer/MessageViewer/DKIMManageRulesDialog include/KF5/MessageViewer/MessageViewer/DKIMManageRulesWidget include/KF5/MessageViewer/MessageViewer/DKIMManager include/KF5/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer include/KF5/MessageViewer/MessageViewer/DKIMManagerKey include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyDialog include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyWidget include/KF5/MessageViewer/MessageViewer/DKIMManagerRules include/KF5/MessageViewer/MessageViewer/DKIMRule include/KF5/MessageViewer/MessageViewer/DKIMViewerMenu include/KF5/MessageViewer/MessageViewer/DKIMWidgetInfo include/KF5/MessageViewer/MessageViewer/EditorWatcher include/KF5/MessageViewer/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/MessageViewer/HeaderStrategy include/KF5/MessageViewer/MessageViewer/HeaderStyle include/KF5/MessageViewer/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/MessageViewer/HtmlBlock include/KF5/MessageViewer/MessageViewer/HtmlWriter include/KF5/MessageViewer/MessageViewer/IconNameCache include/KF5/MessageViewer/MessageViewer/InvitationSettings include/KF5/MessageViewer/MessageViewer/KXFace include/KF5/MessageViewer/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessageViewer/MessagePartRendererManager include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MessageViewer/MimeType include/KF5/MessageViewer/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/MessageViewer/OpenUrlWithManager include/KF5/MessageViewer/MessageViewer/OpenWithUrlInfo include/KF5/MessageViewer/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/MessageViewer/PrintingSettings include/KF5/MessageViewer/MessageViewer/RemoteContentConfigureDialog include/KF5/MessageViewer/MessageViewer/RemoteContentMenu include/KF5/MessageViewer/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/MessageViewer/ScamDetectionInfo include/KF5/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager include/KF5/MessageViewer/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/MessageViewer/Stl_Util include/KF5/MessageViewer/MessageViewer/URLHandler include/KF5/MessageViewer/MessageViewer/Viewer include/KF5/MessageViewer/MessageViewer/ViewerPlugin include/KF5/MessageViewer/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/MessageViewer/ViewerPluginToolManager include/KF5/MessageViewer/messageviewer/attachmentstrategy.h include/KF5/MessageViewer/messageviewer/bodyparturlhandler.h include/KF5/MessageViewer/messageviewer/bufferedhtmlwriter.h include/KF5/MessageViewer/messageviewer/config-messageviewer.h include/KF5/MessageViewer/messageviewer/configurewidget.h include/KF5/MessageViewer/messageviewer/csshelper.h include/KF5/MessageViewer/messageviewer/csshelperbase.h include/KF5/MessageViewer/messageviewer/dkimcheckpolicy.h include/KF5/MessageViewer/messageviewer/dkimchecksignaturejob.h include/KF5/MessageViewer/messageviewer/dkimheaderparser.h include/KF5/MessageViewer/messageviewer/dkiminfo.h include/KF5/MessageViewer/messageviewer/dkimkeyrecord.h include/KF5/MessageViewer/messageviewer/dkimmanager.h include/KF5/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h include/KF5/MessageViewer/messageviewer/dkimmanagerkey.h include/KF5/MessageViewer/messageviewer/dkimmanagerkeydialog.h include/KF5/MessageViewer/messageviewer/dkimmanagerkeywidget.h include/KF5/MessageViewer/messageviewer/dkimmanagerrules.h include/KF5/MessageViewer/messageviewer/dkimmanagerulesdialog.h include/KF5/MessageViewer/messageviewer/dkimmanageruleswidget.h include/KF5/MessageViewer/messageviewer/dkimrule.h include/KF5/MessageViewer/messageviewer/dkimviewermenu.h include/KF5/MessageViewer/messageviewer/dkimwidgetinfo.h include/KF5/MessageViewer/messageviewer/editorwatcher.h include/KF5/MessageViewer/messageviewer/filehtmlwriter.h include/KF5/MessageViewer/messageviewer/globalsettings_messageviewer.h include/KF5/MessageViewer/messageviewer/grantleeheaderstyle.h include/KF5/MessageViewer/messageviewer/grantleeheaderteststyle.h include/KF5/MessageViewer/messageviewer/headerstrategy.h include/KF5/MessageViewer/messageviewer/headerstyle.h include/KF5/MessageViewer/messageviewer/headerstyle_util.h include/KF5/MessageViewer/messageviewer/headerstyleinterface.h include/KF5/MessageViewer/messageviewer/headerstylemenumanager.h include/KF5/MessageViewer/messageviewer/headerstyleplugin.h include/KF5/MessageViewer/messageviewer/headerstylepluginmanager.h include/KF5/MessageViewer/messageviewer/htmlblock.h include/KF5/MessageViewer/messageviewer/htmlwriter.h include/KF5/MessageViewer/messageviewer/iconnamecache.h include/KF5/MessageViewer/messageviewer/invitationsettings.h include/KF5/MessageViewer/messageviewer/kxface.h include/KF5/MessageViewer/messageviewer/mailwebenginepage.h include/KF5/MessageViewer/messageviewer/mailwebengineview.h include/KF5/MessageViewer/messageviewer/markmessagereadhandler.h include/KF5/MessageViewer/messageviewer/messagepartrendererbase.h include/KF5/MessageViewer/messageviewer/messagepartrenderermanager.h include/KF5/MessageViewer/messageviewer/messagepartrenderplugin.h include/KF5/MessageViewer/messageviewer/messageviewer_debug.h include/KF5/MessageViewer/messageviewer/messageviewer_export.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/MessageViewer/messageviewer/messageviewersettings.h include/KF5/MessageViewer/messageviewer/messageviewerutil.h include/KF5/MessageViewer/messageviewer/mimetype.h include/KF5/MessageViewer/messageviewer/objecttreeemptysource.h include/KF5/MessageViewer/messageviewer/openurlwithmanager.h include/KF5/MessageViewer/messageviewer/openwithurlinfo.h include/KF5/MessageViewer/messageviewer/plainheaderstyle.h include/KF5/MessageViewer/messageviewer/printingsettings.h include/KF5/MessageViewer/messageviewer/remotecontentconfiguredialog.h include/KF5/MessageViewer/messageviewer/remotecontentmenu.h include/KF5/MessageViewer/messageviewer/richheaderstrategy.h include/KF5/MessageViewer/messageviewer/scamcheckshorturl.h include/KF5/MessageViewer/messageviewer/scamcheckshorturlmanager.h include/KF5/MessageViewer/messageviewer/scamdetectioninfo.h include/KF5/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h include/KF5/MessageViewer/messageviewer/scamexpandurljob.h include/KF5/MessageViewer/messageviewer/spamheaderanalyzer.h include/KF5/MessageViewer/messageviewer/stl_util.h include/KF5/MessageViewer/messageviewer/urlhandler.h include/KF5/MessageViewer/messageviewer/viewer.h include/KF5/MessageViewer/messageviewer/viewerplugin.h include/KF5/MessageViewer/messageviewer/viewerplugininterface.h include/KF5/MessageViewer/messageviewer/viewerpluginmanager.h include/KF5/MessageViewer/messageviewer/viewerplugintoolmanager.h include/KF5/MessageViewer/messageviewer_version.h include/KF5/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/MimeTreeParser/Enums include/KF5/MimeTreeParser/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/MimeTreeParser/Util include/KF5/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/MimeTreeParser/mimetreeparser/bodypart.h include/KF5/MimeTreeParser/mimetreeparser/bodypartformatter.h include/KF5/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h include/KF5/MimeTreeParser/mimetreeparser/enums.h include/KF5/MimeTreeParser/mimetreeparser/messagepart.h include/KF5/MimeTreeParser/mimetreeparser/mimetreeparser_export.h include/KF5/MimeTreeParser/mimetreeparser/nodehelper.h include/KF5/MimeTreeParser/mimetreeparser/objecttreeparser.h include/KF5/MimeTreeParser/mimetreeparser/objecttreesource.h include/KF5/MimeTreeParser/mimetreeparser/partmetadata.h include/KF5/MimeTreeParser/mimetreeparser/partnodebodypart.h include/KF5/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h include/KF5/MimeTreeParser/mimetreeparser/util.h include/KF5/MimeTreeParser/mimetreeparser_version.h include/KF5/TemplateParser/TemplateParser/CustomTemplates include/KF5/TemplateParser/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplateParser/TemplatesUtil include/KF5/TemplateParser/templateparser/customtemplates.h include/KF5/TemplateParser/templateparser/customtemplates_kfg.h include/KF5/TemplateParser/templateparser/customtemplatesmenu.h include/KF5/TemplateParser/templateparser/defaulttemplates.h include/KF5/TemplateParser/templateparser/globalsettings_templateparser.h include/KF5/TemplateParser/templateparser/templateconvertcommandjob.h include/KF5/TemplateParser/templateparser/templateparser_export.h include/KF5/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h include/KF5/TemplateParser/templateparser/templateparserextracthtmlinforesult.h include/KF5/TemplateParser/templateparser/templateparserjob.h include/KF5/TemplateParser/templateparser/templatescommandmenu.h include/KF5/TemplateParser/templateparser/templatesconfiguration.h include/KF5/TemplateParser/templateparser/templatesconfiguration_kfg.h include/KF5/TemplateParser/templateparser/templatesinsertcommandaction.h include/KF5/TemplateParser/templateparser/templatesinsertcommandpushbutton.h include/KF5/TemplateParser/templateparser/templatestextedit.h include/KF5/TemplateParser/templateparser/templatesutil.h include/KF5/TemplateParser/templateparser/ui_templatesconfiguration_base.h include/KF5/TemplateParser/templateparser_version.h include/KF5/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/WebEngineViewer/DeveloperToolDialog include/KF5/WebEngineViewer/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget include/KF5/WebEngineViewer/WebEngineViewer/TrackingWarningWidget include/KF5/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob include/KF5/WebEngineViewer/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/WebEngineViewer/ZoomActionMenu include/KF5/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurlcache.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurljob.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurlutil.h include/KF5/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h include/KF5/WebEngineViewer/webengineviewer/developertooldialog.h include/KF5/WebEngineViewer/webengineviewer/findbarbase.h include/KF5/WebEngineViewer/webengineviewer/findbarwebengineview.h include/KF5/WebEngineViewer/webengineviewer/hashcachemanager.h include/KF5/WebEngineViewer/webengineviewer/interceptormanager.h include/KF5/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/localdatabasemanager.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/WebEngineViewer/webengineviewer/searchfullhashjob.h include/KF5/WebEngineViewer/webengineviewer/submittedformwarningwidget.h include/KF5/WebEngineViewer/webengineviewer/trackingwarningwidget.h include/KF5/WebEngineViewer/webengineviewer/updatedatabaseinfo.h include/KF5/WebEngineViewer/webengineviewer/webengineaccesskey.h include/KF5/WebEngineViewer/webengineviewer/webengineexporthtmlpagejob.h include/KF5/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h include/KF5/WebEngineViewer/webengineviewer/webenginemanagescript.h include/KF5/WebEngineViewer/webengineviewer/webenginepage.h include/KF5/WebEngineViewer/webengineviewer/webenginescript.h include/KF5/WebEngineViewer/webengineviewer/webengineview.h include/KF5/WebEngineViewer/webengineviewer/webengineviewer_export.h include/KF5/WebEngineViewer/webengineviewer/webhittest.h include/KF5/WebEngineViewer/webengineviewer/webhittestresult.h include/KF5/WebEngineViewer/webengineviewer/zoomactionmenu.h include/KF5/WebEngineViewer/webengineviewer_version.h lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake lib/cmake/KF5MessageList/KF5MessageListConfig.cmake lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageList/KF5MessageListTargets.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake lib/libKF5MessageComposer.so lib/libKF5MessageComposer.so.5 lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageCore.so lib/libKF5MessageCore.so.5 lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageList.so lib/libKF5MessageList.so.5 lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageViewer.so lib/libKF5MessageViewer.so.5 lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MimeTreeParser.so lib/libKF5MimeTreeParser.so.5 lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5TemplateParser.so lib/libKF5TemplateParser.so.5 lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5WebEngineViewer.so lib/libKF5WebEngineViewer.so.5 lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/be/LC_MESSAGES/libmessagelist.mo share/locale/be/LC_MESSAGES/libmessageviewer.mo share/locale/be/LC_MESSAGES/libmimetreeparser.mo +share/locale/bg/LC_MESSAGES/libmessagecomposer.mo +share/locale/bg/LC_MESSAGES/libmessagecore.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo +share/locale/bg/LC_MESSAGES/libtemplateparser.mo +share/locale/bg/LC_MESSAGES/libwebengineviewer.mo share/locale/bs/LC_MESSAGES/libmessagecomposer.mo share/locale/bs/LC_MESSAGES/libmessagecore.mo share/locale/bs/LC_MESSAGES/libmessagelist.mo share/locale/bs/LC_MESSAGES/libmessageviewer.mo share/locale/bs/LC_MESSAGES/libmimetreeparser.mo share/locale/bs/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libmessagecomposer.mo share/locale/ca/LC_MESSAGES/libmessagecore.mo share/locale/ca/LC_MESSAGES/libmessagelist.mo share/locale/ca/LC_MESSAGES/libmessageviewer.mo share/locale/ca/LC_MESSAGES/libmimetreeparser.mo share/locale/ca/LC_MESSAGES/libtemplateparser.mo share/locale/ca/LC_MESSAGES/libwebengineviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecomposer.mo share/locale/ca@valencia/LC_MESSAGES/libmessagecore.mo share/locale/ca@valencia/LC_MESSAGES/libmessagelist.mo share/locale/ca@valencia/LC_MESSAGES/libmessageviewer.mo share/locale/ca@valencia/LC_MESSAGES/libmimetreeparser.mo share/locale/ca@valencia/LC_MESSAGES/libtemplateparser.mo share/locale/ca@valencia/LC_MESSAGES/libwebengineviewer.mo share/locale/cs/LC_MESSAGES/libmessagecomposer.mo share/locale/cs/LC_MESSAGES/libmessagecore.mo share/locale/cs/LC_MESSAGES/libmessagelist.mo share/locale/cs/LC_MESSAGES/libmessageviewer.mo share/locale/cs/LC_MESSAGES/libmimetreeparser.mo share/locale/cs/LC_MESSAGES/libtemplateparser.mo share/locale/cs/LC_MESSAGES/libwebengineviewer.mo share/locale/da/LC_MESSAGES/libmessagecomposer.mo share/locale/da/LC_MESSAGES/libmessagecore.mo share/locale/da/LC_MESSAGES/libmessagelist.mo share/locale/da/LC_MESSAGES/libmessageviewer.mo share/locale/da/LC_MESSAGES/libmimetreeparser.mo share/locale/da/LC_MESSAGES/libtemplateparser.mo share/locale/da/LC_MESSAGES/libwebengineviewer.mo share/locale/de/LC_MESSAGES/libmessagecomposer.mo share/locale/de/LC_MESSAGES/libmessagecore.mo share/locale/de/LC_MESSAGES/libmessagelist.mo share/locale/de/LC_MESSAGES/libmessageviewer.mo share/locale/de/LC_MESSAGES/libmimetreeparser.mo share/locale/de/LC_MESSAGES/libtemplateparser.mo share/locale/de/LC_MESSAGES/libwebengineviewer.mo share/locale/el/LC_MESSAGES/libmessagecomposer.mo share/locale/el/LC_MESSAGES/libmessagecore.mo share/locale/el/LC_MESSAGES/libmessagelist.mo share/locale/el/LC_MESSAGES/libmessageviewer.mo share/locale/el/LC_MESSAGES/libmimetreeparser.mo share/locale/el/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libmessagecomposer.mo share/locale/en_GB/LC_MESSAGES/libmessagecore.mo share/locale/en_GB/LC_MESSAGES/libmessagelist.mo share/locale/en_GB/LC_MESSAGES/libmessageviewer.mo share/locale/en_GB/LC_MESSAGES/libmimetreeparser.mo share/locale/en_GB/LC_MESSAGES/libtemplateparser.mo share/locale/en_GB/LC_MESSAGES/libwebengineviewer.mo share/locale/eo/LC_MESSAGES/libmessagecomposer.mo share/locale/eo/LC_MESSAGES/libmessagecore.mo share/locale/eo/LC_MESSAGES/libmessagelist.mo share/locale/eo/LC_MESSAGES/libmessageviewer.mo share/locale/eo/LC_MESSAGES/libmimetreeparser.mo share/locale/eo/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libmessagecomposer.mo share/locale/es/LC_MESSAGES/libmessagecore.mo share/locale/es/LC_MESSAGES/libmessagelist.mo share/locale/es/LC_MESSAGES/libmessageviewer.mo share/locale/es/LC_MESSAGES/libmimetreeparser.mo share/locale/es/LC_MESSAGES/libtemplateparser.mo share/locale/es/LC_MESSAGES/libwebengineviewer.mo share/locale/et/LC_MESSAGES/libmessagecomposer.mo share/locale/et/LC_MESSAGES/libmessagecore.mo share/locale/et/LC_MESSAGES/libmessagelist.mo share/locale/et/LC_MESSAGES/libmessageviewer.mo share/locale/et/LC_MESSAGES/libmimetreeparser.mo share/locale/et/LC_MESSAGES/libtemplateparser.mo share/locale/et/LC_MESSAGES/libwebengineviewer.mo share/locale/eu/LC_MESSAGES/libmessagecomposer.mo share/locale/eu/LC_MESSAGES/libmessagelist.mo share/locale/eu/LC_MESSAGES/libmessageviewer.mo share/locale/eu/LC_MESSAGES/libmimetreeparser.mo share/locale/fa/LC_MESSAGES/libmessagelist.mo share/locale/fa/LC_MESSAGES/libmessageviewer.mo share/locale/fa/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libmessagecomposer.mo share/locale/fi/LC_MESSAGES/libmessagecore.mo share/locale/fi/LC_MESSAGES/libmessagelist.mo share/locale/fi/LC_MESSAGES/libmessageviewer.mo share/locale/fi/LC_MESSAGES/libmimetreeparser.mo share/locale/fi/LC_MESSAGES/libtemplateparser.mo share/locale/fi/LC_MESSAGES/libwebengineviewer.mo share/locale/fr/LC_MESSAGES/libmessagecomposer.mo share/locale/fr/LC_MESSAGES/libmessagecore.mo share/locale/fr/LC_MESSAGES/libmessagelist.mo share/locale/fr/LC_MESSAGES/libmessageviewer.mo share/locale/fr/LC_MESSAGES/libmimetreeparser.mo share/locale/fr/LC_MESSAGES/libtemplateparser.mo share/locale/fr/LC_MESSAGES/libwebengineviewer.mo share/locale/ga/LC_MESSAGES/libmessagecomposer.mo share/locale/ga/LC_MESSAGES/libmessagecore.mo share/locale/ga/LC_MESSAGES/libmessagelist.mo share/locale/ga/LC_MESSAGES/libmessageviewer.mo share/locale/ga/LC_MESSAGES/libmimetreeparser.mo share/locale/ga/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libmessagecomposer.mo share/locale/gl/LC_MESSAGES/libmessagecore.mo share/locale/gl/LC_MESSAGES/libmessagelist.mo share/locale/gl/LC_MESSAGES/libmessageviewer.mo share/locale/gl/LC_MESSAGES/libmimetreeparser.mo share/locale/gl/LC_MESSAGES/libtemplateparser.mo share/locale/gl/LC_MESSAGES/libwebengineviewer.mo share/locale/he/LC_MESSAGES/libmessagelist.mo share/locale/he/LC_MESSAGES/libmessageviewer.mo share/locale/he/LC_MESSAGES/libmimetreeparser.mo share/locale/hi/LC_MESSAGES/libmessagelist.mo share/locale/hi/LC_MESSAGES/libmessageviewer.mo share/locale/hi/LC_MESSAGES/libmimetreeparser.mo share/locale/hr/LC_MESSAGES/libmessagelist.mo share/locale/hr/LC_MESSAGES/libmessageviewer.mo share/locale/hr/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libmessagecomposer.mo share/locale/hu/LC_MESSAGES/libmessagecore.mo share/locale/hu/LC_MESSAGES/libmessagelist.mo share/locale/hu/LC_MESSAGES/libmessageviewer.mo share/locale/hu/LC_MESSAGES/libmimetreeparser.mo share/locale/hu/LC_MESSAGES/libtemplateparser.mo share/locale/hu/LC_MESSAGES/libwebengineviewer.mo share/locale/ia/LC_MESSAGES/libmessagecomposer.mo share/locale/ia/LC_MESSAGES/libmessagecore.mo share/locale/ia/LC_MESSAGES/libmessagelist.mo share/locale/ia/LC_MESSAGES/libmessageviewer.mo share/locale/ia/LC_MESSAGES/libmimetreeparser.mo share/locale/ia/LC_MESSAGES/libtemplateparser.mo share/locale/ia/LC_MESSAGES/libwebengineviewer.mo share/locale/is/LC_MESSAGES/libmessagelist.mo share/locale/is/LC_MESSAGES/libmessageviewer.mo share/locale/is/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libmessagecomposer.mo share/locale/it/LC_MESSAGES/libmessagecore.mo share/locale/it/LC_MESSAGES/libmessagelist.mo share/locale/it/LC_MESSAGES/libmessageviewer.mo share/locale/it/LC_MESSAGES/libmimetreeparser.mo share/locale/it/LC_MESSAGES/libtemplateparser.mo share/locale/it/LC_MESSAGES/libwebengineviewer.mo share/locale/ja/LC_MESSAGES/libmessagecomposer.mo share/locale/ja/LC_MESSAGES/libmessagecore.mo share/locale/ja/LC_MESSAGES/libmessagelist.mo share/locale/ja/LC_MESSAGES/libmessageviewer.mo share/locale/ja/LC_MESSAGES/libmimetreeparser.mo share/locale/ja/LC_MESSAGES/libtemplateparser.mo share/locale/ja/LC_MESSAGES/libwebengineviewer.mo share/locale/kk/LC_MESSAGES/libmessagecomposer.mo share/locale/kk/LC_MESSAGES/libmessagecore.mo share/locale/kk/LC_MESSAGES/libmessagelist.mo share/locale/kk/LC_MESSAGES/libmessageviewer.mo share/locale/kk/LC_MESSAGES/libmimetreeparser.mo share/locale/kk/LC_MESSAGES/libtemplateparser.mo share/locale/km/LC_MESSAGES/libmessagecore.mo share/locale/km/LC_MESSAGES/libmessagelist.mo share/locale/km/LC_MESSAGES/libmessageviewer.mo share/locale/km/LC_MESSAGES/libmimetreeparser.mo share/locale/km/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libmessagecomposer.mo share/locale/ko/LC_MESSAGES/libmessagecore.mo share/locale/ko/LC_MESSAGES/libmessagelist.mo share/locale/ko/LC_MESSAGES/libmessageviewer.mo share/locale/ko/LC_MESSAGES/libmimetreeparser.mo share/locale/ko/LC_MESSAGES/libtemplateparser.mo share/locale/ko/LC_MESSAGES/libwebengineviewer.mo share/locale/lt/LC_MESSAGES/libmessagecomposer.mo share/locale/lt/LC_MESSAGES/libmessagecore.mo share/locale/lt/LC_MESSAGES/libmessagelist.mo share/locale/lt/LC_MESSAGES/libmessageviewer.mo share/locale/lt/LC_MESSAGES/libmimetreeparser.mo share/locale/lt/LC_MESSAGES/libtemplateparser.mo share/locale/lt/LC_MESSAGES/libwebengineviewer.mo share/locale/lv/LC_MESSAGES/libmessagecore.mo share/locale/lv/LC_MESSAGES/libmessagelist.mo share/locale/lv/LC_MESSAGES/libmessageviewer.mo share/locale/lv/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libmessagecomposer.mo share/locale/mr/LC_MESSAGES/libmessagecore.mo share/locale/mr/LC_MESSAGES/libmessagelist.mo share/locale/mr/LC_MESSAGES/libmessageviewer.mo share/locale/mr/LC_MESSAGES/libmimetreeparser.mo share/locale/mr/LC_MESSAGES/libtemplateparser.mo share/locale/nb/LC_MESSAGES/libmessagecomposer.mo share/locale/nb/LC_MESSAGES/libmessagecore.mo share/locale/nb/LC_MESSAGES/libmessagelist.mo share/locale/nb/LC_MESSAGES/libmessageviewer.mo share/locale/nb/LC_MESSAGES/libmimetreeparser.mo share/locale/nb/LC_MESSAGES/libtemplateparser.mo share/locale/nds/LC_MESSAGES/libmessagecomposer.mo share/locale/nds/LC_MESSAGES/libmessagecore.mo share/locale/nds/LC_MESSAGES/libmessagelist.mo share/locale/nds/LC_MESSAGES/libmessageviewer.mo share/locale/nds/LC_MESSAGES/libmimetreeparser.mo share/locale/nds/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libmessagecomposer.mo share/locale/nl/LC_MESSAGES/libmessagecore.mo share/locale/nl/LC_MESSAGES/libmessagelist.mo share/locale/nl/LC_MESSAGES/libmessageviewer.mo share/locale/nl/LC_MESSAGES/libmimetreeparser.mo share/locale/nl/LC_MESSAGES/libtemplateparser.mo share/locale/nl/LC_MESSAGES/libwebengineviewer.mo share/locale/nn/LC_MESSAGES/libmessagecomposer.mo share/locale/nn/LC_MESSAGES/libmessagecore.mo share/locale/nn/LC_MESSAGES/libmessagelist.mo share/locale/nn/LC_MESSAGES/libmessageviewer.mo share/locale/nn/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libmessagecomposer.mo share/locale/pa/LC_MESSAGES/libmessagecore.mo share/locale/pa/LC_MESSAGES/libmessagelist.mo share/locale/pa/LC_MESSAGES/libmessageviewer.mo share/locale/pa/LC_MESSAGES/libmimetreeparser.mo share/locale/pa/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libmessagecomposer.mo share/locale/pl/LC_MESSAGES/libmessagecore.mo share/locale/pl/LC_MESSAGES/libmessagelist.mo share/locale/pl/LC_MESSAGES/libmessageviewer.mo share/locale/pl/LC_MESSAGES/libmimetreeparser.mo share/locale/pl/LC_MESSAGES/libtemplateparser.mo share/locale/pl/LC_MESSAGES/libwebengineviewer.mo share/locale/pt/LC_MESSAGES/libmessagecomposer.mo share/locale/pt/LC_MESSAGES/libmessagecore.mo share/locale/pt/LC_MESSAGES/libmessagelist.mo share/locale/pt/LC_MESSAGES/libmessageviewer.mo share/locale/pt/LC_MESSAGES/libmimetreeparser.mo share/locale/pt/LC_MESSAGES/libtemplateparser.mo share/locale/pt/LC_MESSAGES/libwebengineviewer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecomposer.mo share/locale/pt_BR/LC_MESSAGES/libmessagecore.mo share/locale/pt_BR/LC_MESSAGES/libmessagelist.mo share/locale/pt_BR/LC_MESSAGES/libmessageviewer.mo share/locale/pt_BR/LC_MESSAGES/libmimetreeparser.mo share/locale/pt_BR/LC_MESSAGES/libtemplateparser.mo share/locale/pt_BR/LC_MESSAGES/libwebengineviewer.mo share/locale/ro/LC_MESSAGES/libmessagecomposer.mo share/locale/ro/LC_MESSAGES/libmessagecore.mo share/locale/ro/LC_MESSAGES/libmessagelist.mo share/locale/ro/LC_MESSAGES/libmessageviewer.mo share/locale/ro/LC_MESSAGES/libmimetreeparser.mo share/locale/ro/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libmessagecomposer.mo share/locale/ru/LC_MESSAGES/libmessagecore.mo share/locale/ru/LC_MESSAGES/libmessagelist.mo share/locale/ru/LC_MESSAGES/libmessageviewer.mo share/locale/ru/LC_MESSAGES/libmimetreeparser.mo share/locale/ru/LC_MESSAGES/libtemplateparser.mo share/locale/ru/LC_MESSAGES/libwebengineviewer.mo share/locale/se/LC_MESSAGES/libmessagelist.mo share/locale/se/LC_MESSAGES/libmessageviewer.mo share/locale/se/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libmessagecomposer.mo share/locale/sk/LC_MESSAGES/libmessagecore.mo share/locale/sk/LC_MESSAGES/libmessagelist.mo share/locale/sk/LC_MESSAGES/libmessageviewer.mo share/locale/sk/LC_MESSAGES/libmimetreeparser.mo share/locale/sk/LC_MESSAGES/libtemplateparser.mo share/locale/sk/LC_MESSAGES/libwebengineviewer.mo share/locale/sl/LC_MESSAGES/libmessagecomposer.mo share/locale/sl/LC_MESSAGES/libmessagecore.mo share/locale/sl/LC_MESSAGES/libmessagelist.mo share/locale/sl/LC_MESSAGES/libmessageviewer.mo share/locale/sl/LC_MESSAGES/libmimetreeparser.mo share/locale/sl/LC_MESSAGES/libtemplateparser.mo share/locale/sl/LC_MESSAGES/libwebengineviewer.mo share/locale/sr/LC_MESSAGES/libmessagecomposer.mo share/locale/sr/LC_MESSAGES/libmessagecore.mo share/locale/sr/LC_MESSAGES/libmessagelist.mo share/locale/sr/LC_MESSAGES/libmessageviewer.mo share/locale/sr/LC_MESSAGES/libmimetreeparser.mo share/locale/sr/LC_MESSAGES/libtemplateparser.mo share/locale/sr/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/ta/LC_MESSAGES/libmessagecomposer.mo share/locale/ta/LC_MESSAGES/libmessagecore.mo share/locale/ta/LC_MESSAGES/libmessagelist.mo share/locale/ta/LC_MESSAGES/libmessageviewer.mo share/locale/ta/LC_MESSAGES/libmimetreeparser.mo share/locale/ta/LC_MESSAGES/libtemplateparser.mo share/locale/ta/LC_MESSAGES/libwebengineviewer.mo share/locale/tg/LC_MESSAGES/libmessagelist.mo share/locale/tg/LC_MESSAGES/libmessageviewer.mo share/locale/tg/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libmessagecomposer.mo share/locale/tr/LC_MESSAGES/libmessagecore.mo share/locale/tr/LC_MESSAGES/libmessagelist.mo share/locale/tr/LC_MESSAGES/libmessageviewer.mo share/locale/tr/LC_MESSAGES/libmimetreeparser.mo share/locale/tr/LC_MESSAGES/libtemplateparser.mo share/locale/tr/LC_MESSAGES/libwebengineviewer.mo share/locale/ug/LC_MESSAGES/libmessagecomposer.mo share/locale/ug/LC_MESSAGES/libmessagecore.mo share/locale/ug/LC_MESSAGES/libmessagelist.mo share/locale/ug/LC_MESSAGES/libmessageviewer.mo share/locale/ug/LC_MESSAGES/libmimetreeparser.mo share/locale/ug/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libmessagecomposer.mo share/locale/uk/LC_MESSAGES/libmessagecore.mo share/locale/uk/LC_MESSAGES/libmessagelist.mo share/locale/uk/LC_MESSAGES/libmessageviewer.mo share/locale/uk/LC_MESSAGES/libmimetreeparser.mo share/locale/uk/LC_MESSAGES/libtemplateparser.mo share/locale/uk/LC_MESSAGES/libwebengineviewer.mo share/locale/wa/LC_MESSAGES/libmessagelist.mo share/locale/wa/LC_MESSAGES/libmessageviewer.mo share/locale/wa/LC_MESSAGES/libmimetreeparser.mo share/locale/wa/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_CN/LC_MESSAGES/libmessagecore.mo share/locale/zh_CN/LC_MESSAGES/libmessagelist.mo share/locale/zh_CN/LC_MESSAGES/libmessageviewer.mo share/locale/zh_CN/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_CN/LC_MESSAGES/libtemplateparser.mo share/locale/zh_CN/LC_MESSAGES/libwebengineviewer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecomposer.mo share/locale/zh_TW/LC_MESSAGES/libmessagecore.mo share/locale/zh_TW/LC_MESSAGES/libmessagelist.mo share/locale/zh_TW/LC_MESSAGES/libmessageviewer.mo share/locale/zh_TW/LC_MESSAGES/libmimetreeparser.mo share/locale/zh_TW/LC_MESSAGES/libtemplateparser.mo share/locale/zh_TW/LC_MESSAGES/libwebengineviewer.mo share/messagelist/pics/mail-horizontal-space.png share/messagelist/pics/mail-vertical-separator-line.png share/messageviewer/about/default/background.png share/messageviewer/about/default/main.css share/messageviewer/about/default/main.html share/messageviewer/about/default/splash.theme share/messageviewer/about/default/status.html share/messageviewer/defaultthemes/%%GRANTLEE_VERSION_SHORT%%/header.html share/messageviewer/defaultthemes/%%GRANTLEE_VERSION_SHORT%%/kmail_default.desktop share/messageviewer/defaultthemes/%%GRANTLEE_VERSION_SHORT%%/photo.png share/messageviewer/defaultthemes/%%GRANTLEE_VERSION_SHORT%%/photo.svg share/messageviewer/defaultthemes/%%GRANTLEE_VERSION_SHORT%%/style.css share/messageviewer/longurlServices.json share/org.kde.syntax-highlighting/syntax/kmail-template.xml share/qlogging-categories5/messagelib.categories share/qlogging-categories5/messagelib.renamecategories diff --git a/net/pimcommon/distinfo b/net/pimcommon/distinfo index 3a675851efc7..7342196b0151 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672126 -SHA256 (KDE/release-service/22.04.2/pimcommon-22.04.2.tar.xz) = e141cd0ed14be489d93c784e283db0d3f84fb01f17017a27368b487112de5505 -SIZE (KDE/release-service/22.04.2/pimcommon-22.04.2.tar.xz) = 375836 +TIMESTAMP = 1657013460 +SHA256 (KDE/release-service/22.04.3/pimcommon-22.04.3.tar.xz) = 29ab2b4f0d9e5a16df20751a4032b00411a3da9f43ea85127ad1155b181edaf6 +SIZE (KDE/release-service/22.04.3/pimcommon-22.04.3.tar.xz) = 375756 diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index 29cecd630f3c..20a855ff6d9f 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672125 -SHA256 (KDE/release-service/22.04.2/zeroconf-ioslave-22.04.2.tar.xz) = ff9b7b33eb0401b23ddb3e94edef2d35c36a93c1631c361f1b16caef276ccad2 -SIZE (KDE/release-service/22.04.2/zeroconf-ioslave-22.04.2.tar.xz) = 38948 +TIMESTAMP = 1657013459 +SHA256 (KDE/release-service/22.04.3/zeroconf-ioslave-22.04.3.tar.xz) = 21a61723f704431e8bcca4c11e1a91a51022f0a9fa73a2c46be7d80eef6a7949 +SIZE (KDE/release-service/22.04.3/zeroconf-ioslave-22.04.3.tar.xz) = 38960 diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 3eb4f58fa5e4..cdff07f57f18 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672009 -SHA256 (KDE/release-service/22.04.2/print-manager-22.04.2.tar.xz) = bfba2fc35807095c65e42d27fddf03f22c8dd3af8724ad6ac08ba3cf2979b652 -SIZE (KDE/release-service/22.04.2/print-manager-22.04.2.tar.xz) = 272036 +TIMESTAMP = 1657013343 +SHA256 (KDE/release-service/22.04.3/print-manager-22.04.3.tar.xz) = 24335254d0c9ec088c9c0e93ce0112104fe7a3bd609e790a5857e0e1f0ee761e +SIZE (KDE/release-service/22.04.3/print-manager-22.04.3.tar.xz) = 272252 diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 2faba1f15b2e..02171ac74af8 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672007 -SHA256 (KDE/release-service/22.04.2/kalzium-22.04.2.tar.xz) = 0631d96b6a33aaf6c6baedabdde198d8f832f6bfd28db5610947c3160b2fce20 -SIZE (KDE/release-service/22.04.2/kalzium-22.04.2.tar.xz) = 24475688 +TIMESTAMP = 1657013342 +SHA256 (KDE/release-service/22.04.3/kalzium-22.04.3.tar.xz) = 46c0cce0caeb6de1ab60f294f7fb63790aa14427bf4c18be281e7ca31a983e40 +SIZE (KDE/release-service/22.04.3/kalzium-22.04.3.tar.xz) = 24470092 diff --git a/science/step/distinfo b/science/step/distinfo index a0dfe6bfc6ff..30ed62c9922a 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672008 -SHA256 (KDE/release-service/22.04.2/step-22.04.2.tar.xz) = 9fd4c3077b501184461a5d7d0c533c3080296b5511c11f16d6e49415cd6cc053 -SIZE (KDE/release-service/22.04.2/step-22.04.2.tar.xz) = 938176 +TIMESTAMP = 1657013343 +SHA256 (KDE/release-service/22.04.3/step-22.04.3.tar.xz) = 8f899155af8be137c9a1b5509d3156a5a378a7d1466b449a47afbe1e0d1bfba9 +SIZE (KDE/release-service/22.04.3/step-22.04.3.tar.xz) = 938120 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index 3ad13d836657..a1df105a7b5f 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1310 +1,1353 @@ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg 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/icons/hicolor/128x128/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/bg/LC_MESSAGES/step_example_files.mo +share/locale/bg/LC_MESSAGES/step_objinfo_files.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/bg/brownian.step +%%DATADIR%%/examples/bg/doublependulum.step +%%DATADIR%%/examples/bg/eightpendula.step +%%DATADIR%%/examples/bg/first.step +%%DATADIR%%/examples/bg/fourpendula.step +%%DATADIR%%/examples/bg/gas.step +%%DATADIR%%/examples/bg/graph.step +%%DATADIR%%/examples/bg/liquid.step +%%DATADIR%%/examples/bg/lissajous.step +%%DATADIR%%/examples/bg/motor.step +%%DATADIR%%/examples/bg/motor1.step +%%DATADIR%%/examples/bg/note.step +%%DATADIR%%/examples/bg/resonance.step +%%DATADIR%%/examples/bg/softbody.step +%%DATADIR%%/examples/bg/solar.step +%%DATADIR%%/examples/bg/springs.step +%%DATADIR%%/examples/bg/wave.step %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step -%%DATADIR%%/examples/ca/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/motor1.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/bg/anchor.html +%%DATADIR%%/objinfo/l10n/bg/box.html +%%DATADIR%%/objinfo/l10n/bg/chargedparticle.html +%%DATADIR%%/objinfo/l10n/bg/coulombforce.html +%%DATADIR%%/objinfo/l10n/bg/disk.html +%%DATADIR%%/objinfo/l10n/bg/gas.html +%%DATADIR%%/objinfo/l10n/bg/gasljforce.html +%%DATADIR%%/objinfo/l10n/bg/gasparticle.html +%%DATADIR%%/objinfo/l10n/bg/gravitationforce.html +%%DATADIR%%/objinfo/l10n/bg/linearmotor.html +%%DATADIR%%/objinfo/l10n/bg/meter.html +%%DATADIR%%/objinfo/l10n/bg/note.html +%%DATADIR%%/objinfo/l10n/bg/particle.html +%%DATADIR%%/objinfo/l10n/bg/pin.html +%%DATADIR%%/objinfo/l10n/bg/polygon.html +%%DATADIR%%/objinfo/l10n/bg/softbody.html +%%DATADIR%%/objinfo/l10n/bg/spring.html +%%DATADIR%%/objinfo/l10n/bg/weightforce.html +%%DATADIR%%/objinfo/l10n/bg/world.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/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/bg/tutorial1.step +%%DATADIR%%/tutorials/bg/tutorial2.step +%%DATADIR%%/tutorials/bg/tutorial3.step +%%DATADIR%%/tutorials/bg/tutorial4.step +%%DATADIR%%/tutorials/bg/tutorial5.step %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/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 759b3134f59f..6437c7ed7612 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672112 -SHA256 (KDE/release-service/22.04.2/kgpg-22.04.2.tar.xz) = 9e151bb1760c5b2596ffd726db935e833896c7aa080da33e76c908fb2dc54de6 -SIZE (KDE/release-service/22.04.2/kgpg-22.04.2.tar.xz) = 2955060 +TIMESTAMP = 1657013446 +SHA256 (KDE/release-service/22.04.3/kgpg-22.04.3.tar.xz) = 3c3337a0bbd017fc2f6f02020c13c93eface737b9d734215535f22c3f67adda4 +SIZE (KDE/release-service/22.04.3/kgpg-22.04.3.tar.xz) = 2953412 diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 4729f26bdcd4..01c8f6ef6a96 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672109 -SHA256 (KDE/release-service/22.04.2/kleopatra-22.04.2.tar.xz) = 560887cd65a49788ed06400ba2a0d216268dfd47472699952872cb1f99d19385 -SIZE (KDE/release-service/22.04.2/kleopatra-22.04.2.tar.xz) = 2239728 +TIMESTAMP = 1657013443 +SHA256 (KDE/release-service/22.04.3/kleopatra-22.04.3.tar.xz) = a50530fe4d996dac2d1ead428dd36f71655def590de39be37b76fa686110e4b6 +SIZE (KDE/release-service/22.04.3/kleopatra-22.04.3.tar.xz) = 2260100 diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index df61253bd0e9..e8a52b858375 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672109 -SHA256 (KDE/release-service/22.04.2/kpkpass-22.04.2.tar.xz) = dc128dde0166f1c16e54d639ebd88ed78c9467fbb44da4e01c7cac519641d845 -SIZE (KDE/release-service/22.04.2/kpkpass-22.04.2.tar.xz) = 28284 +TIMESTAMP = 1657013442 +SHA256 (KDE/release-service/22.04.3/kpkpass-22.04.3.tar.xz) = 03eb257db51091bd3f2940db9d526a89155f8ec62b4b6f7a86e5b411bd515316 +SIZE (KDE/release-service/22.04.3/kpkpass-22.04.3.tar.xz) = 28280 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index f911563c6fcf..2b8498781941 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672110 -SHA256 (KDE/release-service/22.04.2/kwalletmanager-22.04.2.tar.xz) = e1416274d8166b98752226a41b015bd47d90b391b9c077bcf0ace589e62d5fe2 -SIZE (KDE/release-service/22.04.2/kwalletmanager-22.04.2.tar.xz) = 801196 +TIMESTAMP = 1657013444 +SHA256 (KDE/release-service/22.04.3/kwalletmanager-22.04.3.tar.xz) = 0b1498cc3eecdc620dfb4ddf60c0ed99a7e7cc1053d9abbb8056cbefdb392738 +SIZE (KDE/release-service/22.04.3/kwalletmanager-22.04.3.tar.xz) = 801296 diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 41575fc061d6..9392177549e9 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672111 -SHA256 (KDE/release-service/22.04.2/libkleo-22.04.2.tar.xz) = dc0580538aae6ecf43df5db777c4e5b26b98e4dcb7bd9eb42b4477430589f18f -SIZE (KDE/release-service/22.04.2/libkleo-22.04.2.tar.xz) = 469116 +TIMESTAMP = 1657013445 +SHA256 (KDE/release-service/22.04.3/libkleo-22.04.3.tar.xz) = d76e6fd8740d17eea371c4052b17e98a7fdf77651d801a31701968f2455c665a +SIZE (KDE/release-service/22.04.3/libkleo-22.04.3.tar.xz) = 469368 diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 4aba4a2a7aa9..44e09d6f00a9 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672000 -SHA256 (KDE/release-service/22.04.2/baloo-widgets-22.04.2.tar.xz) = 96fd6af14b3ea7226f230156dfb0542a6c4f9761a386b5a154a4bf7f4822cc30 -SIZE (KDE/release-service/22.04.2/baloo-widgets-22.04.2.tar.xz) = 271060 +TIMESTAMP = 1657013335 +SHA256 (KDE/release-service/22.04.3/baloo-widgets-22.04.3.tar.xz) = d73a67e07189c10ff633f7c0cac40f4d7ac83debeea5d83f6fd7b745b35d0401 +SIZE (KDE/release-service/22.04.3/baloo-widgets-22.04.3.tar.xz) = 271288 diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 0c0ce9a64160..74476f919f46 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672002 -SHA256 (KDE/release-service/22.04.2/filelight-22.04.2.tar.xz) = 036583422b0f4a633fed6a88ae07386d4cac4925d6d5789d7fb1ec9645367624 -SIZE (KDE/release-service/22.04.2/filelight-22.04.2.tar.xz) = 692660 +TIMESTAMP = 1657013336 +SHA256 (KDE/release-service/22.04.3/filelight-22.04.3.tar.xz) = 00ee4c583f06fb5a8004d63d74a2c295ee66fec53f14c7703798a50c8a572ff7 +SIZE (KDE/release-service/22.04.3/filelight-22.04.3.tar.xz) = 692604 diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index a937e87d1400..84c56c9ef893 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671999 -SHA256 (KDE/release-service/22.04.2/k3b-22.04.2.tar.xz) = 29a502475121e1778b52c6f1991421961bf3304fa24f13a8eeef441b895475e5 -SIZE (KDE/release-service/22.04.2/k3b-22.04.2.tar.xz) = 10751416 +TIMESTAMP = 1657013334 +SHA256 (KDE/release-service/22.04.3/k3b-22.04.3.tar.xz) = 54fb41f28b7fdca02ccdc57e160d052d1930e1137b63f97547d88ba68c993fae +SIZE (KDE/release-service/22.04.3/k3b-22.04.3.tar.xz) = 10745764 diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index a6e9a7db87c9..3c305949e842 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671991 -SHA256 (KDE/release-service/22.04.2/kbackup-22.04.2.tar.xz) = a83c780b59ab65ac188b3c75c47d109f3082b62a6175747f01f49eb8d9434de1 -SIZE (KDE/release-service/22.04.2/kbackup-22.04.2.tar.xz) = 389800 +TIMESTAMP = 1657013326 +SHA256 (KDE/release-service/22.04.3/kbackup-22.04.3.tar.xz) = 2a12226c06dd4a86f4c7e312ff958aaa4f9c322448c2c063288dadc557a707ed +SIZE (KDE/release-service/22.04.3/kbackup-22.04.3.tar.xz) = 389664 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index d83155bacf79..0ccd5ad72dbe 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671996 -SHA256 (KDE/release-service/22.04.2/kcron-22.04.2.tar.xz) = 904cf5625e7430eccb8ae39bd8cc280aeba3fcc911b7557b5dcb639ddf0301cd -SIZE (KDE/release-service/22.04.2/kcron-22.04.2.tar.xz) = 916024 +TIMESTAMP = 1657013330 +SHA256 (KDE/release-service/22.04.3/kcron-22.04.3.tar.xz) = 35f7d9de4f445b2848b4f46fb0bd8bd07313d3200e4ff0dd22a9158a1d0c37fc +SIZE (KDE/release-service/22.04.3/kcron-22.04.3.tar.xz) = 916660 diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index a8a117059e3d..bffccc981788 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671995 -SHA256 (KDE/release-service/22.04.2/kdebugsettings-22.04.2.tar.xz) = bac44d99c56fd5f05831d3f2b74a38534b6495aeff4b598b9547a49f60cc24c5 -SIZE (KDE/release-service/22.04.2/kdebugsettings-22.04.2.tar.xz) = 92680 +TIMESTAMP = 1657013329 +SHA256 (KDE/release-service/22.04.3/kdebugsettings-22.04.3.tar.xz) = ad161555ee63f69c1c644812601cb95976c27b2c5ab05e6f2dab66b19b701ee0 +SIZE (KDE/release-service/22.04.3/kdebugsettings-22.04.3.tar.xz) = 92692 diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 793a3156e907..4e8c3fa0c481 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671998 -SHA256 (KDE/release-service/22.04.2/kdf-22.04.2.tar.xz) = 1928bc30a8f40bbbc80e38674b5993a2b1c530f2375902608bd34c4d9cc42d6b -SIZE (KDE/release-service/22.04.2/kdf-22.04.2.tar.xz) = 477036 +TIMESTAMP = 1657013333 +SHA256 (KDE/release-service/22.04.3/kdf-22.04.3.tar.xz) = 618b6c992664baaf34da3ff3eae487eb5a5a42554abf2fe54cf3631bc7e40dd4 +SIZE (KDE/release-service/22.04.3/kdf-22.04.3.tar.xz) = 476968 diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 741e63378e6a..804a2868ffa9 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672003 -SHA256 (KDE/release-service/22.04.2/kdialog-22.04.2.tar.xz) = 57aa30dbbe53ba807443c1f6dae413ae99ec972d1cb8a67e741eec1008a35933 -SIZE (KDE/release-service/22.04.2/kdialog-22.04.2.tar.xz) = 116736 +TIMESTAMP = 1657013337 +SHA256 (KDE/release-service/22.04.3/kdialog-22.04.3.tar.xz) = c0fd9708b17ffa016fc54eacffac6735e0db82b4812208ef9ffd41c9d36fff33 +SIZE (KDE/release-service/22.04.3/kdialog-22.04.3.tar.xz) = 116660 diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 0172680819eb..004230f6af29 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671997 -SHA256 (KDE/release-service/22.04.2/kfloppy-22.04.2.tar.xz) = 3b6ae21cb8e31d1d29f3ba5b06451fd8a5c177f90f062cf04f28346440016c56 -SIZE (KDE/release-service/22.04.2/kfloppy-22.04.2.tar.xz) = 213912 +TIMESTAMP = 1657013331 +SHA256 (KDE/release-service/22.04.3/kfloppy-22.04.3.tar.xz) = b923572e8fad6320b658748832f14cf2847e8cf4937d5998bde08ab721b1d1a9 +SIZE (KDE/release-service/22.04.3/kfloppy-22.04.3.tar.xz) = 213828 diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index 40ed0c07948e..7982d9ed8788 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671994 -SHA256 (KDE/release-service/22.04.2/khelpcenter-22.04.2.tar.xz) = ea2ac9d2468bf6afc9fafe03276b40a96cfbdccbea2d219abbb903e57b30d3d4 -SIZE (KDE/release-service/22.04.2/khelpcenter-22.04.2.tar.xz) = 4293424 +TIMESTAMP = 1657013328 +SHA256 (KDE/release-service/22.04.3/khelpcenter-22.04.3.tar.xz) = 2da4d4fd6550fce0b97f1e329d7103b6e607d327830c0ea48b5a07582338423d +SIZE (KDE/release-service/22.04.3/khelpcenter-22.04.3.tar.xz) = 4308564 diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 45fc7f322200..e723cc4a5468 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671998 -SHA256 (KDE/release-service/22.04.2/kpmcore-22.04.2.tar.xz) = c6b18b51b1e8b3456fe79e68a0fd0583a8f426aa7762cef10614d8b0c2701ea6 -SIZE (KDE/release-service/22.04.2/kpmcore-22.04.2.tar.xz) = 599220 +TIMESTAMP = 1657013332 +SHA256 (KDE/release-service/22.04.3/kpmcore-22.04.3.tar.xz) = 2e62a095481784b3812d2a737d7bcafd45c5a98dcbfa9fc4a076d94d22a51a13 +SIZE (KDE/release-service/22.04.3/kpmcore-22.04.3.tar.xz) = 593904 diff --git a/sysutils/kpmcore/pkg-plist b/sysutils/kpmcore/pkg-plist index 46b1b94be5b7..ea8a22fd55d6 100644 --- a/sysutils/kpmcore/pkg-plist +++ b/sysutils/kpmcore/pkg-plist @@ -1,171 +1,172 @@ include/kpmcore/backend/corebackend.h include/kpmcore/backend/corebackendmanager.h include/kpmcore/core/device.h include/kpmcore/core/devicescanner.h include/kpmcore/core/diskdevice.h include/kpmcore/core/fstab.h include/kpmcore/core/lvmdevice.h include/kpmcore/core/operationrunner.h include/kpmcore/core/operationstack.h include/kpmcore/core/partition.h include/kpmcore/core/partitionalignment.h include/kpmcore/core/partitionnode.h include/kpmcore/core/partitionrole.h include/kpmcore/core/partitiontable.h include/kpmcore/core/smartattribute.h include/kpmcore/core/smartstatus.h include/kpmcore/core/softwareraid.h include/kpmcore/core/volumemanagerdevice.h include/kpmcore/fs/apfs.h include/kpmcore/fs/bitlocker.h include/kpmcore/fs/btrfs.h include/kpmcore/fs/exfat.h include/kpmcore/fs/ext2.h include/kpmcore/fs/ext3.h include/kpmcore/fs/ext4.h include/kpmcore/fs/extended.h include/kpmcore/fs/f2fs.h include/kpmcore/fs/fat12.h include/kpmcore/fs/fat16.h include/kpmcore/fs/fat32.h include/kpmcore/fs/filesystem.h include/kpmcore/fs/filesystemfactory.h include/kpmcore/fs/hfs.h include/kpmcore/fs/hfsplus.h include/kpmcore/fs/hpfs.h include/kpmcore/fs/iso9660.h include/kpmcore/fs/jfs.h include/kpmcore/fs/linuxraidmember.h include/kpmcore/fs/linuxswap.h include/kpmcore/fs/luks2.h include/kpmcore/fs/luks.h include/kpmcore/fs/lvm2_pv.h include/kpmcore/fs/minix.h include/kpmcore/fs/nilfs2.h include/kpmcore/fs/ntfs.h include/kpmcore/fs/ocfs2.h include/kpmcore/fs/reiser4.h include/kpmcore/fs/reiserfs.h include/kpmcore/fs/udf.h include/kpmcore/fs/ufs.h include/kpmcore/fs/unformatted.h include/kpmcore/fs/unknown.h include/kpmcore/fs/xfs.h include/kpmcore/fs/zfs.h include/kpmcore/gui/partresizerwidget.h include/kpmcore/gui/partwidget.h include/kpmcore/gui/partwidgetbase.h include/kpmcore/jobs/job.h include/kpmcore/ops/backupoperation.h include/kpmcore/ops/checkoperation.h include/kpmcore/ops/copyoperation.h include/kpmcore/ops/createfilesystemoperation.h include/kpmcore/ops/createpartitiontableoperation.h include/kpmcore/ops/createvolumegroupoperation.h include/kpmcore/ops/deactivatevolumegroupoperation.h include/kpmcore/ops/deleteoperation.h include/kpmcore/ops/newoperation.h include/kpmcore/ops/operation.h include/kpmcore/ops/removevolumegroupoperation.h include/kpmcore/ops/resizeoperation.h include/kpmcore/ops/resizevolumegroupoperation.h include/kpmcore/ops/restoreoperation.h include/kpmcore/ops/setfilesystemlabeloperation.h include/kpmcore/ops/setpartflagsoperation.h include/kpmcore/util/capacity.h include/kpmcore/util/externalcommand.h include/kpmcore/util/globallog.h include/kpmcore/util/helpers.h include/kpmcore/util/htmlreport.h include/kpmcore/util/libpartitionmanagerexport.h include/kpmcore/util/report.h lib/cmake/KPMcore/KPMcoreConfig.cmake lib/cmake/KPMcore/KPMcoreConfigVersion.cmake lib/cmake/KPMcore/KPMcoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPMcore/KPMcoreTargets.cmake lib/libexec/kpmcore_externalcommand lib/libkpmcore.so lib/libkpmcore.so.12 lib/libkpmcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kpmcore/pmdummybackendplugin.so share/dbus-1/system-services/org.kde.kpmcore.helperinterface.service share/dbus-1/system.d/org.kde.kpmcore.helperinterface.conf share/locale/ar/LC_MESSAGES/kpmcore.mo share/locale/ast/LC_MESSAGES/kpmcore._policy_.mo share/locale/ast/LC_MESSAGES/kpmcore.mo +share/locale/bg/LC_MESSAGES/kpmcore._policy_.mo share/locale/bg/LC_MESSAGES/kpmcore.mo share/locale/bs/LC_MESSAGES/kpmcore.mo share/locale/ca/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca/LC_MESSAGES/kpmcore.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore.mo share/locale/cs/LC_MESSAGES/kpmcore._policy_.mo share/locale/cs/LC_MESSAGES/kpmcore.mo share/locale/da/LC_MESSAGES/kpmcore._policy_.mo share/locale/da/LC_MESSAGES/kpmcore.mo share/locale/de/LC_MESSAGES/kpmcore._policy_.mo share/locale/de/LC_MESSAGES/kpmcore.mo share/locale/el/LC_MESSAGES/kpmcore._policy_.mo share/locale/el/LC_MESSAGES/kpmcore.mo share/locale/en_GB/LC_MESSAGES/kpmcore._policy_.mo share/locale/en_GB/LC_MESSAGES/kpmcore.mo share/locale/eo/LC_MESSAGES/kpmcore.mo share/locale/es/LC_MESSAGES/kpmcore._policy_.mo share/locale/es/LC_MESSAGES/kpmcore.mo share/locale/et/LC_MESSAGES/kpmcore._policy_.mo share/locale/et/LC_MESSAGES/kpmcore.mo share/locale/eu/LC_MESSAGES/kpmcore._policy_.mo share/locale/eu/LC_MESSAGES/kpmcore.mo share/locale/fi/LC_MESSAGES/kpmcore._policy_.mo share/locale/fi/LC_MESSAGES/kpmcore.mo share/locale/fr/LC_MESSAGES/kpmcore._policy_.mo share/locale/fr/LC_MESSAGES/kpmcore.mo share/locale/ga/LC_MESSAGES/kpmcore.mo share/locale/gl/LC_MESSAGES/kpmcore._policy_.mo share/locale/gl/LC_MESSAGES/kpmcore.mo share/locale/hr/LC_MESSAGES/kpmcore.mo share/locale/hu/LC_MESSAGES/kpmcore._policy_.mo share/locale/hu/LC_MESSAGES/kpmcore.mo share/locale/id/LC_MESSAGES/kpmcore.mo share/locale/is/LC_MESSAGES/kpmcore.mo share/locale/it/LC_MESSAGES/kpmcore._policy_.mo share/locale/it/LC_MESSAGES/kpmcore.mo share/locale/ja/LC_MESSAGES/kpmcore._policy_.mo share/locale/ja/LC_MESSAGES/kpmcore.mo share/locale/ko/LC_MESSAGES/kpmcore._policy_.mo share/locale/ko/LC_MESSAGES/kpmcore.mo share/locale/lt/LC_MESSAGES/kpmcore._policy_.mo share/locale/lt/LC_MESSAGES/kpmcore.mo share/locale/lv/LC_MESSAGES/kpmcore.mo share/locale/mr/LC_MESSAGES/kpmcore.mo share/locale/nb/LC_MESSAGES/kpmcore.mo share/locale/nds/LC_MESSAGES/kpmcore.mo share/locale/nl/LC_MESSAGES/kpmcore._policy_.mo share/locale/nl/LC_MESSAGES/kpmcore.mo share/locale/nn/LC_MESSAGES/kpmcore.mo share/locale/pa/LC_MESSAGES/kpmcore.mo share/locale/pl/LC_MESSAGES/kpmcore._policy_.mo share/locale/pl/LC_MESSAGES/kpmcore.mo share/locale/pt/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt/LC_MESSAGES/kpmcore.mo share/locale/pt_BR/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt_BR/LC_MESSAGES/kpmcore.mo share/locale/ro/LC_MESSAGES/kpmcore.mo share/locale/ru/LC_MESSAGES/kpmcore._policy_.mo share/locale/ru/LC_MESSAGES/kpmcore.mo share/locale/sk/LC_MESSAGES/kpmcore._policy_.mo share/locale/sk/LC_MESSAGES/kpmcore.mo share/locale/sl/LC_MESSAGES/kpmcore._policy_.mo share/locale/sl/LC_MESSAGES/kpmcore.mo share/locale/sr/LC_MESSAGES/kpmcore.mo share/locale/sv/LC_MESSAGES/kpmcore._policy_.mo share/locale/sv/LC_MESSAGES/kpmcore.mo share/locale/tr/LC_MESSAGES/kpmcore.mo share/locale/ug/LC_MESSAGES/kpmcore.mo share/locale/uk/LC_MESSAGES/kpmcore._policy_.mo share/locale/uk/LC_MESSAGES/kpmcore.mo share/locale/zh_CN/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_CN/LC_MESSAGES/kpmcore.mo share/locale/zh_TW/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_TW/LC_MESSAGES/kpmcore.mo share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index b2bb8602bbf9..62478d34e1a1 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671993 -SHA256 (KDE/release-service/22.04.2/ksystemlog-22.04.2.tar.xz) = 7f9f21e211511a59c660897a3ed0f5e59591b829e5daefc3f69ced2fe998caab -SIZE (KDE/release-service/22.04.2/ksystemlog-22.04.2.tar.xz) = 1971576 +TIMESTAMP = 1657013328 +SHA256 (KDE/release-service/22.04.3/ksystemlog-22.04.3.tar.xz) = 9b3e32c01ab5faff4935c3f5606fc3d882cfd547308ba91bed6a353b411d3275 +SIZE (KDE/release-service/22.04.3/ksystemlog-22.04.3.tar.xz) = 1969184 diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index 9ecd20f0f560..77a3c86a3bab 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671992 -SHA256 (KDE/release-service/22.04.2/signon-kwallet-extension-22.04.2.tar.xz) = 81db99f9f301a8de6bc09265744f1f10c9e3a7ea79daff69f7798e8c4379564c -SIZE (KDE/release-service/22.04.2/signon-kwallet-extension-22.04.2.tar.xz) = 11168 +TIMESTAMP = 1657013327 +SHA256 (KDE/release-service/22.04.3/signon-kwallet-extension-22.04.3.tar.xz) = a19088f8dc538d1ce13faa1acd6508fbb8fe80ad666b255bfda7a721a74fba6e +SIZE (KDE/release-service/22.04.3/signon-kwallet-extension-22.04.3.tar.xz) = 11172 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index 9909ca63324a..307929e54b27 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672001 -SHA256 (KDE/release-service/22.04.2/sweeper-22.04.2.tar.xz) = 432a3288a4928744bcd66d801b3be894e684a024a87f070d4010b431b5cddd29 -SIZE (KDE/release-service/22.04.2/sweeper-22.04.2.tar.xz) = 377448 +TIMESTAMP = 1657013336 +SHA256 (KDE/release-service/22.04.3/sweeper-22.04.3.tar.xz) = 41707e4337a4cfb7a7b6e1188813af68d9b1515f2139e3455521a8d48a22aa4d +SIZE (KDE/release-service/22.04.3/sweeper-22.04.3.tar.xz) = 377740 diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index 67efb4886769..36200d758650 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672065 -SHA256 (KDE/release-service/22.04.2/kompare-22.04.2.tar.xz) = 7395bd39641080532d124e08b9fbad9b3ec070d4e4c44805248842050c8f1aa1 -SIZE (KDE/release-service/22.04.2/kompare-22.04.2.tar.xz) = 943808 +TIMESTAMP = 1657013399 +SHA256 (KDE/release-service/22.04.3/kompare-22.04.3.tar.xz) = 0a7cf268c50fb616eca8b610fdbf7b2faeb012ae6e8b91bd1ab5fcacd14e6d92 +SIZE (KDE/release-service/22.04.3/kompare-22.04.3.tar.xz) = 950924 diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index a5496848207e..7e62a37b5a3d 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672064 -SHA256 (KDE/release-service/22.04.2/libkomparediff2-22.04.2.tar.xz) = a7713b5a7e32e7ed51f3b93668d6338b4674feb149d5d9514e3a9b53367fe609 -SIZE (KDE/release-service/22.04.2/libkomparediff2-22.04.2.tar.xz) = 172624 +TIMESTAMP = 1657013398 +SHA256 (KDE/release-service/22.04.3/libkomparediff2-22.04.3.tar.xz) = 13f11a4025c06ac685348fed5aa56f9ab967b3ef748942069cfa64c34e5f5ded +SIZE (KDE/release-service/22.04.3/libkomparediff2-22.04.3.tar.xz) = 169788 diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 133b40b09c8a..4346070522a0 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672063 -SHA256 (KDE/release-service/22.04.2/markdownpart-22.04.2.tar.xz) = 8e917edb9d81d4756fec0921894da9efb9a977cdbb1955ae8a35a2b129a4964e -SIZE (KDE/release-service/22.04.2/markdownpart-22.04.2.tar.xz) = 29092 +TIMESTAMP = 1657013397 +SHA256 (KDE/release-service/22.04.3/markdownpart-22.04.3.tar.xz) = d60ba1f008a6cbb8408e486301725a59372f902f8ecad1d849f0d4ba19cf52a4 +SIZE (KDE/release-service/22.04.3/markdownpart-22.04.3.tar.xz) = 29100 diff --git a/www/falkon/distinfo b/www/falkon/distinfo index ebcbf891d495..194d47064bc2 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672065 -SHA256 (KDE/release-service/22.04.2/falkon-22.04.2.tar.xz) = 13f6462326efcb29c2097f7b3f21c91bd81f49981b5451c73e54619d80d203e6 -SIZE (KDE/release-service/22.04.2/falkon-22.04.2.tar.xz) = 2493084 +TIMESTAMP = 1657013399 +SHA256 (KDE/release-service/22.04.3/falkon-22.04.3.tar.xz) = 9771a1405b0020c0d30978aba9b5d5a1c88e16af462ab9e7aef472c8ff9a61ff +SIZE (KDE/release-service/22.04.3/falkon-22.04.3.tar.xz) = 2492448 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index ebd9fee0fd21..2ee75b17ced8 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,747 +1,754 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm +share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo +share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo +share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ro/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ro/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ro/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ro/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ro/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index b73420fc07f7..8daf980ce9d1 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672011 -SHA256 (KDE/release-service/22.04.2/kteatime-22.04.2.tar.xz) = d13bf6a8b829fe2c904c994a2f019a75e151f00d146e254b38a268529792352b -SIZE (KDE/release-service/22.04.2/kteatime-22.04.2.tar.xz) = 302792 +TIMESTAMP = 1657013345 +SHA256 (KDE/release-service/22.04.3/kteatime-22.04.3.tar.xz) = ec9a4707fbf6405b4c67c1f932e76d9893cc23eef8a2454295c6ba25454f4840 +SIZE (KDE/release-service/22.04.3/kteatime-22.04.3.tar.xz) = 302764 diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index e3ee7216b575..4c88e3889570 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672010 -SHA256 (KDE/release-service/22.04.2/ktimer-22.04.2.tar.xz) = a0576da9b0fc405ff1a0b88cb1a5ec7799d6a52212de206fbe2159e8b8dc13e1 -SIZE (KDE/release-service/22.04.2/ktimer-22.04.2.tar.xz) = 394496 +TIMESTAMP = 1657013344 +SHA256 (KDE/release-service/22.04.3/ktimer-22.04.3.tar.xz) = bf157a7c754029220c13169dfdfb67def42717335c12b9d2a3de54c6b9f36fd7 +SIZE (KDE/release-service/22.04.3/ktimer-22.04.3.tar.xz) = 394548 diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 998d8cf17954..11ce6fa22b1b 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671956 -SHA256 (KDE/release-service/22.04.2/dolphin-22.04.2.tar.xz) = c2e3c4c16ff42a224f3dc72c79b2f641d1648d439bfa8c06635784843e58d147 -SIZE (KDE/release-service/22.04.2/dolphin-22.04.2.tar.xz) = 5351360 +TIMESTAMP = 1657013290 +SHA256 (KDE/release-service/22.04.3/dolphin-22.04.3.tar.xz) = 8e573e1df98b5b8f134374da641c1f289a00d1b6aabf65ecf3b2a6a854b22a1e +SIZE (KDE/release-service/22.04.3/dolphin-22.04.3.tar.xz) = 5357912 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index a14b113c74a6..444b07d40901 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,146 +1,147 @@ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/dolphin/kcms/libkcm_dolphingeneral.so %%QT_PLUGINDIR%%/dolphin/kcms/libkcm_dolphinnavigation.so %%QT_PLUGINDIR%%/dolphin/kcms/libkcm_dolphinviewmodes.so %%QT_PLUGINDIR%%/kf%%SHLIB_SHVER%%/parts/dolphinpart.so lib/systemd/user/plasma-dolphin.service share/applications/org.kde.dolphin.desktop share/config.kcfg/dolphin_compactmodesettings.kcfg share/config.kcfg/dolphin_contextmenusettings.kcfg share/config.kcfg/dolphin_detailsmodesettings.kcfg share/config.kcfg/dolphin_directoryviewpropertysettings.kcfg share/config.kcfg/dolphin_generalsettings.kcfg share/config.kcfg/dolphin_iconsmodesettings.kcfg share/config.kcfg/dolphin_versioncontrolsettings.kcfg share/dbus-1/interfaces/org.freedesktop.FileManager1.xml share/dbus-1/services/org.kde.dolphin.FileManager1.service share/kglobalaccel/org.kde.dolphin.desktop share/knsrcfiles/servicemenu.knsrc share/kservices5/dolphinpart.desktop share/kservices5/kcmdolphingeneral.desktop share/kservices5/kcmdolphinnavigation.desktop share/kservices5/kcmdolphinviewmodes.desktop share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ar/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo +share/locale/bg/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/bs/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin.mo share/locale/ca/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ca@valencia/LC_MESSAGES/dolphin.mo share/locale/ca@valencia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/cs/LC_MESSAGES/dolphin.mo share/locale/cs/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/da/LC_MESSAGES/dolphin.mo share/locale/da/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/de/LC_MESSAGES/dolphin.mo share/locale/de/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/el/LC_MESSAGES/dolphin.mo share/locale/el/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/en_GB/LC_MESSAGES/dolphin.mo share/locale/en_GB/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eo/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin.mo share/locale/es/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/et/LC_MESSAGES/dolphin.mo share/locale/et/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/eu/LC_MESSAGES/dolphin.mo share/locale/eu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fa/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin.mo share/locale/fi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/fi/LC_SCRIPTS/dolphin/dolphin.js share/locale/fr/LC_MESSAGES/dolphin.mo share/locale/fr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ga/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin.mo share/locale/gl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/hr/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin.mo share/locale/hu/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ia/LC_MESSAGES/dolphin.mo share/locale/ia/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/id/LC_MESSAGES/dolphin.mo share/locale/id/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin.mo share/locale/it/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ja/LC_MESSAGES/dolphin.mo share/locale/ja/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lt/LC_MESSAGES/dolphin.mo share/locale/lt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/lv/LC_MESSAGES/dolphin.mo share/locale/lv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ml/LC_MESSAGES/dolphin.mo share/locale/ml/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/mr/LC_MESSAGES/dolphin.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin.mo share/locale/nl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nn/LC_MESSAGES/dolphin.mo share/locale/nn/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pa/LC_MESSAGES/dolphin.mo share/locale/pa/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pl/LC_MESSAGES/dolphin.mo share/locale/pl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt/LC_MESSAGES/dolphin.mo share/locale/pt/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/pt_BR/LC_MESSAGES/dolphin.mo share/locale/pt_BR/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ro/LC_MESSAGES/dolphin.mo share/locale/ro/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ru/LC_MESSAGES/dolphin.mo share/locale/ru/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/se/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin.mo share/locale/sk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sl/LC_MESSAGES/dolphin.mo share/locale/sl/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/sq/LC_MESSAGES/dolphin.mo share/locale/sr/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ta/LC_MESSAGES/dolphin.mo share/locale/ta/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/tg/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin.mo share/locale/tr/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ug/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin.mo share/locale/uk/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/vi/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml share/qlogging-categories5/dolphin.categories diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index aa26ff7f8718..affa5ccb18ad 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654671957 -SHA256 (KDE/release-service/22.04.2/konqueror-22.04.2.tar.xz) = 4c5ad6980e945c30822822e72992558cd7924ca12143c9ba7b1aaf79b9e2d5a1 -SIZE (KDE/release-service/22.04.2/konqueror-22.04.2.tar.xz) = 7684972 +TIMESTAMP = 1657013291 +SHA256 (KDE/release-service/22.04.3/konqueror-22.04.3.tar.xz) = a64aa0e15ce2d5b5c2c4b37cdfc6371e11fb505b51a1d8c37e0e933a1b8e3dae +SIZE (KDE/release-service/22.04.3/konqueror-22.04.3.tar.xz) = 7669364 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 958d5a56ca39..ccd4b12c8b7d 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1425 +1,1426 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqsidebartngrc etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_kpart_plugin.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h include/konqsidebarplugin.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.5 lib/libkonqsidebarplugin.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/kimgallery.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/fsviewpart.so %%QT_PLUGINDIR%%/kf5/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtml/kpartplugins/akregatorkonqfeediconkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/autorefreshkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/babelfishpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/dirfilterpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlsettingspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlttspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/konqueror_kget_browser_integrationkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/uachangerpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/webarchiverpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/konqueror/kpartplugins/searchbarplugin.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_bookmarks.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_history.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_konq.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_performance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_appearance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_behavior.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_filter.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_general.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_java_js.so %%QT_PLUGINDIR%%/konqueror_kget_browser_integration.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/akregatorkonqfeediconkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/autorefreshkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/babelfishpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/dirfilterpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlsettingspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlttspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/konqueror_kget_browser_integrationkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/uachangerpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/webarchiverpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/akregatorkonqfeediconwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/autorefreshwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/babelfishpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/dirfilterpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlsettingspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlttspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/konqueror_kget_browser_integrationwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/uachangerpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/webarchiverpluginwebenginepart_kpartplugins.so share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/icons/hicolor/16x16/actions/babelfish.png share/icons/hicolor/16x16/actions/imagegallery.png share/icons/hicolor/16x16/actions/webarchiver.png share/icons/hicolor/16x16/apps/konqueror.png share/icons/hicolor/16x16/apps/webengine.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/babelfish.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/imagegallery.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/webarchiver.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/fsview.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/konqueror.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop share/konqsidebartng/plugins/konqsidebar_bookmarks.desktop share/konqsidebartng/plugins/konqsidebar_history.desktop share/konqsidebartng/plugins/konqsidebar_places.desktop share/konqsidebartng/plugins/konqsidebar_tree.desktop %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/partsrcfiles/akregatorkonqfeedicon.rc %%DATADIR%%/partsrcfiles/autorefresh.rc %%DATADIR%%/partsrcfiles/babelfishplugin.rc %%DATADIR%%/partsrcfiles/dirfilterplugin.rc %%DATADIR%%/partsrcfiles/khtmlsettingsplugin.rc %%DATADIR%%/partsrcfiles/khtmlttsplugin.rc %%DATADIR%%/partsrcfiles/kimgallery.rc %%DATADIR%%/partsrcfiles/konq_shellcmdplugin.rc %%DATADIR%%/partsrcfiles/konqueror_kget_browser_integration.rc %%DATADIR%%/partsrcfiles/searchbarplugin.rc %%DATADIR%%/partsrcfiles/uachangerplugin.rc %%DATADIR%%/partsrcfiles/webarchiverplugin.rc %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/kservices5/fsview_part.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kxmlgui5/fsview/fsview_part.rc share/kxmlgui5/webenginepart/webenginepart.rc share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/kgetplugin.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webenginepart.mo share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo share/locale/ast/LC_MESSAGES/autorefresh.mo share/locale/ast/LC_MESSAGES/babelfish.mo share/locale/ast/LC_MESSAGES/dirfilterplugin.mo share/locale/ast/LC_MESSAGES/fsview.mo share/locale/ast/LC_MESSAGES/imgalleryplugin.mo share/locale/ast/LC_MESSAGES/kcmbookmarks.mo share/locale/ast/LC_MESSAGES/kcmkonq.mo share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo share/locale/ast/LC_MESSAGES/kcmperformance.mo share/locale/ast/LC_MESSAGES/kfmclient.mo share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ast/LC_MESSAGES/khtmltts.mo share/locale/ast/LC_MESSAGES/konqueror.mo share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo share/locale/ast/LC_MESSAGES/libkonq.mo share/locale/ast/LC_MESSAGES/searchbarplugin.mo share/locale/ast/LC_MESSAGES/uachangerplugin.mo share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/be/LC_MESSAGES/akregator_konqplugin.mo share/locale/be/LC_MESSAGES/autorefresh.mo share/locale/be/LC_MESSAGES/babelfish.mo share/locale/be/LC_MESSAGES/dirfilterplugin.mo share/locale/be/LC_MESSAGES/fsview.mo share/locale/be/LC_MESSAGES/imgalleryplugin.mo share/locale/be/LC_MESSAGES/kcmbookmarks.mo share/locale/be/LC_MESSAGES/kcmkonq.mo share/locale/be/LC_MESSAGES/kcmkonqhtml.mo share/locale/be/LC_MESSAGES/kcmperformance.mo share/locale/be/LC_MESSAGES/kfmclient.mo share/locale/be/LC_MESSAGES/kgetplugin.mo share/locale/be/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/be/LC_MESSAGES/khtmltts.mo share/locale/be/LC_MESSAGES/konqueror.mo share/locale/be/LC_MESSAGES/kshellcmdplugin.mo share/locale/be/LC_MESSAGES/libkonq.mo share/locale/be/LC_MESSAGES/searchbarplugin.mo share/locale/be/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/kgetplugin.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo +share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/kgetplugin.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/kgetplugin.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/kgetplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/kgetplugin.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/kgetplugin.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/kgetplugin.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/kgetplugin.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/kgetplugin.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/kgetplugin.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/kgetplugin.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/kgetplugin.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webenginepart.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/kgetplugin.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/kgetplugin.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/kgetplugin.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/kgetplugin.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/kgetplugin.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/kgetplugin.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/kgetplugin.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/kgetplugin.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/kgetplugin.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/kgetplugin.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/kgetplugin.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/kgetplugin.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/kgetplugin.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/kgetplugin.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/kgetplugin.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/kgetplugin.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/kgetplugin.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/kgetplugin.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/kgetplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/kgetplugin.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/se/LC_MESSAGES/akregator_konqplugin.mo share/locale/se/LC_MESSAGES/autorefresh.mo share/locale/se/LC_MESSAGES/babelfish.mo share/locale/se/LC_MESSAGES/dirfilterplugin.mo share/locale/se/LC_MESSAGES/fsview.mo share/locale/se/LC_MESSAGES/imgalleryplugin.mo share/locale/se/LC_MESSAGES/kcmbookmarks.mo share/locale/se/LC_MESSAGES/kcmkonq.mo share/locale/se/LC_MESSAGES/kcmkonqhtml.mo share/locale/se/LC_MESSAGES/kcmperformance.mo share/locale/se/LC_MESSAGES/kfmclient.mo share/locale/se/LC_MESSAGES/kgetplugin.mo share/locale/se/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/se/LC_MESSAGES/khtmltts.mo share/locale/se/LC_MESSAGES/konqueror.mo share/locale/se/LC_MESSAGES/kshellcmdplugin.mo share/locale/se/LC_MESSAGES/libkonq.mo share/locale/se/LC_MESSAGES/searchbarplugin.mo share/locale/se/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/kgetplugin.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sq/LC_MESSAGES/akregator_konqplugin.mo share/locale/sq/LC_MESSAGES/autorefresh.mo share/locale/sq/LC_MESSAGES/babelfish.mo share/locale/sq/LC_MESSAGES/dirfilterplugin.mo share/locale/sq/LC_MESSAGES/fsview.mo share/locale/sq/LC_MESSAGES/imgalleryplugin.mo share/locale/sq/LC_MESSAGES/kcmbookmarks.mo share/locale/sq/LC_MESSAGES/kcmkonq.mo share/locale/sq/LC_MESSAGES/kcmkonqhtml.mo share/locale/sq/LC_MESSAGES/kcmperformance.mo share/locale/sq/LC_MESSAGES/kfmclient.mo share/locale/sq/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sq/LC_MESSAGES/khtmltts.mo share/locale/sq/LC_MESSAGES/konqueror.mo share/locale/sq/LC_MESSAGES/libkonq.mo share/locale/sq/LC_MESSAGES/searchbarplugin.mo share/locale/sq/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/kgetplugin.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/kgetplugin.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/ta/LC_MESSAGES/akregator_konqplugin.mo share/locale/ta/LC_MESSAGES/autorefresh.mo share/locale/ta/LC_MESSAGES/babelfish.mo share/locale/ta/LC_MESSAGES/dirfilterplugin.mo share/locale/ta/LC_MESSAGES/fsview.mo share/locale/ta/LC_MESSAGES/imgalleryplugin.mo share/locale/ta/LC_MESSAGES/kcmbookmarks.mo share/locale/ta/LC_MESSAGES/kcmkonq.mo share/locale/ta/LC_MESSAGES/kcmkonqhtml.mo share/locale/ta/LC_MESSAGES/kcmperformance.mo share/locale/ta/LC_MESSAGES/kfmclient.mo share/locale/ta/LC_MESSAGES/kgetplugin.mo share/locale/ta/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ta/LC_MESSAGES/khtmltts.mo share/locale/ta/LC_MESSAGES/konqueror.mo share/locale/ta/LC_MESSAGES/kshellcmdplugin.mo share/locale/ta/LC_MESSAGES/libkonq.mo share/locale/ta/LC_MESSAGES/searchbarplugin.mo share/locale/ta/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/akregator_konqplugin.mo share/locale/tg/LC_MESSAGES/autorefresh.mo share/locale/tg/LC_MESSAGES/babelfish.mo share/locale/tg/LC_MESSAGES/dirfilterplugin.mo share/locale/tg/LC_MESSAGES/fsview.mo share/locale/tg/LC_MESSAGES/imgalleryplugin.mo share/locale/tg/LC_MESSAGES/kcmbookmarks.mo share/locale/tg/LC_MESSAGES/kcmkonq.mo share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo share/locale/tg/LC_MESSAGES/kcmperformance.mo share/locale/tg/LC_MESSAGES/kfmclient.mo share/locale/tg/LC_MESSAGES/kgetplugin.mo share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tg/LC_MESSAGES/khtmltts.mo share/locale/tg/LC_MESSAGES/konqueror.mo share/locale/tg/LC_MESSAGES/kshellcmdplugin.mo share/locale/tg/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/searchbarplugin.mo share/locale/tg/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/kgetplugin.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/kgetplugin.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo share/locale/vi/LC_MESSAGES/akregator_konqplugin.mo share/locale/vi/LC_MESSAGES/autorefresh.mo share/locale/vi/LC_MESSAGES/babelfish.mo share/locale/vi/LC_MESSAGES/dirfilterplugin.mo share/locale/vi/LC_MESSAGES/fsview.mo share/locale/vi/LC_MESSAGES/imgalleryplugin.mo share/locale/vi/LC_MESSAGES/kcmbookmarks.mo share/locale/vi/LC_MESSAGES/kcmkonq.mo share/locale/vi/LC_MESSAGES/kcmkonqhtml.mo share/locale/vi/LC_MESSAGES/kcmperformance.mo share/locale/vi/LC_MESSAGES/kfmclient.mo share/locale/vi/LC_MESSAGES/kgetplugin.mo share/locale/vi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/vi/LC_MESSAGES/khtmltts.mo share/locale/vi/LC_MESSAGES/konqueror.mo share/locale/vi/LC_MESSAGES/kshellcmdplugin.mo share/locale/vi/LC_MESSAGES/libkonq.mo share/locale/vi/LC_MESSAGES/searchbarplugin.mo share/locale/vi/LC_MESSAGES/uachangerplugin.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/kgetplugin.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/kgetplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories5/akregatorplugin.categories share/qlogging-categories5/fsview.categories share/qlogging-categories5/konqueror.categories share/webenginepart/error.html diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index 864e1d8dc96a..7f381907da3a 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,33 +1,30 @@ PORTNAME= konsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} PORTREVISION= 2 CATEGORIES= x11 kde kde-applications # kde kde-applications-applications -PATCH_SITES= https://invent.kde.org/utilities/konsole/-/commit/ -PATCHFILES= dd52d722643e5e40914622fb9588c2317c101e1e.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE terminal emulator BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml RUN_DEPENDS= keditbookmarks:deskutils/keditbookmarks LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang gettext pkgconfig kde:5 \ qt:5 tar:xz USE_KDE= auth attica bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons emoticons globalaccel guiaddons i18n \ iconthemes init itemmodels jobwidgets kio \ newstuff notifications notifyconfig parts pty service solid sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm_build USE_QT= concurrent core dbus gui network printsupport script scripttools sql \ widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS .include diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 4e6a2c400883..227f21c21ab6 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1656901803 -SHA256 (KDE/release-service/22.04.2/konsole-22.04.2.tar.xz) = 97d1e98cd715b03fba9a0c2b0f33d9d19a8737531d34c7120af74cf7c5337111 -SIZE (KDE/release-service/22.04.2/konsole-22.04.2.tar.xz) = 1467412 -SHA256 (KDE/release-service/22.04.2/dd52d722643e5e40914622fb9588c2317c101e1e.diff) = ab99c87eaaa562e80b53abfdc60dce1e63921104256b20c2d88da9208657af74 -SIZE (KDE/release-service/22.04.2/dd52d722643e5e40914622fb9588c2317c101e1e.diff) = 550 +TIMESTAMP = 1657094882 +SHA256 (KDE/release-service/22.04.3/konsole-22.04.3.tar.xz) = 148f65891318e6a6f31793c9535e2bf32068b1cae8c5026e54f360bea484d9a7 +SIZE (KDE/release-service/22.04.3/konsole-22.04.3.tar.xz) = 1476120 diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 207448e1c03a..08b70deb6089 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1654672005 -SHA256 (KDE/release-service/22.04.2/yakuake-22.04.2.tar.xz) = 046c7f91d10363b8bd09c6eb254ad06587dcc26259a3e1952f5ba5c7f4b94b28 -SIZE (KDE/release-service/22.04.2/yakuake-22.04.2.tar.xz) = 404076 +TIMESTAMP = 1657013339 +SHA256 (KDE/release-service/22.04.3/yakuake-22.04.3.tar.xz) = 33c8a28ee34b3a3e4fbc3c7b4addca4ba44e33794a1399f9a6fe995a8c44ac40 +SIZE (KDE/release-service/22.04.3/yakuake-22.04.3.tar.xz) = 404952 diff --git a/x11/yakuake/pkg-plist b/x11/yakuake/pkg-plist index 69dcd8699e42..c04eb3804b05 100644 --- a/x11/yakuake/pkg-plist +++ b/x11/yakuake/pkg-plist @@ -1,184 +1,185 @@ bin/yakuake share/applications/org.kde.yakuake.desktop share/dbus-1/services/org.kde.yakuake.service share/icons/hicolor/16x16/apps/yakuake.png share/icons/hicolor/22x22/apps/yakuake.png share/icons/hicolor/32x32/apps/yakuake.png share/icons/hicolor/48x48/apps/yakuake.png share/icons/hicolor/64x64/apps/yakuake.png share/icons/hicolor/128x128/apps/yakuake.png share/icons/hicolor/256x256/apps/yakuake.png share/knotifications5/yakuake.notifyrc share/knsrcfiles/yakuake.knsrc share/locale/ar/LC_MESSAGES/yakuake.mo share/locale/ast/LC_MESSAGES/yakuake.mo share/locale/be/LC_MESSAGES/yakuake.mo +share/locale/bg/LC_MESSAGES/yakuake.mo share/locale/bs/LC_MESSAGES/yakuake.mo share/locale/ca/LC_MESSAGES/yakuake.mo share/locale/ca@valencia/LC_MESSAGES/yakuake.mo share/locale/cs/LC_MESSAGES/yakuake.mo share/locale/da/LC_MESSAGES/yakuake.mo share/locale/de/LC_MESSAGES/yakuake.mo share/locale/el/LC_MESSAGES/yakuake.mo share/locale/en_GB/LC_MESSAGES/yakuake.mo share/locale/eo/LC_MESSAGES/yakuake.mo share/locale/es/LC_MESSAGES/yakuake.mo share/locale/et/LC_MESSAGES/yakuake.mo share/locale/eu/LC_MESSAGES/yakuake.mo share/locale/fi/LC_MESSAGES/yakuake.mo share/locale/fr/LC_MESSAGES/yakuake.mo share/locale/ga/LC_MESSAGES/yakuake.mo share/locale/gl/LC_MESSAGES/yakuake.mo share/locale/hi/LC_MESSAGES/yakuake.mo share/locale/hr/LC_MESSAGES/yakuake.mo share/locale/hu/LC_MESSAGES/yakuake.mo share/locale/ia/LC_MESSAGES/yakuake.mo share/locale/id/LC_MESSAGES/yakuake.mo share/locale/is/LC_MESSAGES/yakuake.mo share/locale/it/LC_MESSAGES/yakuake.mo share/locale/ja/LC_MESSAGES/yakuake.mo share/locale/km/LC_MESSAGES/yakuake.mo share/locale/ko/LC_MESSAGES/yakuake.mo share/locale/lt/LC_MESSAGES/yakuake.mo share/locale/ml/LC_MESSAGES/yakuake.mo share/locale/mr/LC_MESSAGES/yakuake.mo share/locale/nb/LC_MESSAGES/yakuake.mo share/locale/nds/LC_MESSAGES/yakuake.mo share/locale/nl/LC_MESSAGES/yakuake.mo share/locale/nn/LC_MESSAGES/yakuake.mo share/locale/pa/LC_MESSAGES/yakuake.mo share/locale/pl/LC_MESSAGES/yakuake.mo share/locale/pt/LC_MESSAGES/yakuake.mo share/locale/pt_BR/LC_MESSAGES/yakuake.mo share/locale/ro/LC_MESSAGES/yakuake.mo share/locale/ru/LC_MESSAGES/yakuake.mo share/locale/sk/LC_MESSAGES/yakuake.mo share/locale/sl/LC_MESSAGES/yakuake.mo share/locale/sr/LC_MESSAGES/yakuake.mo share/locale/sv/LC_MESSAGES/yakuake.mo share/locale/tr/LC_MESSAGES/yakuake.mo share/locale/ug/LC_MESSAGES/yakuake.mo share/locale/uk/LC_MESSAGES/yakuake.mo share/locale/wa/LC_MESSAGES/yakuake.mo share/locale/zh_CN/LC_MESSAGES/yakuake.mo share/locale/zh_TW/LC_MESSAGES/yakuake.mo share/metainfo/org.kde.yakuake.appdata.xml %%DATADIR%%/skins/README %%DATADIR%%/skins/default/icon.svg %%DATADIR%%/skins/default/tabs.skin %%DATADIR%%/skins/default/tabs/add_down.svg %%DATADIR%%/skins/default/tabs/add_up.svg %%DATADIR%%/skins/default/tabs/back_image.svg %%DATADIR%%/skins/default/tabs/close_down.svg %%DATADIR%%/skins/default/tabs/close_up.svg %%DATADIR%%/skins/default/tabs/left_corner.svg %%DATADIR%%/skins/default/tabs/lock.svg %%DATADIR%%/skins/default/tabs/right_corner.svg %%DATADIR%%/skins/default/tabs/selected_back.svg %%DATADIR%%/skins/default/tabs/selected_left.svg %%DATADIR%%/skins/default/tabs/selected_right.svg %%DATADIR%%/skins/default/tabs/separator.svg %%DATADIR%%/skins/default/tabs/unselected_back.svg %%DATADIR%%/skins/default/tabs/unselected_left.svg %%DATADIR%%/skins/default/tabs/unselected_right.svg %%DATADIR%%/skins/default/title.skin %%DATADIR%%/skins/default/title/back.svg %%DATADIR%%/skins/default/title/config_down.svg %%DATADIR%%/skins/default/title/config_up.svg %%DATADIR%%/skins/default/title/focus_down.svg %%DATADIR%%/skins/default/title/focus_over.svg %%DATADIR%%/skins/default/title/focus_up.svg %%DATADIR%%/skins/default/title/left.svg %%DATADIR%%/skins/default/title/quit_down.svg %%DATADIR%%/skins/default/title/quit_up.svg %%DATADIR%%/skins/default/title/right.svg %%DATADIR%%/skins/legacy/icon.png %%DATADIR%%/skins/legacy/tabs.skin %%DATADIR%%/skins/legacy/tabs/back_image.png %%DATADIR%%/skins/legacy/tabs/left_corner.png %%DATADIR%%/skins/legacy/tabs/lock.png %%DATADIR%%/skins/legacy/tabs/minus_down.png %%DATADIR%%/skins/legacy/tabs/minus_over.png %%DATADIR%%/skins/legacy/tabs/minus_up.png %%DATADIR%%/skins/legacy/tabs/plus_down.png %%DATADIR%%/skins/legacy/tabs/plus_over.png %%DATADIR%%/skins/legacy/tabs/plus_up.png %%DATADIR%%/skins/legacy/tabs/right_corner.png %%DATADIR%%/skins/legacy/tabs/selected_back.png %%DATADIR%%/skins/legacy/tabs/selected_left.png %%DATADIR%%/skins/legacy/tabs/selected_right.png %%DATADIR%%/skins/legacy/tabs/separator.png %%DATADIR%%/skins/legacy/tabs/unselected_back.png %%DATADIR%%/skins/legacy/title.skin %%DATADIR%%/skins/legacy/title/back.png %%DATADIR%%/skins/legacy/title/config_down.png %%DATADIR%%/skins/legacy/title/config_over.png %%DATADIR%%/skins/legacy/title/config_up.png %%DATADIR%%/skins/legacy/title/focus_down.png %%DATADIR%%/skins/legacy/title/focus_over.png %%DATADIR%%/skins/legacy/title/focus_up.png %%DATADIR%%/skins/legacy/title/left.png %%DATADIR%%/skins/legacy/title/quit_down.png %%DATADIR%%/skins/legacy/title/quit_over.png %%DATADIR%%/skins/legacy/title/quit_up.png %%DATADIR%%/skins/legacy/title/right.png %%DATADIR%%/skins/plastik_dark/icon.png %%DATADIR%%/skins/plastik_dark/tabs.skin %%DATADIR%%/skins/plastik_dark/tabs/back_image.png %%DATADIR%%/skins/plastik_dark/tabs/left_corner.png %%DATADIR%%/skins/plastik_dark/tabs/lock.png %%DATADIR%%/skins/plastik_dark/tabs/minus_down.png %%DATADIR%%/skins/plastik_dark/tabs/minus_over.png %%DATADIR%%/skins/plastik_dark/tabs/minus_up.png %%DATADIR%%/skins/plastik_dark/tabs/plus_down.png %%DATADIR%%/skins/plastik_dark/tabs/plus_over.png %%DATADIR%%/skins/plastik_dark/tabs/plus_up.png %%DATADIR%%/skins/plastik_dark/tabs/right_corner.png %%DATADIR%%/skins/plastik_dark/tabs/selected_back.png %%DATADIR%%/skins/plastik_dark/tabs/selected_left.png %%DATADIR%%/skins/plastik_dark/tabs/selected_right.png %%DATADIR%%/skins/plastik_dark/tabs/separator.png %%DATADIR%%/skins/plastik_dark/tabs/unselected_back.png %%DATADIR%%/skins/plastik_dark/title.skin %%DATADIR%%/skins/plastik_dark/title/back.png %%DATADIR%%/skins/plastik_dark/title/config_down.png %%DATADIR%%/skins/plastik_dark/title/config_over.png %%DATADIR%%/skins/plastik_dark/title/config_up.png %%DATADIR%%/skins/plastik_dark/title/focus_down.png %%DATADIR%%/skins/plastik_dark/title/focus_over.png %%DATADIR%%/skins/plastik_dark/title/focus_up.png %%DATADIR%%/skins/plastik_dark/title/left.png %%DATADIR%%/skins/plastik_dark/title/quit_down.png %%DATADIR%%/skins/plastik_dark/title/quit_over.png %%DATADIR%%/skins/plastik_dark/title/quit_up.png %%DATADIR%%/skins/plastik_dark/title/right.png %%DATADIR%%/skins/plastik_light/icon.png %%DATADIR%%/skins/plastik_light/tabs.skin %%DATADIR%%/skins/plastik_light/tabs/back_image.png %%DATADIR%%/skins/plastik_light/tabs/left_corner.png %%DATADIR%%/skins/plastik_light/tabs/lock.png %%DATADIR%%/skins/plastik_light/tabs/minus_down.png %%DATADIR%%/skins/plastik_light/tabs/minus_over.png %%DATADIR%%/skins/plastik_light/tabs/minus_up.png %%DATADIR%%/skins/plastik_light/tabs/plus_down.png %%DATADIR%%/skins/plastik_light/tabs/plus_over.png %%DATADIR%%/skins/plastik_light/tabs/plus_up.png %%DATADIR%%/skins/plastik_light/tabs/right_corner.png %%DATADIR%%/skins/plastik_light/tabs/selected_back.png %%DATADIR%%/skins/plastik_light/tabs/selected_left.png %%DATADIR%%/skins/plastik_light/tabs/selected_right.png %%DATADIR%%/skins/plastik_light/tabs/separator.png %%DATADIR%%/skins/plastik_light/tabs/unselected_back.png %%DATADIR%%/skins/plastik_light/title.skin %%DATADIR%%/skins/plastik_light/title/back.png %%DATADIR%%/skins/plastik_light/title/config_down.png %%DATADIR%%/skins/plastik_light/title/config_over.png %%DATADIR%%/skins/plastik_light/title/config_up.png %%DATADIR%%/skins/plastik_light/title/focus_down.png %%DATADIR%%/skins/plastik_light/title/focus_over.png %%DATADIR%%/skins/plastik_light/title/focus_up.png %%DATADIR%%/skins/plastik_light/title/left.png %%DATADIR%%/skins/plastik_light/title/quit_down.png %%DATADIR%%/skins/plastik_light/title/quit_over.png %%DATADIR%%/skins/plastik_light/title/quit_up.png %%DATADIR%%/skins/plastik_light/title/right.png