diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 126a477a498c..53abd151a42a 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,905 +1,905 @@ # 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.21.5 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.82.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 21.04.1 -KDE_APPLICATIONS_SHLIB_VER?= 5.17.1 +KDE_APPLICATIONS_VERSION?= 21.04.2 +KDE_APPLICATIONS_SHLIB_VER?= 5.17.2 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 # 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 kwallet-pam \ kwayland-integration kwin kwrited libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch alarmcalendar \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox_generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libkirigamiplugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/controls/libchartscontrolsplugin.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-protocols_PORT= x11/plasma-wayland-protocols kde-kwayland-protocols_LIB= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.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-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_PATH= ${QT_PLUGINDIR}/kcm_krunner_dictionary.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-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= libkdeinit5_kcminit.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-alarmcalendar_PORT= net/kalarmcal kde-alarmcalendar_LIB= libKF5AlarmCalendar.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${KDE_PREFIX}/lib/contacteditor/editorpageplugins/cryptopageplugin.so kde-kdepim-runtime5_PORT= deskutils/kdepim-runtime kde-kdepim-runtime5_PATH= ${KDE_PREFIX}/bin/gidmigrator kde-kitinerary_PORT= net/kitinerary kde-kitinerary_LIB= libKPimItinerary.so kde-kontactinterface_PORT= net/kontactinterface kde-kontactinterface_LIB= libKF5KontactInterface.so kde-kpkpass_PORT= security/kpkpass kde-kpkpass_LIB= libKPimPkPass.so kde-ksmtp_PORT= net/ksmtp kde-ksmtp_LIB= libKPimSMTP.so kde-ldap_PORT= net/kldap kde-ldap_LIB= libKF5Ldap.so kde-libkdepim_PORT= deskutils/libkdepim kde-libkdepim_LIB= libKF5Libkdepim.so kde-libkleo_PORT= security/libkleo kde-libkleo_LIB= libKF5Libkleo.so kde-libksieve_PORT= net/libksieve kde-libksieve_LIB= libKF5KSieve.so kde-mailcommon_PORT= net/mailcommon kde-mailcommon_LIB= libKF5MailCommon.so kde-mailimporter_PORT= net/mailimporter kde-mailimporter_LIB= libKF5MailImporter.so kde-mailtransport_PORT= net/kmailtransport kde-mailtransport_LIB= libKF5MailTransport.so kde-mbox_PORT= net/kmbox kde-mbox_LIB= libKF5Mbox.so kde-messagelib_PORT= net/messagelib kde-messagelib_LIB= libKF5MessageList.so kde-mime_PORT= net/kmime kde-mime_LIB= libKF5Mime.so kde-pimcommon_PORT= net/pimcommon kde-pimcommon_LIB= libKF5PimCommon.so kde-pimtextedit_PORT= net/kpimtextedit kde-pimtextedit_LIB= libKF5PimTextEdit.so kde-tnef_PORT= net/ktnef kde-tnef_LIB= libKF5Tnef.so # PIM Applications kde-akonadiconsole_PORT= deskutils/akonadiconsole kde-akonadiconsole_PATH= ${KDE_PREFIX}/bin/akonadiconsole kde-akregator_PORT= deskutils/akregator kde-akregator_PATH= ${KDE_PREFIX}/bin/akregator kde-grantlee-editor_PORT= deskutils/grantlee-editor kde-grantlee-editor_PATH= ${KDE_PREFIX}/bin/contactthemeeditor kde-kaddressbook_PORT= deskutils/kaddressbook kde-kaddressbook_PATH= ${KDE_PREFIX}/bin/kaddressbook kde-kalarm_PORT= deskutils/kalarm kde-kalarm_PATH= ${KDE_PREFIX}/bin/kalarm kde-kmail_PORT= deskutils/kmail kde-kmail_PATH= ${KDE_PREFIX}/bin/kmail kde-kmail-account-wizard_PORT= deskutils/kmail-account-wizard kde-kmail-account-wizard_PATH= ${KDE_PREFIX}/bin/accountwizard kde-knotes_PORT= deskutils/knotes kde-knotex_PATH= ${KDE_PREFIX}/bin/knotes kde-kontact_PORT= deskutils/kontact kde-kontact_PATH= ${KDE_PREFIX}/bin/kontact kde-korganizer_PORT= deskutils/korganizer kde-korganizer_PATH= ${KDE_PREFIX}/bin/korganizer kde-mbox-importer_PORT= deskutils/mbox-importer kde-mbox-importer_PATH= ${KDE_PREFIX}/bin/mboximporter kde-pim-data-exporter_PORT= deskutils/pim-data-exporter kde-pim-data-exporter_PATH= ${KDE_PREFIX}/bin/pimdataexporter # ====================== end of pim5 components ================================ # ====================== multiversion component ================================ kde-akonadi5_PORT= databases/akonadi kde-akonadi5_LIB= libKF5AkonadiPrivate.so kde-baloo-widgets5_PORT= sysutils/baloo-widgets kde-baloo-widgets5_LIB= libKF5BalooWidgets.so kde-kate5_PORT= editors/kate kde-kate5_PATH= ${QT_PLUGINDIR}/ktexteditor/katebacktracebrowserplugin.so kde-libkcddb5_PORT= audio/libkcddb kde-libkcddb5_LIB= libKF5Cddb.so kde-libkcompactdisc5_PORT= audio/libkcompactdisc kde-libkcompactdisc5_LIB= libKF5CompactDisc.so kde-libkdcraw5_PORT= graphics/libkdcraw kde-libkdcraw5_LIB= libKF5KDcraw.so kde-libkdegames5_PORT= games/libkdegames kde-libkdegames5_LIB= libKF5KDEGames.so kde-libkeduvocdocument5_PORT= misc/libkeduvocdocument kde-libkeduvocdocument5_LIB= libKEduVocDocument.so kde-libkexiv25_PORT= graphics/libkexiv2 kde-libkexiv25_LIB= libKF5KExiv2.so kde-libkipi5_PORT= graphics/libkipi kde-libkipi5_LIB= libKF5Kipi.so kde-libksane5_PORT= graphics/libksane kde-libksane5_LIB= libKF5Sane.so kde-marble5_PORT= astro/marble kde-marble5_LIB= libmarblewidget-qt5.so kde-kpublictransport_PORT= devel/kpublictransport kde-kpublictransport_LIB= libKPublicTransport.so kde-kosm_PORT= astro/kosmindoormap kde-kosm_LIB= libKOSM.so kde-okular5_PORT= graphics/okular kde-okular5_LIB= libOkular5Core.so # ====================== end of multiversion components ======================== # ====================== select the proper multiversion component ============== . for comp in ${_USE_KDE_BOTH} kde-${comp}_PORT= ${kde-${comp}${_KDE_VERSION}_PORT} . if defined(kde-${comp}${_KDE_VERSION}_LIB) kde-${comp}_LIB= ${kde-${comp}${_KDE_VERSION}_LIB} . else . if defined(kde-${comp}${_KDE_VERSION}_PATH}) kde-${comp}_PATH= ${kde-${comp}${_KDE_VERSION}_LIB} . endif # If neither is defined, this gets caught below when checking components . endif . endfor #=============================================================================== # end of component list ######################################################## _USE_KDE_ALL= ${_USE_${_KDE_RELNAME}_ALL} # Iterate through components deprived of suffix. . for component in ${USE_KDE:O:u:C/_.+//} # Check that the component is valid. . if ${_USE_KDE_ALL:M${component}} != "" # Skip meta-components (currently none). . if defined(kde-${component}_PORT) && (defined(kde-${component}_PATH) || defined(kde-${component}_LIB)) # Check if a dependency type is explicitly requested. . if ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" kde-${component}_TYPE= # empty . if ${USE_KDE:M${component}_build} != "" kde-${component}_TYPE+= build . endif . if ${USE_KDE:M${component}_run} != "" kde-${component}_TYPE+= run . endif . endif # ${USE_KDE:M${component}_*} != "" && ${USE_KDE:M${component}} == "" # If no dependency type is set, default to full dependency. . if !defined(kde-${component}_TYPE) kde-${component}_TYPE= build run . endif # Set real dependencies. . if defined(kde-${component}_LIB) && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} LIB_DEPENDS+= ${kde-${component}_LIB}:${kde-${component}_PORT} . else kde-${component}_PATH?= ${KDE_PREFIX}/lib/${kde-${component}_LIB} kde-${component}_DEPENDS= ${kde-${component}_PATH}:${kde-${component}_PORT} . if ${kde-${component}_TYPE:Mbuild} != "" BUILD_DEPENDS+= ${kde-${component}_DEPENDS} . endif . if ${kde-${component}_TYPE:Mrun} != "" RUN_DEPENDS+= ${kde-${component}_DEPENDS} . endif . endif # ${kde-${component}_LIB} && ${kde-${component}_TYPE:Mbuild} && ${kde-${component}_TYPE:Mrun} . endif # defined(kde-${component}_PORT) && defined(kde-${component}_PATH) . else # ! ${_USE_KDE_ALL:M${component}} != "" IGNORE= cannot be installed: unknown USE_KDE component '${component}' . endif # ${_USE_KDE_ALL:M${component}} != "" . endfor . endif .endif diff --git a/accessibility/kmag/distinfo b/accessibility/kmag/distinfo index b402685e7764..9ed261faa595 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741412 -SHA256 (KDE/release-service/21.04.1/kmag-21.04.1.tar.xz) = d2a8a9b2f2c53bb7c75e2090ffc2fa837b30a4a19d30adb053212236b0ea2df1 -SIZE (KDE/release-service/21.04.1/kmag-21.04.1.tar.xz) = 698412 +TIMESTAMP = 1623520743 +SHA256 (KDE/release-service/21.04.2/kmag-21.04.2.tar.xz) = f4187391304074d3725dda4a68871c7a57d833416270dfb4924832c3876f7ed7 +SIZE (KDE/release-service/21.04.2/kmag-21.04.2.tar.xz) = 705540 diff --git a/accessibility/kmag/pkg-plist b/accessibility/kmag/pkg-plist index fdcc027b0ec2..c7760876567c 100644 --- a/accessibility/kmag/pkg-plist +++ b/accessibility/kmag/pkg-plist @@ -1,75 +1,81 @@ bin/kmag man/ca/man1/kmag.1.gz man/de/man1/kmag.1.gz man/es/man1/kmag.1.gz man/et/man1/kmag.1.gz man/fr/man1/kmag.1.gz man/it/man1/kmag.1.gz man/man1/kmag.1.gz man/nl/man1/kmag.1.gz man/pt/man1/kmag.1.gz man/pt_BR/man1/kmag.1.gz man/ru/man1/kmag.1.gz man/sv/man1/kmag.1.gz man/uk/man1/kmag.1.gz share/applications/org.kde.kmag.desktop share/icons/hicolor/16x16/apps/kmag.png share/icons/hicolor/32x32/apps/kmag.png %%DATADIR%%/icons/hicolor/16x16/actions/followmouse.png %%DATADIR%%/icons/hicolor/16x16/actions/hidemouse.png %%DATADIR%%/icons/hicolor/16x16/actions/window.png share/locale/ar/LC_MESSAGES/kmag.mo share/locale/ast/LC_MESSAGES/kmag.mo +share/locale/be/LC_MESSAGES/kmag.mo share/locale/bg/LC_MESSAGES/kmag.mo share/locale/bs/LC_MESSAGES/kmag.mo share/locale/ca/LC_MESSAGES/kmag.mo share/locale/ca@valencia/LC_MESSAGES/kmag.mo share/locale/cs/LC_MESSAGES/kmag.mo share/locale/da/LC_MESSAGES/kmag.mo share/locale/de/LC_MESSAGES/kmag.mo share/locale/el/LC_MESSAGES/kmag.mo share/locale/en_GB/LC_MESSAGES/kmag.mo share/locale/eo/LC_MESSAGES/kmag.mo share/locale/es/LC_MESSAGES/kmag.mo share/locale/et/LC_MESSAGES/kmag.mo share/locale/eu/LC_MESSAGES/kmag.mo share/locale/fa/LC_MESSAGES/kmag.mo share/locale/fi/LC_MESSAGES/kmag.mo share/locale/fr/LC_MESSAGES/kmag.mo share/locale/ga/LC_MESSAGES/kmag.mo share/locale/gl/LC_MESSAGES/kmag.mo share/locale/he/LC_MESSAGES/kmag.mo share/locale/hi/LC_MESSAGES/kmag.mo share/locale/hr/LC_MESSAGES/kmag.mo share/locale/hu/LC_MESSAGES/kmag.mo share/locale/ia/LC_MESSAGES/kmag.mo share/locale/is/LC_MESSAGES/kmag.mo share/locale/it/LC_MESSAGES/kmag.mo share/locale/ja/LC_MESSAGES/kmag.mo share/locale/kk/LC_MESSAGES/kmag.mo share/locale/km/LC_MESSAGES/kmag.mo share/locale/ko/LC_MESSAGES/kmag.mo share/locale/lt/LC_MESSAGES/kmag.mo share/locale/lv/LC_MESSAGES/kmag.mo share/locale/ml/LC_MESSAGES/kmag.mo share/locale/mr/LC_MESSAGES/kmag.mo share/locale/nb/LC_MESSAGES/kmag.mo share/locale/nds/LC_MESSAGES/kmag.mo share/locale/nl/LC_MESSAGES/kmag.mo share/locale/nn/LC_MESSAGES/kmag.mo share/locale/pa/LC_MESSAGES/kmag.mo share/locale/pl/LC_MESSAGES/kmag.mo share/locale/pt/LC_MESSAGES/kmag.mo share/locale/pt_BR/LC_MESSAGES/kmag.mo share/locale/ro/LC_MESSAGES/kmag.mo share/locale/ru/LC_MESSAGES/kmag.mo +share/locale/se/LC_MESSAGES/kmag.mo share/locale/sk/LC_MESSAGES/kmag.mo share/locale/sl/LC_MESSAGES/kmag.mo +share/locale/sq/LC_MESSAGES/kmag.mo share/locale/sr/LC_MESSAGES/kmag.mo share/locale/sv/LC_MESSAGES/kmag.mo +share/locale/ta/LC_MESSAGES/kmag.mo +share/locale/tg/LC_MESSAGES/kmag.mo share/locale/tr/LC_MESSAGES/kmag.mo share/locale/ug/LC_MESSAGES/kmag.mo share/locale/uk/LC_MESSAGES/kmag.mo +share/locale/vi/LC_MESSAGES/kmag.mo share/locale/zh_CN/LC_MESSAGES/kmag.mo share/locale/zh_TW/LC_MESSAGES/kmag.mo share/metainfo/org.kde.kmag.appdata.xml diff --git a/accessibility/kmousetool/distinfo b/accessibility/kmousetool/distinfo index e59924f9b272..6b879a71b7b2 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741413 -SHA256 (KDE/release-service/21.04.1/kmousetool-21.04.1.tar.xz) = 0a433482f682794268f5acb5b7d88f1a9f8a06894b6a5b74fcd0eef440216628 -SIZE (KDE/release-service/21.04.1/kmousetool-21.04.1.tar.xz) = 117344 +TIMESTAMP = 1623520744 +SHA256 (KDE/release-service/21.04.2/kmousetool-21.04.2.tar.xz) = c148760e03c3a75529abef828b4ef81a43a2a245ca1feb8de2bdf1ac2a867e58 +SIZE (KDE/release-service/21.04.2/kmousetool-21.04.2.tar.xz) = 120808 diff --git a/accessibility/kmousetool/pkg-plist b/accessibility/kmousetool/pkg-plist index 032e234d1838..c865b7fbd8c3 100644 --- a/accessibility/kmousetool/pkg-plist +++ b/accessibility/kmousetool/pkg-plist @@ -1,75 +1,81 @@ bin/kmousetool man/ca/man1/kmousetool.1.gz man/de/man1/kmousetool.1.gz man/es/man1/kmousetool.1.gz man/et/man1/kmousetool.1.gz man/fr/man1/kmousetool.1.gz man/it/man1/kmousetool.1.gz man/man1/kmousetool.1.gz man/nl/man1/kmousetool.1.gz man/pt/man1/kmousetool.1.gz man/pt_BR/man1/kmousetool.1.gz man/sv/man1/kmousetool.1.gz man/uk/man1/kmousetool.1.gz share/applications/org.kde.kmousetool.desktop share/icons/hicolor/16x16/actions/kmousetool_off.png share/icons/hicolor/16x16/actions/kmousetool_on.png share/icons/hicolor/16x16/apps/kmousetool.png share/icons/hicolor/32x32/actions/kmousetool_off.png share/icons/hicolor/32x32/actions/kmousetool_on.png share/icons/hicolor/32x32/apps/kmousetool.png %%DATADIR%%/sounds/mousetool_tap.wav share/locale/ar/LC_MESSAGES/kmousetool.mo +share/locale/be/LC_MESSAGES/kmousetool.mo share/locale/bg/LC_MESSAGES/kmousetool.mo share/locale/bs/LC_MESSAGES/kmousetool.mo share/locale/ca/LC_MESSAGES/kmousetool.mo share/locale/ca@valencia/LC_MESSAGES/kmousetool.mo share/locale/cs/LC_MESSAGES/kmousetool.mo share/locale/da/LC_MESSAGES/kmousetool.mo share/locale/de/LC_MESSAGES/kmousetool.mo share/locale/el/LC_MESSAGES/kmousetool.mo share/locale/en_GB/LC_MESSAGES/kmousetool.mo share/locale/eo/LC_MESSAGES/kmousetool.mo share/locale/es/LC_MESSAGES/kmousetool.mo share/locale/et/LC_MESSAGES/kmousetool.mo share/locale/eu/LC_MESSAGES/kmousetool.mo share/locale/fa/LC_MESSAGES/kmousetool.mo share/locale/fi/LC_MESSAGES/kmousetool.mo share/locale/fr/LC_MESSAGES/kmousetool.mo share/locale/ga/LC_MESSAGES/kmousetool.mo share/locale/gl/LC_MESSAGES/kmousetool.mo share/locale/he/LC_MESSAGES/kmousetool.mo share/locale/hi/LC_MESSAGES/kmousetool.mo share/locale/hr/LC_MESSAGES/kmousetool.mo share/locale/hu/LC_MESSAGES/kmousetool.mo share/locale/ia/LC_MESSAGES/kmousetool.mo share/locale/is/LC_MESSAGES/kmousetool.mo share/locale/it/LC_MESSAGES/kmousetool.mo share/locale/ja/LC_MESSAGES/kmousetool.mo share/locale/kk/LC_MESSAGES/kmousetool.mo share/locale/km/LC_MESSAGES/kmousetool.mo share/locale/ko/LC_MESSAGES/kmousetool.mo share/locale/lt/LC_MESSAGES/kmousetool.mo share/locale/lv/LC_MESSAGES/kmousetool.mo share/locale/ml/LC_MESSAGES/kmousetool.mo share/locale/mr/LC_MESSAGES/kmousetool.mo share/locale/nb/LC_MESSAGES/kmousetool.mo share/locale/nds/LC_MESSAGES/kmousetool.mo share/locale/nl/LC_MESSAGES/kmousetool.mo share/locale/nn/LC_MESSAGES/kmousetool.mo share/locale/pa/LC_MESSAGES/kmousetool.mo share/locale/pl/LC_MESSAGES/kmousetool.mo share/locale/pt/LC_MESSAGES/kmousetool.mo share/locale/pt_BR/LC_MESSAGES/kmousetool.mo share/locale/ro/LC_MESSAGES/kmousetool.mo share/locale/ru/LC_MESSAGES/kmousetool.mo +share/locale/se/LC_MESSAGES/kmousetool.mo share/locale/sk/LC_MESSAGES/kmousetool.mo share/locale/sl/LC_MESSAGES/kmousetool.mo +share/locale/sq/LC_MESSAGES/kmousetool.mo share/locale/sr/LC_MESSAGES/kmousetool.mo share/locale/sv/LC_MESSAGES/kmousetool.mo +share/locale/ta/LC_MESSAGES/kmousetool.mo +share/locale/tg/LC_MESSAGES/kmousetool.mo share/locale/tr/LC_MESSAGES/kmousetool.mo share/locale/ug/LC_MESSAGES/kmousetool.mo share/locale/uk/LC_MESSAGES/kmousetool.mo +share/locale/vi/LC_MESSAGES/kmousetool.mo share/locale/zh_CN/LC_MESSAGES/kmousetool.mo share/locale/zh_TW/LC_MESSAGES/kmousetool.mo share/metainfo/org.kde.kmousetool.appdata.xml diff --git a/accessibility/kmouth/distinfo b/accessibility/kmouth/distinfo index fe4c4014006e..e0339d98be90 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741414 -SHA256 (KDE/release-service/21.04.1/kmouth-21.04.1.tar.xz) = ce77440116fde0a8f2d2073cd18e9ac7cb3b640c42fc3b06913b41962691025d -SIZE (KDE/release-service/21.04.1/kmouth-21.04.1.tar.xz) = 2083988 +TIMESTAMP = 1623520746 +SHA256 (KDE/release-service/21.04.2/kmouth-21.04.2.tar.xz) = 961e31a812347dfb56a5174d395ecc60143c25e6172de4d10d895cf700f6a55b +SIZE (KDE/release-service/21.04.2/kmouth-21.04.2.tar.xz) = 2099896 diff --git a/accessibility/kmouth/pkg-plist b/accessibility/kmouth/pkg-plist index af07ceb5a92c..9f6fa72bcbf8 100644 --- a/accessibility/kmouth/pkg-plist +++ b/accessibility/kmouth/pkg-plist @@ -1,102 +1,108 @@ 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/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/Makefile b/archivers/ark/Makefile index b59de23ca8be..d8e5220ad2bf 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -1,44 +1,44 @@ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Archiving tool for KDE LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USES= cmake compiler:c++11-lang desktop-file-utils gettext libarchive kde:5 \ qt:5 shared-mime-info tar:xz USE_KDE= archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons doctools ecm i18n iconthemes \ itemmodels itemviews jobwidgets khtml kio parts pty service \ solid sonnet textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= 7ZIP RAR ZIP DOCS OPTIONS_DEFAULT= 7ZIP ZIP DOCS OPTIONS_DEFAULT_i386= RAR OPTIONS_DEFAULT_amd64= RAR OPTIONS_SUB= YES # The 7ZIP and RAR options only need runtime dependencies; # the port builds identically with or without them. 7ZIP_DESC= Support for 7-Zip archives (runtime) 7ZIP_RUN_DEPENDS= 7z:archivers/p7zip RAR_DESC= Support for RAR archives (runtime) RAR_RUN_DEPENDS= unrar:archivers/unrar \ rar:archivers/rar ZIP_DESC= Support for ZIP archives ZIP_LIB_DEPENDS= libzip.so:archivers/libzip ZIP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibZip # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.4.1 +KDE_APPLICATIONS_SHLIB_VER= 21.4.2 .include diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index 772312a4af6b..d87fb8bfe746 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741415 -SHA256 (KDE/release-service/21.04.1/ark-21.04.1.tar.xz) = 9113e3f1e7c0bc660d8fe56d883b02ba0997c3a7362838e365c6c71bf60662ef -SIZE (KDE/release-service/21.04.1/ark-21.04.1.tar.xz) = 2726744 +TIMESTAMP = 1623520747 +SHA256 (KDE/release-service/21.04.2/ark-21.04.2.tar.xz) = 09e0294c36a881585183bf165020ef832bfbbd181547ea26eb78268aab46a768 +SIZE (KDE/release-service/21.04.2/ark-21.04.2.tar.xz) = 2757376 diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index 988eca5196e3..04b1e8f40903 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,94 +1,100 @@ bin/ark share/qlogging-categories5/ark.categories lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkerfuffle.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/arkpart.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clirar.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliunarchiver.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_clizip.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libarchive_readonly.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libbz2.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libgz.so %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libxz.so %%ZIP%%%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_libzip.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/compressfileitemaction.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/extractfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio_dnd/extracthere.so man/ca/man1/ark.1.gz man/de/man1/ark.1.gz man/es/man1/ark.1.gz man/fr/man1/ark.1.gz man/gl/man1/ark.1.gz man/it/man1/ark.1.gz man/man1/ark.1.gz man/nl/man1/ark.1.gz man/pt/man1/ark.1.gz man/pt_BR/man1/ark.1.gz man/sr/man1/ark.1.gz man/sv/man1/ark.1.gz man/uk/man1/ark.1.gz share/applications/org.kde.ark.desktop share/config.kcfg/ark.kcfg share/icons/hicolor/128x128/apps/ark.png share/icons/hicolor/48x48/apps/ark.png share/icons/hicolor/64x64/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz share/kservices5/ark_part.desktop share/kservicetypes5/kerfufflePlugin.desktop share/locale/ar/LC_MESSAGES/ark.mo share/locale/ast/LC_MESSAGES/ark.mo +share/locale/az/LC_MESSAGES/ark.mo +share/locale/be/LC_MESSAGES/ark.mo share/locale/bg/LC_MESSAGES/ark.mo share/locale/bs/LC_MESSAGES/ark.mo share/locale/ca/LC_MESSAGES/ark.mo share/locale/ca@valencia/LC_MESSAGES/ark.mo share/locale/cs/LC_MESSAGES/ark.mo share/locale/da/LC_MESSAGES/ark.mo share/locale/de/LC_MESSAGES/ark.mo share/locale/el/LC_MESSAGES/ark.mo share/locale/en_GB/LC_MESSAGES/ark.mo share/locale/eo/LC_MESSAGES/ark.mo share/locale/es/LC_MESSAGES/ark.mo share/locale/et/LC_MESSAGES/ark.mo share/locale/eu/LC_MESSAGES/ark.mo share/locale/fa/LC_MESSAGES/ark.mo share/locale/fi/LC_MESSAGES/ark.mo share/locale/fr/LC_MESSAGES/ark.mo share/locale/ga/LC_MESSAGES/ark.mo share/locale/gl/LC_MESSAGES/ark.mo share/locale/he/LC_MESSAGES/ark.mo share/locale/hi/LC_MESSAGES/ark.mo share/locale/hr/LC_MESSAGES/ark.mo share/locale/hu/LC_MESSAGES/ark.mo share/locale/ia/LC_MESSAGES/ark.mo share/locale/id/LC_MESSAGES/ark.mo share/locale/is/LC_MESSAGES/ark.mo share/locale/it/LC_MESSAGES/ark.mo share/locale/ja/LC_MESSAGES/ark.mo share/locale/kk/LC_MESSAGES/ark.mo share/locale/km/LC_MESSAGES/ark.mo share/locale/ko/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo share/locale/pa/LC_MESSAGES/ark.mo share/locale/pl/LC_MESSAGES/ark.mo share/locale/pt/LC_MESSAGES/ark.mo share/locale/pt_BR/LC_MESSAGES/ark.mo share/locale/ro/LC_MESSAGES/ark.mo share/locale/ru/LC_MESSAGES/ark.mo +share/locale/se/LC_MESSAGES/ark.mo share/locale/sk/LC_MESSAGES/ark.mo share/locale/sl/LC_MESSAGES/ark.mo +share/locale/sq/LC_MESSAGES/ark.mo share/locale/sr/LC_MESSAGES/ark.mo share/locale/sv/LC_MESSAGES/ark.mo +share/locale/ta/LC_MESSAGES/ark.mo +share/locale/tg/LC_MESSAGES/ark.mo share/locale/tr/LC_MESSAGES/ark.mo share/locale/ug/LC_MESSAGES/ark.mo share/locale/uk/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml diff --git a/astro/kosmindoormap/Makefile b/astro/kosmindoormap/Makefile index 730a72c468b9..7f2bfb8a0e06 100644 --- a/astro/kosmindoormap/Makefile +++ b/astro/kosmindoormap/Makefile @@ -1,20 +1,20 @@ PORTNAME= kosmindoormap DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Library and QML component for rendering multi-level OSM indoor maps LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= bison cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm i18n kpublictransport USE_QT= core declarative gui network quick3d \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.4.1 +KDE_APPLICATIONS_SHLIB_VER= 21.4.2 .include diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index 23ef60f80f6a..0fce0f6f5108 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741415 -SHA256 (KDE/release-service/21.04.1/kosmindoormap-21.04.1.tar.xz) = df8a40af3db32549e1666c4755ceedf26f84ebcf952898098555beb0c2ded44c -SIZE (KDE/release-service/21.04.1/kosmindoormap-21.04.1.tar.xz) = 333772 +TIMESTAMP = 1623520748 +SHA256 (KDE/release-service/21.04.2/kosmindoormap-21.04.2.tar.xz) = ec11f94eccfbfcf7f6b91845c32b49601b56a389aeb0ccfab2c14419cb863ad3 +SIZE (KDE/release-service/21.04.2/kosmindoormap-21.04.2.tar.xz) = 336984 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index 221ff0f9a1c7..b3dd31bf36e0 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,76 +1,78 @@ include/KOSM/Datatypes include/KOSM/Element include/KOSMIndoorMap/EquipmentModel include/KOSMIndoorMap/FloorLevelModel include/KOSMIndoorMap/GateModel include/KOSMIndoorMap/HitDetector include/KOSMIndoorMap/MapCSSParser include/KOSMIndoorMap/MapCSSStyle include/KOSMIndoorMap/MapData include/KOSMIndoorMap/MapLoader include/KOSMIndoorMap/OverlaySource include/KOSMIndoorMap/PainterRenderer include/KOSMIndoorMap/Platform include/KOSMIndoorMap/PlatformModel include/KOSMIndoorMap/SceneController include/KOSMIndoorMap/SceneGraph include/KOSMIndoorMap/SceneGraphItem include/KOSMIndoorMap/View include/kosm/datatypes.h include/kosm/element.h include/kosm/internal.h include/kosm/kosm_export.h include/kosmindoormap/equipmentmodel.h include/kosmindoormap/floorlevelmodel.h include/kosmindoormap/gatemodel.h include/kosmindoormap/hitdetector.h include/kosmindoormap/kosmindoormap_export.h include/kosmindoormap/mapcssparser.h include/kosmindoormap/mapcssstyle.h include/kosmindoormap/mapdata.h include/kosmindoormap/maploader.h include/kosmindoormap/overlaysource.h include/kosmindoormap/painterrenderer.h include/kosmindoormap/platform.h include/kosmindoormap/platformmodel.h include/kosmindoormap/scenecontroller.h include/kosmindoormap/scenegraph.h include/kosmindoormap/scenegraphitem.h include/kosmindoormap/view.h include/kosmindoormap_version.h lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfig.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapConfigVersion.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KOSMIndoorMap/KOSMIndoorMapTargets.cmake lib/libKOSM.so lib/libKOSM.so.1 lib/libKOSM.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMap.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapAttributionLabel.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/IndoorMapScale.qml %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/libkosmindoormap_kpublictransport_integration_plugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/kpublictransport/qmldir %%QT_QMLDIR%%/org/kde/kosmindoormap/libkosmindoormapquickplugin.so %%QT_QMLDIR%%/org/kde/kosmindoormap/qmldir share/locale/ca/LC_MESSAGES/kosmindoormap.mo share/locale/ca@valencia/LC_MESSAGES/kosmindoormap.mo share/locale/cs/LC_MESSAGES/kosmindoormap.mo share/locale/de/LC_MESSAGES/kosmindoormap.mo share/locale/en_GB/LC_MESSAGES/kosmindoormap.mo share/locale/es/LC_MESSAGES/kosmindoormap.mo share/locale/fr/LC_MESSAGES/kosmindoormap.mo share/locale/it/LC_MESSAGES/kosmindoormap.mo +share/locale/ja/LC_MESSAGES/kosmindoormap.mo +share/locale/ko/LC_MESSAGES/kosmindoormap.mo share/locale/lt/LC_MESSAGES/kosmindoormap.mo share/locale/nl/LC_MESSAGES/kosmindoormap.mo share/locale/pl/LC_MESSAGES/kosmindoormap.mo share/locale/pt/LC_MESSAGES/kosmindoormap.mo share/locale/pt_BR/LC_MESSAGES/kosmindoormap.mo share/locale/sk/LC_MESSAGES/kosmindoormap.mo share/locale/sl/LC_MESSAGES/kosmindoormap.mo share/locale/sv/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 5ad6c905d1a9..d444035d81d1 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741416 -SHA256 (KDE/release-service/21.04.1/marble-21.04.1.tar.xz) = ba51b29d3bf323f194791f00e9888cabb0f01ec2dff4e6d9d5c6943cda424ea3 -SIZE (KDE/release-service/21.04.1/marble-21.04.1.tar.xz) = 52378408 +TIMESTAMP = 1623520751 +SHA256 (KDE/release-service/21.04.2/marble-21.04.2.tar.xz) = 66e1fe73e248ba18245e2a1e234eecf49d531569b5080e19a4ca9dddbbbd0545 +SIZE (KDE/release-service/21.04.2/marble-21.04.2.tar.xz) = 52387888 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index 0eaa24b30337..74a486a745e5 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1774 +1,1778 @@ bin/marble bin/marble-qt include/astro/astr2lib.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 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.0.17.20 lib/libastro.so.1 lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.0.28.0 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/128x128/apps/marble.png 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/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/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/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/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_runner_marble.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/se/LC_MESSAGES/marble.mo +share/locale/se/LC_MESSAGES/marble_qt.qm 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/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/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/cliff.png %%DATADIR%%/data/bitmaps/osmcarto/patterns/cliff2.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_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/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/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/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/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/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/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/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/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/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/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/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/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/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_crossing.svg %%DATADIR%%/data/svg/osmcarto/svg/individual/level_crossing2.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/101965-inline-skater.svg %%DATADIR%%/data/svg/thenounproject/204712-hiker.svg %%DATADIR%%/data/svg/thenounproject/21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/2412-skiing-downhill.svg %%DATADIR%%/data/svg/thenounproject/245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/29366-skitour.svg %%DATADIR%%/data/svg/thenounproject/30231-skiing-cross-country.svg %%DATADIR%%/data/svg/thenounproject/365217-sled.svg %%DATADIR%%/data/svg/thenounproject/583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/61698-mountain-biking.svg %%DATADIR%%/data/svg/thenounproject/78374-horse-riding.svg %%DATADIR%%/data/svg/thenounproject/8803-platter-lift.svg %%DATADIR%%/data/svg/thenounproject/sports-245-ski-jump.svg %%DATADIR%%/data/svg/thenounproject/transportation-21636-gondola.svg %%DATADIR%%/data/svg/thenounproject/transportation-231-chair-lift.svg %%DATADIR%%/data/svg/thenounproject/transportation-583813-cable-car.svg %%DATADIR%%/data/svg/thenounproject/transportation-8803-platter-lift.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.worldmap.appdata.xml share/metainfo/org.kde.plasma.worldclock.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 9066c55fcd42..3c38e64451af 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741417 -SHA256 (KDE/release-service/21.04.1/audiocd-kio-21.04.1.tar.xz) = 6ec47fafd43d08f376aec8f82f28eb1ecdbcc53bf8c9ecc4d3679fc6688116c9 -SIZE (KDE/release-service/21.04.1/audiocd-kio-21.04.1.tar.xz) = 504872 +TIMESTAMP = 1623520752 +SHA256 (KDE/release-service/21.04.2/audiocd-kio-21.04.2.tar.xz) = eba03b001ff75f1231a3bfb7ea4fa67b4ea976bae7b64859e23ebf101f6d6808 +SIZE (KDE/release-service/21.04.2/audiocd-kio-21.04.2.tar.xz) = 517752 diff --git a/audio/audiocd-kio/pkg-plist b/audio/audiocd-kio/pkg-plist index d0914abdabdb..5afac5ade75e 100644 --- a/audio/audiocd-kio/pkg-plist +++ b/audio/audiocd-kio/pkg-plist @@ -1,298 +1,321 @@ share/qlogging-categories5/kio_audiocd.categories 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/kservices5/audiocd.protocol 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/kcmaudiocd.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_lame.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_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_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.renamecategories share/solid/actions/solid_audiocd.desktop diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 1f8762a84157..21236e0d6160 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741418 -SHA256 (KDE/release-service/21.04.1/elisa-21.04.1.tar.xz) = 226560f2ed42610c98535a457f8cff1dc953ec144e2de3819373a3a5de421ea2 -SIZE (KDE/release-service/21.04.1/elisa-21.04.1.tar.xz) = 1721592 +TIMESTAMP = 1623520754 +SHA256 (KDE/release-service/21.04.2/elisa-21.04.2.tar.xz) = 11d28647afe7f7aba84585f76a5f1ee0260c8f3852fe4c2e4f1a70af49b7182b +SIZE (KDE/release-service/21.04.2/elisa-21.04.2.tar.xz) = 1724456 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index ee58c5275fda..8b606cae65e1 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,53 +1,54 @@ bin/elisa lib/elisa/libelisaLib.so.0 lib/elisa/libelisaLib.so.0.1 %%QT_QMLDIR%%/org/kde/elisa/libelisaqmlplugin.so %%QT_QMLDIR%%/org/kde/elisa/qmldir %%QT_QMLDIR%%/org/kde/elisa/plugins.qmltypes share/applications/org.kde.elisa.desktop share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo share/locale/ast/LC_MESSAGES/elisa.mo +share/locale/az/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/es/LC_MESSAGES/elisa.mo share/locale/et/LC_MESSAGES/elisa.mo share/locale/eu/LC_MESSAGES/elisa.mo share/locale/fi/LC_MESSAGES/elisa.mo share/locale/fr/LC_MESSAGES/elisa.mo share/locale/gl/LC_MESSAGES/elisa.mo share/locale/hi/LC_MESSAGES/elisa.mo share/locale/hu/LC_MESSAGES/elisa.mo share/locale/ia/LC_MESSAGES/elisa.mo share/locale/id/LC_MESSAGES/elisa.mo share/locale/it/LC_MESSAGES/elisa.mo share/locale/ja/LC_MESSAGES/elisa.mo share/locale/ko/LC_MESSAGES/elisa.mo share/locale/lt/LC_MESSAGES/elisa.mo share/locale/nl/LC_MESSAGES/elisa.mo share/locale/nn/LC_MESSAGES/elisa.mo share/locale/pa/LC_MESSAGES/elisa.mo share/locale/pl/LC_MESSAGES/elisa.mo share/locale/pt/LC_MESSAGES/elisa.mo share/locale/pt_BR/LC_MESSAGES/elisa.mo share/locale/ru/LC_MESSAGES/elisa.mo share/locale/sk/LC_MESSAGES/elisa.mo share/locale/sl/LC_MESSAGES/elisa.mo share/locale/sv/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories5/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 421a62209ce1..36a51e43ced3 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741419 -SHA256 (KDE/release-service/21.04.1/juk-21.04.1.tar.xz) = 85b5d53ea2d320431cbc774b5c8b5b12d5a9fe673289d1f7e5cb13cdf778bb23 -SIZE (KDE/release-service/21.04.1/juk-21.04.1.tar.xz) = 1993420 +TIMESTAMP = 1623520755 +SHA256 (KDE/release-service/21.04.2/juk-21.04.2.tar.xz) = a4bec45c8ef5526d6775f408dc2655ba6aa5e1c82be10f587baca62996fd1844 +SIZE (KDE/release-service/21.04.2/juk-21.04.2.tar.xz) = 2010700 diff --git a/audio/juk/pkg-plist b/audio/juk/pkg-plist index 452ebc34f4b7..b9b12cc1966d 100644 --- a/audio/juk/pkg-plist +++ b/audio/juk/pkg-plist @@ -1,70 +1,75 @@ bin/juk share/applications/org.kde.juk.desktop share/dbus-1/interfaces/org.kde.juk.collection.xml share/dbus-1/interfaces/org.kde.juk.player.xml share/dbus-1/interfaces/org.kde.juk.search.xml share/icons/hicolor/128x128/apps/juk.png share/icons/hicolor/16x16/apps/juk.png share/icons/hicolor/32x32/apps/juk.png share/icons/hicolor/48x48/apps/juk.png share/icons/hicolor/64x64/apps/juk.png %%DATADIR%%/pics/playing.png %%DATADIR%%/pics/theme.svg share/knotifications5/juk.notifyrc share/kservices5/ServiceMenus/jukservicemenu.desktop share/kxmlgui5/juk/jukui-rtl.rc share/kxmlgui5/juk/jukui.rc share/locale/ar/LC_MESSAGES/juk.mo +share/locale/be/LC_MESSAGES/juk.mo share/locale/bg/LC_MESSAGES/juk.mo share/locale/bs/LC_MESSAGES/juk.mo share/locale/ca/LC_MESSAGES/juk.mo share/locale/ca@valencia/LC_MESSAGES/juk.mo share/locale/cs/LC_MESSAGES/juk.mo share/locale/da/LC_MESSAGES/juk.mo share/locale/de/LC_MESSAGES/juk.mo share/locale/el/LC_MESSAGES/juk.mo share/locale/en_GB/LC_MESSAGES/juk.mo share/locale/eo/LC_MESSAGES/juk.mo share/locale/es/LC_MESSAGES/juk.mo share/locale/et/LC_MESSAGES/juk.mo share/locale/eu/LC_MESSAGES/juk.mo share/locale/fa/LC_MESSAGES/juk.mo share/locale/fi/LC_MESSAGES/juk.mo share/locale/fr/LC_MESSAGES/juk.mo share/locale/ga/LC_MESSAGES/juk.mo share/locale/gl/LC_MESSAGES/juk.mo share/locale/he/LC_MESSAGES/juk.mo share/locale/hi/LC_MESSAGES/juk.mo share/locale/hr/LC_MESSAGES/juk.mo share/locale/hu/LC_MESSAGES/juk.mo share/locale/ia/LC_MESSAGES/juk.mo share/locale/id/LC_MESSAGES/juk.mo share/locale/is/LC_MESSAGES/juk.mo share/locale/it/LC_MESSAGES/juk.mo share/locale/ja/LC_MESSAGES/juk.mo share/locale/kk/LC_MESSAGES/juk.mo share/locale/km/LC_MESSAGES/juk.mo share/locale/ko/LC_MESSAGES/juk.mo share/locale/lt/LC_MESSAGES/juk.mo share/locale/lv/LC_MESSAGES/juk.mo share/locale/mr/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/juk.mo share/locale/pa/LC_MESSAGES/juk.mo share/locale/pl/LC_MESSAGES/juk.mo share/locale/pt/LC_MESSAGES/juk.mo share/locale/pt_BR/LC_MESSAGES/juk.mo share/locale/ro/LC_MESSAGES/juk.mo share/locale/ru/LC_MESSAGES/juk.mo +share/locale/se/LC_MESSAGES/juk.mo share/locale/sk/LC_MESSAGES/juk.mo share/locale/sl/LC_MESSAGES/juk.mo +share/locale/sq/LC_MESSAGES/juk.mo share/locale/sr/LC_MESSAGES/juk.mo share/locale/sv/LC_MESSAGES/juk.mo +share/locale/ta/LC_MESSAGES/juk.mo +share/locale/tg/LC_MESSAGES/juk.mo share/locale/tr/LC_MESSAGES/juk.mo share/locale/ug/LC_MESSAGES/juk.mo share/locale/uk/LC_MESSAGES/juk.mo share/locale/zh_CN/LC_MESSAGES/juk.mo share/locale/zh_TW/LC_MESSAGES/juk.mo share/metainfo/org.kde.juk.appdata.xml diff --git a/audio/kmix/distinfo b/audio/kmix/distinfo index e7146dadd3ad..d07b7190bacb 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741419 -SHA256 (KDE/release-service/21.04.1/kmix-21.04.1.tar.xz) = 7311834664c148637b586fd2a4163141d0f786324c06869dbd3d33e0156fd205 -SIZE (KDE/release-service/21.04.1/kmix-21.04.1.tar.xz) = 1151536 +TIMESTAMP = 1623520756 +SHA256 (KDE/release-service/21.04.2/kmix-21.04.2.tar.xz) = 0a64c4cc5bd4c514c344e16a6e387bd3e6baef3d2708c557d8b56f8b0ac67169 +SIZE (KDE/release-service/21.04.2/kmix-21.04.2.tar.xz) = 1161936 diff --git a/audio/kmix/pkg-plist b/audio/kmix/pkg-plist index 9f6fb704dae6..bbba73f11e97 100644 --- a/audio/kmix/pkg-plist +++ b/audio/kmix/pkg-plist @@ -1,100 +1,105 @@ bin/kmix bin/kmixctrl bin/kmixremote etc/xdg/autostart/kmix_autostart.desktop etc/xdg/autostart/restore_kmix_volumes.desktop lib/libkmixcore.so.5 lib/libkmixcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kf5/kded/kmixd.so share/applications/org.kde.kmix.desktop share/config.kcfg/kmixsettings.kcfg share/dbus-1/interfaces/org.kde.kmix.control.xml share/dbus-1/interfaces/org.kde.kmix.mixer.xml share/dbus-1/interfaces/org.kde.kmix.mixset.xml share/icons/hicolor/128x128/actions/kmix.png share/icons/hicolor/16x16/actions/kmix.png share/icons/hicolor/32x32/actions/kmix.png share/icons/hicolor/48x48/actions/kmix.png share/icons/hicolor/64x64/actions/kmix.png share/knotifications5/kmix.notifyrc %%DATADIR%%/pics/show-mixer.png share/locale/ar/LC_MESSAGES/kmix.mo +share/locale/be/LC_MESSAGES/kmix.mo share/locale/bg/LC_MESSAGES/kmix.mo share/locale/bs/LC_MESSAGES/kmix.mo share/locale/ca/LC_MESSAGES/kmix.mo share/locale/ca@valencia/LC_MESSAGES/kmix.mo share/locale/cs/LC_MESSAGES/kmix.mo share/locale/da/LC_MESSAGES/kmix.mo share/locale/de/LC_MESSAGES/kmix.mo share/locale/el/LC_MESSAGES/kmix.mo share/locale/en_GB/LC_MESSAGES/kmix.mo share/locale/eo/LC_MESSAGES/kmix.mo share/locale/es/LC_MESSAGES/kmix.mo share/locale/et/LC_MESSAGES/kmix.mo share/locale/eu/LC_MESSAGES/kmix.mo share/locale/fa/LC_MESSAGES/kmix.mo share/locale/fi/LC_MESSAGES/kmix.mo share/locale/fr/LC_MESSAGES/kmix.mo share/locale/ga/LC_MESSAGES/kmix.mo share/locale/gl/LC_MESSAGES/kmix.mo share/locale/he/LC_MESSAGES/kmix.mo share/locale/hi/LC_MESSAGES/kmix.mo share/locale/hr/LC_MESSAGES/kmix.mo share/locale/hu/LC_MESSAGES/kmix.mo share/locale/ia/LC_MESSAGES/kmix.mo share/locale/id/LC_MESSAGES/kmix.mo share/locale/is/LC_MESSAGES/kmix.mo share/locale/it/LC_MESSAGES/kmix.mo share/locale/ja/LC_MESSAGES/kmix.mo share/locale/kk/LC_MESSAGES/kmix.mo share/locale/km/LC_MESSAGES/kmix.mo share/locale/ko/LC_MESSAGES/kmix.mo share/locale/lt/LC_MESSAGES/kmix.mo share/locale/lv/LC_MESSAGES/kmix.mo share/locale/mr/LC_MESSAGES/kmix.mo share/locale/nb/LC_MESSAGES/kmix.mo share/locale/nds/LC_MESSAGES/kmix.mo share/locale/nl/LC_MESSAGES/kmix.mo share/locale/nn/LC_MESSAGES/kmix.mo share/locale/pa/LC_MESSAGES/kmix.mo share/locale/pl/LC_MESSAGES/kmix.mo share/locale/pt/LC_MESSAGES/kmix.mo share/locale/pt_BR/LC_MESSAGES/kmix.mo share/locale/ro/LC_MESSAGES/kmix.mo share/locale/ru/LC_MESSAGES/kmix.mo +share/locale/se/LC_MESSAGES/kmix.mo share/locale/sk/LC_MESSAGES/kmix.mo share/locale/sl/LC_MESSAGES/kmix.mo +share/locale/sq/LC_MESSAGES/kmix.mo share/locale/sr/LC_MESSAGES/kmix.mo share/locale/sv/LC_MESSAGES/kmix.mo +share/locale/ta/LC_MESSAGES/kmix.mo +share/locale/tg/LC_MESSAGES/kmix.mo share/locale/tr/LC_MESSAGES/kmix.mo share/locale/ug/LC_MESSAGES/kmix.mo share/locale/uk/LC_MESSAGES/kmix.mo share/locale/zh_CN/LC_MESSAGES/kmix.mo share/locale/zh_TW/LC_MESSAGES/kmix.mo %%DATADIR%%/pics/mixer-ac97.png %%DATADIR%%/pics/mixer-capture.png %%DATADIR%%/pics/mixer-cd.png %%DATADIR%%/pics/mixer-digital.png %%DATADIR%%/pics/mixer-front.png %%DATADIR%%/pics/mixer-headset.png %%DATADIR%%/pics/mixer-lfe.png %%DATADIR%%/pics/mixer-line.png %%DATADIR%%/pics/mixer-master.png %%DATADIR%%/pics/mixer-microphone.png %%DATADIR%%/pics/mixer-midi.png %%DATADIR%%/pics/mixer-pcm-default.png %%DATADIR%%/pics/mixer-pcm.png %%DATADIR%%/pics/mixer-surround.png %%DATADIR%%/pics/mixer-video.png %%DATADIR%%/profiles/ALSA.TerraTec_DMX6Fire.1.default.xml %%DATADIR%%/profiles/ALSA.capture.xml %%DATADIR%%/profiles/ALSA.default.xml %%DATADIR%%/profiles/ALSA.playback.xml %%DATADIR%%/profiles/MPRIS2.default.xml %%DATADIR%%/profiles/OSS.default.xml %%DATADIR%%/profiles/PulseAudio.default.xml %%DATADIR%%/profiles/SUNAudio.default.xml share/metainfo/org.kde.kmix.appdata.xml share/kservices5/kmixctrl_restore.desktop share/kxmlgui5/kmix/kmixui.rc share/qlogging-categories5/kmix.categories diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 6e922b8d3a1c..8642cda8c460 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741420 -SHA256 (KDE/release-service/21.04.1/kwave-21.04.1.tar.xz) = a4d3102f8dae51d6dcd779ff7a83a5f7727cfe409b5b4efe61cf893a63fe2b89 -SIZE (KDE/release-service/21.04.1/kwave-21.04.1.tar.xz) = 6880628 +TIMESTAMP = 1623520757 +SHA256 (KDE/release-service/21.04.2/kwave-21.04.2.tar.xz) = 5d09589cd161a1ddbd8a76739342a719e223f544148f207a6f17b7a6c9c3068b +SIZE (KDE/release-service/21.04.2/kwave-21.04.2.tar.xz) = 6898836 diff --git a/audio/kwave/pkg-plist b/audio/kwave/pkg-plist index ee439bcc82e8..c1647ff82992 100644 --- a/audio/kwave/pkg-plist +++ b/audio/kwave/pkg-plist @@ -1,98 +1,99 @@ bin/kwave lib/libkwave.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwave.so.%%KDE_APPLICATIONS_VERSION%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkwavegui.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kwave/kwaveplugin_about.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_amplifyfree.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_band_pass.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_ascii.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_audiofile.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_flac.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_mp3.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_ogg.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_codec_wav.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_debug.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_export_k3b.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_fileinfo.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_goto.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_insert_at.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_lowpass.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_newsignal.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_noise.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_normalize.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_notch_filter.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_pitch_shift.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_playback.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_record.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_reverse.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_samplerate.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_saveblocks.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_selectrange.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_sonagram.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_stringenter.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_volume.so %%QT_PLUGINDIR%%/kwave/kwaveplugin_zero.so share/applications/org.kde.kwave.desktop share/icons/hicolor/scalable/actions/kwave_player_end.svgz share/icons/hicolor/scalable/actions/kwave_player_fwd.svgz share/icons/hicolor/scalable/actions/kwave_player_loop.svgz share/icons/hicolor/scalable/actions/kwave_player_pause.svgz share/icons/hicolor/scalable/actions/kwave_player_pause_2.svgz share/icons/hicolor/scalable/actions/kwave_player_play.svgz share/icons/hicolor/scalable/actions/kwave_player_record.svgz share/icons/hicolor/scalable/actions/kwave_player_rew.svgz share/icons/hicolor/scalable/actions/kwave_player_start.svgz share/icons/hicolor/scalable/actions/kwave_player_stop.svgz share/icons/hicolor/scalable/actions/kwave_viewmag.svgz share/icons/hicolor/scalable/actions/kwave_viewmagfit.svgz share/icons/hicolor/scalable/actions/kwave_zoom_in.svgz share/icons/hicolor/scalable/actions/kwave_zoom_original.svgz share/icons/hicolor/scalable/actions/kwave_zoom_out.svgz share/icons/hicolor/scalable/apps/kwave.svgz share/kservicetypes5/kwave-plugin.desktop %%DATADIR%%/menus.config %%DATADIR%%/pics/amplify_free.png %%DATADIR%%/pics/fade_in.png %%DATADIR%%/pics/fade_out.png %%DATADIR%%/pics/knob.xpm %%DATADIR%%/pics/kwave-splash.png %%DATADIR%%/pics/light_off.xpm %%DATADIR%%/pics/light_on.xpm %%DATADIR%%/pics/logo.xpm %%DATADIR%%/pics/noise.png %%DATADIR%%/pics/selectedknob.xpm %%DATADIR%%/pics/sound_card.png %%DATADIR%%/pics/sound_device.png %%DATADIR%%/pics/sound_note.png %%DATADIR%%/pics/sound_subdevice.png share/locale/bs/LC_MESSAGES/kwave.mo share/locale/ca/LC_MESSAGES/kwave.mo share/locale/ca@valencia/LC_MESSAGES/kwave.mo share/locale/cs/LC_MESSAGES/kwave.mo share/locale/da/LC_MESSAGES/kwave.mo share/locale/de/LC_MESSAGES/kwave.mo share/locale/el/LC_MESSAGES/kwave.mo share/locale/en_GB/LC_MESSAGES/kwave.mo share/locale/es/LC_MESSAGES/kwave.mo share/locale/et/LC_MESSAGES/kwave.mo share/locale/eu/LC_MESSAGES/kwave.mo share/locale/fi/LC_MESSAGES/kwave.mo share/locale/fr/LC_MESSAGES/kwave.mo share/locale/gl/LC_MESSAGES/kwave.mo share/locale/ia/LC_MESSAGES/kwave.mo share/locale/it/LC_MESSAGES/kwave.mo share/locale/ja/LC_MESSAGES/kwave.mo +share/locale/ko/LC_MESSAGES/kwave.mo share/locale/lt/LC_MESSAGES/kwave.mo share/locale/nl/LC_MESSAGES/kwave.mo share/locale/pl/LC_MESSAGES/kwave.mo share/locale/pt/LC_MESSAGES/kwave.mo share/locale/pt_BR/LC_MESSAGES/kwave.mo share/locale/ru/LC_MESSAGES/kwave.mo share/locale/sk/LC_MESSAGES/kwave.mo share/locale/sv/LC_MESSAGES/kwave.mo share/locale/tr/LC_MESSAGES/kwave.mo share/locale/uk/LC_MESSAGES/kwave.mo share/locale/zh_CN/LC_MESSAGES/kwave.mo share/locale/zh_TW/LC_MESSAGES/kwave.mo share/metainfo/org.kde.kwave.appdata.xml diff --git a/audio/libkcddb/distinfo b/audio/libkcddb/distinfo index 657a5b5fdb19..b7ca12eeeeac 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741421 -SHA256 (KDE/release-service/21.04.1/libkcddb-21.04.1.tar.xz) = ff7dab7b1d687755d186c706788ecb6f3a35db4dd6e4696a2074f80a22ae4061 -SIZE (KDE/release-service/21.04.1/libkcddb-21.04.1.tar.xz) = 424524 +TIMESTAMP = 1623520759 +SHA256 (KDE/release-service/21.04.2/libkcddb-21.04.2.tar.xz) = f563c0ebe379bc28fbfdbb25152b5057e492afd86c85e2d71aa65c2e586e5be9 +SIZE (KDE/release-service/21.04.2/libkcddb-21.04.2.tar.xz) = 430124 diff --git a/audio/libkcddb/pkg-plist b/audio/libkcddb/pkg-plist index 7b3671bd65fc..32236c30c69d 100644 --- a/audio/libkcddb/pkg-plist +++ b/audio/libkcddb/pkg-plist @@ -1,132 +1,142 @@ include/KF5/KCddb/Categories include/KF5/KCddb/Cdinfo include/KF5/KCddb/Client include/KF5/KCddb/Genres include/KF5/KCddb/Kcddb include/KF5/KCddb/KcddbConfig include/KF5/KCddb/categories.h include/KF5/KCddb/cdinfo.h include/KF5/KCddb/client.h include/KF5/KCddb/configbase.h include/KF5/KCddb/genres.h include/KF5/KCddb/kcddb.h include/KF5/KCddb/kcddb_export.h include/KF5/KCddb/kcddbconfig.h include/KF5/kcddb_version.h lib/cmake/KF5Cddb/KF5CddbConfig.cmake lib/cmake/KF5Cddb/KF5CddbConfigVersion.cmake lib/cmake/KF5Cddb/KF5CddbTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Cddb/KF5CddbTargets.cmake lib/libKF5Cddb.so lib/libKF5Cddb.so.5 lib/libKF5Cddb.so.5.0.0 %%QT_MKSPECDIR%%/modules/qt_KCddb.pri %%QT_PLUGINDIR%%/kcm_cddb.so share/config.kcfg/libkcddb5.kcfg share/kservices5/libkcddb.desktop share/locale/ar/LC_MESSAGES/kcmcddb.mo share/locale/ar/LC_MESSAGES/libkcddb.mo share/locale/ast/LC_MESSAGES/kcmcddb.mo +share/locale/be/LC_MESSAGES/kcmcddb.mo +share/locale/be/LC_MESSAGES/libkcddb.mo share/locale/bg/LC_MESSAGES/kcmcddb.mo share/locale/bg/LC_MESSAGES/libkcddb.mo share/locale/bs/LC_MESSAGES/kcmcddb.mo share/locale/bs/LC_MESSAGES/libkcddb.mo share/locale/ca/LC_MESSAGES/kcmcddb.mo share/locale/ca/LC_MESSAGES/libkcddb.mo share/locale/ca@valencia/LC_MESSAGES/kcmcddb.mo share/locale/ca@valencia/LC_MESSAGES/libkcddb.mo share/locale/cs/LC_MESSAGES/kcmcddb.mo share/locale/cs/LC_MESSAGES/libkcddb.mo share/locale/da/LC_MESSAGES/kcmcddb.mo share/locale/da/LC_MESSAGES/libkcddb.mo share/locale/de/LC_MESSAGES/kcmcddb.mo share/locale/de/LC_MESSAGES/libkcddb.mo share/locale/el/LC_MESSAGES/kcmcddb.mo share/locale/el/LC_MESSAGES/libkcddb.mo share/locale/en_GB/LC_MESSAGES/kcmcddb.mo share/locale/en_GB/LC_MESSAGES/libkcddb.mo share/locale/eo/LC_MESSAGES/kcmcddb.mo share/locale/eo/LC_MESSAGES/libkcddb.mo share/locale/es/LC_MESSAGES/kcmcddb.mo share/locale/es/LC_MESSAGES/libkcddb.mo share/locale/et/LC_MESSAGES/kcmcddb.mo share/locale/et/LC_MESSAGES/libkcddb.mo share/locale/eu/LC_MESSAGES/kcmcddb.mo share/locale/eu/LC_MESSAGES/libkcddb.mo share/locale/fa/LC_MESSAGES/kcmcddb.mo share/locale/fa/LC_MESSAGES/libkcddb.mo share/locale/fi/LC_MESSAGES/kcmcddb.mo share/locale/fi/LC_MESSAGES/libkcddb.mo share/locale/fr/LC_MESSAGES/kcmcddb.mo share/locale/fr/LC_MESSAGES/libkcddb.mo share/locale/ga/LC_MESSAGES/kcmcddb.mo share/locale/ga/LC_MESSAGES/libkcddb.mo share/locale/gl/LC_MESSAGES/kcmcddb.mo share/locale/gl/LC_MESSAGES/libkcddb.mo share/locale/he/LC_MESSAGES/kcmcddb.mo share/locale/he/LC_MESSAGES/libkcddb.mo share/locale/hi/LC_MESSAGES/kcmcddb.mo share/locale/hi/LC_MESSAGES/libkcddb.mo share/locale/hr/LC_MESSAGES/kcmcddb.mo share/locale/hr/LC_MESSAGES/libkcddb.mo share/locale/hu/LC_MESSAGES/kcmcddb.mo share/locale/hu/LC_MESSAGES/libkcddb.mo share/locale/ia/LC_MESSAGES/kcmcddb.mo share/locale/ia/LC_MESSAGES/libkcddb.mo share/locale/is/LC_MESSAGES/kcmcddb.mo share/locale/is/LC_MESSAGES/libkcddb.mo share/locale/it/LC_MESSAGES/kcmcddb.mo share/locale/it/LC_MESSAGES/libkcddb.mo share/locale/ja/LC_MESSAGES/kcmcddb.mo share/locale/ja/LC_MESSAGES/libkcddb.mo share/locale/kk/LC_MESSAGES/kcmcddb.mo share/locale/kk/LC_MESSAGES/libkcddb.mo share/locale/km/LC_MESSAGES/kcmcddb.mo share/locale/km/LC_MESSAGES/libkcddb.mo share/locale/ko/LC_MESSAGES/kcmcddb.mo share/locale/ko/LC_MESSAGES/libkcddb.mo share/locale/lt/LC_MESSAGES/kcmcddb.mo share/locale/lt/LC_MESSAGES/libkcddb.mo share/locale/lv/LC_MESSAGES/kcmcddb.mo share/locale/lv/LC_MESSAGES/libkcddb.mo share/locale/mr/LC_MESSAGES/kcmcddb.mo share/locale/mr/LC_MESSAGES/libkcddb.mo share/locale/nb/LC_MESSAGES/kcmcddb.mo share/locale/nb/LC_MESSAGES/libkcddb.mo share/locale/nds/LC_MESSAGES/kcmcddb.mo share/locale/nds/LC_MESSAGES/libkcddb.mo share/locale/nl/LC_MESSAGES/kcmcddb.mo share/locale/nl/LC_MESSAGES/libkcddb.mo share/locale/nn/LC_MESSAGES/kcmcddb.mo share/locale/nn/LC_MESSAGES/libkcddb.mo share/locale/pa/LC_MESSAGES/kcmcddb.mo share/locale/pa/LC_MESSAGES/libkcddb.mo share/locale/pl/LC_MESSAGES/kcmcddb.mo share/locale/pl/LC_MESSAGES/libkcddb.mo share/locale/pt/LC_MESSAGES/kcmcddb.mo share/locale/pt/LC_MESSAGES/libkcddb.mo share/locale/pt_BR/LC_MESSAGES/kcmcddb.mo share/locale/pt_BR/LC_MESSAGES/libkcddb.mo share/locale/ro/LC_MESSAGES/kcmcddb.mo share/locale/ro/LC_MESSAGES/libkcddb.mo share/locale/ru/LC_MESSAGES/kcmcddb.mo share/locale/ru/LC_MESSAGES/libkcddb.mo +share/locale/se/LC_MESSAGES/kcmcddb.mo +share/locale/se/LC_MESSAGES/libkcddb.mo share/locale/sk/LC_MESSAGES/kcmcddb.mo share/locale/sk/LC_MESSAGES/libkcddb.mo share/locale/sl/LC_MESSAGES/kcmcddb.mo share/locale/sl/LC_MESSAGES/libkcddb.mo +share/locale/sq/LC_MESSAGES/kcmcddb.mo +share/locale/sq/LC_MESSAGES/libkcddb.mo share/locale/sr/LC_MESSAGES/kcmcddb.mo share/locale/sr/LC_MESSAGES/libkcddb.mo share/locale/sv/LC_MESSAGES/kcmcddb.mo share/locale/sv/LC_MESSAGES/libkcddb.mo +share/locale/ta/LC_MESSAGES/kcmcddb.mo +share/locale/ta/LC_MESSAGES/libkcddb.mo +share/locale/tg/LC_MESSAGES/kcmcddb.mo +share/locale/tg/LC_MESSAGES/libkcddb.mo share/locale/tr/LC_MESSAGES/kcmcddb.mo share/locale/tr/LC_MESSAGES/libkcddb.mo share/locale/ug/LC_MESSAGES/kcmcddb.mo share/locale/ug/LC_MESSAGES/libkcddb.mo share/locale/uk/LC_MESSAGES/kcmcddb.mo share/locale/uk/LC_MESSAGES/libkcddb.mo share/locale/zh_CN/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/libkcddb.mo share/locale/zh_TW/LC_MESSAGES/kcmcddb.mo share/locale/zh_TW/LC_MESSAGES/libkcddb.mo share/qlogging-categories5/libkcddb.categories diff --git a/audio/libkcompactdisc/distinfo b/audio/libkcompactdisc/distinfo index 0bf9741bf7cd..24a346868bfb 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741422 -SHA256 (KDE/release-service/21.04.1/libkcompactdisc-21.04.1.tar.xz) = d831102f42d8aec411db8895ae1808a379a839984e98d6ead2a34f9d75cdbef5 -SIZE (KDE/release-service/21.04.1/libkcompactdisc-21.04.1.tar.xz) = 96712 +TIMESTAMP = 1623520760 +SHA256 (KDE/release-service/21.04.2/libkcompactdisc-21.04.2.tar.xz) = 9493f7fc6607cc7e099ba853c52796f1bdc49bcf719fcc8c49e513237f30b650 +SIZE (KDE/release-service/21.04.2/libkcompactdisc-21.04.2.tar.xz) = 97180 diff --git a/audio/libkcompactdisc/pkg-plist b/audio/libkcompactdisc/pkg-plist index a4e3294ecd51..4a8f0f61a7a9 100644 --- a/audio/libkcompactdisc/pkg-plist +++ b/audio/libkcompactdisc/pkg-plist @@ -1,64 +1,67 @@ include/KF5/KCompactDisc/KCompactDisc include/KF5/KCompactDisc/kcompactdisc.h include/KF5/KCompactDisc/kcompactdisc_export.h include/KF5/kcompactdisc_version.h lib/cmake/KF5CompactDisc/KF5CompactDiscConfig.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscConfigVersion.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CompactDisc/KF5CompactDiscTargets.cmake lib/libKF5CompactDisc.so lib/libKF5CompactDisc.so.5 lib/libKF5CompactDisc.so.5.0.0 %%QT_MKSPECDIR%%/modules/qt_KCompactDisc.pri share/locale/ar/LC_MESSAGES/libkcompactdisc.mo share/locale/bg/LC_MESSAGES/libkcompactdisc.mo share/locale/bs/LC_MESSAGES/libkcompactdisc.mo share/locale/ca/LC_MESSAGES/libkcompactdisc.mo share/locale/ca@valencia/LC_MESSAGES/libkcompactdisc.mo share/locale/cs/LC_MESSAGES/libkcompactdisc.mo share/locale/da/LC_MESSAGES/libkcompactdisc.mo share/locale/de/LC_MESSAGES/libkcompactdisc.mo share/locale/el/LC_MESSAGES/libkcompactdisc.mo share/locale/en_GB/LC_MESSAGES/libkcompactdisc.mo share/locale/eo/LC_MESSAGES/libkcompactdisc.mo share/locale/es/LC_MESSAGES/libkcompactdisc.mo share/locale/et/LC_MESSAGES/libkcompactdisc.mo share/locale/eu/LC_MESSAGES/libkcompactdisc.mo share/locale/fi/LC_MESSAGES/libkcompactdisc.mo share/locale/fr/LC_MESSAGES/libkcompactdisc.mo share/locale/ga/LC_MESSAGES/libkcompactdisc.mo share/locale/gl/LC_MESSAGES/libkcompactdisc.mo share/locale/he/LC_MESSAGES/libkcompactdisc.mo share/locale/hi/LC_MESSAGES/libkcompactdisc.mo share/locale/hr/LC_MESSAGES/libkcompactdisc.mo share/locale/hu/LC_MESSAGES/libkcompactdisc.mo share/locale/ia/LC_MESSAGES/libkcompactdisc.mo +share/locale/be/LC_MESSAGES/libkcompactdisc.mo share/locale/is/LC_MESSAGES/libkcompactdisc.mo share/locale/it/LC_MESSAGES/libkcompactdisc.mo share/locale/ja/LC_MESSAGES/libkcompactdisc.mo share/locale/kk/LC_MESSAGES/libkcompactdisc.mo share/locale/km/LC_MESSAGES/libkcompactdisc.mo share/locale/ko/LC_MESSAGES/libkcompactdisc.mo share/locale/lt/LC_MESSAGES/libkcompactdisc.mo share/locale/lv/LC_MESSAGES/libkcompactdisc.mo share/locale/mr/LC_MESSAGES/libkcompactdisc.mo share/locale/nb/LC_MESSAGES/libkcompactdisc.mo share/locale/nds/LC_MESSAGES/libkcompactdisc.mo share/locale/nl/LC_MESSAGES/libkcompactdisc.mo share/locale/nn/LC_MESSAGES/libkcompactdisc.mo share/locale/pa/LC_MESSAGES/libkcompactdisc.mo share/locale/pl/LC_MESSAGES/libkcompactdisc.mo share/locale/pt/LC_MESSAGES/libkcompactdisc.mo share/locale/pt_BR/LC_MESSAGES/libkcompactdisc.mo share/locale/ro/LC_MESSAGES/libkcompactdisc.mo share/locale/ru/LC_MESSAGES/libkcompactdisc.mo +share/locale/se/LC_MESSAGES/libkcompactdisc.mo share/locale/sk/LC_MESSAGES/libkcompactdisc.mo share/locale/sl/LC_MESSAGES/libkcompactdisc.mo +share/locale/sq/LC_MESSAGES/libkcompactdisc.mo share/locale/sr/LC_MESSAGES/libkcompactdisc.mo share/locale/sv/LC_MESSAGES/libkcompactdisc.mo share/locale/tr/LC_MESSAGES/libkcompactdisc.mo share/locale/ug/LC_MESSAGES/libkcompactdisc.mo share/locale/uk/LC_MESSAGES/libkcompactdisc.mo share/locale/wa/LC_MESSAGES/libkcompactdisc.mo share/locale/zh_CN/LC_MESSAGES/libkcompactdisc.mo share/locale/zh_TW/LC_MESSAGES/libkcompactdisc.mo diff --git a/databases/akonadi/distinfo b/databases/akonadi/distinfo index f1e90b014550..a5662d73d3a7 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741422 -SHA256 (KDE/release-service/21.04.1/akonadi-21.04.1.tar.xz) = 23c8cfcfcc8188ac4c7e33d840e3d835dc714f6e021b070dbec332b18b93eb8f -SIZE (KDE/release-service/21.04.1/akonadi-21.04.1.tar.xz) = 1598652 +TIMESTAMP = 1623520761 +SHA256 (KDE/release-service/21.04.2/akonadi-21.04.2.tar.xz) = 7999a588372670e25b6d59b8ed5022b174ed755eeac3e4bcffba7d416f0e8f58 +SIZE (KDE/release-service/21.04.2/akonadi-21.04.2.tar.xz) = 1610288 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index c4ce7c5d99e5..8e7d891fc418 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,471 +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/AkonadiAgentBase/AccountsIntegration include/KF5/AkonadiAgentBase/AgentBase include/KF5/AkonadiAgentBase/AgentSearchInterface include/KF5/AkonadiAgentBase/PreprocessorBase include/KF5/AkonadiAgentBase/ResourceBase include/KF5/AkonadiAgentBase/ResourceSettings include/KF5/AkonadiAgentBase/TransportResourceBase include/KF5/AkonadiAgentBase/accountsintegration.h include/KF5/AkonadiAgentBase/agentbase.h include/KF5/AkonadiAgentBase/agentsearchinterface.h include/KF5/AkonadiAgentBase/akonadiagentbase_export.h include/KF5/AkonadiAgentBase/preprocessorbase.h include/KF5/AkonadiAgentBase/resourcebase.h include/KF5/AkonadiAgentBase/resourcebasesettings.h include/KF5/AkonadiAgentBase/resourcesettings.h include/KF5/AkonadiAgentBase/transportresourcebase.h include/KF5/AkonadiCore/AbstractDifferencesReporter include/KF5/AkonadiCore/AgentConfigurationBase include/KF5/AkonadiCore/AgentConfigurationFactoryBase include/KF5/AkonadiCore/AgentFilterProxyModel include/KF5/AkonadiCore/AgentInstance include/KF5/AkonadiCore/AgentInstanceCreateJob include/KF5/AkonadiCore/AgentInstanceModel include/KF5/AkonadiCore/AgentManager include/KF5/AkonadiCore/AgentType include/KF5/AkonadiCore/AgentTypeModel include/KF5/AkonadiCore/Attribute include/KF5/AkonadiCore/AttributeFactory include/KF5/AkonadiCore/CachePolicy include/KF5/AkonadiCore/ChangeNotification include/KF5/AkonadiCore/ChangeRecorder include/KF5/AkonadiCore/Collection include/KF5/AkonadiCore/CollectionAttributesSynchronizationJob include/KF5/AkonadiCore/CollectionColorAttribute include/KF5/AkonadiCore/CollectionCopyJob include/KF5/AkonadiCore/CollectionCreateJob include/KF5/AkonadiCore/CollectionDeleteJob include/KF5/AkonadiCore/CollectionFetchJob include/KF5/AkonadiCore/CollectionFetchScope include/KF5/AkonadiCore/CollectionFilterProxyModel include/KF5/AkonadiCore/CollectionIdentificationAttribute include/KF5/AkonadiCore/CollectionModifyJob include/KF5/AkonadiCore/CollectionMoveJob include/KF5/AkonadiCore/CollectionPathResolver include/KF5/AkonadiCore/CollectionQuotaAttribute include/KF5/AkonadiCore/CollectionStatistics include/KF5/AkonadiCore/CollectionStatisticsJob include/KF5/AkonadiCore/CollectionUtils include/KF5/AkonadiCore/Control include/KF5/AkonadiCore/DifferencesAlgorithmInterface include/KF5/AkonadiCore/EntityAnnotationsAttribute include/KF5/AkonadiCore/EntityDeletedAttribute include/KF5/AkonadiCore/EntityDisplayAttribute include/KF5/AkonadiCore/EntityHiddenAttribute include/KF5/AkonadiCore/EntityMimeTypeFilterModel include/KF5/AkonadiCore/EntityOrderProxyModel include/KF5/AkonadiCore/EntityRightsFilterModel include/KF5/AkonadiCore/EntityTreeModel include/KF5/AkonadiCore/ExceptionBase include/KF5/AkonadiCore/FavoriteCollectionAttribute include/KF5/AkonadiCore/FavoriteCollectionsModel include/KF5/AkonadiCore/GidExtractorInterface include/KF5/AkonadiCore/IndexPolicyAttribute include/KF5/AkonadiCore/Item include/KF5/AkonadiCore/ItemCopyJob include/KF5/AkonadiCore/ItemCreateJob include/KF5/AkonadiCore/ItemDeleteJob include/KF5/AkonadiCore/ItemFetchJob include/KF5/AkonadiCore/ItemFetchScope include/KF5/AkonadiCore/ItemModifyJob include/KF5/AkonadiCore/ItemMonitor include/KF5/AkonadiCore/ItemMoveJob include/KF5/AkonadiCore/ItemSearchJob include/KF5/AkonadiCore/ItemSerializerPlugin include/KF5/AkonadiCore/ItemSync include/KF5/AkonadiCore/Job include/KF5/AkonadiCore/LinkJob include/KF5/AkonadiCore/MimeTypeChecker include/KF5/AkonadiCore/Monitor include/KF5/AkonadiCore/NotificationSubscriber include/KF5/AkonadiCore/PartFetcher include/KF5/AkonadiCore/PersistentSearchAttribute include/KF5/AkonadiCore/RecursiveCollectionFilterProxyModel include/KF5/AkonadiCore/RecursiveItemFetchJob include/KF5/AkonadiCore/Relation include/KF5/AkonadiCore/RelationCreateJob include/KF5/AkonadiCore/RelationDeleteJob include/KF5/AkonadiCore/RelationFetchJob include/KF5/AkonadiCore/ResourceSynchronizationJob include/KF5/AkonadiCore/SearchCreateJob include/KF5/AkonadiCore/SearchQuery include/KF5/AkonadiCore/SelectionProxyModel include/KF5/AkonadiCore/ServerManager include/KF5/AkonadiCore/Session include/KF5/AkonadiCore/SpecialCollectionAttribute include/KF5/AkonadiCore/SpecialCollections include/KF5/AkonadiCore/SpecialCollectionsDiscoveryJob include/KF5/AkonadiCore/SpecialCollectionsRequestJob include/KF5/AkonadiCore/StatisticsProxyModel include/KF5/AkonadiCore/Supertrait include/KF5/AkonadiCore/Tag include/KF5/AkonadiCore/TagAttribute include/KF5/AkonadiCore/TagCreateJob include/KF5/AkonadiCore/TagDeleteJob include/KF5/AkonadiCore/TagFetchJob include/KF5/AkonadiCore/TagFetchScope include/KF5/AkonadiCore/TagModel include/KF5/AkonadiCore/TagModifyJob include/KF5/AkonadiCore/TransactionJobs include/KF5/AkonadiCore/TransactionSequence include/KF5/AkonadiCore/TrashFilterProxyModel include/KF5/AkonadiCore/TrashJob include/KF5/AkonadiCore/TrashRestoreJob include/KF5/AkonadiCore/TrashSettings include/KF5/AkonadiCore/UnlinkJob include/KF5/AkonadiCore/VectorHelper include/KF5/AkonadiCore/abstractdifferencesreporter.h include/KF5/AkonadiCore/agentconfigurationbase.h include/KF5/AkonadiCore/agentconfigurationfactorybase.h include/KF5/AkonadiCore/agentfilterproxymodel.h include/KF5/AkonadiCore/agentinstance.h include/KF5/AkonadiCore/agentinstancecreatejob.h include/KF5/AkonadiCore/agentinstancemodel.h include/KF5/AkonadiCore/agentmanager.h include/KF5/AkonadiCore/agenttype.h include/KF5/AkonadiCore/agenttypemodel.h include/KF5/AkonadiCore/akonadicore_export.h include/KF5/AkonadiCore/attribute.h include/KF5/AkonadiCore/attributefactory.h include/KF5/AkonadiCore/cachepolicy.h include/KF5/AkonadiCore/changenotification.h include/KF5/AkonadiCore/changerecorder.h include/KF5/AkonadiCore/collection.h include/KF5/AkonadiCore/collectionattributessynchronizationjob.h include/KF5/AkonadiCore/collectioncolorattribute.h include/KF5/AkonadiCore/collectioncopyjob.h include/KF5/AkonadiCore/collectioncreatejob.h include/KF5/AkonadiCore/collectiondeletejob.h include/KF5/AkonadiCore/collectionfetchjob.h include/KF5/AkonadiCore/collectionfetchscope.h include/KF5/AkonadiCore/collectionfilterproxymodel.h include/KF5/AkonadiCore/collectionidentificationattribute.h include/KF5/AkonadiCore/collectionmodifyjob.h include/KF5/AkonadiCore/collectionmovejob.h include/KF5/AkonadiCore/collectionpathresolver.h include/KF5/AkonadiCore/collectionquotaattribute.h include/KF5/AkonadiCore/collectionstatistics.h include/KF5/AkonadiCore/collectionstatisticsjob.h include/KF5/AkonadiCore/collectionutils.h include/KF5/AkonadiCore/config-akonadi.h include/KF5/AkonadiCore/control.h include/KF5/AkonadiCore/differencesalgorithminterface.h include/KF5/AkonadiCore/entityannotationsattribute.h include/KF5/AkonadiCore/entitydeletedattribute.h include/KF5/AkonadiCore/entitydisplayattribute.h include/KF5/AkonadiCore/entityhiddenattribute.h include/KF5/AkonadiCore/entitymimetypefiltermodel.h include/KF5/AkonadiCore/entityorderproxymodel.h include/KF5/AkonadiCore/entityrightsfiltermodel.h include/KF5/AkonadiCore/entitytreemodel.h include/KF5/AkonadiCore/exceptionbase.h include/KF5/AkonadiCore/favoritecollectionattribute.h include/KF5/AkonadiCore/favoritecollectionsmodel.h include/KF5/AkonadiCore/gidextractorinterface.h include/KF5/AkonadiCore/indexpolicyattribute.h include/KF5/AkonadiCore/item.h include/KF5/AkonadiCore/itemcopyjob.h include/KF5/AkonadiCore/itemcreatejob.h include/KF5/AkonadiCore/itemdeletejob.h include/KF5/AkonadiCore/itemfetchjob.h include/KF5/AkonadiCore/itemfetchscope.h include/KF5/AkonadiCore/itemmodifyjob.h include/KF5/AkonadiCore/itemmonitor.h include/KF5/AkonadiCore/itemmovejob.h include/KF5/AkonadiCore/itempayloadinternals_p.h include/KF5/AkonadiCore/itemsearchjob.h include/KF5/AkonadiCore/itemserializerplugin.h include/KF5/AkonadiCore/itemsync.h include/KF5/AkonadiCore/job.h include/KF5/AkonadiCore/linkjob.h include/KF5/AkonadiCore/mimetypechecker.h include/KF5/AkonadiCore/monitor.h include/KF5/AkonadiCore/notificationsubscriber.h include/KF5/AkonadiCore/partfetcher.h include/KF5/AkonadiCore/persistentsearchattribute.h include/KF5/AkonadiCore/qtest_akonadi.h include/KF5/AkonadiCore/recursivecollectionfilterproxymodel.h include/KF5/AkonadiCore/recursiveitemfetchjob.h include/KF5/AkonadiCore/relation.h include/KF5/AkonadiCore/relationcreatejob.h include/KF5/AkonadiCore/relationdeletejob.h include/KF5/AkonadiCore/relationfetchjob.h include/KF5/AkonadiCore/resourcesynchronizationjob.h include/KF5/AkonadiCore/searchcreatejob.h include/KF5/AkonadiCore/searchquery.h include/KF5/AkonadiCore/selectionproxymodel.h include/KF5/AkonadiCore/servermanager.h include/KF5/AkonadiCore/session.h include/KF5/AkonadiCore/specialcollectionattribute.h include/KF5/AkonadiCore/specialcollections.h include/KF5/AkonadiCore/specialcollectionsdiscoveryjob.h include/KF5/AkonadiCore/specialcollectionsrequestjob.h include/KF5/AkonadiCore/statisticsproxymodel.h include/KF5/AkonadiCore/supertrait.h include/KF5/AkonadiCore/tag.h include/KF5/AkonadiCore/tagattribute.h include/KF5/AkonadiCore/tagcreatejob.h include/KF5/AkonadiCore/tagdeletejob.h include/KF5/AkonadiCore/tagfetchjob.h include/KF5/AkonadiCore/tagfetchscope.h include/KF5/AkonadiCore/tagmodel.h include/KF5/AkonadiCore/tagmodifyjob.h include/KF5/AkonadiCore/transactionjobs.h include/KF5/AkonadiCore/transactionsequence.h include/KF5/AkonadiCore/trashfilterproxymodel.h include/KF5/AkonadiCore/trashjob.h include/KF5/AkonadiCore/trashrestorejob.h include/KF5/AkonadiCore/trashsettings.h include/KF5/AkonadiCore/unlinkjob.h include/KF5/AkonadiCore/vectorhelper.h include/KF5/AkonadiWidgets/AgentActionManager include/KF5/AkonadiWidgets/AgentConfigurationDialog include/KF5/AkonadiWidgets/AgentConfigurationWidget include/KF5/AkonadiWidgets/AgentInstanceWidget include/KF5/AkonadiWidgets/AgentTypeDialog include/KF5/AkonadiWidgets/AgentTypeWidget include/KF5/AkonadiWidgets/CollectionComboBox include/KF5/AkonadiWidgets/CollectionDialog include/KF5/AkonadiWidgets/CollectionMaintenancePage include/KF5/AkonadiWidgets/CollectionPropertiesDialog include/KF5/AkonadiWidgets/CollectionPropertiesPage include/KF5/AkonadiWidgets/CollectionRequester include/KF5/AkonadiWidgets/CollectionStatisticsDelegate include/KF5/AkonadiWidgets/CollectionView include/KF5/AkonadiWidgets/ControlGui include/KF5/AkonadiWidgets/ETMViewStateSaver include/KF5/AkonadiWidgets/EntityListView include/KF5/AkonadiWidgets/EntityTreeView include/KF5/AkonadiWidgets/ItemView include/KF5/AkonadiWidgets/ManageAccountWidget include/KF5/AkonadiWidgets/StandardActionManager include/KF5/AkonadiWidgets/SubscriptionDialog include/KF5/AkonadiWidgets/TagEditWidget include/KF5/AkonadiWidgets/TagManagementDialog include/KF5/AkonadiWidgets/TagSelectWidget include/KF5/AkonadiWidgets/TagSelectionComboBox include/KF5/AkonadiWidgets/TagSelectionDialog include/KF5/AkonadiWidgets/TagWidget include/KF5/AkonadiWidgets/agentactionmanager.h include/KF5/AkonadiWidgets/agentconfigurationdialog.h include/KF5/AkonadiWidgets/agentconfigurationwidget.h include/KF5/AkonadiWidgets/agentinstancewidget.h include/KF5/AkonadiWidgets/agenttypedialog.h include/KF5/AkonadiWidgets/agenttypewidget.h include/KF5/AkonadiWidgets/akonadiwidgets_export.h include/KF5/AkonadiWidgets/collectioncombobox.h include/KF5/AkonadiWidgets/collectiondialog.h include/KF5/AkonadiWidgets/collectionmaintenancepage.h include/KF5/AkonadiWidgets/collectionpropertiesdialog.h include/KF5/AkonadiWidgets/collectionpropertiespage.h include/KF5/AkonadiWidgets/collectionrequester.h include/KF5/AkonadiWidgets/collectionstatisticsdelegate.h include/KF5/AkonadiWidgets/collectionview.h include/KF5/AkonadiWidgets/controlgui.h include/KF5/AkonadiWidgets/entitylistview.h include/KF5/AkonadiWidgets/entitytreeview.h include/KF5/AkonadiWidgets/etmviewstatesaver.h include/KF5/AkonadiWidgets/itemview.h include/KF5/AkonadiWidgets/manageaccountwidget.h include/KF5/AkonadiWidgets/standardactionmanager.h include/KF5/AkonadiWidgets/subscriptiondialog.h include/KF5/AkonadiWidgets/tageditwidget.h include/KF5/AkonadiWidgets/tagmanagementdialog.h include/KF5/AkonadiWidgets/tagselectioncombobox.h include/KF5/AkonadiWidgets/tagselectiondialog.h include/KF5/AkonadiWidgets/tagselectwidget.h include/KF5/AkonadiWidgets/tagwidget.h include/KF5/AkonadiXml/XmlDocument include/KF5/AkonadiXml/XmlReader include/KF5/AkonadiXml/XmlWriteJob include/KF5/AkonadiXml/XmlWriter include/KF5/AkonadiXml/akonadi-xml_export.h include/KF5/AkonadiXml/xmldocument.h include/KF5/AkonadiXml/xmlreader.h include/KF5/AkonadiXml/xmlwritejob.h include/KF5/AkonadiXml/xmlwriter.h include/KF5/akonadi/abstractsearchplugin.h include/KF5/akonadi/private/akonadiprivate_export.h include/KF5/akonadi/private/capabilities_p.h include/KF5/akonadi/private/compressionstream_p.h include/KF5/akonadi/private/dbus_p.h include/KF5/akonadi/private/externalpartstorage_p.h include/KF5/akonadi/private/imapparser_p.h include/KF5/akonadi/private/imapset_p.h include/KF5/akonadi/private/instance_p.h include/KF5/akonadi/private/protocol_exception_p.h include/KF5/akonadi/private/protocol_gen.h include/KF5/akonadi/private/protocol_p.h include/KF5/akonadi/private/scope_p.h include/KF5/akonadi/private/standarddirs_p.h include/KF5/akonadi/private/tristate_p.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/128x128/apps/akonadi.png share/icons/hicolor/16x16/apps/akonadi.png share/icons/hicolor/22x22/apps/akonadi.png share/icons/hicolor/256x256/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/scalable/apps/akonadi.svgz share/kdevappwizard/templates/akonadiresource.tar.bz2 share/kdevappwizard/templates/akonadiserializer.tar.bz2 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/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/se/LC_MESSAGES/libakonadi5.mo +share/locale/sq/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/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/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/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/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 6fc97995784e..b21433ffbee7 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741423 -SHA256 (KDE/release-service/21.04.1/akonadi-calendar-tools-21.04.1.tar.xz) = f894c161924716d7087ff9a28f06bba34c06f91a90a0e31220f4c8c1c00545b7 -SIZE (KDE/release-service/21.04.1/akonadi-calendar-tools-21.04.1.tar.xz) = 228424 +TIMESTAMP = 1623520762 +SHA256 (KDE/release-service/21.04.2/akonadi-calendar-tools-21.04.2.tar.xz) = 5bc69e115de3e08d3571de0d757d591c7b00f71fed126858e3d83e56003889b9 +SIZE (KDE/release-service/21.04.2/akonadi-calendar-tools-21.04.2.tar.xz) = 236940 diff --git a/deskutils/akonadi-calendar-tools/pkg-plist b/deskutils/akonadi-calendar-tools/pkg-plist index fc0ed05a01aa..434fe86c22be 100644 --- a/deskutils/akonadi-calendar-tools/pkg-plist +++ b/deskutils/akonadi-calendar-tools/pkg-plist @@ -1,97 +1,104 @@ bin/calendarjanitor bin/konsolekalendar share/qlogging-categories5/console.categories share/qlogging-categories5/console.renamecategories share/applications/konsolekalendar.desktop share/icons/hicolor/128x128/apps/konsolekalendar.png 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/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/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 diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 9292eeafeef1..825882b03044 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741424 -SHA256 (KDE/release-service/21.04.1/akonadi-import-wizard-21.04.1.tar.xz) = 8877940861e54a6b7dce2ebc95f9d15417f37df3f0c4514545d433a96f7ff509 -SIZE (KDE/release-service/21.04.1/akonadi-import-wizard-21.04.1.tar.xz) = 511124 +TIMESTAMP = 1623520764 +SHA256 (KDE/release-service/21.04.2/akonadi-import-wizard-21.04.2.tar.xz) = bb5cfad81bcbf3edd06044181f7e67b6cbad11c4479874d2d5abaefef589b109 +SIZE (KDE/release-service/21.04.2/akonadi-import-wizard-21.04.2.tar.xz) = 512472 diff --git a/deskutils/akonadi-import-wizard/pkg-plist b/deskutils/akonadi-import-wizard/pkg-plist index 3758574717ca..d52d55f21d8f 100644 --- a/deskutils/akonadi-import-wizard/pkg-plist +++ b/deskutils/akonadi-import-wizard/pkg-plist @@ -1,83 +1,84 @@ bin/akonadiimportwizard share/qlogging-categories5/importwizard.categories share/qlogging-categories5/importwizard.renamecategories 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/128x128/apps/kontact-import-wizard.png share/icons/hicolor/256x256/apps/kontact-import-wizard.png share/icons/hicolor/64x64/apps/kontact-import-wizard.png share/importwizard/pics/step1.png share/kconf_update/importwizard-15.08-kickoff.sh share/kconf_update/importwizard.upd share/locale/ar/LC_MESSAGES/akonadiimportwizard.mo +share/locale/az/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 diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index 55c6b7949c33..b1c0c377bf91 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741424 -SHA256 (KDE/release-service/21.04.1/akonadiconsole-21.04.1.tar.xz) = 5364e3c718ee3b6b6c2e73cc2bbbda4d71f9a49556742bc1c7673268c2fc98d5 -SIZE (KDE/release-service/21.04.1/akonadiconsole-21.04.1.tar.xz) = 201752 +TIMESTAMP = 1623520765 +SHA256 (KDE/release-service/21.04.2/akonadiconsole-21.04.2.tar.xz) = 11fbb79cec834a1bf7c1dd7601c38094af7ca93b09f31920c5716e988f95d262 +SIZE (KDE/release-service/21.04.2/akonadiconsole-21.04.2.tar.xz) = 201764 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index 680c3eafedcc..ecf3a1ebbe09 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741425 -SHA256 (KDE/release-service/21.04.1/akregator-21.04.1.tar.xz) = 8806b45954fb60e9a26e7d58c01579de8cfdc8e72db810d8d11efe2b454219f0 -SIZE (KDE/release-service/21.04.1/akregator-21.04.1.tar.xz) = 2213892 +TIMESTAMP = 1623520766 +SHA256 (KDE/release-service/21.04.2/akregator-21.04.2.tar.xz) = 2e34e99d4129be6149fdd70a86488eef77e3dc38922c6e28a0121d7ea0fbe191 +SIZE (KDE/release-service/21.04.2/akregator-21.04.2.tar.xz) = 2250484 diff --git a/deskutils/akregator/pkg-plist b/deskutils/akregator/pkg-plist index 0970bc8766a1..a755faf6850d 100644 --- a/deskutils/akregator/pkg-plist +++ b/deskutils/akregator/pkg-plist @@ -1,100 +1,106 @@ bin/akregator bin/akregatorstorageexporter share/qlogging-categories5/akregator.categories share/qlogging-categories5/akregator.renamecategories lib/libakregatorinterfaces.so lib/libakregatorinterfaces.so.5 lib/libakregatorinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakregatorprivate.so.5 lib/libakregatorprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akregator_config_advanced.so %%QT_PLUGINDIR%%/akregator_config_appearance.so %%QT_PLUGINDIR%%/akregator_config_archive.so %%QT_PLUGINDIR%%/akregator_config_browser.so %%QT_PLUGINDIR%%/akregator_config_general.so %%QT_PLUGINDIR%%/akregator_config_plugins.so %%QT_PLUGINDIR%%/akregator_mk4storage_plugin.so %%QT_PLUGINDIR%%/akregatorpart.so %%QT_PLUGINDIR%%/kontact5/kontact_akregatorplugin.so %%DATADIR%%/grantleetheme/5.2/combinedview.html %%DATADIR%%/grantleetheme/5.2/defaultnormalvisitfeed.html %%DATADIR%%/grantleetheme/5.2/defaultnormalvisitfolder.html %%DATADIR%%/grantleetheme/5.2/normalview.html share/applications/org.kde.akregator.desktop share/config.kcfg/akregator.kcfg share/dbus-1/interfaces/org.kde.akregator.part.xml share/icons/hicolor/128x128/apps/akregator.png share/icons/hicolor/16x16/apps/akregator.png share/icons/hicolor/16x16/apps/akregator_empty.png share/icons/hicolor/22x22/apps/akregator.png share/icons/hicolor/32x32/apps/akregator.png share/icons/hicolor/48x48/apps/akregator.png share/icons/hicolor/64x64/apps/akregator.png share/icons/hicolor/scalable/apps/akregator.svg share/kconf_update/akregator-15.08-kickoff.sh share/kconf_update/akregator.upd share/knotifications5/akregator.notifyrc share/kontact/ksettingsdialog/akregator.setdlg share/kservices5/akregator_config_advanced.desktop share/kservices5/akregator_config_appearance.desktop share/kservices5/akregator_config_archive.desktop share/kservices5/akregator_config_browser.desktop share/kservices5/akregator_config_general.desktop share/kservices5/akregator_config_plugins.desktop share/kservices5/akregator_mk4storage_plugin.desktop share/kservices5/feed.protocol share/kservices5/kontact/akregatorplugin.desktop share/kservicetypes5/akregator_plugin.desktop share/locale/ar/LC_MESSAGES/akregator.mo +share/locale/az/LC_MESSAGES/akregator.mo +share/locale/be/LC_MESSAGES/akregator.mo share/locale/bg/LC_MESSAGES/akregator.mo share/locale/bs/LC_MESSAGES/akregator.mo share/locale/ca/LC_MESSAGES/akregator.mo share/locale/ca@valencia/LC_MESSAGES/akregator.mo share/locale/cs/LC_MESSAGES/akregator.mo share/locale/da/LC_MESSAGES/akregator.mo share/locale/de/LC_MESSAGES/akregator.mo share/locale/el/LC_MESSAGES/akregator.mo share/locale/en_GB/LC_MESSAGES/akregator.mo share/locale/eo/LC_MESSAGES/akregator.mo share/locale/es/LC_MESSAGES/akregator.mo share/locale/et/LC_MESSAGES/akregator.mo share/locale/eu/LC_MESSAGES/akregator.mo share/locale/fa/LC_MESSAGES/akregator.mo share/locale/fi/LC_MESSAGES/akregator.mo share/locale/fr/LC_MESSAGES/akregator.mo share/locale/ga/LC_MESSAGES/akregator.mo share/locale/gl/LC_MESSAGES/akregator.mo share/locale/he/LC_MESSAGES/akregator.mo share/locale/hi/LC_MESSAGES/akregator.mo share/locale/hr/LC_MESSAGES/akregator.mo share/locale/hu/LC_MESSAGES/akregator.mo share/locale/ia/LC_MESSAGES/akregator.mo share/locale/is/LC_MESSAGES/akregator.mo share/locale/it/LC_MESSAGES/akregator.mo share/locale/ja/LC_MESSAGES/akregator.mo share/locale/kk/LC_MESSAGES/akregator.mo share/locale/km/LC_MESSAGES/akregator.mo share/locale/ko/LC_MESSAGES/akregator.mo share/locale/lt/LC_MESSAGES/akregator.mo share/locale/lv/LC_MESSAGES/akregator.mo share/locale/mr/LC_MESSAGES/akregator.mo share/locale/nb/LC_MESSAGES/akregator.mo share/locale/nds/LC_MESSAGES/akregator.mo share/locale/nl/LC_MESSAGES/akregator.mo share/locale/nn/LC_MESSAGES/akregator.mo share/locale/pa/LC_MESSAGES/akregator.mo share/locale/pl/LC_MESSAGES/akregator.mo share/locale/pt/LC_MESSAGES/akregator.mo share/locale/pt_BR/LC_MESSAGES/akregator.mo share/locale/ro/LC_MESSAGES/akregator.mo share/locale/ru/LC_MESSAGES/akregator.mo +share/locale/se/LC_MESSAGES/akregator.mo share/locale/sk/LC_MESSAGES/akregator.mo share/locale/sl/LC_MESSAGES/akregator.mo +share/locale/sq/LC_MESSAGES/akregator.mo share/locale/sr/LC_MESSAGES/akregator.mo share/locale/sv/LC_MESSAGES/akregator.mo +share/locale/ta/LC_MESSAGES/akregator.mo share/locale/tr/LC_MESSAGES/akregator.mo share/locale/ug/LC_MESSAGES/akregator.mo share/locale/uk/LC_MESSAGES/akregator.mo +share/locale/vi/LC_MESSAGES/akregator.mo share/locale/zh_CN/LC_MESSAGES/akregator.mo share/locale/zh_TW/LC_MESSAGES/akregator.mo share/metainfo/org.kde.akregator.appdata.xml diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index cff19948de1b..a803e2c318c9 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741426 -SHA256 (KDE/release-service/21.04.1/grantlee-editor-21.04.1.tar.xz) = b9ae806e8136831ada86a228c7db51266f1828af530a87c7d4ccdb3e5b1c632c -SIZE (KDE/release-service/21.04.1/grantlee-editor-21.04.1.tar.xz) = 111748 +TIMESTAMP = 1623520768 +SHA256 (KDE/release-service/21.04.2/grantlee-editor-21.04.2.tar.xz) = b3650f7a58ace63adcdad9eb5c7428db099febb974b77e4669abbc85ef54cbeb +SIZE (KDE/release-service/21.04.2/grantlee-editor-21.04.2.tar.xz) = 111712 diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index 447179674f03..1213c5bd16b9 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741427 -SHA256 (KDE/release-service/21.04.1/grantleetheme-21.04.1.tar.xz) = 70ce2d931c369b545e0a1f81ab04375ace9fc5c839b8443d9d5ee20c59c795e8 -SIZE (KDE/release-service/21.04.1/grantleetheme-21.04.1.tar.xz) = 60604 +TIMESTAMP = 1623520769 +SHA256 (KDE/release-service/21.04.2/grantleetheme-21.04.2.tar.xz) = 22fb3b57ab75c8b9676aedd3f74c4076cbc3539095f50bb02522f237dde33b7c +SIZE (KDE/release-service/21.04.2/grantleetheme-21.04.2.tar.xz) = 60584 diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index 1de12b91971c..81c0796d2176 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741427 -SHA256 (KDE/release-service/21.04.1/itinerary-21.04.1.tar.xz) = be9b37416f019737c16b398a54fb0adbe9c6a0f602f51378b7179d698443feb4 -SIZE (KDE/release-service/21.04.1/itinerary-21.04.1.tar.xz) = 380676 +TIMESTAMP = 1623520770 +SHA256 (KDE/release-service/21.04.2/itinerary-21.04.2.tar.xz) = 6fb74215ae11440475f95146fa284ae31ba1e7cb9740eef6b266fbf8c8b1b962 +SIZE (KDE/release-service/21.04.2/itinerary-21.04.2.tar.xz) = 382220 diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 38d868c41a26..c71284f533fe 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741428 -SHA256 (KDE/release-service/21.04.1/kaddressbook-21.04.1.tar.xz) = 1f47c6997b9b65ae2e9afb871b267daaa23f083f178497b184100d0663ede23e -SIZE (KDE/release-service/21.04.1/kaddressbook-21.04.1.tar.xz) = 3261804 +TIMESTAMP = 1623520772 +SHA256 (KDE/release-service/21.04.2/kaddressbook-21.04.2.tar.xz) = bb380c5c247a05e5f8622b783eb4515a5dcf01fcdb7ec862aaec702c0bf2b4f0 +SIZE (KDE/release-service/21.04.2/kaddressbook-21.04.2.tar.xz) = 3329636 diff --git a/deskutils/kaddressbook/pkg-plist b/deskutils/kaddressbook/pkg-plist index d6548552555c..1dc56bf9d592 100644 --- a/deskutils/kaddressbook/pkg-plist +++ b/deskutils/kaddressbook/pkg-plist @@ -1,121 +1,128 @@ bin/kaddressbook include/KPim/KAddressBookImportExport/ContactFields include/KPim/KAddressBookImportExport/ContactList include/KPim/KAddressBookImportExport/ContactSelectionDialog include/KPim/KAddressBookImportExport/ContactSelectionWidget include/KPim/KAddressBookImportExport/ExportSelectionWidget include/KPim/KAddressBookImportExport/ImportExportEngine include/KPim/KAddressBookImportExport/Plugin include/KPim/KAddressBookImportExport/PluginInterface include/KPim/KAddressBookImportExport/PluginManager include/KPim/kaddressbookimportexport/contactfields.h include/KPim/kaddressbookimportexport/contactlist.h include/KPim/kaddressbookimportexport/contactselectiondialog.h include/KPim/kaddressbookimportexport/contactselectionwidget.h include/KPim/kaddressbookimportexport/exportselectionwidget.h include/KPim/kaddressbookimportexport/importexportengine.h include/KPim/kaddressbookimportexport/kaddressbook_importexport_export.h include/KPim/kaddressbookimportexport/plugin.h include/KPim/kaddressbookimportexport/plugininterface.h include/KPim/kaddressbookimportexport/pluginmanager.h include/KPim/kaddressbookimportexport_version.h lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportConfig.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportConfigVersion.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimAddressbookImportExport/KPimAddressbookImportExportTargets.cmake lib/libKPimAddressbookImportExport.so lib/libKPimAddressbookImportExport.so.5 lib/libKPimAddressbookImportExport.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KAddressbookImportExport.pri lib/libkaddressbookprivate.so.5 lib/libkaddressbookprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kaddressbook_config_plugins.so %%QT_PLUGINDIR%%/kaddressbookpart.so %%QT_PLUGINDIR%%/kontact5/kontact_kaddressbookplugin.so share/applications/kaddressbook-importer.desktop share/applications/kaddressbook-view.desktop share/applications/org.kde.kaddressbook.desktop share/icons/hicolor/128x128/apps/kaddressbook.png share/icons/hicolor/16x16/apps/kaddressbook.png share/icons/hicolor/22x22/apps/kaddressbook.png share/icons/hicolor/32x32/apps/kaddressbook.png share/icons/hicolor/48x48/apps/kaddressbook.png share/icons/hicolor/64x64/apps/kaddressbook.png share/icons/hicolor/scalable/apps/kaddressbook.svg %%DATADIR%%/printing/compact-style.png %%DATADIR%%/printing/detailed-style.png %%DATADIR%%/printing/mike-style.png %%DATADIR%%/printing/ringbinder-style.png %%DATADIR%%/printing/themes/big-theme-example/theme.desktop %%DATADIR%%/printing/themes/big-theme-example/theme.html %%DATADIR%%/printing/themes/default/theme.desktop %%DATADIR%%/printing/themes/default/theme.html %%DATADIR%%/printing/themes/full/theme.desktop %%DATADIR%%/printing/themes/full/theme.html %%DATADIR%%/viewertemplates/default/contact.html %%DATADIR%%/viewertemplates/default/contact_embedded.html %%DATADIR%%/viewertemplates/default/contact_row.html %%DATADIR%%/viewertemplates/default/contactgroup.html %%DATADIR%%/viewertemplates/default/contactgroup_additionalfieldrow.html %%DATADIR%%/viewertemplates/default/contactgroup_embedded.html %%DATADIR%%/viewertemplates/default/contactgroup_memberrow.html %%DATADIR%%/viewertemplates/default/theme.desktop share/kconf_update/kaddressbook-15.08-kickoff.sh share/kconf_update/kaddressbook.upd share/kontact/ksettingsdialog/kaddressbook.setdlg share/kservices5/kaddressbook_config_plugins.desktop share/kservices5/kontact/kaddressbookplugin.desktop share/locale/ar/LC_MESSAGES/kaddressbook.mo +share/locale/az/LC_MESSAGES/kaddressbook.mo +share/locale/be/LC_MESSAGES/kaddressbook.mo share/locale/bg/LC_MESSAGES/kaddressbook.mo share/locale/bs/LC_MESSAGES/kaddressbook.mo share/locale/ca/LC_MESSAGES/kaddressbook.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook.mo share/locale/cs/LC_MESSAGES/kaddressbook.mo share/locale/da/LC_MESSAGES/kaddressbook.mo share/locale/de/LC_MESSAGES/kaddressbook.mo share/locale/el/LC_MESSAGES/kaddressbook.mo share/locale/en_GB/LC_MESSAGES/kaddressbook.mo share/locale/eo/LC_MESSAGES/kaddressbook.mo share/locale/es/LC_MESSAGES/kaddressbook.mo share/locale/et/LC_MESSAGES/kaddressbook.mo share/locale/eu/LC_MESSAGES/kaddressbook.mo share/locale/fa/LC_MESSAGES/kaddressbook.mo share/locale/fi/LC_MESSAGES/kaddressbook.mo share/locale/fr/LC_MESSAGES/kaddressbook.mo share/locale/ga/LC_MESSAGES/kaddressbook.mo share/locale/gl/LC_MESSAGES/kaddressbook.mo share/locale/he/LC_MESSAGES/kaddressbook.mo share/locale/hr/LC_MESSAGES/kaddressbook.mo share/locale/hu/LC_MESSAGES/kaddressbook.mo share/locale/ia/LC_MESSAGES/kaddressbook.mo share/locale/is/LC_MESSAGES/kaddressbook.mo share/locale/it/LC_MESSAGES/kaddressbook.mo share/locale/ja/LC_MESSAGES/kaddressbook.mo share/locale/kk/LC_MESSAGES/kaddressbook.mo share/locale/km/LC_MESSAGES/kaddressbook.mo share/locale/ko/LC_MESSAGES/kaddressbook.mo share/locale/lt/LC_MESSAGES/kaddressbook.mo share/locale/lv/LC_MESSAGES/kaddressbook.mo share/locale/mr/LC_MESSAGES/kaddressbook.mo share/locale/nb/LC_MESSAGES/kaddressbook.mo share/locale/nds/LC_MESSAGES/kaddressbook.mo share/locale/nl/LC_MESSAGES/kaddressbook.mo share/locale/nn/LC_MESSAGES/kaddressbook.mo share/locale/pa/LC_MESSAGES/kaddressbook.mo share/locale/pl/LC_MESSAGES/kaddressbook.mo share/locale/pt/LC_MESSAGES/kaddressbook.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook.mo share/locale/ro/LC_MESSAGES/kaddressbook.mo share/locale/ru/LC_MESSAGES/kaddressbook.mo +share/locale/se/LC_MESSAGES/kaddressbook.mo share/locale/sk/LC_MESSAGES/kaddressbook.mo share/locale/sl/LC_MESSAGES/kaddressbook.mo +share/locale/sq/LC_MESSAGES/kaddressbook.mo share/locale/sr/LC_MESSAGES/kaddressbook.mo share/locale/sv/LC_MESSAGES/kaddressbook.mo +share/locale/ta/LC_MESSAGES/kaddressbook.mo +share/locale/tg/LC_MESSAGES/kaddressbook.mo share/locale/tr/LC_MESSAGES/kaddressbook.mo share/locale/ug/LC_MESSAGES/kaddressbook.mo share/locale/uk/LC_MESSAGES/kaddressbook.mo +share/locale/vi/LC_MESSAGES/kaddressbook.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook.mo share/metainfo/org.kde.kaddressbook.appdata.xml share/qlogging-categories5/kaddressbook.categories share/qlogging-categories5/kaddressbook.renamecategories diff --git a/deskutils/kalarm/distinfo b/deskutils/kalarm/distinfo index 54558e9cd157..c2e520be2a95 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741429 -SHA256 (KDE/release-service/21.04.1/kalarm-21.04.1.tar.xz) = 2150172ad7a3f22c47542788b1241a28440aa188a404468196eee412d41bceea -SIZE (KDE/release-service/21.04.1/kalarm-21.04.1.tar.xz) = 2075352 +TIMESTAMP = 1623520774 +SHA256 (KDE/release-service/21.04.2/kalarm-21.04.2.tar.xz) = a1f79c22dae6a5456db512c67fefcf723124ec3fda8d46958537f6fdf7954d97 +SIZE (KDE/release-service/21.04.2/kalarm-21.04.2.tar.xz) = 2137496 diff --git a/deskutils/kalarm/pkg-plist b/deskutils/kalarm/pkg-plist index 622fb76debd1..b99e7e89b227 100644 --- a/deskutils/kalarm/pkg-plist +++ b/deskutils/kalarm/pkg-plist @@ -1,90 +1,95 @@ bin/kalarm bin/kalarmautostart etc/xdg/autostart/kalarm.autostart.desktop share/qlogging-categories5/kalarm.categories share/qlogging-categories5/kalarm.renamecategories lib/libexec/kauth/kalarm_helper share/applications/org.kde.kalarm.desktop share/config.kcfg/kalarmconfig.kcfg share/dbus-1/interfaces/org.kde.kalarm.kalarm.xml share/dbus-1/system-services/org.kde.kalarm.rtcwake.service share/dbus-1/system.d/org.kde.kalarm.rtcwake.conf share/icons/hicolor/128x128/apps/kalarm.png share/icons/hicolor/16x16/apps/kalarm.png share/icons/hicolor/22x22/apps/kalarm.png share/icons/hicolor/32x32/apps/kalarm.png share/icons/hicolor/48x48/apps/kalarm.png share/icons/hicolor/64x64/apps/kalarm.png %%DATADIR%%/icons/oxygen/16x16/actions/document-new-from-template.png %%DATADIR%%/icons/oxygen/16x16/actions/new-audio-alarm.png %%DATADIR%%/icons/oxygen/16x16/actions/new-command-alarm.png %%DATADIR%%/icons/oxygen/22x22/actions/document-new-from-template.png %%DATADIR%%/icons/oxygen/22x22/actions/kalarm-disabled.png %%DATADIR%%/icons/oxygen/22x22/actions/kalarm-partdisabled.png %%DATADIR%%/icons/oxygen/22x22/actions/kalarm.png %%DATADIR%%/icons/oxygen/22x22/actions/new-audio-alarm.png %%DATADIR%%/icons/oxygen/22x22/actions/new-command-alarm.png share/kconf_update/kalarm-1.2.1-general.pl share/kconf_update/kalarm-1.9.5-defaults.pl share/kconf_update/kalarm-15.08-kickoff.sh share/kconf_update/kalarm-2.0.2-general.pl share/kconf_update/kalarm-2.1.5-general.pl share/kconf_update/kalarm-version.pl share/kconf_update/kalarm.upd share/knotifications5/kalarm.notifyrc share/kxmlgui5/kalarm/kalarmui.rc share/locale/ar/LC_MESSAGES/kalarm.mo +share/locale/be/LC_MESSAGES/kalarm.mo share/locale/bg/LC_MESSAGES/kalarm.mo share/locale/bs/LC_MESSAGES/kalarm.mo share/locale/ca/LC_MESSAGES/kalarm.mo share/locale/ca@valencia/LC_MESSAGES/kalarm.mo share/locale/cs/LC_MESSAGES/kalarm.mo share/locale/da/LC_MESSAGES/kalarm.mo share/locale/de/LC_MESSAGES/kalarm.mo share/locale/el/LC_MESSAGES/kalarm.mo share/locale/en_GB/LC_MESSAGES/kalarm.mo share/locale/eo/LC_MESSAGES/kalarm.mo share/locale/es/LC_MESSAGES/kalarm.mo share/locale/et/LC_MESSAGES/kalarm.mo share/locale/eu/LC_MESSAGES/kalarm.mo share/locale/fa/LC_MESSAGES/kalarm.mo share/locale/fi/LC_MESSAGES/kalarm.mo share/locale/fr/LC_MESSAGES/kalarm.mo share/locale/ga/LC_MESSAGES/kalarm.mo share/locale/gl/LC_MESSAGES/kalarm.mo share/locale/he/LC_MESSAGES/kalarm.mo share/locale/hi/LC_MESSAGES/kalarm.mo share/locale/hr/LC_MESSAGES/kalarm.mo share/locale/hu/LC_MESSAGES/kalarm.mo share/locale/ia/LC_MESSAGES/kalarm.mo share/locale/is/LC_MESSAGES/kalarm.mo share/locale/it/LC_MESSAGES/kalarm.mo share/locale/ja/LC_MESSAGES/kalarm.mo share/locale/kk/LC_MESSAGES/kalarm.mo share/locale/km/LC_MESSAGES/kalarm.mo share/locale/ko/LC_MESSAGES/kalarm.mo share/locale/lt/LC_MESSAGES/kalarm.mo share/locale/lv/LC_MESSAGES/kalarm.mo share/locale/mr/LC_MESSAGES/kalarm.mo share/locale/nb/LC_MESSAGES/kalarm.mo share/locale/nds/LC_MESSAGES/kalarm.mo share/locale/nl/LC_MESSAGES/kalarm.mo share/locale/nn/LC_MESSAGES/kalarm.mo share/locale/pa/LC_MESSAGES/kalarm.mo share/locale/pl/LC_MESSAGES/kalarm.mo share/locale/pt/LC_MESSAGES/kalarm.mo share/locale/pt_BR/LC_MESSAGES/kalarm.mo share/locale/ro/LC_MESSAGES/kalarm.mo share/locale/ru/LC_MESSAGES/kalarm.mo +share/locale/se/LC_MESSAGES/kalarm.mo share/locale/sk/LC_MESSAGES/kalarm.mo share/locale/sl/LC_MESSAGES/kalarm.mo +share/locale/sq/LC_MESSAGES/kalarm.mo share/locale/sr/LC_MESSAGES/kalarm.mo share/locale/sv/LC_MESSAGES/kalarm.mo +share/locale/ta/LC_MESSAGES/kalarm.mo +share/locale/tg/LC_MESSAGES/kalarm.mo share/locale/tr/LC_MESSAGES/kalarm.mo share/locale/ug/LC_MESSAGES/kalarm.mo share/locale/uk/LC_MESSAGES/kalarm.mo share/locale/wa/LC_MESSAGES/kalarm.mo share/locale/zh_CN/LC_MESSAGES/kalarm.mo share/locale/zh_TW/LC_MESSAGES/kalarm.mo share/metainfo/org.kde.kalarm.appdata.xml share/polkit-1/actions/org.kde.kalarm.rtcwake.policy diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 23db29fcac88..c9665e503f60 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741429 -SHA256 (KDE/release-service/21.04.1/kcharselect-21.04.1.tar.xz) = cdb229c3bfe4b89e945b194ecff0bb5b7810ddfee2bb61163866cd42658522ab -SIZE (KDE/release-service/21.04.1/kcharselect-21.04.1.tar.xz) = 366628 +TIMESTAMP = 1623520775 +SHA256 (KDE/release-service/21.04.2/kcharselect-21.04.2.tar.xz) = b0a23e4a0789eb7223cbfcb12a1c975b638aca2887e11a7725f29cdded20c562 +SIZE (KDE/release-service/21.04.2/kcharselect-21.04.2.tar.xz) = 368480 diff --git a/deskutils/kcharselect/pkg-plist b/deskutils/kcharselect/pkg-plist index 8d3a82ae5393..d31abcbdecc5 100644 --- a/deskutils/kcharselect/pkg-plist +++ b/deskutils/kcharselect/pkg-plist @@ -1,56 +1,61 @@ bin/kcharselect share/applications/org.kde.kcharselect.desktop share/locale/ar/LC_MESSAGES/kcharselect.mo +share/locale/be/LC_MESSAGES/kcharselect.mo share/locale/bg/LC_MESSAGES/kcharselect.mo share/locale/bs/LC_MESSAGES/kcharselect.mo share/locale/ca/LC_MESSAGES/kcharselect.mo share/locale/ca@valencia/LC_MESSAGES/kcharselect.mo share/locale/cs/LC_MESSAGES/kcharselect.mo share/locale/da/LC_MESSAGES/kcharselect.mo share/locale/de/LC_MESSAGES/kcharselect.mo share/locale/el/LC_MESSAGES/kcharselect.mo share/locale/en_GB/LC_MESSAGES/kcharselect.mo share/locale/eo/LC_MESSAGES/kcharselect.mo share/locale/es/LC_MESSAGES/kcharselect.mo share/locale/et/LC_MESSAGES/kcharselect.mo share/locale/eu/LC_MESSAGES/kcharselect.mo share/locale/fa/LC_MESSAGES/kcharselect.mo share/locale/fi/LC_MESSAGES/kcharselect.mo share/locale/fr/LC_MESSAGES/kcharselect.mo share/locale/ga/LC_MESSAGES/kcharselect.mo share/locale/gl/LC_MESSAGES/kcharselect.mo share/locale/he/LC_MESSAGES/kcharselect.mo share/locale/hi/LC_MESSAGES/kcharselect.mo share/locale/hr/LC_MESSAGES/kcharselect.mo share/locale/hu/LC_MESSAGES/kcharselect.mo share/locale/ia/LC_MESSAGES/kcharselect.mo share/locale/id/LC_MESSAGES/kcharselect.mo share/locale/is/LC_MESSAGES/kcharselect.mo share/locale/it/LC_MESSAGES/kcharselect.mo share/locale/ja/LC_MESSAGES/kcharselect.mo share/locale/kk/LC_MESSAGES/kcharselect.mo share/locale/km/LC_MESSAGES/kcharselect.mo share/locale/ko/LC_MESSAGES/kcharselect.mo share/locale/lt/LC_MESSAGES/kcharselect.mo share/locale/lv/LC_MESSAGES/kcharselect.mo share/locale/mr/LC_MESSAGES/kcharselect.mo share/locale/nb/LC_MESSAGES/kcharselect.mo share/locale/nds/LC_MESSAGES/kcharselect.mo share/locale/nl/LC_MESSAGES/kcharselect.mo share/locale/nn/LC_MESSAGES/kcharselect.mo share/locale/pa/LC_MESSAGES/kcharselect.mo share/locale/pl/LC_MESSAGES/kcharselect.mo share/locale/pt/LC_MESSAGES/kcharselect.mo share/locale/pt_BR/LC_MESSAGES/kcharselect.mo share/locale/ro/LC_MESSAGES/kcharselect.mo share/locale/ru/LC_MESSAGES/kcharselect.mo +share/locale/se/LC_MESSAGES/kcharselect.mo share/locale/sk/LC_MESSAGES/kcharselect.mo share/locale/sl/LC_MESSAGES/kcharselect.mo +share/locale/sq/LC_MESSAGES/kcharselect.mo share/locale/sr/LC_MESSAGES/kcharselect.mo share/locale/sv/LC_MESSAGES/kcharselect.mo +share/locale/ta/LC_MESSAGES/kcharselect.mo +share/locale/tg/LC_MESSAGES/kcharselect.mo share/locale/tr/LC_MESSAGES/kcharselect.mo share/locale/ug/LC_MESSAGES/kcharselect.mo share/locale/uk/LC_MESSAGES/kcharselect.mo share/locale/zh_CN/LC_MESSAGES/kcharselect.mo share/locale/zh_TW/LC_MESSAGES/kcharselect.mo share/metainfo/org.kde.kcharselect.appdata.xml diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 0798ffb77f1b..06384369de82 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -1,35 +1,34 @@ PORTNAME= kdeconnect-kde DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Support for KDE to interface between your phone and your computer LICENSE= GPLv2 LIB_DEPENDS= libfakekey.so:x11/libfakekey \ libKF5PulseAudioQt.so:audio/pulseaudio-qt BUILD_DEPENDS= kpeoplevcard>0:net/kpeoplevcard RUN_DEPENDS= sshpass:security/sshpass \ sshfs:sysutils/fusefs-sshfs \ kpeoplevcard>0:net/kpeoplevcard USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig qca qt:5 tar:xz xorg USE_KDE= auth bookmarks codecs completion config configwidgets \ coreaddons dbusaddons doctools ecm i18n iconthemes \ itemviews jobwidgets kcmutils kio kirigami2 notifications \ people service solid wayland widgetsaddons xmlgui USE_QT= concurrent core dbus declarative gui multimedia network \ testlib widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext xtst USE_LDCONFIG= ${QT_QMLDIR}/org/kde/kdeconnect OPTIONS_DEFINE= DOCS KDE_APPLICATIONS_SHLIB_VER=${KDE_APPLICATIONS_VERSION} .include diff --git a/deskutils/kdeconnect-kde/distinfo b/deskutils/kdeconnect-kde/distinfo index 29f10a2ce746..f376dd2a913f 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741430 -SHA256 (KDE/release-service/21.04.1/kdeconnect-kde-21.04.1.tar.xz) = 71e5947630178478cec84201c7c124f19ae23ff349e0bc60fa2716c36224548f -SIZE (KDE/release-service/21.04.1/kdeconnect-kde-21.04.1.tar.xz) = 559844 +TIMESTAMP = 1623520777 +SHA256 (KDE/release-service/21.04.2/kdeconnect-kde-21.04.2.tar.xz) = 44e47016c842ce1ddc1e8b0c320adde5538f993bbe34728cff17d3d11ec4f3b7 +SIZE (KDE/release-service/21.04.2/kdeconnect-kde-21.04.2.tar.xz) = 566932 diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index 2ee791016e41..8742a5ad2483 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,682 +1,705 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.settings.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/kdeconnect_findthisdevice_config.desktop share/kservices5/kdeconnect_pausemusic_config.desktop share/kservices5/kdeconnect_runcommand_config.desktop share/kservices5/kdeconnect_sendnotifications_config.desktop share/kservices5/kdeconnect_share_config.desktop share/kservices5/plasma-kdeconnect.desktop share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ast/LC_MESSAGES/kdeconnect-app.mo share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/az/LC_MESSAGES/kdeconnect-app.mo +share/locale/az/LC_MESSAGES/kdeconnect-cli.mo +share/locale/az/LC_MESSAGES/kdeconnect-core.mo +share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/az/LC_MESSAGES/kdeconnect-kded.mo +share/locale/az/LC_MESSAGES/kdeconnect-kio.mo +share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/az/LC_MESSAGES/kdeconnect-settings.mo +share/locale/az/LC_MESSAGES/kdeconnect-sms.mo +share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.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/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/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-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.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-plugins.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.kcm.appdata.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index 8b94ec4e6e18..b6f26cff4617 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741431 -SHA256 (KDE/release-service/21.04.1/kdepim-addons-21.04.1.tar.xz) = b24de486466e89ef62cfb30b2cb8f51dcd49436606b86f85458ea680180dd778 -SIZE (KDE/release-service/21.04.1/kdepim-addons-21.04.1.tar.xz) = 2159104 +TIMESTAMP = 1623520779 +SHA256 (KDE/release-service/21.04.2/kdepim-addons-21.04.2.tar.xz) = 8682e3ec8014d6c4e639f705f0913ebe2aab5e692cb6d5138c005c024fea2bb5 +SIZE (KDE/release-service/21.04.2/kdepim-addons-21.04.2.tar.xz) = 2270820 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index 2cc5bb7ff850..0b4529762378 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,978 +1,997 @@ 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.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libadblocklibprivate.so.5 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.5 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.5 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 %%QT_PLUGINDIR%%/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/importwizard/nylasmailimporterplugin.so %%QT_PLUGINDIR%%/importwizard/operaimporterplugin.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%%/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_picoftheday.so %%QT_PLUGINDIR%%/korg_thisdayinhistory.so %%QT_PLUGINDIR%%/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/libksieve/imapfoldercompletionplugin.so %%QT_PLUGINDIR%%/libksieve/regexpeditorlineeditplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_sendplugin.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/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/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/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd share/kservices5/korganizer/datenums.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/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/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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_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/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/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_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_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 84c631bb51fa..418b65a2f9c6 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741432 -SHA256 (KDE/release-service/21.04.1/kdepim-runtime-21.04.1.tar.xz) = 57241916a4b4291d40c3d0eb5eec69a698a69d4f7ccac362bc53859daf787468 -SIZE (KDE/release-service/21.04.1/kdepim-runtime-21.04.1.tar.xz) = 1813124 +TIMESTAMP = 1623520781 +SHA256 (KDE/release-service/21.04.2/kdepim-runtime-21.04.2.tar.xz) = bbaf5be2c3dac13511dc73befadd6d10f40a451c43f5b5e082414480ecafdd19 +SIZE (KDE/release-service/21.04.2/kdepim-runtime-21.04.2.tar.xz) = 1821480 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 75cf4805c1ff..8d72873a8b7e 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1718 +1,1738 @@ 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_kalarm_dir_resource bin/akonadi_kalarm_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/kalarmconfig.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%%/kcm_ldap.so %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/kf5/kio/pop3.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/kolabwizard.desktop share/akonadi/accountwizard/kolab/kolabwizard.es share/akonadi/accountwizard/kolab/kolabwizard.ui share/akonadi/accountwizard/kolab/kolabwizard2.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/kalarmdirresource.desktop share/akonadi/agents/kalarmresource.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/128x128/apps/akonadi-ews.png share/icons/hicolor/128x128/apps/ox.png share/icons/hicolor/16x16/apps/akonadi-ews.png share/icons/hicolor/16x16/apps/ox.png share/icons/hicolor/22x22/apps/akonadi-ews.png share/icons/hicolor/24x24/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/akonadi-ews.png share/icons/hicolor/32x32/apps/ox.png share/icons/hicolor/48x48/apps/akonadi-ews.png share/icons/hicolor/48x48/apps/ox.png share/icons/hicolor/64x64/apps/akonadi-ews.png share/icons/hicolor/64x64/apps/ox.png share/icons/hicolor/72x72/apps/akonadi-ews.png share/icons/hicolor/96x96/apps/akonadi-ews.png share/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.protocol 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/kservices5/pop3.protocol share/kservices5/pop3s.protocol 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_kalarm_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/kio_pop3.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/be/LC_MESSAGES/kio_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.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_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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/eo/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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/eu/LC_MESSAGES/kio_pop3.mo share/locale/fa/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/ga/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/he/LC_MESSAGES/kio_pop3.mo share/locale/hi/LC_MESSAGES/kio_pop3.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/hr/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/is/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kk/LC_MESSAGES/kio_pop3.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_kalarm_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/km/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/lv/LC_MESSAGES/kio_pop3.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_kalarm_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/mr/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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/nn/LC_MESSAGES/kio_pop3.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/pa/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/ro/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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/se/LC_MESSAGES/kio_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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/ta/LC_MESSAGES/kio_pop3.mo +share/locale/tg/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/ug/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/vi/LC_MESSAGES/kio_pop3.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_kalarm_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/kio_pop3.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_kalarm_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/kio_pop3.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 3c53bc619804..cf6d1258c6a1 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741432 -SHA256 (KDE/release-service/21.04.1/keditbookmarks-21.04.1.tar.xz) = b979d798f13b08b1bd022334f84f0abb374a477c601466f19b400afa0c4bb0e1 -SIZE (KDE/release-service/21.04.1/keditbookmarks-21.04.1.tar.xz) = 190584 +TIMESTAMP = 1623520782 +SHA256 (KDE/release-service/21.04.2/keditbookmarks-21.04.2.tar.xz) = a57eec8ff05b6a6fea5367b489f67d8de7483aaede4c39692c347da15ba9eec3 +SIZE (KDE/release-service/21.04.2/keditbookmarks-21.04.2.tar.xz) = 200700 diff --git a/deskutils/keditbookmarks/pkg-plist b/deskutils/keditbookmarks/pkg-plist index a5eb56db1766..caab0f9ae812 100644 --- a/deskutils/keditbookmarks/pkg-plist +++ b/deskutils/keditbookmarks/pkg-plist @@ -1,82 +1,88 @@ bin/kbookmarkmerger bin/keditbookmarks lib/libkbookmarkmodel_private.so lib/libkbookmarkmodel_private.so.5.97.0 lib/libkbookmarkmodel_private.so.6 man/ca/man1/kbookmarkmerger.1.gz man/da/man1/kbookmarkmerger.1.gz man/de/man1/kbookmarkmerger.1.gz man/el/man1/kbookmarkmerger.1.gz man/es/man1/kbookmarkmerger.1.gz man/et/man1/kbookmarkmerger.1.gz man/fr/man1/kbookmarkmerger.1.gz man/it/man1/kbookmarkmerger.1.gz man/man1/kbookmarkmerger.1.gz man/nb/man1/kbookmarkmerger.1.gz man/nl/man1/kbookmarkmerger.1.gz man/pl/man1/kbookmarkmerger.1.gz man/pt/man1/kbookmarkmerger.1.gz man/pt_BR/man1/kbookmarkmerger.1.gz man/ru/man1/kbookmarkmerger.1.gz man/sr/man1/kbookmarkmerger.1.gz man/sv/man1/kbookmarkmerger.1.gz man/uk/man1/kbookmarkmerger.1.gz share/applications/org.kde.keditbookmarks.desktop share/config.kcfg/keditbookmarks.kcfg share/locale/ar/LC_MESSAGES/keditbookmarks.mo share/locale/ast/LC_MESSAGES/keditbookmarks.mo +share/locale/be/LC_MESSAGES/keditbookmarks.mo share/locale/bg/LC_MESSAGES/keditbookmarks.mo share/locale/bs/LC_MESSAGES/keditbookmarks.mo share/locale/ca/LC_MESSAGES/keditbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/keditbookmarks.mo share/locale/cs/LC_MESSAGES/keditbookmarks.mo share/locale/da/LC_MESSAGES/keditbookmarks.mo share/locale/de/LC_MESSAGES/keditbookmarks.mo share/locale/el/LC_MESSAGES/keditbookmarks.mo share/locale/en_GB/LC_MESSAGES/keditbookmarks.mo share/locale/eo/LC_MESSAGES/keditbookmarks.mo share/locale/es/LC_MESSAGES/keditbookmarks.mo share/locale/et/LC_MESSAGES/keditbookmarks.mo share/locale/eu/LC_MESSAGES/keditbookmarks.mo share/locale/fa/LC_MESSAGES/keditbookmarks.mo share/locale/fi/LC_MESSAGES/keditbookmarks.mo share/locale/fr/LC_MESSAGES/keditbookmarks.mo share/locale/ga/LC_MESSAGES/keditbookmarks.mo share/locale/gl/LC_MESSAGES/keditbookmarks.mo share/locale/he/LC_MESSAGES/keditbookmarks.mo share/locale/hi/LC_MESSAGES/keditbookmarks.mo share/locale/hr/LC_MESSAGES/keditbookmarks.mo share/locale/hu/LC_MESSAGES/keditbookmarks.mo share/locale/ia/LC_MESSAGES/keditbookmarks.mo share/locale/id/LC_MESSAGES/keditbookmarks.mo share/locale/is/LC_MESSAGES/keditbookmarks.mo share/locale/it/LC_MESSAGES/keditbookmarks.mo share/locale/ja/LC_MESSAGES/keditbookmarks.mo share/locale/kk/LC_MESSAGES/keditbookmarks.mo share/locale/km/LC_MESSAGES/keditbookmarks.mo share/locale/ko/LC_MESSAGES/keditbookmarks.mo share/locale/lt/LC_MESSAGES/keditbookmarks.mo share/locale/lv/LC_MESSAGES/keditbookmarks.mo share/locale/ml/LC_MESSAGES/keditbookmarks.mo share/locale/mr/LC_MESSAGES/keditbookmarks.mo share/locale/nb/LC_MESSAGES/keditbookmarks.mo share/locale/nds/LC_MESSAGES/keditbookmarks.mo share/locale/nl/LC_MESSAGES/keditbookmarks.mo share/locale/nn/LC_MESSAGES/keditbookmarks.mo share/locale/pa/LC_MESSAGES/keditbookmarks.mo share/locale/pl/LC_MESSAGES/keditbookmarks.mo share/locale/pt/LC_MESSAGES/keditbookmarks.mo share/locale/pt_BR/LC_MESSAGES/keditbookmarks.mo share/locale/ro/LC_MESSAGES/keditbookmarks.mo share/locale/ru/LC_MESSAGES/keditbookmarks.mo +share/locale/se/LC_MESSAGES/keditbookmarks.mo share/locale/sk/LC_MESSAGES/keditbookmarks.mo share/locale/sl/LC_MESSAGES/keditbookmarks.mo +share/locale/sq/LC_MESSAGES/keditbookmarks.mo share/locale/sr/LC_MESSAGES/keditbookmarks.mo share/locale/sv/LC_MESSAGES/keditbookmarks.mo +share/locale/ta/LC_MESSAGES/keditbookmarks.mo +share/locale/tg/LC_MESSAGES/keditbookmarks.mo share/locale/tr/LC_MESSAGES/keditbookmarks.mo share/locale/ug/LC_MESSAGES/keditbookmarks.mo share/locale/uk/LC_MESSAGES/keditbookmarks.mo +share/locale/vi/LC_MESSAGES/keditbookmarks.mo share/locale/wa/LC_MESSAGES/keditbookmarks.mo share/locale/zh_CN/LC_MESSAGES/keditbookmarks.mo share/locale/zh_TW/LC_MESSAGES/keditbookmarks.mo share/qlogging-categories5/keditbookmarks.categories diff --git a/deskutils/kfind/distinfo b/deskutils/kfind/distinfo index 1c732dee1059..2291554ff904 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741433 -SHA256 (KDE/release-service/21.04.1/kfind-21.04.1.tar.xz) = 35338f819829ddab3e3a1225f3a2c11cb8116cf7bd367f3cb330c1347d68518a -SIZE (KDE/release-service/21.04.1/kfind-21.04.1.tar.xz) = 271576 +TIMESTAMP = 1623520784 +SHA256 (KDE/release-service/21.04.2/kfind-21.04.2.tar.xz) = 2808ef7c93112df486b467e7f26f3fe45ee43579447fe501e8673494fdc9391e +SIZE (KDE/release-service/21.04.2/kfind-21.04.2.tar.xz) = 284348 diff --git a/deskutils/kfind/pkg-plist b/deskutils/kfind/pkg-plist index b0495046f454..e9bca8109e7e 100644 --- a/deskutils/kfind/pkg-plist +++ b/deskutils/kfind/pkg-plist @@ -1,83 +1,89 @@ bin/kfind share/qlogging-categories5/kfind.categories man/ca/man1/kfind.1.gz man/de/man1/kfind.1.gz man/es/man1/kfind.1.gz man/fr/man1/kfind.1.gz man/it/man1/kfind.1.gz man/lt/man1/kfind.1.gz man/man1/kfind.1.gz man/nb/man1/kfind.1.gz man/nl/man1/kfind.1.gz man/pl/man1/kfind.1.gz man/pt/man1/kfind.1.gz man/pt_BR/man1/kfind.1.gz man/ru/man1/kfind.1.gz man/sr/man1/kfind.1.gz man/sv/man1/kfind.1.gz man/uk/man1/kfind.1.gz share/applications/org.kde.kfind.desktop share/icons/hicolor/128x128/apps/kfind.png share/icons/hicolor/16x16/apps/kfind.png share/icons/hicolor/22x22/apps/kfind.png share/icons/hicolor/32x32/apps/kfind.png share/icons/hicolor/48x48/apps/kfind.png share/icons/hicolor/64x64/apps/kfind.png share/icons/hicolor/scalable/apps/kfind.svgz share/locale/ar/LC_MESSAGES/kfind.mo share/locale/ast/LC_MESSAGES/kfind.mo +share/locale/be/LC_MESSAGES/kfind.mo share/locale/bg/LC_MESSAGES/kfind.mo share/locale/bs/LC_MESSAGES/kfind.mo share/locale/ca/LC_MESSAGES/kfind.mo share/locale/ca@valencia/LC_MESSAGES/kfind.mo share/locale/cs/LC_MESSAGES/kfind.mo share/locale/da/LC_MESSAGES/kfind.mo share/locale/de/LC_MESSAGES/kfind.mo share/locale/el/LC_MESSAGES/kfind.mo share/locale/en_GB/LC_MESSAGES/kfind.mo share/locale/eo/LC_MESSAGES/kfind.mo share/locale/es/LC_MESSAGES/kfind.mo share/locale/et/LC_MESSAGES/kfind.mo share/locale/eu/LC_MESSAGES/kfind.mo share/locale/fa/LC_MESSAGES/kfind.mo share/locale/fi/LC_MESSAGES/kfind.mo share/locale/fr/LC_MESSAGES/kfind.mo share/locale/ga/LC_MESSAGES/kfind.mo share/locale/gl/LC_MESSAGES/kfind.mo share/locale/he/LC_MESSAGES/kfind.mo share/locale/hi/LC_MESSAGES/kfind.mo share/locale/hr/LC_MESSAGES/kfind.mo share/locale/hu/LC_MESSAGES/kfind.mo share/locale/ia/LC_MESSAGES/kfind.mo share/locale/id/LC_MESSAGES/kfind.mo share/locale/is/LC_MESSAGES/kfind.mo share/locale/it/LC_MESSAGES/kfind.mo share/locale/ja/LC_MESSAGES/kfind.mo share/locale/kk/LC_MESSAGES/kfind.mo share/locale/km/LC_MESSAGES/kfind.mo share/locale/ko/LC_MESSAGES/kfind.mo share/locale/lt/LC_MESSAGES/kfind.mo share/locale/lv/LC_MESSAGES/kfind.mo share/locale/ml/LC_MESSAGES/kfind.mo share/locale/mr/LC_MESSAGES/kfind.mo share/locale/nb/LC_MESSAGES/kfind.mo share/locale/nds/LC_MESSAGES/kfind.mo share/locale/nl/LC_MESSAGES/kfind.mo share/locale/nn/LC_MESSAGES/kfind.mo share/locale/pa/LC_MESSAGES/kfind.mo share/locale/pl/LC_MESSAGES/kfind.mo share/locale/pt/LC_MESSAGES/kfind.mo share/locale/pt_BR/LC_MESSAGES/kfind.mo share/locale/ro/LC_MESSAGES/kfind.mo share/locale/ru/LC_MESSAGES/kfind.mo +share/locale/se/LC_MESSAGES/kfind.mo share/locale/sk/LC_MESSAGES/kfind.mo share/locale/sl/LC_MESSAGES/kfind.mo +share/locale/sq/LC_MESSAGES/kfind.mo share/locale/sr/LC_MESSAGES/kfind.mo share/locale/sv/LC_MESSAGES/kfind.mo +share/locale/ta/LC_MESSAGES/kfind.mo +share/locale/tg/LC_MESSAGES/kfind.mo share/locale/tr/LC_MESSAGES/kfind.mo share/locale/ug/LC_MESSAGES/kfind.mo share/locale/uk/LC_MESSAGES/kfind.mo +share/locale/vi/LC_MESSAGES/kfind.mo share/locale/wa/LC_MESSAGES/kfind.mo share/locale/zh_CN/LC_MESSAGES/kfind.mo share/locale/zh_TW/LC_MESSAGES/kfind.mo share/metainfo/org.kde.kfind.appdata.xml diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 4dc05b81f40c..5e587e89916c 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741434 -SHA256 (KDE/release-service/21.04.1/kmail-account-wizard-21.04.1.tar.xz) = 1903e84dcbdd9ca513bb9e3ef3536b09132593f016e0bd98a292cee176f78418 -SIZE (KDE/release-service/21.04.1/kmail-account-wizard-21.04.1.tar.xz) = 165744 +TIMESTAMP = 1623520787 +SHA256 (KDE/release-service/21.04.2/kmail-account-wizard-21.04.2.tar.xz) = d51f616a183ba0b2dea4eac0391e134751ae5fdebab83baa834502b9558b9e19 +SIZE (KDE/release-service/21.04.2/kmail-account-wizard-21.04.2.tar.xz) = 166504 diff --git a/deskutils/kmail-account-wizard/pkg-plist b/deskutils/kmail-account-wizard/pkg-plist index 8b14bc883be2..797063266615 100644 --- a/deskutils/kmail-account-wizard/pkg-plist +++ b/deskutils/kmail-account-wizard/pkg-plist @@ -1,99 +1,100 @@ bin/accountwizard bin/ispdb share/qlogging-categories5/accountwizard.categories share/qlogging-categories5/accountwizard.renamecategories %%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/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 diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index bb02883a4cf3..0bd5a8cba625 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741434 -SHA256 (KDE/release-service/21.04.1/kmail-21.04.1.tar.xz) = 3fed12aadb9ab31bc258da7f23d5f5176c8e6e4654b0ba3c92d223b3df6620a1 -SIZE (KDE/release-service/21.04.1/kmail-21.04.1.tar.xz) = 6299108 +TIMESTAMP = 1623520786 +SHA256 (KDE/release-service/21.04.2/kmail-21.04.2.tar.xz) = d13c59ee025be796ee1994f2c17213f5d17915ddfe4eaddcee059ffa1142a60b +SIZE (KDE/release-service/21.04.2/kmail-21.04.2.tar.xz) = 6485752 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index 1550b3fe1a94..295ebad1e03e 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,404 +1,410 @@ 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 share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories 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%%/kcm_kmail.so %%QT_PLUGINDIR%%/kcm_kmailsummary.so %%QT_PLUGINDIR%%/kcm_kontactsummary.so %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/kontact5/kontact_kmailplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_summaryplugin.so %%DATADIR%%2/pics/pgp-keys.png 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.kmail-refresh-settings.desktop share/applications/org.kde.kmail2.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/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/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/hicolor/128x128/apps/kmail.png 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/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/scalable/apps/kmail.svg share/kconf_update/kmail-15.08-kickoff.sh share/kconf_update/kmail.upd share/kconf_update/kmail2.sh share/kconf_update/kmail2.upd 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/kontact/ksettingsdialog/kmail.setdlg share/kontact/ksettingsdialog/summary.setdlg share/kservices5/kcmkmailsummary.desktop share/kservices5/kcmkontactsummary.desktop share/kservices5/kmail_config_accounts.desktop share/kservices5/kmail_config_appearance.desktop share/kservices5/kmail_config_composer.desktop share/kservices5/kmail_config_misc.desktop share/kservices5/kmail_config_plugins.desktop share/kservices5/kmail_config_security.desktop share/kservices5/kontact/kmailplugin.desktop share/kservices5/kontact/summaryplugin.desktop 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/be/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/kmail.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_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_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_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_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_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_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/kmail.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_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_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_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_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_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_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_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_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_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_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_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_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_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/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_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_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 diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 502c92f1b13d..64c8e2242a6c 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741435 -SHA256 (KDE/release-service/21.04.1/knotes-21.04.1.tar.xz) = 64940415fc5115ecd5433fd82894dfe7cf37593662521efa09891f7f2bba8e2a -SIZE (KDE/release-service/21.04.1/knotes-21.04.1.tar.xz) = 334564 +TIMESTAMP = 1623520789 +SHA256 (KDE/release-service/21.04.2/knotes-21.04.2.tar.xz) = 9f43299b1bc14b96380b262b26314d7053b5b8242e7faa0560d5b7d98d0f683d +SIZE (KDE/release-service/21.04.2/knotes-21.04.2.tar.xz) = 343544 diff --git a/deskutils/knotes/pkg-plist b/deskutils/knotes/pkg-plist index 2d7793d52bd1..74e100c14c8a 100644 --- a/deskutils/knotes/pkg-plist +++ b/deskutils/knotes/pkg-plist @@ -1,178 +1,183 @@ bin/akonadi_notes_agent bin/knotes share/qlogging-categories5/knotes.categories share/qlogging-categories5/knotes.renamecategories lib/libknotesprivate.so.5 lib/libknotesprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnotesharedprivate.so.5 lib/libnotesharedprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_knote.so %%QT_PLUGINDIR%%/kcm_knotessummary.so %%QT_PLUGINDIR%%/kontact5/kontact_knotesplugin.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/128x128/apps/knotes.png 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/scalable/apps/knotes.svg share/kconf_update/knotes-15.08-kickoff.sh share/kconf_update/knotes.upd share/knsrcfiles/knotes_printing_theme.knsrc %%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/kontact/ksettingsdialog/knotes.setdlg share/kservices5/kcmknotessummary.desktop share/kservices5/knote_config_action.desktop share/kservices5/knote_config_collection.desktop share/kservices5/knote_config_display.desktop share/kservices5/knote_config_editor.desktop share/kservices5/knote_config_misc.desktop share/kservices5/knote_config_network.desktop share/kservices5/knote_config_print.desktop share/kservices5/kontact/knotesplugin.desktop 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/knotes.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 diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index a0cdb8ddef41..dc1b5565a3ed 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741436 -SHA256 (KDE/release-service/21.04.1/kontact-21.04.1.tar.xz) = b04f42346fc75ab6147f41a19656fe91cb9f7e67a3f6a909dd3ce1cf23a71ffd -SIZE (KDE/release-service/21.04.1/kontact-21.04.1.tar.xz) = 794456 +TIMESTAMP = 1623520790 +SHA256 (KDE/release-service/21.04.2/kontact-21.04.2.tar.xz) = c3b10078f2ea54b3368f8a55ddcefaef1c5f6785727dd626bff0af101bc52313 +SIZE (KDE/release-service/21.04.2/kontact-21.04.2.tar.xz) = 809932 diff --git a/deskutils/kontact/pkg-plist b/deskutils/kontact/pkg-plist index 4ca6f2164f69..a49191144cfb 100644 --- a/deskutils/kontact/pkg-plist +++ b/deskutils/kontact/pkg-plist @@ -1,74 +1,79 @@ bin/kontact share/dbus-1/services/org.kde.kontact.service share/qlogging-categories5/kontact.categories share/qlogging-categories5/kontact.renamecategories lib/libkontactprivate.so.5 lib/libkontactprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_kontact.so share/applications/org.kde.kontact.desktop share/config.kcfg/kontact.kcfg share/icons/hicolor/128x128/apps/kontact.png share/icons/hicolor/16x16/apps/kontact.png share/icons/hicolor/22x22/apps/kontact.png share/icons/hicolor/32x32/apps/kontact.png share/icons/hicolor/48x48/apps/kontact.png share/icons/hicolor/64x64/apps/kontact.png share/icons/hicolor/scalable/apps/kontact.svg share/kconf_update/kontact-15.08-kickoff.sh share/kconf_update/kontact.upd share/kservices5/kontactconfig.desktop share/locale/ar/LC_MESSAGES/kontact.mo +share/locale/be/LC_MESSAGES/kontact.mo share/locale/bg/LC_MESSAGES/kontact.mo share/locale/bs/LC_MESSAGES/kontact.mo share/locale/ca/LC_MESSAGES/kontact.mo share/locale/ca@valencia/LC_MESSAGES/kontact.mo share/locale/cs/LC_MESSAGES/kontact.mo share/locale/da/LC_MESSAGES/kontact.mo share/locale/de/LC_MESSAGES/kontact.mo share/locale/el/LC_MESSAGES/kontact.mo share/locale/en_GB/LC_MESSAGES/kontact.mo share/locale/eo/LC_MESSAGES/kontact.mo share/locale/es/LC_MESSAGES/kontact.mo share/locale/et/LC_MESSAGES/kontact.mo share/locale/eu/LC_MESSAGES/kontact.mo share/locale/fa/LC_MESSAGES/kontact.mo share/locale/fi/LC_MESSAGES/kontact.mo share/locale/fr/LC_MESSAGES/kontact.mo share/locale/ga/LC_MESSAGES/kontact.mo share/locale/gl/LC_MESSAGES/kontact.mo share/locale/he/LC_MESSAGES/kontact.mo share/locale/hi/LC_MESSAGES/kontact.mo share/locale/hr/LC_MESSAGES/kontact.mo share/locale/hu/LC_MESSAGES/kontact.mo share/locale/ia/LC_MESSAGES/kontact.mo share/locale/is/LC_MESSAGES/kontact.mo share/locale/it/LC_MESSAGES/kontact.mo share/locale/ja/LC_MESSAGES/kontact.mo share/locale/kk/LC_MESSAGES/kontact.mo share/locale/km/LC_MESSAGES/kontact.mo share/locale/ko/LC_MESSAGES/kontact.mo share/locale/lt/LC_MESSAGES/kontact.mo share/locale/lv/LC_MESSAGES/kontact.mo share/locale/mr/LC_MESSAGES/kontact.mo share/locale/nb/LC_MESSAGES/kontact.mo share/locale/nds/LC_MESSAGES/kontact.mo share/locale/nl/LC_MESSAGES/kontact.mo share/locale/nn/LC_MESSAGES/kontact.mo share/locale/pa/LC_MESSAGES/kontact.mo share/locale/pl/LC_MESSAGES/kontact.mo share/locale/pt/LC_MESSAGES/kontact.mo share/locale/pt_BR/LC_MESSAGES/kontact.mo share/locale/ro/LC_MESSAGES/kontact.mo share/locale/ru/LC_MESSAGES/kontact.mo +share/locale/se/LC_MESSAGES/kontact.mo share/locale/sk/LC_MESSAGES/kontact.mo share/locale/sl/LC_MESSAGES/kontact.mo +share/locale/sq/LC_MESSAGES/kontact.mo share/locale/sv/LC_MESSAGES/kontact.mo +share/locale/ta/LC_MESSAGES/kontact.mo +share/locale/tg/LC_MESSAGES/kontact.mo share/locale/tr/LC_MESSAGES/kontact.mo share/locale/ug/LC_MESSAGES/kontact.mo share/locale/uk/LC_MESSAGES/kontact.mo share/locale/wa/LC_MESSAGES/kontact.mo share/locale/zh_CN/LC_MESSAGES/kontact.mo share/locale/zh_TW/LC_MESSAGES/kontact.mo share/messageviewer/about/default/introduction_kontact.html share/messageviewer/about/default/loading_kontact.html share/metainfo/org.kde.kontact.appdata.xml diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index dd1bb314537d..ce424624b35c 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741437 -SHA256 (KDE/release-service/21.04.1/korganizer-21.04.1.tar.xz) = 4d76e63263484b1619b6fad6c8e10da92b2029a9927f2cc8684d2693a020afe7 -SIZE (KDE/release-service/21.04.1/korganizer-21.04.1.tar.xz) = 2324848 +TIMESTAMP = 1623520791 +SHA256 (KDE/release-service/21.04.2/korganizer-21.04.2.tar.xz) = 8d58a87ff6598cdc9e18035431861e9d68f4ab8c87b8df798d4ebdac7b124778 +SIZE (KDE/release-service/21.04.2/korganizer-21.04.2.tar.xz) = 2408340 diff --git a/deskutils/korganizer/pkg-plist b/deskutils/korganizer/pkg-plist index af2d015362a6..35a04d162f0b 100644 --- a/deskutils/korganizer/pkg-plist +++ b/deskutils/korganizer/pkg-plist @@ -1,185 +1,190 @@ bin/korgac bin/korganizer etc/xdg/autostart/org.kde.korgac.desktop share/dbus-1/services/org.kde.korganizer.service share/qlogging-categories5/korganizer.categories share/qlogging-categories5/korganizer.renamecategories lib/libkorganizer_core.so lib/libkorganizer_core.so.5 lib/libkorganizer_core.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizer_interfaces.so lib/libkorganizer_interfaces.so.5 lib/libkorganizer_interfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkorganizerprivate.so.5 lib/libkorganizerprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_apptsummary.so %%QT_PLUGINDIR%%/kcm_korganizer.so %%QT_PLUGINDIR%%/kcm_sdsummary.so %%QT_PLUGINDIR%%/kcm_todosummary.so %%QT_PLUGINDIR%%/kontact5/kontact_journalplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_korganizerplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_specialdatesplugin.so %%QT_PLUGINDIR%%/kontact5/kontact_todoplugin.so %%QT_PLUGINDIR%%/korganizerpart.so share/applications/korganizer-import.desktop share/applications/korganizer-view.desktop share/applications/org.kde.korganizer.desktop share/config.kcfg/korganizer.kcfg share/dbus-1/interfaces/org.kde.Korganizer.Calendar.xml share/dbus-1/interfaces/org.kde.korganizer.KOrgac.xml share/dbus-1/interfaces/org.kde.korganizer.Korganizer.xml share/dbus-1/services/org.kde.korgac.service share/icons/hicolor/128x128/apps/korg-journal.png share/icons/hicolor/128x128/apps/korg-todo.png share/icons/hicolor/128x128/apps/korganizer.png share/icons/hicolor/128x128/apps/quickview.png share/icons/hicolor/16x16/apps/korg-journal.png share/icons/hicolor/16x16/apps/korg-todo.png share/icons/hicolor/16x16/apps/korganizer.png share/icons/hicolor/16x16/apps/quickview.png share/icons/hicolor/22x22/apps/korg-journal.png share/icons/hicolor/22x22/apps/korg-todo.png share/icons/hicolor/22x22/apps/korganizer.png share/icons/hicolor/22x22/apps/quickview.png share/icons/hicolor/256x256/apps/quickview.png share/icons/hicolor/32x32/apps/korg-journal.png share/icons/hicolor/32x32/apps/korg-todo.png share/icons/hicolor/32x32/apps/korganizer.png share/icons/hicolor/32x32/apps/quickview.png share/icons/hicolor/48x48/apps/korg-journal.png share/icons/hicolor/48x48/apps/korg-todo.png share/icons/hicolor/48x48/apps/korganizer.png share/icons/hicolor/48x48/apps/quickview.png share/icons/hicolor/64x64/apps/korg-journal.png share/icons/hicolor/64x64/apps/korg-todo.png share/icons/hicolor/64x64/apps/korganizer.png share/icons/hicolor/64x64/apps/quickview.png share/icons/hicolor/scalable/apps/korg-journal.svgz share/icons/hicolor/scalable/apps/korg-todo.svg share/icons/hicolor/scalable/apps/korganizer.svg share/icons/hicolor/scalable/apps/quickview.svgz share/kconf_update/korganizer-15.08-kickoff.sh share/kconf_update/korganizer.upd share/knsrcfiles/korganizer.knsrc share/kontact/ksettingsdialog/korganizer.setdlg share/kontact/ksettingsdialog/specialdates.setdlg share/korgac/icons/hicolor/128x128/apps/korgac.png share/korgac/icons/hicolor/16x16/apps/korgac.png share/korgac/icons/hicolor/22x22/apps/korgac.png share/korgac/icons/hicolor/256x256/apps/korgac.png share/korgac/icons/hicolor/32x32/apps/korgac.png share/korgac/icons/hicolor/64x64/apps/korgac.png %%DATADIR%%/sounds/alert.wav %%DATADIR%%/sounds/icemag.wav %%DATADIR%%/sounds/lightmag.wav %%DATADIR%%/sounds/onscreen.wav %%DATADIR%%/sounds/spinout.wav share/kservices5/kcmapptsummary.desktop share/kservices5/kcmsdsummary.desktop share/kservices5/kcmtodosummary.desktop share/kservices5/kontact/journalplugin.desktop share/kservices5/kontact/korganizerplugin.desktop share/kservices5/kontact/specialdatesplugin.desktop share/kservices5/kontact/todoplugin.desktop share/kservices5/korganizer_configcolorsandfonts.desktop share/kservices5/korganizer_configdesignerfields.desktop share/kservices5/korganizer_configfreebusy.desktop share/kservices5/korganizer_configgroupscheduling.desktop share/kservices5/korganizer_configmain.desktop share/kservices5/korganizer_configplugins.desktop share/kservices5/korganizer_configtime.desktop share/kservices5/korganizer_configviews.desktop share/kservices5/korganizer_part.desktop share/kservices5/korganizer_userfeedback.desktop share/kservices5/webcal.protocol share/kservicetypes5/korganizerpart.desktop share/locale/ar/LC_MESSAGES/korgac.mo share/locale/ar/LC_MESSAGES/korganizer.mo +share/locale/be/LC_MESSAGES/korganizer.mo share/locale/bg/LC_MESSAGES/korganizer.mo share/locale/bs/LC_MESSAGES/korgac.mo share/locale/bs/LC_MESSAGES/korganizer.mo share/locale/ca/LC_MESSAGES/korgac.mo share/locale/ca/LC_MESSAGES/korganizer.mo share/locale/ca@valencia/LC_MESSAGES/korgac.mo share/locale/ca@valencia/LC_MESSAGES/korganizer.mo share/locale/cs/LC_MESSAGES/korgac.mo share/locale/cs/LC_MESSAGES/korganizer.mo share/locale/da/LC_MESSAGES/korgac.mo share/locale/da/LC_MESSAGES/korganizer.mo share/locale/de/LC_MESSAGES/korgac.mo share/locale/de/LC_MESSAGES/korganizer.mo share/locale/el/LC_MESSAGES/korgac.mo share/locale/el/LC_MESSAGES/korganizer.mo share/locale/en_GB/LC_MESSAGES/korgac.mo share/locale/en_GB/LC_MESSAGES/korganizer.mo share/locale/eo/LC_MESSAGES/korganizer.mo share/locale/es/LC_MESSAGES/korgac.mo share/locale/es/LC_MESSAGES/korganizer.mo share/locale/et/LC_MESSAGES/korgac.mo share/locale/et/LC_MESSAGES/korganizer.mo share/locale/eu/LC_MESSAGES/korganizer.mo share/locale/fa/LC_MESSAGES/korganizer.mo share/locale/fi/LC_MESSAGES/korgac.mo share/locale/fi/LC_MESSAGES/korganizer.mo share/locale/fr/LC_MESSAGES/korgac.mo share/locale/fr/LC_MESSAGES/korganizer.mo share/locale/ga/LC_MESSAGES/korganizer.mo share/locale/gl/LC_MESSAGES/korgac.mo share/locale/gl/LC_MESSAGES/korganizer.mo share/locale/he/LC_MESSAGES/korganizer.mo share/locale/hi/LC_MESSAGES/korganizer.mo share/locale/hr/LC_MESSAGES/korganizer.mo share/locale/hu/LC_MESSAGES/korgac.mo share/locale/hu/LC_MESSAGES/korganizer.mo share/locale/ia/LC_MESSAGES/korgac.mo share/locale/ia/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korganizer.mo share/locale/it/LC_MESSAGES/korgac.mo share/locale/it/LC_MESSAGES/korganizer.mo share/locale/ja/LC_MESSAGES/korgac.mo share/locale/ja/LC_MESSAGES/korganizer.mo share/locale/kk/LC_MESSAGES/korgac.mo share/locale/kk/LC_MESSAGES/korganizer.mo share/locale/km/LC_MESSAGES/korganizer.mo share/locale/ko/LC_MESSAGES/korgac.mo share/locale/ko/LC_MESSAGES/korganizer.mo share/locale/lt/LC_MESSAGES/korgac.mo share/locale/lt/LC_MESSAGES/korganizer.mo share/locale/lv/LC_MESSAGES/korganizer.mo share/locale/mr/LC_MESSAGES/korganizer.mo share/locale/nb/LC_MESSAGES/korgac.mo share/locale/nb/LC_MESSAGES/korganizer.mo share/locale/nds/LC_MESSAGES/korgac.mo share/locale/nds/LC_MESSAGES/korganizer.mo share/locale/nl/LC_MESSAGES/korgac.mo share/locale/nl/LC_MESSAGES/korganizer.mo share/locale/nn/LC_MESSAGES/korgac.mo share/locale/nn/LC_MESSAGES/korganizer.mo share/locale/pa/LC_MESSAGES/korganizer.mo share/locale/pl/LC_MESSAGES/korgac.mo share/locale/pl/LC_MESSAGES/korganizer.mo share/locale/pt/LC_MESSAGES/korgac.mo share/locale/pt/LC_MESSAGES/korganizer.mo share/locale/pt_BR/LC_MESSAGES/korgac.mo share/locale/pt_BR/LC_MESSAGES/korganizer.mo share/locale/ro/LC_MESSAGES/korgac.mo share/locale/ro/LC_MESSAGES/korganizer.mo share/locale/ru/LC_MESSAGES/korgac.mo share/locale/ru/LC_MESSAGES/korganizer.mo +share/locale/se/LC_MESSAGES/korganizer.mo share/locale/sk/LC_MESSAGES/korgac.mo share/locale/sk/LC_MESSAGES/korganizer.mo share/locale/sl/LC_MESSAGES/korgac.mo share/locale/sl/LC_MESSAGES/korganizer.mo +share/locale/sq/LC_MESSAGES/korganizer.mo share/locale/sv/LC_MESSAGES/korgac.mo share/locale/sv/LC_MESSAGES/korganizer.mo +share/locale/ta/LC_MESSAGES/korganizer.mo +share/locale/tg/LC_MESSAGES/korganizer.mo share/locale/tr/LC_MESSAGES/korgac.mo share/locale/tr/LC_MESSAGES/korganizer.mo share/locale/ug/LC_MESSAGES/korganizer.mo share/locale/uk/LC_MESSAGES/korgac.mo share/locale/uk/LC_MESSAGES/korganizer.mo share/locale/wa/LC_MESSAGES/korganizer.mo share/locale/zh_CN/LC_MESSAGES/korgac.mo share/locale/zh_CN/LC_MESSAGES/korganizer.mo share/locale/zh_TW/LC_MESSAGES/korgac.mo share/locale/zh_TW/LC_MESSAGES/korganizer.mo share/metainfo/org.kde.korganizer.appdata.xml diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index a3da3ffa6351..5685a1179b88 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741438 -SHA256 (KDE/release-service/21.04.1/kruler-21.04.1.tar.xz) = fa42f580bb2cf4ecce564f339cb5e4d836ba9370bd61d498924e420cecb27fdc -SIZE (KDE/release-service/21.04.1/kruler-21.04.1.tar.xz) = 272808 +TIMESTAMP = 1623520792 +SHA256 (KDE/release-service/21.04.2/kruler-21.04.2.tar.xz) = 194541475c598620245706d884d0fdccc3ed88322e805bb4d60f29f60227eaa8 +SIZE (KDE/release-service/21.04.2/kruler-21.04.2.tar.xz) = 275976 diff --git a/deskutils/kruler/pkg-plist b/deskutils/kruler/pkg-plist index 3e8319da72b2..76667478a012 100644 --- a/deskutils/kruler/pkg-plist +++ b/deskutils/kruler/pkg-plist @@ -1,73 +1,79 @@ bin/kruler share/applications/org.kde.kruler.desktop share/icons/hicolor/128x128/apps/kruler.png share/icons/hicolor/16x16/actions/kruler-east.png share/icons/hicolor/16x16/actions/kruler-north.png share/icons/hicolor/16x16/actions/kruler-south.png share/icons/hicolor/16x16/actions/kruler-west.png share/icons/hicolor/16x16/apps/kruler.png share/icons/hicolor/22x22/actions/kruler-east.png share/icons/hicolor/22x22/actions/kruler-north.png share/icons/hicolor/22x22/actions/kruler-south.png share/icons/hicolor/22x22/actions/kruler-west.png share/icons/hicolor/22x22/apps/kruler.png share/icons/hicolor/32x32/apps/kruler.png share/icons/hicolor/48x48/apps/kruler.png share/icons/hicolor/64x64/apps/kruler.png share/knotifications5/kruler.notifyrc %%DATADIR%%/sounds/move.wav share/locale/ar/LC_MESSAGES/kruler.mo +share/locale/be/LC_MESSAGES/kruler.mo share/locale/bg/LC_MESSAGES/kruler.mo share/locale/bs/LC_MESSAGES/kruler.mo share/locale/ca/LC_MESSAGES/kruler.mo share/locale/ca@valencia/LC_MESSAGES/kruler.mo share/locale/cs/LC_MESSAGES/kruler.mo share/locale/da/LC_MESSAGES/kruler.mo share/locale/de/LC_MESSAGES/kruler.mo share/locale/el/LC_MESSAGES/kruler.mo share/locale/en_GB/LC_MESSAGES/kruler.mo share/locale/eo/LC_MESSAGES/kruler.mo share/locale/es/LC_MESSAGES/kruler.mo share/locale/et/LC_MESSAGES/kruler.mo share/locale/eu/LC_MESSAGES/kruler.mo share/locale/fa/LC_MESSAGES/kruler.mo share/locale/fi/LC_MESSAGES/kruler.mo share/locale/fr/LC_MESSAGES/kruler.mo share/locale/ga/LC_MESSAGES/kruler.mo share/locale/gl/LC_MESSAGES/kruler.mo share/locale/he/LC_MESSAGES/kruler.mo share/locale/hi/LC_MESSAGES/kruler.mo share/locale/hr/LC_MESSAGES/kruler.mo share/locale/hu/LC_MESSAGES/kruler.mo share/locale/ia/LC_MESSAGES/kruler.mo share/locale/id/LC_MESSAGES/kruler.mo share/locale/is/LC_MESSAGES/kruler.mo share/locale/it/LC_MESSAGES/kruler.mo share/locale/ja/LC_MESSAGES/kruler.mo share/locale/kk/LC_MESSAGES/kruler.mo share/locale/km/LC_MESSAGES/kruler.mo share/locale/ko/LC_MESSAGES/kruler.mo share/locale/lt/LC_MESSAGES/kruler.mo share/locale/lv/LC_MESSAGES/kruler.mo share/locale/ml/LC_MESSAGES/kruler.mo share/locale/mr/LC_MESSAGES/kruler.mo share/locale/nb/LC_MESSAGES/kruler.mo share/locale/nds/LC_MESSAGES/kruler.mo share/locale/nl/LC_MESSAGES/kruler.mo share/locale/nn/LC_MESSAGES/kruler.mo share/locale/pa/LC_MESSAGES/kruler.mo share/locale/pl/LC_MESSAGES/kruler.mo share/locale/pt/LC_MESSAGES/kruler.mo share/locale/pt_BR/LC_MESSAGES/kruler.mo share/locale/ro/LC_MESSAGES/kruler.mo share/locale/ru/LC_MESSAGES/kruler.mo +share/locale/se/LC_MESSAGES/kruler.mo share/locale/sk/LC_MESSAGES/kruler.mo share/locale/sl/LC_MESSAGES/kruler.mo +share/locale/sq/LC_MESSAGES/kruler.mo share/locale/sr/LC_MESSAGES/kruler.mo share/locale/sv/LC_MESSAGES/kruler.mo +share/locale/ta/LC_MESSAGES/kruler.mo +share/locale/tg/LC_MESSAGES/kruler.mo share/locale/tr/LC_MESSAGES/kruler.mo share/locale/ug/LC_MESSAGES/kruler.mo share/locale/uk/LC_MESSAGES/kruler.mo +share/locale/vi/LC_MESSAGES/kruler.mo share/locale/zh_CN/LC_MESSAGES/kruler.mo share/locale/zh_TW/LC_MESSAGES/kruler.mo share/metainfo/org.kde.kruler.appdata.xml diff --git a/deskutils/libkdepim/distinfo b/deskutils/libkdepim/distinfo index 01695d340dc8..c88f2d871994 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741438 -SHA256 (KDE/release-service/21.04.1/libkdepim-21.04.1.tar.xz) = 3b6fbcfe4ce01fa9e5f2ec07c63ca1057aaaafbbdbe3915fc4cc2ae0d358448d -SIZE (KDE/release-service/21.04.1/libkdepim-21.04.1.tar.xz) = 242268 +TIMESTAMP = 1623520794 +SHA256 (KDE/release-service/21.04.2/libkdepim-21.04.2.tar.xz) = 19a40e02dfb6de17b67757adbe4e2a4824bce534b77f1ca840b5fa6c836c30bc +SIZE (KDE/release-service/21.04.2/libkdepim-21.04.2.tar.xz) = 253868 diff --git a/deskutils/libkdepim/pkg-plist b/deskutils/libkdepim/pkg-plist index 028e3ee65279..5892058f568f 100644 --- a/deskutils/libkdepim/pkg-plist +++ b/deskutils/libkdepim/pkg-plist @@ -1,89 +1,94 @@ include/KF5/Libkdepim/KCheckComboBox include/KF5/Libkdepim/KWidgetLister include/KF5/Libkdepim/LineEditCatchReturnKey include/KF5/Libkdepim/MultiplyingLine include/KF5/Libkdepim/MultiplyingLineEditor include/KF5/Libkdepim/ProgressDialog include/KF5/Libkdepim/ProgressIndicatorLabel include/KF5/Libkdepim/ProgressManager include/KF5/Libkdepim/ProgressStatusBarWidget include/KF5/Libkdepim/StatusbarProgressWidget include/KF5/libkdepim/kcheckcombobox.h include/KF5/libkdepim/kdepim_export.h include/KF5/libkdepim/kwidgetlister.h include/KF5/libkdepim/lineeditcatchreturnkey.h include/KF5/libkdepim/multiplyingline.h include/KF5/libkdepim/multiplyinglineeditor.h include/KF5/libkdepim/progressdialog.h include/KF5/libkdepim/progressindicatorlabel.h include/KF5/libkdepim/progressmanager.h include/KF5/libkdepim/progressstatusbarwidget.h include/KF5/libkdepim/statusbarprogresswidget.h include/KF5/libkdepim_version.h lib/cmake/KF5Libkdepim/KF5LibkdepimConfig.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimConfigVersion.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Libkdepim/KF5LibkdepimTargets.cmake lib/cmake/MailTransportDBusService/MailTransportDBusServiceConfig.cmake lib/libKF5Libkdepim.so lib/libKF5Libkdepim.so.5 lib/libKF5Libkdepim.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkdepim.pri %%QT_PLUGINDIR%%/designer/kdepimwidgets.so share/dbus-1/interfaces/org.kde.addressbook.service.xml share/dbus-1/interfaces/org.kde.mailtransport.service.xml share/locale/ar/LC_MESSAGES/libkdepim.mo +share/locale/be/LC_MESSAGES/libkdepim.mo share/locale/bg/LC_MESSAGES/libkdepim.mo share/locale/bs/LC_MESSAGES/libkdepim.mo share/locale/ca/LC_MESSAGES/libkdepim.mo share/locale/ca@valencia/LC_MESSAGES/libkdepim.mo share/locale/cs/LC_MESSAGES/libkdepim.mo share/locale/da/LC_MESSAGES/libkdepim.mo share/locale/de/LC_MESSAGES/libkdepim.mo share/locale/el/LC_MESSAGES/libkdepim.mo share/locale/en_GB/LC_MESSAGES/libkdepim.mo share/locale/eo/LC_MESSAGES/libkdepim.mo share/locale/es/LC_MESSAGES/libkdepim.mo share/locale/et/LC_MESSAGES/libkdepim.mo share/locale/eu/LC_MESSAGES/libkdepim.mo share/locale/fa/LC_MESSAGES/libkdepim.mo share/locale/fi/LC_MESSAGES/libkdepim.mo share/locale/fr/LC_MESSAGES/libkdepim.mo share/locale/ga/LC_MESSAGES/libkdepim.mo share/locale/gl/LC_MESSAGES/libkdepim.mo share/locale/he/LC_MESSAGES/libkdepim.mo share/locale/hi/LC_MESSAGES/libkdepim.mo share/locale/hr/LC_MESSAGES/libkdepim.mo share/locale/hu/LC_MESSAGES/libkdepim.mo share/locale/ia/LC_MESSAGES/libkdepim.mo share/locale/is/LC_MESSAGES/libkdepim.mo share/locale/it/LC_MESSAGES/libkdepim.mo share/locale/ja/LC_MESSAGES/libkdepim.mo share/locale/kk/LC_MESSAGES/libkdepim.mo share/locale/km/LC_MESSAGES/libkdepim.mo share/locale/ko/LC_MESSAGES/libkdepim.mo share/locale/lt/LC_MESSAGES/libkdepim.mo share/locale/lv/LC_MESSAGES/libkdepim.mo share/locale/mr/LC_MESSAGES/libkdepim.mo share/locale/nb/LC_MESSAGES/libkdepim.mo share/locale/nds/LC_MESSAGES/libkdepim.mo share/locale/nl/LC_MESSAGES/libkdepim.mo share/locale/nn/LC_MESSAGES/libkdepim.mo share/locale/pa/LC_MESSAGES/libkdepim.mo share/locale/pl/LC_MESSAGES/libkdepim.mo share/locale/pt/LC_MESSAGES/libkdepim.mo share/locale/pt_BR/LC_MESSAGES/libkdepim.mo share/locale/ro/LC_MESSAGES/libkdepim.mo share/locale/ru/LC_MESSAGES/libkdepim.mo +share/locale/se/LC_MESSAGES/libkdepim.mo share/locale/sk/LC_MESSAGES/libkdepim.mo share/locale/sl/LC_MESSAGES/libkdepim.mo +share/locale/sq/LC_MESSAGES/libkdepim.mo share/locale/sr/LC_MESSAGES/libkdepim.mo share/locale/sv/LC_MESSAGES/libkdepim.mo +share/locale/ta/LC_MESSAGES/libkdepim.mo +share/locale/tg/LC_MESSAGES/libkdepim.mo share/locale/tr/LC_MESSAGES/libkdepim.mo share/locale/ug/LC_MESSAGES/libkdepim.mo share/locale/uk/LC_MESSAGES/libkdepim.mo share/locale/wa/LC_MESSAGES/libkdepim.mo share/locale/zh_CN/LC_MESSAGES/libkdepim.mo share/locale/zh_TW/LC_MESSAGES/libkdepim.mo share/qlogging-categories5/libkdepim.categories share/qlogging-categories5/libkdepim.renamecategories diff --git a/deskutils/mbox-importer/distinfo b/deskutils/mbox-importer/distinfo index 64203d1377e9..e641c345a91b 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741439 -SHA256 (KDE/release-service/21.04.1/mbox-importer-21.04.1.tar.xz) = 75d8ff4d966501f16cb70259668c6173eef27e078536de4209a667ae118994a4 -SIZE (KDE/release-service/21.04.1/mbox-importer-21.04.1.tar.xz) = 28716 +TIMESTAMP = 1623520795 +SHA256 (KDE/release-service/21.04.2/mbox-importer-21.04.2.tar.xz) = 306a7e2690a259fb601c97e27583d43d8588d84bc716ebef042d106cef79e1ad +SIZE (KDE/release-service/21.04.2/mbox-importer-21.04.2.tar.xz) = 28712 diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index 9569848711ca..aa566aed6515 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741440 -SHA256 (KDE/release-service/21.04.1/pim-data-exporter-21.04.1.tar.xz) = 6aa67ecf296db2c6970df595418f6835557e2460b760ef590f790e42b6db3b81 -SIZE (KDE/release-service/21.04.1/pim-data-exporter-21.04.1.tar.xz) = 398780 +TIMESTAMP = 1623520796 +SHA256 (KDE/release-service/21.04.2/pim-data-exporter-21.04.2.tar.xz) = a46cb5706407534a283b8514f8adaddd830754d646760488c4c0355ea9456d8c +SIZE (KDE/release-service/21.04.2/pim-data-exporter-21.04.2.tar.xz) = 398668 diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 9553756bd09e..d4419895ca1d 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741441 -SHA256 (KDE/release-service/21.04.1/pim-sieve-editor-21.04.1.tar.xz) = 9248fcd72291e58b0bcebf357abf707bb04e79dbabfc5d9755519fcdbfc39227 -SIZE (KDE/release-service/21.04.1/pim-sieve-editor-21.04.1.tar.xz) = 458084 +TIMESTAMP = 1623520797 +SHA256 (KDE/release-service/21.04.2/pim-sieve-editor-21.04.2.tar.xz) = 23f8fd81c3cc3c3f5a1e7da2a2324616856dce9523079db50fe5336fb71b7eda +SIZE (KDE/release-service/21.04.2/pim-sieve-editor-21.04.2.tar.xz) = 458084 diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index 44223b521204..ac534f5e1cfe 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741442 -SHA256 (KDE/release-service/21.04.1/cervisia-21.04.1.tar.xz) = 47f5c403e7cc91187ceb5d9e55bc4bb8074b902eecc1a8a4add20f1efeaeecfd -SIZE (KDE/release-service/21.04.1/cervisia-21.04.1.tar.xz) = 1888464 +TIMESTAMP = 1623520798 +SHA256 (KDE/release-service/21.04.2/cervisia-21.04.2.tar.xz) = 88af1621cda7a14f85dc1977125f8137e353dafc76472f29155c47d9d7329b2c +SIZE (KDE/release-service/21.04.2/cervisia-21.04.2.tar.xz) = 1911228 diff --git a/devel/cervisia/pkg-plist b/devel/cervisia/pkg-plist index 2b486627d0b8..b873bd7943c0 100644 --- a/devel/cervisia/pkg-plist +++ b/devel/cervisia/pkg-plist @@ -1,158 +1,168 @@ 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/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 a1e01c9b7a4b..75771e43ec65 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741442 -SHA256 (KDE/release-service/21.04.1/dolphin-plugins-21.04.1.tar.xz) = cfe900f5c3d34205e60175636e18c1f7982d4029d31e58ff788392235051461c -SIZE (KDE/release-service/21.04.1/dolphin-plugins-21.04.1.tar.xz) = 247356 +TIMESTAMP = 1623520799 +SHA256 (KDE/release-service/21.04.2/dolphin-plugins-21.04.2.tar.xz) = 9654ad7175fcaa93dbf0003f5e63c948ac53982be9f7f54482a8774c53abc4b1 +SIZE (KDE/release-service/21.04.2/dolphin-plugins-21.04.2.tar.xz) = 253184 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index 36be9c7182d3..d00340c157e8 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,208 +1,215 @@ %%QT_PLUGINDIR%%/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/fileviewgitplugin.so %%QT_PLUGINDIR%%/fileviewhgplugin.so %%QT_PLUGINDIR%%/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg share/kservices5/fileviewbazaarplugin.desktop share/kservices5/fileviewdropboxplugin.desktop share/kservices5/fileviewgitplugin.desktop share/kservices5/fileviewhgplugin.desktop share/kservices5/fileviewsvnplugin.desktop 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/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/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/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/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 e4f5b3d82bb1..28d0474785e5 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741443 -SHA256 (KDE/release-service/21.04.1/kapptemplate-21.04.1.tar.xz) = abd549137f9fd87306668a6e90808a1e0280e01f7a4221a2fcc8809a01429857 -SIZE (KDE/release-service/21.04.1/kapptemplate-21.04.1.tar.xz) = 333568 +TIMESTAMP = 1623520801 +SHA256 (KDE/release-service/21.04.2/kapptemplate-21.04.2.tar.xz) = 1da3eadad276f8b3e95bca63a3819573be6b9ce8867a285b14eaa172aba40533 +SIZE (KDE/release-service/21.04.2/kapptemplate-21.04.2.tar.xz) = 334084 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index 522d73acb195..8142afa08d97 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,55 +1,56 @@ bin/kapptemplate share/applications/org.kde.kapptemplate.desktop share/config.kcfg/kapptemplate.kcfg share/icons/hicolor/128x128/apps/kapptemplate.png share/icons/hicolor/16x16/apps/kapptemplate.png share/icons/hicolor/22x22/apps/kapptemplate.png share/icons/hicolor/32x32/apps/kapptemplate.png share/icons/hicolor/48x48/apps/kapptemplate.png share/icons/hicolor/64x64/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks5-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks5.tar.bz2 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 c2c682626f12..dff1e6bc57ff 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741444 -SHA256 (KDE/release-service/21.04.1/kcachegrind-21.04.1.tar.xz) = f4a76c0cfe9e4c6a596b9e12c878627cdc932c7324a16a090ace318f0473673e -SIZE (KDE/release-service/21.04.1/kcachegrind-21.04.1.tar.xz) = 828628 +TIMESTAMP = 1623520802 +SHA256 (KDE/release-service/21.04.2/kcachegrind-21.04.2.tar.xz) = 434e7bfdc04b57213ba868d63a80e3db4ac0afc8e0b9454870573430b58b1cd0 +SIZE (KDE/release-service/21.04.2/kcachegrind-21.04.2.tar.xz) = 853984 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index 17436e6d656b..1447df39d401 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,65 +1,70 @@ bin/dprof2calltree bin/hotshot2calltree bin/kcachegrind bin/memprof2calltree bin/op2calltree bin/pprof2calltree share/applications/org.kde.kcachegrind.desktop share/icons/hicolor/128x128/apps/kcachegrind.png share/icons/hicolor/32x32/apps/kcachegrind.png share/icons/hicolor/48x48/apps/kcachegrind.png share/icons/hicolor/64x64/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo +share/locale/be/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 207ebd3641da..b7ebde0bed4e 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741444 -SHA256 (KDE/release-service/21.04.1/kde-dev-scripts-21.04.1.tar.xz) = c916ec6436da6d1d830c248aefdf712bf16872b43fa3ea119535f62b07c859c4 -SIZE (KDE/release-service/21.04.1/kde-dev-scripts-21.04.1.tar.xz) = 366288 +TIMESTAMP = 1623520803 +SHA256 (KDE/release-service/21.04.2/kde-dev-scripts-21.04.2.tar.xz) = 830a4d491e18f16b2840d99440771b067964a93499545116141ae78e1dbec7a0 +SIZE (KDE/release-service/21.04.2/kde-dev-scripts-21.04.2.tar.xz) = 366320 diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 0e5b564b0ac4..39f050f600b5 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741445 -SHA256 (KDE/release-service/21.04.1/kde-dev-utils-21.04.1.tar.xz) = 330122cd68e4b740ea919e3b52c0f63108c4645c7df7c21ddefee820376d8e17 -SIZE (KDE/release-service/21.04.1/kde-dev-utils-21.04.1.tar.xz) = 65720 +TIMESTAMP = 1623520804 +SHA256 (KDE/release-service/21.04.2/kde-dev-utils-21.04.2.tar.xz) = 2e5324702426e7f56dbab33387c99e82168cc849e65ab5af009c439c049a9c9b +SIZE (KDE/release-service/21.04.2/kde-dev-utils-21.04.2.tar.xz) = 68056 diff --git a/devel/kde-dev-utils/pkg-plist b/devel/kde-dev-utils/pkg-plist index e2224f8d5c77..2e92cf0742cf 100644 --- a/devel/kde-dev-utils/pkg-plist +++ b/devel/kde-dev-utils/pkg-plist @@ -1,105 +1,113 @@ bin/kpartloader bin/kuiviewer %%QT_PLUGINDIR%%/kf5/parts/kuiviewerpart.so %%QT_PLUGINDIR%%/quithumbnail.so share/applications/org.kde.kuiviewer.desktop share/icons/hicolor/128x128/apps/kuiviewer.png 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/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/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/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 0c6095d7dd8b..98740e9ae30c 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741446 -SHA256 (KDE/release-service/21.04.1/kdesdk-thumbnailers-21.04.1.tar.xz) = d4f6ebdf4d5dc23d79945df33c54c2cd9dc417adf0e855426d5a5b84c013400c -SIZE (KDE/release-service/21.04.1/kdesdk-thumbnailers-21.04.1.tar.xz) = 17864 +TIMESTAMP = 1623520805 +SHA256 (KDE/release-service/21.04.2/kdesdk-thumbnailers-21.04.2.tar.xz) = 8b1a062eb193b40d42a93cd83489e6ee37daecaf752ffb6a5efab7fd91822eb5 +SIZE (KDE/release-service/21.04.2/kdesdk-thumbnailers-21.04.2.tar.xz) = 17848 diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index 907276ae0576..9e7e00545a5e 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -1,63 +1,62 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org COMMENT= Plasma5 library to increase the functionality of KIO LIB_DEPENDS= libtag.so:audio/taglib \ libImath.so:math/Imath \ libkdsoap.so:www/kdsoap USES= cmake compiler:c++11-lib gettext gperf kde:5 \ pkgconfig qt:5 shared-mime-info shebangfix tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons dnssd doctools ecm \ emoticons guiaddons i18n iconthemes init itemmodels itemviews \ jobwidgets js kdelibs4support khtml kio notifications parts \ pty service solid sonnet syntaxhighlighting textwidgets unitconversion \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network phonon4 printsupport \ sql svg testlib webchannel widgets xml \ buildtools_build qmake_build USE_XORG= xcursor SHEBANG_FILES= info/kde-info2html # CVE-2018-19120 CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidget OPTIONS_DEFINE= SAMBA MTP EXR EXIV SLP SSH TAGLIB DOCS OPTIONS_DEFAULT=SAMBA MTP EXR EXIV SLP SSH TAGLIB OPTIONS_SUB= yes SAMBA_DESC= Needed to build the SMB kioslave SAMBA_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Samba SAMBA_USES= samba:lib MTP_DESC= Needed to build the MTP kioslave MTP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Mtp MTP_LIB_DEPENDS= libmtp.so:multimedia/libmtp EXR_DESC= Provides support for OpenEXR formatted images in the thumbnail kioslave EXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR EXR_LIB_DEPENDS= libOpenEXR.so:graphics/openexr EXIV_DESC= Provides support for automatic rotation of JPEGs in the thumbnail kioslave EXIV_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Exiv2 EXIV_LIB_DEPENDS= libexiv2.so:graphics/exiv2 SLP_DESC= Provides SLP support in the network:/ kioslave SLP_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_SLP SLP_LIB_DEPENDS= libslp.so:net/openslp SSH_DESC= Needed to build the SFTP kioslave SSH_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_LibSSH SSH_LIB_DEPENDS= libssh.so:security/libssh # Our taglib is too old TAGLIB_DESC= Needed to build the audio thumbnail kioslave TAGLIB_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Taglib TAGLIB_LIB_DEPENDS= libtag.so:audio/taglib .include diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index 790405cd7187..2d69738f9f6f 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741447 -SHA256 (KDE/release-service/21.04.1/kio-extras-21.04.1.tar.xz) = 4ebfca782ed5410903f6ec5bebb5d144447c4b3d50cb4e5f270354b136fe5c4c -SIZE (KDE/release-service/21.04.1/kio-extras-21.04.1.tar.xz) = 646820 +TIMESTAMP = 1623520807 +SHA256 (KDE/release-service/21.04.2/kio-extras-21.04.2.tar.xz) = 25af60cb762969d3c703d8ad73b169eeef40e1531992e7e5f148e2fefe4fd395 +SIZE (KDE/release-service/21.04.2/kio-extras-21.04.2.tar.xz) = 663336 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index b75c060aee36..2b37a1e64236 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,823 +1,878 @@ share/qlogging-categories5/kio-extras.categories 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 lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libmolletnetwork5.so.%%KDE_APPLICATIONS_VERSION%% %%TAGLIB%%%%QT_PLUGINDIR%%/audiothumbnail.so %%QT_PLUGINDIR%%/comicbookthumbnail.so %%QT_PLUGINDIR%%/cursorthumbnail.so %%QT_PLUGINDIR%%/djvuthumbnail.so %%QT_PLUGINDIR%%/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/exrthumbnail.so %%QT_PLUGINDIR%%/imagethumbnail.so %%QT_PLUGINDIR%%/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/networkwatcher.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/filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/network.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%QT_PLUGINDIR%%/kf5/kio/settings.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 %%QT_PLUGINDIR%%/kfileaudiopreview.so %%QT_PLUGINDIR%%/kritathumbnail.so %%QT_PLUGINDIR%%/opendocumentthumbnail.so %%QT_PLUGINDIR%%/svgthumbnail.so %%QT_PLUGINDIR%%/textthumbnail.so %%QT_PLUGINDIR%%/windowsexethumbnail.so %%QT_PLUGINDIR%%/windowsimagethumbnail.so share/config.kcfg/jpegcreatorsettings5.kcfg share/dbus-1/interfaces/kf5_org.kde.network.kioslavenotifier.xml %%MTP%%share/dbus-1/services/org.kde.kmtp.daemon.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf share/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/about.protocol share/kservices5/activities.protocol %%TAGLIB%%share/kservices5/audiothumbnail.desktop share/kservices5/bookmarks.protocol share/kservices5/bzip.protocol share/kservices5/bzip2.protocol share/kservices5/cursorthumbnail.desktop share/kservices5/comicbookthumbnail.desktop share/kservices5/directorythumbnail.desktop share/kservices5/djvuthumbnail.desktop share/kservices5/ebookthumbnail.desktop %%EXR%%share/kservices5/exrthumbnail.desktop share/kservices5/filenamesearch.protocol share/kservices5/fish.protocol share/kservices5/gzip.protocol share/kservices5/imagethumbnail.desktop share/kservices5/info.protocol share/kservices5/jpegthumbnail.desktop share/kservices5/kraorathumbnail.desktop share/kservices5/lzma.protocol share/kservices5/man.protocol %%MTP%%share/kservices5/mtp.protocol share/kservices5/network.protocol share/kservices5/opendocumentthumbnail.desktop share/kservices5/recentdocuments.protocol share/kservices5/settings.protocol %%SSH%%share/kservices5/sftp.protocol share/kservices5/svgthumbnail.desktop share/kservices5/textthumbnail.desktop share/kservices5/thumbnail.protocol share/kservices5/windowsexethumbnail.desktop share/kservices5/windowsimagethumbnail.desktop share/kservices5/xz.protocol 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_network.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_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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_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_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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_network.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_archive.mo +share/locale/ta/LC_MESSAGES/kio5_fish.mo +share/locale/ta/LC_MESSAGES/kio5_man.mo +share/locale/ta/LC_MESSAGES/kio5_nfs.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_network.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_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_nfs.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_network.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_network.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 share/mime/packages/kf5_network.xml %%MTP%%share/remoteview/mtp-network.desktop share/remoteview/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 e81c1851a855..04ffd391d86c 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741447 -SHA256 (KDE/release-service/21.04.1/kirigami-gallery-21.04.1.tar.xz) = fb4e447654637c5798b43ed2df51786e9e2f0b11023d8d79f2c33d80fb637e2f -SIZE (KDE/release-service/21.04.1/kirigami-gallery-21.04.1.tar.xz) = 329280 +TIMESTAMP = 1623520808 +SHA256 (KDE/release-service/21.04.2/kirigami-gallery-21.04.2.tar.xz) = 7085ec1b7ac3b2cc901a504f926b2e578c3fa5648a6b3d061454ea8aac087cd0 +SIZE (KDE/release-service/21.04.2/kirigami-gallery-21.04.2.tar.xz) = 329352 diff --git a/devel/kpublictransport/Makefile b/devel/kpublictransport/Makefile index 50d5e1e19a24..faa03db5a004 100644 --- a/devel/kpublictransport/Makefile +++ b/devel/kpublictransport/Makefile @@ -1,20 +1,20 @@ PORTNAME= kpublictransport DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Access realtime public transport data LIB_DEPENDS= libprotobuf.so:devel/protobuf USES= cmake compiler:c++11-lang kde:5 qt:5 tar:xz USE_KDE= ecm USE_QT= core declarative gui network \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.4.1 +KDE_APPLICATIONS_SHLIB_VER= 21.4.2 .include diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index d1841074950d..8a60bb8852f4 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741448 -SHA256 (KDE/release-service/21.04.1/kpublictransport-21.04.1.tar.xz) = 7e8f98816e05ec0ebdf999927ccb8c7d0ee36ffa619351d2201c7a55a0a8298f -SIZE (KDE/release-service/21.04.1/kpublictransport-21.04.1.tar.xz) = 392072 +TIMESTAMP = 1623520809 +SHA256 (KDE/release-service/21.04.2/kpublictransport-21.04.2.tar.xz) = 4b4ac75ecd3022ad30fee331706c00a31497ae42696838e4800128e3fdd44657 +SIZE (KDE/release-service/21.04.2/kpublictransport-21.04.2.tar.xz) = 392464 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index 5f620ecafc8f..ae2ca6485e2e 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741449 -SHA256 (KDE/release-service/21.04.1/lokalize-21.04.1.tar.xz) = 5c870c9d311fb9058428061f2b4cf399d4dd74d164023f96a3b98c7833c00df7 -SIZE (KDE/release-service/21.04.1/lokalize-21.04.1.tar.xz) = 1993324 +TIMESTAMP = 1623520811 +SHA256 (KDE/release-service/21.04.2/lokalize-21.04.2.tar.xz) = 1d5d61018995c2f86be0857fc50750e0b146df6859975a325277b9a3e797bfa9 +SIZE (KDE/release-service/21.04.2/lokalize-21.04.2.tar.xz) = 2023088 diff --git a/devel/lokalize/pkg-plist b/devel/lokalize/pkg-plist index 24aebff4f085..756ecc00a716 100644 --- a/devel/lokalize/pkg-plist +++ b/devel/lokalize/pkg-plist @@ -1,178 +1,182 @@ bin/lokalize share/qlogging-categories5/lokalize.categories share/applications/org.kde.lokalize.desktop share/config.kcfg/lokalize.kcfg share/icons/hicolor/128x128/apps/lokalize.png share/icons/hicolor/32x32/apps/lokalize.png share/icons/hicolor/64x64/apps/lokalize.png share/icons/hicolor/scalable/apps/lokalize.svgz share/knotifications5/lokalize.notifyrc share/kxmlgui5/lokalize/editorui.rc share/kxmlgui5/lokalize/filesearchtabui.rc share/kxmlgui5/lokalize/lokalizemainwindowui.rc share/kxmlgui5/lokalize/projectmanagerui.rc share/kxmlgui5/lokalize/scriptsui.rc share/kxmlgui5/lokalize/translationmemoryrui.rc share/locale/ar/LC_MESSAGES/lokalize.mo share/locale/ast/LC_MESSAGES/lokalize.mo +share/locale/az/LC_MESSAGES/lokalize.mo +share/locale/be/LC_MESSAGES/lokalize.mo share/locale/bg/LC_MESSAGES/lokalize.mo share/locale/bs/LC_MESSAGES/lokalize.mo share/locale/ca/LC_MESSAGES/lokalize.mo share/locale/ca@valencia/LC_MESSAGES/lokalize.mo share/locale/cs/LC_MESSAGES/lokalize.mo share/locale/da/LC_MESSAGES/lokalize.mo share/locale/de/LC_MESSAGES/lokalize.mo share/locale/el/LC_MESSAGES/lokalize.mo share/locale/en_GB/LC_MESSAGES/lokalize.mo share/locale/eo/LC_MESSAGES/lokalize.mo share/locale/es/LC_MESSAGES/lokalize.mo share/locale/et/LC_MESSAGES/lokalize.mo share/locale/eu/LC_MESSAGES/lokalize.mo share/locale/fi/LC_MESSAGES/lokalize.mo share/locale/fr/LC_MESSAGES/lokalize.mo share/locale/ga/LC_MESSAGES/lokalize.mo share/locale/gl/LC_MESSAGES/lokalize.mo share/locale/he/LC_MESSAGES/lokalize.mo share/locale/hr/LC_MESSAGES/lokalize.mo share/locale/hu/LC_MESSAGES/lokalize.mo share/locale/ia/LC_MESSAGES/lokalize.mo share/locale/id/LC_MESSAGES/lokalize.mo share/locale/is/LC_MESSAGES/lokalize.mo share/locale/it/LC_MESSAGES/lokalize.mo share/locale/ja/LC_MESSAGES/lokalize.mo share/locale/kk/LC_MESSAGES/lokalize.mo share/locale/km/LC_MESSAGES/lokalize.mo share/locale/ko/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lokalize.mo share/locale/mr/LC_MESSAGES/lokalize.mo share/locale/nb/LC_MESSAGES/lokalize.mo share/locale/nds/LC_MESSAGES/lokalize.mo share/locale/nl/LC_MESSAGES/lokalize.mo share/locale/nn/LC_MESSAGES/lokalize.mo share/locale/pa/LC_MESSAGES/lokalize.mo share/locale/pl/LC_MESSAGES/lokalize.mo share/locale/pt/LC_MESSAGES/lokalize.mo share/locale/pt_BR/LC_MESSAGES/lokalize.mo share/locale/ro/LC_MESSAGES/lokalize.mo share/locale/ru/LC_MESSAGES/lokalize.mo share/locale/sk/LC_MESSAGES/lokalize.mo share/locale/sl/LC_MESSAGES/lokalize.mo +share/locale/sq/LC_MESSAGES/lokalize.mo share/locale/sr/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lokalize.mo share/locale/tr/LC_MESSAGES/lokalize.mo share/locale/ug/LC_MESSAGES/lokalize.mo share/locale/uk/LC_MESSAGES/lokalize.mo +share/locale/vi/LC_MESSAGES/lokalize.mo share/locale/wa/LC_MESSAGES/lokalize.mo share/locale/zh_CN/LC_MESSAGES/lokalize.mo share/locale/zh_TW/LC_MESSAGES/lokalize.mo %%DATADIR%%/icons/hicolor/16x16/actions/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/hicolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/nexterror.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/nextpo.png %%DATADIR%%/icons/hicolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/preverror.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/16x16/actions/prevpo.png %%DATADIR%%/icons/hicolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/16x16/actions/transsearch.png %%DATADIR%%/icons/hicolor/22x22/actions/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_arg.png %%DATADIR%%/icons/hicolor/22x22/actions/insert_tag.png %%DATADIR%%/icons/hicolor/22x22/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/22x22/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/nexterror.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/nextpo.png %%DATADIR%%/icons/hicolor/22x22/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/preverror.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/22x22/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/22x22/actions/prevpo.png %%DATADIR%%/icons/hicolor/22x22/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/22x22/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/22x22/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/22x22/actions/transsearch.png %%DATADIR%%/icons/hicolor/32x32/actions/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/hicolor/32x32/actions/diff.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/hicolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/nexterror.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/nextpo.png %%DATADIR%%/icons/hicolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/preverror.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/hicolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/hicolor/32x32/actions/prevpo.png %%DATADIR%%/icons/hicolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/hicolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/hicolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/hicolor/32x32/actions/transsearch.png %%DATADIR%%/icons/hicolor/48x48/actions/approved.png %%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr/approved.png %%DATADIR%%/icons/hicolor/scalable/actions/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr/approved.svgz %%DATADIR%%/icons/locolor/16x16/actions/catalogmanager.png %%DATADIR%%/icons/locolor/16x16/actions/diff.png %%DATADIR%%/icons/locolor/16x16/actions/insert_arg.png %%DATADIR%%/icons/locolor/16x16/actions/insert_tag.png %%DATADIR%%/icons/locolor/16x16/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/nexterror.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/nextpo.png %%DATADIR%%/icons/locolor/16x16/actions/nexttemplate.png %%DATADIR%%/icons/locolor/16x16/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/preverror.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/16x16/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/16x16/actions/prevpo.png %%DATADIR%%/icons/locolor/16x16/actions/prevtemplate.png %%DATADIR%%/icons/locolor/16x16/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/16x16/actions/search2msgstr.png %%DATADIR%%/icons/locolor/16x16/actions/transsearch.png %%DATADIR%%/icons/locolor/32x32/actions/catalogmanager.png %%DATADIR%%/icons/locolor/32x32/actions/diff.png %%DATADIR%%/icons/locolor/32x32/actions/insert_arg.png %%DATADIR%%/icons/locolor/32x32/actions/insert_tag.png %%DATADIR%%/icons/locolor/32x32/actions/msgid2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/nexterror.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/nextfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/nextpo.png %%DATADIR%%/icons/locolor/32x32/actions/nexttemplate.png %%DATADIR%%/icons/locolor/32x32/actions/nextuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/preverror.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzy.png %%DATADIR%%/icons/locolor/32x32/actions/prevfuzzyuntrans.png %%DATADIR%%/icons/locolor/32x32/actions/prevpo.png %%DATADIR%%/icons/locolor/32x32/actions/prevtemplate.png %%DATADIR%%/icons/locolor/32x32/actions/prevuntranslated.png %%DATADIR%%/icons/locolor/32x32/actions/search2msgstr.png %%DATADIR%%/icons/locolor/32x32/actions/transsearch.png %%DATADIR%%/scripts/find-gui-text.sh %%DATADIR%%/scripts/msgmerge.py %%DATADIR%%/scripts/msgmerge.rc %%DATADIR%%/scripts/odf/xliff2odf-standalone.py %%DATADIR%%/scripts/odf/xliff2odf.py %%DATADIR%%/scripts/odf/xliff2odf.rc %%DATADIR%%/scripts/odf/xliffmerge.py share/metainfo/org.kde.lokalize.appdata.xml diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index 815bf570b9fe..9a35929a4c7f 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741449 -SHA256 (KDE/release-service/21.04.1/poxml-21.04.1.tar.xz) = 048ce5facc5f5307b50dffdf161787ccf80eae70f2eb722d6ffea727cdfb2296 -SIZE (KDE/release-service/21.04.1/poxml-21.04.1.tar.xz) = 43548 +TIMESTAMP = 1623520812 +SHA256 (KDE/release-service/21.04.2/poxml-21.04.2.tar.xz) = 7fd3d5879c9b8e6c12318c20ebec7087c6811b5af16e3fcdf09edf46c821058e +SIZE (KDE/release-service/21.04.2/poxml-21.04.2.tar.xz) = 43532 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index 821d0a518703..c2339e2644aa 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741450 -SHA256 (KDE/release-service/21.04.1/umbrello-21.04.1.tar.xz) = 6ebb4e8101fd796bbb5e443a1e1b823a4971dcb179ba795b997196cafad2e385 -SIZE (KDE/release-service/21.04.1/umbrello-21.04.1.tar.xz) = 5572500 +TIMESTAMP = 1623520813 +SHA256 (KDE/release-service/21.04.2/umbrello-21.04.2.tar.xz) = dca597a2843e29b680a0bab96364e0a1f6609973f58f79b04680546da67df327 +SIZE (KDE/release-service/21.04.2/umbrello-21.04.2.tar.xz) = 5644440 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index 761eb0e761a3..cf54fd0ac340 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,177 +1,182 @@ bin/po2xmi5 bin/umbrello5 bin/xmi2pot5 share/applications/org.kde.umbrello.desktop share/icons/hicolor/128x128/apps/umbrello.png share/icons/hicolor/16x16/apps/umbrello.png share/icons/hicolor/16x16/mimetypes/application-x-uml.png share/icons/hicolor/22x22/apps/umbrello.png share/icons/hicolor/32x32/apps/umbrello.png share/icons/hicolor/32x32/mimetypes/application-x-uml.png share/icons/hicolor/48x48/apps/umbrello.png share/icons/hicolor/64x64/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo +share/locale/be/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca@valencia/LC_MESSAGES/umbrello.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/da/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp.mo share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/de/LC_MESSAGES/umbrello.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp.mo share/locale/de/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/el/LC_MESSAGES/umbrello.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp.mo share/locale/el/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/en_GB/LC_MESSAGES/umbrello.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp.mo share/locale/en_GB/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eo/LC_MESSAGES/umbrello.mo share/locale/eo/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/es/LC_MESSAGES/umbrello.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp.mo share/locale/es/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/et/LC_MESSAGES/umbrello.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp.mo share/locale/et/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/eu/LC_MESSAGES/umbrello.mo share/locale/fa/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fi/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/fr/LC_MESSAGES/umbrello.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/fr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ga/LC_MESSAGES/umbrello.mo share/locale/ga/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/gl/LC_MESSAGES/umbrello.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/gl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hi/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/it/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp.mo share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nb/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nds/LC_MESSAGES/umbrello.mo share/locale/nds/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pl/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt/LC_MESSAGES/umbrello.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/pt_BR/LC_MESSAGES/umbrello.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp.mo share/locale/pt_BR/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ro/LC_MESSAGES/umbrello.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ro/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ru/LC_MESSAGES/umbrello.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp.mo share/locale/ru/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/se/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/sl/LC_MESSAGES/umbrello.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sl/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/sq/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp.mo share/locale/sv/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/ta/LC_MESSAGES/umbrello.mo +share/locale/tg/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp.mo share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_CN/LC_MESSAGES/umbrello.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_CN/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/zh_TW/LC_MESSAGES/umbrello.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp.mo share/locale/zh_TW/LC_MESSAGES/umbrello_kdevphp5.mo share/metainfo/org.kde.umbrello.appdata.xml share/umbrello5/common.ent share/umbrello5/docbook2xhtml.xsl share/umbrello5/headings/heading.adb share/umbrello5/headings/heading.ads share/umbrello5/headings/heading.as share/umbrello5/headings/heading.cpp share/umbrello5/headings/heading.cs share/umbrello5/headings/heading.d share/umbrello5/headings/heading.h share/umbrello5/headings/heading.idl share/umbrello5/headings/heading.java share/umbrello5/headings/heading.js share/umbrello5/headings/heading.php share/umbrello5/headings/heading.pm share/umbrello5/headings/heading.py share/umbrello5/headings/heading.rb share/umbrello5/headings/heading.sql share/umbrello5/headings/heading.xsd share/umbrello5/layouts/activity-export.desktop share/umbrello5/layouts/activity-vertical.desktop share/umbrello5/layouts/class-export.desktop share/umbrello5/layouts/class-horizontal.desktop share/umbrello5/layouts/class-vertical.desktop share/umbrello5/layouts/component-horizontal.desktop share/umbrello5/layouts/component-vertical.desktop share/umbrello5/layouts/entityrelationship-export.desktop share/umbrello5/layouts/entityrelationship-horizontal.desktop share/umbrello5/layouts/entityrelationship-vertical.desktop share/umbrello5/layouts/object-export.desktop share/umbrello5/layouts/object-horizontal.desktop share/umbrello5/layouts/object-vertical.desktop share/umbrello5/layouts/state-export.desktop share/umbrello5/layouts/state-horizontal.desktop share/umbrello5/layouts/state-vertical.desktop share/umbrello5/layouts/usecase-default.desktop share/umbrello5/simple4125/sdbcent.mod share/umbrello5/simple4125/sdbhier.mod share/umbrello5/simple4125/sdbpool.mod share/umbrello5/simple4125/sdocbook-custom.dtd share/umbrello5/simple4125/sdocbook.css share/umbrello5/simple4125/sdocbook.dtd share/umbrello5/simple4125/sdocbookref-custom.dtd share/umbrello5/simple4125/sdocbookref.dtd share/umbrello5/simple4125/sinclist.mod share/umbrello5/xmi.css share/umbrello5/xmi2docbook.xsl diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 5c11fcb83e62..bce5ba3fe675 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741451 -SHA256 (KDE/release-service/21.04.1/kate-21.04.1.tar.xz) = 6264b6c9775caf2e9f7dabdbd7e60d641629e0e8c0ef5abb04dd8bb31ef5a255 -SIZE (KDE/release-service/21.04.1/kate-21.04.1.tar.xz) = 7184404 +TIMESTAMP = 1623520815 +SHA256 (KDE/release-service/21.04.2/kate-21.04.2.tar.xz) = 370d75eecbba6740f80e9aff807d3117ff27a4332865acf5351e9e063e0b6d60 +SIZE (KDE/release-service/21.04.2/kate-21.04.2.tar.xz) = 7276296 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index a9ea096dd846..404669ef955c 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1308 +1,1401 @@ bin/kate bin/kwrite %%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/kateopenheaderplugin.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/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so %%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png -share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png +share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svgz share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop share/kservices5/plasma-dataengine-katesessions.desktop share/locale/ar/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ar/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ar/LC_MESSAGES/kate.mo share/locale/ar/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ar/LC_MESSAGES/katebuild-plugin.mo share/locale/ar/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.mo +share/locale/be/LC_MESSAGES/katesymbolviewer.mo +share/locale/be/LC_MESSAGES/katetextfilter.mo +share/locale/be/LC_MESSAGES/katexmltools.mo +share/locale/be/LC_MESSAGES/kwrite.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateopenheader.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/kwrite.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/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/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateopenheader.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/katexmltools.mo share/locale/hu/LC_MESSAGES/kwrite.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.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/kateopenheader.mo +share/locale/tg/LC_MESSAGES/katesymbolviewer.mo +share/locale/tg/LC_MESSAGES/katetextfilter.mo +share/locale/tg/LC_MESSAGES/katexmltools.mo +share/locale/tg/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateopenheader.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/kwrite.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateopenheader.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/kateopenheader.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/katebuild-plugin.mo +share/locale/vi/LC_MESSAGES/katecloseexceptplugin.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/kateopenheader.mo +share/locale/vi/LC_MESSAGES/kateproject.mo +share/locale/vi/LC_MESSAGES/katesearch.mo +share/locale/vi/LC_MESSAGES/katesql.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/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/kateopenheader.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/kateopenheader.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/kateopenheader.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 ed8afaf31f3b..0a97b457228c 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741451 -SHA256 (KDE/release-service/21.04.1/blinken-21.04.1.tar.xz) = 58e748ae7cacfa29fa9d11586c210713dee29c403fa7825592c898f0c2e03e6a -SIZE (KDE/release-service/21.04.1/blinken-21.04.1.tar.xz) = 2709556 +TIMESTAMP = 1623520817 +SHA256 (KDE/release-service/21.04.2/blinken-21.04.2.tar.xz) = 680d31a9e79f1200efae36ee37eb3e8ed7b7f7d148d1e55d20384a5599a39c4f +SIZE (KDE/release-service/21.04.2/blinken-21.04.2.tar.xz) = 2712672 diff --git a/games/blinken/pkg-plist b/games/blinken/pkg-plist index d53a3215dc6c..5e3457cde5ab 100644 --- a/games/blinken/pkg-plist +++ b/games/blinken/pkg-plist @@ -1,70 +1,75 @@ bin/blinken share/applications/org.kde.blinken.desktop %%DATADIR%%/README.packagers %%DATADIR%%/fonts/steve.ttf %%DATADIR%%/images/blinken.svg %%DATADIR%%/sounds/1.wav %%DATADIR%%/sounds/2.wav %%DATADIR%%/sounds/3.wav %%DATADIR%%/sounds/4.wav %%DATADIR%%/sounds/lose.wav share/config.kcfg/blinken.kcfg share/icons/hicolor/128x128/apps/blinken.png share/icons/hicolor/16x16/apps/blinken.png share/icons/hicolor/22x22/apps/blinken.png share/icons/hicolor/32x32/apps/blinken.png share/icons/hicolor/48x48/apps/blinken.png share/icons/hicolor/64x64/apps/blinken.png share/icons/hicolor/scalable/apps/blinken.svgz share/locale/ar/LC_MESSAGES/blinken.mo +share/locale/be/LC_MESSAGES/blinken.mo share/locale/bg/LC_MESSAGES/blinken.mo share/locale/bs/LC_MESSAGES/blinken.mo share/locale/ca/LC_MESSAGES/blinken.mo share/locale/ca@valencia/LC_MESSAGES/blinken.mo share/locale/cs/LC_MESSAGES/blinken.mo share/locale/da/LC_MESSAGES/blinken.mo share/locale/de/LC_MESSAGES/blinken.mo share/locale/el/LC_MESSAGES/blinken.mo share/locale/en_GB/LC_MESSAGES/blinken.mo share/locale/eo/LC_MESSAGES/blinken.mo share/locale/es/LC_MESSAGES/blinken.mo share/locale/et/LC_MESSAGES/blinken.mo share/locale/eu/LC_MESSAGES/blinken.mo share/locale/fa/LC_MESSAGES/blinken.mo share/locale/fi/LC_MESSAGES/blinken.mo share/locale/fr/LC_MESSAGES/blinken.mo share/locale/ga/LC_MESSAGES/blinken.mo share/locale/gl/LC_MESSAGES/blinken.mo share/locale/he/LC_MESSAGES/blinken.mo share/locale/hi/LC_MESSAGES/blinken.mo share/locale/hr/LC_MESSAGES/blinken.mo share/locale/hu/LC_MESSAGES/blinken.mo share/locale/is/LC_MESSAGES/blinken.mo share/locale/it/LC_MESSAGES/blinken.mo share/locale/ja/LC_MESSAGES/blinken.mo share/locale/kk/LC_MESSAGES/blinken.mo share/locale/km/LC_MESSAGES/blinken.mo share/locale/ko/LC_MESSAGES/blinken.mo share/locale/lt/LC_MESSAGES/blinken.mo share/locale/lv/LC_MESSAGES/blinken.mo share/locale/ml/LC_MESSAGES/blinken.mo share/locale/mr/LC_MESSAGES/blinken.mo share/locale/nb/LC_MESSAGES/blinken.mo share/locale/nds/LC_MESSAGES/blinken.mo share/locale/nl/LC_MESSAGES/blinken.mo share/locale/nn/LC_MESSAGES/blinken.mo share/locale/pa/LC_MESSAGES/blinken.mo share/locale/pl/LC_MESSAGES/blinken.mo share/locale/pt/LC_MESSAGES/blinken.mo share/locale/pt_BR/LC_MESSAGES/blinken.mo share/locale/ro/LC_MESSAGES/blinken.mo share/locale/ru/LC_MESSAGES/blinken.mo +share/locale/se/LC_MESSAGES/blinken.mo share/locale/sk/LC_MESSAGES/blinken.mo share/locale/sl/LC_MESSAGES/blinken.mo +share/locale/sq/LC_MESSAGES/blinken.mo share/locale/sv/LC_MESSAGES/blinken.mo +share/locale/tg/LC_MESSAGES/blinken.mo share/locale/tr/LC_MESSAGES/blinken.mo share/locale/ug/LC_MESSAGES/blinken.mo share/locale/uk/LC_MESSAGES/blinken.mo +share/locale/vi/LC_MESSAGES/blinken.mo share/locale/zh_CN/LC_MESSAGES/blinken.mo share/locale/zh_TW/LC_MESSAGES/blinken.mo share/metainfo/org.kde.blinken.appdata.xml diff --git a/games/bomber/distinfo b/games/bomber/distinfo index bec88911765d..2465cce91a44 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741452 -SHA256 (KDE/release-service/21.04.1/bomber-21.04.1.tar.xz) = 9d0e9d478287c667f5e1bf721bf6c6198af11d8ed39a01e1b5560d4d4fbcefe9 -SIZE (KDE/release-service/21.04.1/bomber-21.04.1.tar.xz) = 828440 +TIMESTAMP = 1623520818 +SHA256 (KDE/release-service/21.04.2/bomber-21.04.2.tar.xz) = 8632af1a4dd8dbdaa9057af81c54c7d125947e0c96b2314c1020a48955e69b95 +SIZE (KDE/release-service/21.04.2/bomber-21.04.2.tar.xz) = 828772 diff --git a/games/bomber/pkg-plist b/games/bomber/pkg-plist index be12b12c4385..303a5f1eea50 100644 --- a/games/bomber/pkg-plist +++ b/games/bomber/pkg-plist @@ -1,67 +1,68 @@ bin/bomber share/applications/org.kde.bomber.desktop %%DATADIR%%/sounds/bomb.ogg %%DATADIR%%/sounds/crash.ogg %%DATADIR%%/themes/Lava-Island.desktop %%DATADIR%%/themes/Lava-Island.svgz %%DATADIR%%/themes/kbomber.desktop %%DATADIR%%/themes/kbomber.png %%DATADIR%%/themes/kbomber.svgz %%DATADIR%%/themes/lava-Island.png share/config.kcfg/bomber.kcfg share/icons/hicolor/128x128/apps/bomber.png share/icons/hicolor/32x32/apps/bomber.png share/icons/hicolor/48x48/apps/bomber.png share/icons/hicolor/64x64/apps/bomber.png share/locale/ar/LC_MESSAGES/bomber.mo share/locale/bg/LC_MESSAGES/bomber.mo share/locale/bs/LC_MESSAGES/bomber.mo share/locale/ca/LC_MESSAGES/bomber.mo share/locale/ca@valencia/LC_MESSAGES/bomber.mo share/locale/cs/LC_MESSAGES/bomber.mo share/locale/da/LC_MESSAGES/bomber.mo share/locale/de/LC_MESSAGES/bomber.mo share/locale/el/LC_MESSAGES/bomber.mo share/locale/en_GB/LC_MESSAGES/bomber.mo share/locale/eo/LC_MESSAGES/bomber.mo share/locale/es/LC_MESSAGES/bomber.mo share/locale/et/LC_MESSAGES/bomber.mo share/locale/eu/LC_MESSAGES/bomber.mo share/locale/fi/LC_MESSAGES/bomber.mo share/locale/fr/LC_MESSAGES/bomber.mo share/locale/ga/LC_MESSAGES/bomber.mo share/locale/gl/LC_MESSAGES/bomber.mo share/locale/he/LC_MESSAGES/bomber.mo share/locale/hr/LC_MESSAGES/bomber.mo share/locale/hu/LC_MESSAGES/bomber.mo share/locale/id/LC_MESSAGES/bomber.mo share/locale/is/LC_MESSAGES/bomber.mo share/locale/it/LC_MESSAGES/bomber.mo share/locale/ja/LC_MESSAGES/bomber.mo share/locale/kk/LC_MESSAGES/bomber.mo share/locale/km/LC_MESSAGES/bomber.mo share/locale/ko/LC_MESSAGES/bomber.mo share/locale/lt/LC_MESSAGES/bomber.mo share/locale/lv/LC_MESSAGES/bomber.mo share/locale/ml/LC_MESSAGES/bomber.mo share/locale/mr/LC_MESSAGES/bomber.mo share/locale/nb/LC_MESSAGES/bomber.mo share/locale/nds/LC_MESSAGES/bomber.mo share/locale/nl/LC_MESSAGES/bomber.mo share/locale/nn/LC_MESSAGES/bomber.mo share/locale/pa/LC_MESSAGES/bomber.mo share/locale/pl/LC_MESSAGES/bomber.mo share/locale/pt/LC_MESSAGES/bomber.mo share/locale/pt_BR/LC_MESSAGES/bomber.mo share/locale/ro/LC_MESSAGES/bomber.mo share/locale/ru/LC_MESSAGES/bomber.mo share/locale/sk/LC_MESSAGES/bomber.mo share/locale/sl/LC_MESSAGES/bomber.mo +share/locale/sq/LC_MESSAGES/bomber.mo share/locale/sr/LC_MESSAGES/bomber.mo share/locale/sv/LC_MESSAGES/bomber.mo share/locale/tr/LC_MESSAGES/bomber.mo share/locale/ug/LC_MESSAGES/bomber.mo share/locale/uk/LC_MESSAGES/bomber.mo share/locale/zh_CN/LC_MESSAGES/bomber.mo share/locale/zh_TW/LC_MESSAGES/bomber.mo share/metainfo/org.kde.bomber.appdata.xml diff --git a/games/bovo/distinfo b/games/bovo/distinfo index f807f03f01f7..0ea9043b58ae 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741453 -SHA256 (KDE/release-service/21.04.1/bovo-21.04.1.tar.xz) = 602422628f3237bf41bd40d2c14c316bf1185f3396d668a521c39b6909b459d9 -SIZE (KDE/release-service/21.04.1/bovo-21.04.1.tar.xz) = 206432 +TIMESTAMP = 1623520819 +SHA256 (KDE/release-service/21.04.2/bovo-21.04.2.tar.xz) = a0a0730ca4f1b43920ef60142d2f67bd33d42807a64fcf265a1d0513c630c004 +SIZE (KDE/release-service/21.04.2/bovo-21.04.2.tar.xz) = 207140 diff --git a/games/bovo/pkg-plist b/games/bovo/pkg-plist index 45493503696b..9902742b6258 100644 --- a/games/bovo/pkg-plist +++ b/games/bovo/pkg-plist @@ -1,68 +1,71 @@ bin/bovo share/applications/org.kde.bovo.desktop %%DATADIR%%/themes/gomoku/theme.svg %%DATADIR%%/themes/gomoku/themerc %%DATADIR%%/themes/highcontrast/theme.svg %%DATADIR%%/themes/highcontrast/themerc %%DATADIR%%/themes/scribble/theme.svg %%DATADIR%%/themes/scribble/themerc %%DATADIR%%/themes/spacy/theme.svg %%DATADIR%%/themes/spacy/themerc share/icons/hicolor/128x128/apps/bovo.png share/icons/hicolor/16x16/apps/bovo.png share/icons/hicolor/22x22/apps/bovo.png share/icons/hicolor/32x32/apps/bovo.png share/icons/hicolor/48x48/apps/bovo.png share/icons/hicolor/64x64/apps/bovo.png share/locale/ar/LC_MESSAGES/bovo.mo +share/locale/be/LC_MESSAGES/bovo.mo share/locale/bg/LC_MESSAGES/bovo.mo share/locale/bs/LC_MESSAGES/bovo.mo share/locale/ca/LC_MESSAGES/bovo.mo share/locale/ca@valencia/LC_MESSAGES/bovo.mo share/locale/cs/LC_MESSAGES/bovo.mo share/locale/da/LC_MESSAGES/bovo.mo share/locale/de/LC_MESSAGES/bovo.mo share/locale/el/LC_MESSAGES/bovo.mo share/locale/en_GB/LC_MESSAGES/bovo.mo share/locale/eo/LC_MESSAGES/bovo.mo share/locale/es/LC_MESSAGES/bovo.mo share/locale/et/LC_MESSAGES/bovo.mo share/locale/eu/LC_MESSAGES/bovo.mo share/locale/fi/LC_MESSAGES/bovo.mo share/locale/fr/LC_MESSAGES/bovo.mo share/locale/ga/LC_MESSAGES/bovo.mo share/locale/gl/LC_MESSAGES/bovo.mo share/locale/hi/LC_MESSAGES/bovo.mo share/locale/hr/LC_MESSAGES/bovo.mo share/locale/hu/LC_MESSAGES/bovo.mo share/locale/id/LC_MESSAGES/bovo.mo share/locale/is/LC_MESSAGES/bovo.mo share/locale/it/LC_MESSAGES/bovo.mo share/locale/ja/LC_MESSAGES/bovo.mo share/locale/kk/LC_MESSAGES/bovo.mo share/locale/km/LC_MESSAGES/bovo.mo share/locale/ko/LC_MESSAGES/bovo.mo share/locale/lt/LC_MESSAGES/bovo.mo share/locale/lv/LC_MESSAGES/bovo.mo share/locale/ml/LC_MESSAGES/bovo.mo share/locale/mr/LC_MESSAGES/bovo.mo share/locale/nb/LC_MESSAGES/bovo.mo share/locale/nds/LC_MESSAGES/bovo.mo share/locale/nl/LC_MESSAGES/bovo.mo share/locale/nn/LC_MESSAGES/bovo.mo share/locale/pa/LC_MESSAGES/bovo.mo share/locale/pl/LC_MESSAGES/bovo.mo share/locale/pt/LC_MESSAGES/bovo.mo share/locale/pt_BR/LC_MESSAGES/bovo.mo share/locale/ro/LC_MESSAGES/bovo.mo share/locale/ru/LC_MESSAGES/bovo.mo +share/locale/se/LC_MESSAGES/bovo.mo share/locale/sk/LC_MESSAGES/bovo.mo share/locale/sl/LC_MESSAGES/bovo.mo +share/locale/sq/LC_MESSAGES/bovo.mo share/locale/sr/LC_MESSAGES/bovo.mo share/locale/sv/LC_MESSAGES/bovo.mo share/locale/tr/LC_MESSAGES/bovo.mo share/locale/ug/LC_MESSAGES/bovo.mo share/locale/uk/LC_MESSAGES/bovo.mo share/locale/zh_CN/LC_MESSAGES/bovo.mo share/locale/zh_TW/LC_MESSAGES/bovo.mo share/metainfo/org.kde.bovo.appdata.xml diff --git a/games/granatier/distinfo b/games/granatier/distinfo index d081fbcf6fd0..d612f2d03033 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741454 -SHA256 (KDE/release-service/21.04.1/granatier-21.04.1.tar.xz) = a61f4198b8a14b2362bb425a70da662226cba5bf1f5c0812f97f5a47633d702a -SIZE (KDE/release-service/21.04.1/granatier-21.04.1.tar.xz) = 1952912 +TIMESTAMP = 1623520820 +SHA256 (KDE/release-service/21.04.2/granatier-21.04.2.tar.xz) = be937aa24eac5635adef711fc0a6a3957fd9bd27adfe4c8e1fdd006651fa2979 +SIZE (KDE/release-service/21.04.2/granatier-21.04.2.tar.xz) = 1952792 diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index dfee8e5641a1..5fc71a36e805 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741454 -SHA256 (KDE/release-service/21.04.1/kanagram-21.04.1.tar.xz) = cb7e78020955f8e5f385ca19e3029ae557821030f3fb9936bc24706a1d340dc5 -SIZE (KDE/release-service/21.04.1/kanagram-21.04.1.tar.xz) = 8033672 +TIMESTAMP = 1623520822 +SHA256 (KDE/release-service/21.04.2/kanagram-21.04.2.tar.xz) = d58a4214adcde6c41c6c4676ee62734e3487085e8232b7dbfe2136eefe316a56 +SIZE (KDE/release-service/21.04.2/kanagram-21.04.2.tar.xz) = 8039496 diff --git a/games/kanagram/pkg-plist b/games/kanagram/pkg-plist index c32217f6a5e4..a6b69bcb3a83 100644 --- a/games/kanagram/pkg-plist +++ b/games/kanagram/pkg-plist @@ -1,92 +1,96 @@ bin/kanagram etc/xdg/kanagram.knsrc share/applications/org.kde.kanagram.desktop share/config.kcfg/kanagram.kcfg share/icons/hicolor/128x128/apps/kanagram.png share/icons/hicolor/16x16/apps/kanagram.png share/icons/hicolor/24x24/apps/kanagram.png share/icons/hicolor/32x32/apps/kanagram.png share/icons/hicolor/48x48/apps/kanagram.png share/icons/hicolor/64x64/apps/kanagram.png share/icons/hicolor/80x80/apps/kanagram-harmattan.png share/icons/hicolor/scalable/apps/kanagram.svgz %%DATADIR%%/ui/Blackboard.qml %%DATADIR%%/ui/LetterButton.qml %%DATADIR%%/ui/icons/1player.png %%DATADIR%%/ui/icons/2player.png %%DATADIR%%/ui/icons/about-kanagram.png %%DATADIR%%/ui/icons/about-kde.png %%DATADIR%%/ui/icons/arrow-light.svgz %%DATADIR%%/ui/icons/close.png %%DATADIR%%/ui/icons/hint.png %%DATADIR%%/ui/icons/kanagram-handbook.png %%DATADIR%%/ui/icons/left-arrow.png %%DATADIR%%/ui/icons/on-off-light.svgz %%DATADIR%%/ui/icons/question-light.svgz %%DATADIR%%/ui/icons/reveal.png %%DATADIR%%/ui/icons/right-arrow.png %%DATADIR%%/ui/icons/spanner-light.svgz %%DATADIR%%/ui/icons/timer.png %%DATADIR%%/ui/icons/wikipedia.png %%DATADIR%%/ui/images/background.jpg %%DATADIR%%/ui/images/chalkboard.png %%DATADIR%%/ui/images/header.png %%DATADIR%%/ui/main.qml %%DATADIR%%/ui/sounds/chalk.ogg %%DATADIR%%/ui/sounds/chalk.wav %%DATADIR%%/ui/sounds/right.ogg %%DATADIR%%/ui/sounds/right.wav %%DATADIR%%/ui/sounds/wrong.ogg %%DATADIR%%/ui/sounds/wrong.wav share/locale/ar/LC_MESSAGES/kanagram.mo +share/locale/be/LC_MESSAGES/kanagram.mo share/locale/bg/LC_MESSAGES/kanagram.mo share/locale/bs/LC_MESSAGES/kanagram.mo share/locale/ca/LC_MESSAGES/kanagram.mo share/locale/ca@valencia/LC_MESSAGES/kanagram.mo share/locale/cs/LC_MESSAGES/kanagram.mo share/locale/da/LC_MESSAGES/kanagram.mo share/locale/de/LC_MESSAGES/kanagram.mo share/locale/el/LC_MESSAGES/kanagram.mo share/locale/en_GB/LC_MESSAGES/kanagram.mo share/locale/eo/LC_MESSAGES/kanagram.mo share/locale/es/LC_MESSAGES/kanagram.mo share/locale/et/LC_MESSAGES/kanagram.mo share/locale/eu/LC_MESSAGES/kanagram.mo share/locale/fa/LC_MESSAGES/kanagram.mo share/locale/fi/LC_MESSAGES/kanagram.mo share/locale/fr/LC_MESSAGES/kanagram.mo share/locale/ga/LC_MESSAGES/kanagram.mo share/locale/gl/LC_MESSAGES/kanagram.mo share/locale/he/LC_MESSAGES/kanagram.mo share/locale/hi/LC_MESSAGES/kanagram.mo share/locale/hr/LC_MESSAGES/kanagram.mo share/locale/hu/LC_MESSAGES/kanagram.mo share/locale/id/LC_MESSAGES/kanagram.mo share/locale/it/LC_MESSAGES/kanagram.mo share/locale/ja/LC_MESSAGES/kanagram.mo share/locale/kk/LC_MESSAGES/kanagram.mo share/locale/km/LC_MESSAGES/kanagram.mo share/locale/ko/LC_MESSAGES/kanagram.mo share/locale/lt/LC_MESSAGES/kanagram.mo share/locale/lv/LC_MESSAGES/kanagram.mo share/locale/ml/LC_MESSAGES/kanagram.mo share/locale/mr/LC_MESSAGES/kanagram.mo share/locale/nb/LC_MESSAGES/kanagram.mo share/locale/nds/LC_MESSAGES/kanagram.mo share/locale/nl/LC_MESSAGES/kanagram.mo share/locale/nn/LC_MESSAGES/kanagram.mo share/locale/pa/LC_MESSAGES/kanagram.mo share/locale/pl/LC_MESSAGES/kanagram.mo share/locale/pt/LC_MESSAGES/kanagram.mo share/locale/pt_BR/LC_MESSAGES/kanagram.mo share/locale/ro/LC_MESSAGES/kanagram.mo share/locale/ru/LC_MESSAGES/kanagram.mo +share/locale/se/LC_MESSAGES/kanagram.mo share/locale/sk/LC_MESSAGES/kanagram.mo share/locale/sl/LC_MESSAGES/kanagram.mo +share/locale/sq/LC_MESSAGES/kanagram.mo share/locale/sv/LC_MESSAGES/kanagram.mo +share/locale/tg/LC_MESSAGES/kanagram.mo share/locale/tr/LC_MESSAGES/kanagram.mo share/locale/ug/LC_MESSAGES/kanagram.mo share/locale/uk/LC_MESSAGES/kanagram.mo share/locale/zh_CN/LC_MESSAGES/kanagram.mo share/locale/zh_TW/LC_MESSAGES/kanagram.mo share/metainfo/org.kde.kanagram.appdata.xml diff --git a/games/kapman/distinfo b/games/kapman/distinfo index b91c65709fb2..44d56ed64b24 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741455 -SHA256 (KDE/release-service/21.04.1/kapman-21.04.1.tar.xz) = 0e52df8973494f595ef8de56b126ba8e00bf3f0f601ef8343c3587019df901b0 -SIZE (KDE/release-service/21.04.1/kapman-21.04.1.tar.xz) = 2531256 +TIMESTAMP = 1623520823 +SHA256 (KDE/release-service/21.04.2/kapman-21.04.2.tar.xz) = 27551d20f25fa4bc01849a1dc75dbecbb3ca37e8fda8986f191b5fbfffb7dc84 +SIZE (KDE/release-service/21.04.2/kapman-21.04.2.tar.xz) = 2531824 diff --git a/games/kapman/pkg-plist b/games/kapman/pkg-plist index 2d887466c76b..ca283459b274 100644 --- a/games/kapman/pkg-plist +++ b/games/kapman/pkg-plist @@ -1,83 +1,84 @@ bin/kapman share/applications/org.kde.kapman.desktop share/icons/hicolor/128x128/apps/kapman.png share/icons/hicolor/16x16/apps/kapman.png share/icons/hicolor/22x22/apps/kapman.png share/icons/hicolor/32x32/apps/kapman.png share/icons/hicolor/48x48/apps/kapman.png share/icons/hicolor/64x64/apps/kapman.png %%DATADIR%%/defaultmaze.xml %%DATADIR%%/themes/invisible.desktop %%DATADIR%%/themes/invisible.svgz %%DATADIR%%/themes/invisible_preview.png %%DATADIR%%/themes/matches.desktop %%DATADIR%%/themes/matches.svgz %%DATADIR%%/themes/matches_preview.png %%DATADIR%%/themes/mountain.copyright %%DATADIR%%/themes/mountain.desktop %%DATADIR%%/themes/mountain.svgz %%DATADIR%%/themes/mountain_preview.png %%DATADIR%%/themes/mummies_crypt.desktop %%DATADIR%%/themes/mummies_crypt.svgz %%DATADIR%%/themes/mummies_crypt_preview.png %%DATADIR%%/themes/retro.desktop %%DATADIR%%/themes/retro.svgz %%DATADIR%%/themes/retro_preview.png share/locale/ar/LC_MESSAGES/kapman.mo share/locale/bg/LC_MESSAGES/kapman.mo share/locale/bs/LC_MESSAGES/kapman.mo share/locale/ca/LC_MESSAGES/kapman.mo share/locale/ca@valencia/LC_MESSAGES/kapman.mo share/locale/cs/LC_MESSAGES/kapman.mo share/locale/da/LC_MESSAGES/kapman.mo share/locale/de/LC_MESSAGES/kapman.mo share/locale/el/LC_MESSAGES/kapman.mo share/locale/en_GB/LC_MESSAGES/kapman.mo share/locale/eo/LC_MESSAGES/kapman.mo share/locale/es/LC_MESSAGES/kapman.mo share/locale/et/LC_MESSAGES/kapman.mo share/locale/eu/LC_MESSAGES/kapman.mo share/locale/fi/LC_MESSAGES/kapman.mo share/locale/fr/LC_MESSAGES/kapman.mo share/locale/ga/LC_MESSAGES/kapman.mo share/locale/gl/LC_MESSAGES/kapman.mo share/locale/hi/LC_MESSAGES/kapman.mo share/locale/hr/LC_MESSAGES/kapman.mo share/locale/hu/LC_MESSAGES/kapman.mo share/locale/id/LC_MESSAGES/kapman.mo share/locale/is/LC_MESSAGES/kapman.mo share/locale/it/LC_MESSAGES/kapman.mo share/locale/ja/LC_MESSAGES/kapman.mo share/locale/kk/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kapman.mo share/locale/ko/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lv/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kapman.mo share/locale/mr/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kapman.mo share/locale/sk/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kapman.mo +share/locale/sq/LC_MESSAGES/kapman.mo share/locale/sr/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kapman.mo share/locale/ug/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kapman.mo share/metainfo/org.kde.kapman.appdata.xml share/sounds/kapman/bonus.ogg share/sounds/kapman/energizer.ogg share/sounds/kapman/gameover.ogg share/sounds/kapman/ghost.ogg share/sounds/kapman/levelup.ogg share/sounds/kapman/life.ogg share/sounds/kapman/pill.ogg diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 52b3e5c16123..5a559ca1b479 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741456 -SHA256 (KDE/release-service/21.04.1/katomic-21.04.1.tar.xz) = 50ab5d8b2081070be438b871e52db76ce2c2c20ec6fc0d9e3ffd2a683fab8cce -SIZE (KDE/release-service/21.04.1/katomic-21.04.1.tar.xz) = 1428560 +TIMESTAMP = 1623520825 +SHA256 (KDE/release-service/21.04.2/katomic-21.04.2.tar.xz) = c9cacff0f058b2ef874ac8c187c440190192f75af659d55dde0a582377396ea6 +SIZE (KDE/release-service/21.04.2/katomic-21.04.2.tar.xz) = 1433752 diff --git a/games/katomic/pkg-plist b/games/katomic/pkg-plist index 9310d76b7e86..f2f3e1a73d12 100644 --- a/games/katomic/pkg-plist +++ b/games/katomic/pkg-plist @@ -1,68 +1,74 @@ bin/katomic share/applications/org.kde.katomic.desktop share/icons/hicolor/128x128/apps/katomic.png share/icons/hicolor/16x16/apps/katomic.png share/icons/hicolor/22x22/apps/katomic.png share/icons/hicolor/32x32/apps/katomic.png share/icons/hicolor/48x48/apps/katomic.png share/icons/hicolor/64x64/apps/katomic.png %%DATADIR%%/levels/default_levels.dat %%DATADIR%%/pics/default_theme.svgz share/kconf_update/katomic-levelset-upd.pl share/kconf_update/katomic-levelset.upd share/knsrcfiles/katomic.knsrc share/locale/ar/LC_MESSAGES/katomic.mo +share/locale/be/LC_MESSAGES/katomic.mo share/locale/bg/LC_MESSAGES/katomic.mo share/locale/bs/LC_MESSAGES/katomic.mo share/locale/ca/LC_MESSAGES/katomic.mo share/locale/ca@valencia/LC_MESSAGES/katomic.mo share/locale/cs/LC_MESSAGES/katomic.mo share/locale/da/LC_MESSAGES/katomic.mo share/locale/de/LC_MESSAGES/katomic.mo share/locale/el/LC_MESSAGES/katomic.mo share/locale/en_GB/LC_MESSAGES/katomic.mo share/locale/eo/LC_MESSAGES/katomic.mo share/locale/es/LC_MESSAGES/katomic.mo share/locale/et/LC_MESSAGES/katomic.mo share/locale/eu/LC_MESSAGES/katomic.mo share/locale/fa/LC_MESSAGES/katomic.mo share/locale/fi/LC_MESSAGES/katomic.mo share/locale/fr/LC_MESSAGES/katomic.mo share/locale/ga/LC_MESSAGES/katomic.mo share/locale/gl/LC_MESSAGES/katomic.mo share/locale/he/LC_MESSAGES/katomic.mo share/locale/hi/LC_MESSAGES/katomic.mo share/locale/hr/LC_MESSAGES/katomic.mo share/locale/hu/LC_MESSAGES/katomic.mo share/locale/id/LC_MESSAGES/katomic.mo share/locale/is/LC_MESSAGES/katomic.mo share/locale/it/LC_MESSAGES/katomic.mo share/locale/ja/LC_MESSAGES/katomic.mo share/locale/kk/LC_MESSAGES/katomic.mo share/locale/km/LC_MESSAGES/katomic.mo share/locale/ko/LC_MESSAGES/katomic.mo share/locale/lt/LC_MESSAGES/katomic.mo share/locale/lv/LC_MESSAGES/katomic.mo share/locale/ml/LC_MESSAGES/katomic.mo share/locale/mr/LC_MESSAGES/katomic.mo share/locale/nb/LC_MESSAGES/katomic.mo share/locale/nds/LC_MESSAGES/katomic.mo share/locale/nl/LC_MESSAGES/katomic.mo share/locale/nn/LC_MESSAGES/katomic.mo share/locale/pa/LC_MESSAGES/katomic.mo share/locale/pl/LC_MESSAGES/katomic.mo share/locale/pt/LC_MESSAGES/katomic.mo share/locale/pt_BR/LC_MESSAGES/katomic.mo share/locale/ro/LC_MESSAGES/katomic.mo share/locale/ru/LC_MESSAGES/katomic.mo +share/locale/se/LC_MESSAGES/katomic.mo share/locale/sk/LC_MESSAGES/katomic.mo share/locale/sl/LC_MESSAGES/katomic.mo +share/locale/sq/LC_MESSAGES/katomic.mo share/locale/sr/LC_MESSAGES/katomic.mo share/locale/sv/LC_MESSAGES/katomic.mo +share/locale/ta/LC_MESSAGES/katomic.mo +share/locale/tg/LC_MESSAGES/katomic.mo share/locale/tr/LC_MESSAGES/katomic.mo share/locale/ug/LC_MESSAGES/katomic.mo share/locale/uk/LC_MESSAGES/katomic.mo +share/locale/vi/LC_MESSAGES/katomic.mo share/locale/zh_CN/LC_MESSAGES/katomic.mo share/locale/zh_TW/LC_MESSAGES/katomic.mo share/metainfo/org.kde.katomic.appdata.xml share/qlogging-categories5/katomic.categories diff --git a/games/kblackbox/distinfo b/games/kblackbox/distinfo index b27148652144..533225fbdf25 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741456 -SHA256 (KDE/release-service/21.04.1/kblackbox-21.04.1.tar.xz) = 9e1c4ccd70b49ed30b2a6b1d39badc9cd83c1b4b2a9b0fc2c555c249c7f7b99f -SIZE (KDE/release-service/21.04.1/kblackbox-21.04.1.tar.xz) = 449784 +TIMESTAMP = 1623520826 +SHA256 (KDE/release-service/21.04.2/kblackbox-21.04.2.tar.xz) = e8081973583ed43c94318447b389c09762832161f34e230aca95419806d5aff6 +SIZE (KDE/release-service/21.04.2/kblackbox-21.04.2.tar.xz) = 455120 diff --git a/games/kblackbox/pkg-plist b/games/kblackbox/pkg-plist index 799ef5b4f9d1..d2b348b2e32e 100644 --- a/games/kblackbox/pkg-plist +++ b/games/kblackbox/pkg-plist @@ -1,63 +1,69 @@ bin/kblackbox share/applications/org.kde.kblackbox.desktop share/icons/hicolor/128x128/apps/kblackbox.png share/icons/hicolor/16x16/apps/kblackbox.png share/icons/hicolor/22x22/apps/kblackbox.png share/icons/hicolor/32x32/apps/kblackbox.png share/icons/hicolor/48x48/apps/kblackbox.png share/icons/hicolor/64x64/apps/kblackbox.png %%DATADIR%%/pics/kblackbox.svgz share/locale/ar/LC_MESSAGES/kblackbox.mo +share/locale/be/LC_MESSAGES/kblackbox.mo share/locale/bg/LC_MESSAGES/kblackbox.mo share/locale/bs/LC_MESSAGES/kblackbox.mo share/locale/ca/LC_MESSAGES/kblackbox.mo share/locale/ca@valencia/LC_MESSAGES/kblackbox.mo share/locale/cs/LC_MESSAGES/kblackbox.mo share/locale/da/LC_MESSAGES/kblackbox.mo share/locale/de/LC_MESSAGES/kblackbox.mo share/locale/el/LC_MESSAGES/kblackbox.mo share/locale/en_GB/LC_MESSAGES/kblackbox.mo share/locale/eo/LC_MESSAGES/kblackbox.mo share/locale/es/LC_MESSAGES/kblackbox.mo share/locale/et/LC_MESSAGES/kblackbox.mo share/locale/eu/LC_MESSAGES/kblackbox.mo share/locale/fa/LC_MESSAGES/kblackbox.mo share/locale/fi/LC_MESSAGES/kblackbox.mo share/locale/fr/LC_MESSAGES/kblackbox.mo share/locale/ga/LC_MESSAGES/kblackbox.mo share/locale/gl/LC_MESSAGES/kblackbox.mo share/locale/he/LC_MESSAGES/kblackbox.mo share/locale/hi/LC_MESSAGES/kblackbox.mo share/locale/hr/LC_MESSAGES/kblackbox.mo share/locale/hu/LC_MESSAGES/kblackbox.mo share/locale/id/LC_MESSAGES/kblackbox.mo share/locale/is/LC_MESSAGES/kblackbox.mo share/locale/it/LC_MESSAGES/kblackbox.mo share/locale/ja/LC_MESSAGES/kblackbox.mo share/locale/kk/LC_MESSAGES/kblackbox.mo share/locale/km/LC_MESSAGES/kblackbox.mo share/locale/ko/LC_MESSAGES/kblackbox.mo share/locale/lt/LC_MESSAGES/kblackbox.mo share/locale/lv/LC_MESSAGES/kblackbox.mo share/locale/ml/LC_MESSAGES/kblackbox.mo share/locale/mr/LC_MESSAGES/kblackbox.mo share/locale/nb/LC_MESSAGES/kblackbox.mo share/locale/nds/LC_MESSAGES/kblackbox.mo share/locale/nl/LC_MESSAGES/kblackbox.mo share/locale/nn/LC_MESSAGES/kblackbox.mo share/locale/pa/LC_MESSAGES/kblackbox.mo share/locale/pl/LC_MESSAGES/kblackbox.mo share/locale/pt/LC_MESSAGES/kblackbox.mo share/locale/pt_BR/LC_MESSAGES/kblackbox.mo share/locale/ro/LC_MESSAGES/kblackbox.mo share/locale/ru/LC_MESSAGES/kblackbox.mo +share/locale/se/LC_MESSAGES/kblackbox.mo share/locale/sk/LC_MESSAGES/kblackbox.mo share/locale/sl/LC_MESSAGES/kblackbox.mo +share/locale/sq/LC_MESSAGES/kblackbox.mo share/locale/sr/LC_MESSAGES/kblackbox.mo share/locale/sv/LC_MESSAGES/kblackbox.mo +share/locale/ta/LC_MESSAGES/kblackbox.mo +share/locale/tg/LC_MESSAGES/kblackbox.mo share/locale/tr/LC_MESSAGES/kblackbox.mo share/locale/ug/LC_MESSAGES/kblackbox.mo share/locale/uk/LC_MESSAGES/kblackbox.mo +share/locale/vi/LC_MESSAGES/kblackbox.mo share/locale/zh_CN/LC_MESSAGES/kblackbox.mo share/locale/zh_TW/LC_MESSAGES/kblackbox.mo share/metainfo/org.kde.kblackbox.appdata.xml diff --git a/games/kblocks/distinfo b/games/kblocks/distinfo index 9397fdb5a9ce..25e5a46683ff 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741457 -SHA256 (KDE/release-service/21.04.1/kblocks-21.04.1.tar.xz) = cc3d4dc373c2a3cb04a87122f83ccb919b5c1d4418ec529c280aef532e94b6e0 -SIZE (KDE/release-service/21.04.1/kblocks-21.04.1.tar.xz) = 1910692 +TIMESTAMP = 1623520827 +SHA256 (KDE/release-service/21.04.2/kblocks-21.04.2.tar.xz) = 17d760826f65478dec90dcbf01ddb5c2d61f617f918fb3c7cccef10d6701b0a1 +SIZE (KDE/release-service/21.04.2/kblocks-21.04.2.tar.xz) = 1911688 diff --git a/games/kblocks/pkg-plist b/games/kblocks/pkg-plist index 24f123ea0603..d77ad2a4b501 100644 --- a/games/kblocks/pkg-plist +++ b/games/kblocks/pkg-plist @@ -1,74 +1,75 @@ bin/kblocks share/qlogging-categories5/kblocks.categories share/applications/org.kde.kblocks.desktop share/config.kcfg/kblocks.kcfg share/icons/hicolor/128x128/apps/kblocks.png share/icons/hicolor/16x16/apps/kblocks.png share/icons/hicolor/22x22/apps/kblocks.png share/icons/hicolor/32x32/apps/kblocks.png share/icons/hicolor/48x48/apps/kblocks.png share/icons/hicolor/64x64/apps/kblocks.png %%DATADIR%%/sounds/block-fall.ogg %%DATADIR%%/sounds/block-move.ogg %%DATADIR%%/sounds/block-remove.ogg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default_block_fall.ogg %%DATADIR%%/themes/default_block_move.ogg %%DATADIR%%/themes/egyptian.svg %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.svg %%DATADIR%%/themes/oxygen_preview.png share/knsrcfiles/kblocks.knsrc share/kxmlgui5/kblocks/kblocksui.rc share/locale/ar/LC_MESSAGES/kblocks.mo share/locale/bg/LC_MESSAGES/kblocks.mo share/locale/bs/LC_MESSAGES/kblocks.mo share/locale/ca/LC_MESSAGES/kblocks.mo share/locale/ca@valencia/LC_MESSAGES/kblocks.mo share/locale/cs/LC_MESSAGES/kblocks.mo share/locale/da/LC_MESSAGES/kblocks.mo share/locale/de/LC_MESSAGES/kblocks.mo share/locale/el/LC_MESSAGES/kblocks.mo share/locale/en_GB/LC_MESSAGES/kblocks.mo share/locale/eo/LC_MESSAGES/kblocks.mo share/locale/es/LC_MESSAGES/kblocks.mo share/locale/et/LC_MESSAGES/kblocks.mo share/locale/eu/LC_MESSAGES/kblocks.mo share/locale/fi/LC_MESSAGES/kblocks.mo share/locale/fr/LC_MESSAGES/kblocks.mo share/locale/ga/LC_MESSAGES/kblocks.mo share/locale/gl/LC_MESSAGES/kblocks.mo share/locale/hi/LC_MESSAGES/kblocks.mo share/locale/hr/LC_MESSAGES/kblocks.mo share/locale/hu/LC_MESSAGES/kblocks.mo share/locale/id/LC_MESSAGES/kblocks.mo share/locale/is/LC_MESSAGES/kblocks.mo share/locale/it/LC_MESSAGES/kblocks.mo share/locale/ja/LC_MESSAGES/kblocks.mo share/locale/kk/LC_MESSAGES/kblocks.mo share/locale/km/LC_MESSAGES/kblocks.mo share/locale/ko/LC_MESSAGES/kblocks.mo share/locale/lt/LC_MESSAGES/kblocks.mo share/locale/lv/LC_MESSAGES/kblocks.mo share/locale/ml/LC_MESSAGES/kblocks.mo share/locale/mr/LC_MESSAGES/kblocks.mo share/locale/nb/LC_MESSAGES/kblocks.mo share/locale/nds/LC_MESSAGES/kblocks.mo share/locale/nl/LC_MESSAGES/kblocks.mo share/locale/nn/LC_MESSAGES/kblocks.mo share/locale/pl/LC_MESSAGES/kblocks.mo share/locale/pt/LC_MESSAGES/kblocks.mo share/locale/pt_BR/LC_MESSAGES/kblocks.mo share/locale/ro/LC_MESSAGES/kblocks.mo share/locale/ru/LC_MESSAGES/kblocks.mo share/locale/sk/LC_MESSAGES/kblocks.mo share/locale/sl/LC_MESSAGES/kblocks.mo +share/locale/sq/LC_MESSAGES/kblocks.mo share/locale/sr/LC_MESSAGES/kblocks.mo share/locale/sv/LC_MESSAGES/kblocks.mo share/locale/tr/LC_MESSAGES/kblocks.mo share/locale/ug/LC_MESSAGES/kblocks.mo share/locale/uk/LC_MESSAGES/kblocks.mo share/locale/zh_CN/LC_MESSAGES/kblocks.mo share/locale/zh_TW/LC_MESSAGES/kblocks.mo share/metainfo/org.kde.kblocks.appdata.xml diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index fc17ac93d4bb..8b16ef8f2165 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741458 -SHA256 (KDE/release-service/21.04.1/kbounce-21.04.1.tar.xz) = e225460d4459903b7d94520607bfdd65438f535c5df73d53dd44c65e8bdf5312 -SIZE (KDE/release-service/21.04.1/kbounce-21.04.1.tar.xz) = 3442148 +TIMESTAMP = 1623520829 +SHA256 (KDE/release-service/21.04.2/kbounce-21.04.2.tar.xz) = e30c8524c84115cf1771022bdff7d889f2ba1a5c74609b3a16071c35f4ee51f5 +SIZE (KDE/release-service/21.04.2/kbounce-21.04.2.tar.xz) = 3447784 diff --git a/games/kbounce/pkg-plist b/games/kbounce/pkg-plist index 526ff5630f4c..3fd11af6e674 100644 --- a/games/kbounce/pkg-plist +++ b/games/kbounce/pkg-plist @@ -1,84 +1,90 @@ bin/kbounce share/applications/org.kde.kbounce.desktop share/icons/hicolor/128x128/apps/kbounce.png share/icons/hicolor/16x16/apps/kbounce.png share/icons/hicolor/22x22/apps/kbounce.png share/icons/hicolor/32x32/apps/kbounce.png share/icons/hicolor/48x48/apps/kbounce.png share/icons/hicolor/64x64/apps/kbounce.png %%DATADIR%%/sounds/death.wav %%DATADIR%%/sounds/reflect.wav %%DATADIR%%/sounds/seconds.wav %%DATADIR%%/sounds/timeout.wav %%DATADIR%%/sounds/wallend.wav %%DATADIR%%/sounds/wallstart.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_bounce.png %%DATADIR%%/themes/egyptian_bounce.svgz %%DATADIR%%/themes/geometry.desktop %%DATADIR%%/themes/geometry.png %%DATADIR%%/themes/kbounce.svg %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.png %%DATADIR%%/themes/oxygen.svgz %%DATADIR%%/themes/roads.desktop %%DATADIR%%/themes/roads.svgz %%DATADIR%%/themes/roads_preview.png %%DATADIR%%/themes/the_beach.desktop %%DATADIR%%/themes/the_beach.svgz %%DATADIR%%/themes/thebeach_preview.png share/locale/ar/LC_MESSAGES/kbounce.mo +share/locale/be/LC_MESSAGES/kbounce.mo share/locale/bg/LC_MESSAGES/kbounce.mo share/locale/bs/LC_MESSAGES/kbounce.mo share/locale/ca/LC_MESSAGES/kbounce.mo share/locale/ca@valencia/LC_MESSAGES/kbounce.mo share/locale/cs/LC_MESSAGES/kbounce.mo share/locale/da/LC_MESSAGES/kbounce.mo share/locale/de/LC_MESSAGES/kbounce.mo share/locale/el/LC_MESSAGES/kbounce.mo share/locale/en_GB/LC_MESSAGES/kbounce.mo share/locale/eo/LC_MESSAGES/kbounce.mo share/locale/es/LC_MESSAGES/kbounce.mo share/locale/et/LC_MESSAGES/kbounce.mo share/locale/eu/LC_MESSAGES/kbounce.mo share/locale/fa/LC_MESSAGES/kbounce.mo share/locale/fi/LC_MESSAGES/kbounce.mo share/locale/fr/LC_MESSAGES/kbounce.mo share/locale/ga/LC_MESSAGES/kbounce.mo share/locale/gl/LC_MESSAGES/kbounce.mo share/locale/he/LC_MESSAGES/kbounce.mo share/locale/hi/LC_MESSAGES/kbounce.mo share/locale/hr/LC_MESSAGES/kbounce.mo share/locale/hu/LC_MESSAGES/kbounce.mo share/locale/id/LC_MESSAGES/kbounce.mo share/locale/is/LC_MESSAGES/kbounce.mo share/locale/it/LC_MESSAGES/kbounce.mo share/locale/ja/LC_MESSAGES/kbounce.mo share/locale/kk/LC_MESSAGES/kbounce.mo share/locale/km/LC_MESSAGES/kbounce.mo share/locale/ko/LC_MESSAGES/kbounce.mo share/locale/lt/LC_MESSAGES/kbounce.mo share/locale/lv/LC_MESSAGES/kbounce.mo share/locale/ml/LC_MESSAGES/kbounce.mo share/locale/mr/LC_MESSAGES/kbounce.mo share/locale/nb/LC_MESSAGES/kbounce.mo share/locale/nds/LC_MESSAGES/kbounce.mo share/locale/nl/LC_MESSAGES/kbounce.mo share/locale/nn/LC_MESSAGES/kbounce.mo share/locale/pa/LC_MESSAGES/kbounce.mo share/locale/pl/LC_MESSAGES/kbounce.mo share/locale/pt/LC_MESSAGES/kbounce.mo share/locale/pt_BR/LC_MESSAGES/kbounce.mo share/locale/ro/LC_MESSAGES/kbounce.mo share/locale/ru/LC_MESSAGES/kbounce.mo +share/locale/se/LC_MESSAGES/kbounce.mo share/locale/sk/LC_MESSAGES/kbounce.mo share/locale/sl/LC_MESSAGES/kbounce.mo +share/locale/sq/LC_MESSAGES/kbounce.mo share/locale/sr/LC_MESSAGES/kbounce.mo share/locale/sv/LC_MESSAGES/kbounce.mo +share/locale/ta/LC_MESSAGES/kbounce.mo +share/locale/tg/LC_MESSAGES/kbounce.mo share/locale/tr/LC_MESSAGES/kbounce.mo share/locale/ug/LC_MESSAGES/kbounce.mo share/locale/uk/LC_MESSAGES/kbounce.mo +share/locale/vi/LC_MESSAGES/kbounce.mo share/locale/zh_CN/LC_MESSAGES/kbounce.mo share/locale/zh_TW/LC_MESSAGES/kbounce.mo share/metainfo/org.kde.kbounce.appdata.xml share/qlogging-categories5/kbounce.categories diff --git a/games/kbreakout/distinfo b/games/kbreakout/distinfo index 52c9fa0b6efe..cd90d362416b 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741459 -SHA256 (KDE/release-service/21.04.1/kbreakout-21.04.1.tar.xz) = 37b9fc126bb800979a724446f9fb5ac04bd408f7d324ecd82e15d651f709fa11 -SIZE (KDE/release-service/21.04.1/kbreakout-21.04.1.tar.xz) = 2281600 +TIMESTAMP = 1623520830 +SHA256 (KDE/release-service/21.04.2/kbreakout-21.04.2.tar.xz) = adc8ba63865b8dd6d6229b13bf94e1cdd53486f0cb21d0ef86369e5a07199cb3 +SIZE (KDE/release-service/21.04.2/kbreakout-21.04.2.tar.xz) = 2284084 diff --git a/games/kbreakout/pkg-plist b/games/kbreakout/pkg-plist index fb101589aeed..801a79719c4c 100644 --- a/games/kbreakout/pkg-plist +++ b/games/kbreakout/pkg-plist @@ -1,90 +1,91 @@ bin/kbreakout share/qlogging-categories5/kbreakout.categories share/applications/org.kde.kbreakout.desktop share/icons/hicolor/128x128/apps/kbreakout.png share/icons/hicolor/16x16/apps/kbreakout.png share/icons/hicolor/22x22/apps/kbreakout.png share/icons/hicolor/32x32/apps/kbreakout.png share/icons/hicolor/48x48/apps/kbreakout.png share/icons/hicolor/64x64/apps/kbreakout.png share/icons/hicolor/scalable/apps/kbreakout.svg %%DATADIR%%/levelsets/default.levelset %%DATADIR%%/qml/Ball.qml %%DATADIR%%/qml/Bar.qml %%DATADIR%%/qml/Brick.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Gift.qml %%DATADIR%%/qml/Singleshot.qml %%DATADIR%%/qml/TextItem.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/themes/IceWorld.desktop %%DATADIR%%/themes/IceWorld.svgz %%DATADIR%%/themes/IceWorld_preview.png %%DATADIR%%/themes/alien_preview.png %%DATADIR%%/themes/alienbreakout.desktop %%DATADIR%%/themes/alienbreakout.svgz %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.svgz %%DATADIR%%/themes/crystal_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_breakout_preview.png %%DATADIR%%/themes/egyptianbreakout.svgz %%DATADIR%%/themes/simple.desktop %%DATADIR%%/themes/simple.svgz %%DATADIR%%/themes/simple_preview.png %%DATADIR%%/themes/web20.desktop %%DATADIR%%/themes/web20.svgz %%DATADIR%%/themes/web20_preview.png share/locale/ar/LC_MESSAGES/kbreakout.mo share/locale/bg/LC_MESSAGES/kbreakout.mo share/locale/bs/LC_MESSAGES/kbreakout.mo share/locale/ca/LC_MESSAGES/kbreakout.mo share/locale/ca@valencia/LC_MESSAGES/kbreakout.mo share/locale/cs/LC_MESSAGES/kbreakout.mo share/locale/da/LC_MESSAGES/kbreakout.mo share/locale/de/LC_MESSAGES/kbreakout.mo share/locale/el/LC_MESSAGES/kbreakout.mo share/locale/en_GB/LC_MESSAGES/kbreakout.mo share/locale/eo/LC_MESSAGES/kbreakout.mo share/locale/es/LC_MESSAGES/kbreakout.mo share/locale/et/LC_MESSAGES/kbreakout.mo share/locale/eu/LC_MESSAGES/kbreakout.mo share/locale/fi/LC_MESSAGES/kbreakout.mo share/locale/fr/LC_MESSAGES/kbreakout.mo share/locale/ga/LC_MESSAGES/kbreakout.mo share/locale/gl/LC_MESSAGES/kbreakout.mo share/locale/hr/LC_MESSAGES/kbreakout.mo share/locale/hu/LC_MESSAGES/kbreakout.mo share/locale/id/LC_MESSAGES/kbreakout.mo share/locale/is/LC_MESSAGES/kbreakout.mo share/locale/it/LC_MESSAGES/kbreakout.mo share/locale/ja/LC_MESSAGES/kbreakout.mo share/locale/kk/LC_MESSAGES/kbreakout.mo share/locale/km/LC_MESSAGES/kbreakout.mo share/locale/ko/LC_MESSAGES/kbreakout.mo share/locale/lt/LC_MESSAGES/kbreakout.mo share/locale/lv/LC_MESSAGES/kbreakout.mo share/locale/ml/LC_MESSAGES/kbreakout.mo share/locale/mr/LC_MESSAGES/kbreakout.mo share/locale/nb/LC_MESSAGES/kbreakout.mo share/locale/nds/LC_MESSAGES/kbreakout.mo share/locale/nl/LC_MESSAGES/kbreakout.mo share/locale/nn/LC_MESSAGES/kbreakout.mo share/locale/pl/LC_MESSAGES/kbreakout.mo share/locale/pt/LC_MESSAGES/kbreakout.mo share/locale/pt_BR/LC_MESSAGES/kbreakout.mo share/locale/ro/LC_MESSAGES/kbreakout.mo share/locale/ru/LC_MESSAGES/kbreakout.mo share/locale/sk/LC_MESSAGES/kbreakout.mo share/locale/sl/LC_MESSAGES/kbreakout.mo +share/locale/sq/LC_MESSAGES/kbreakout.mo share/locale/sr/LC_MESSAGES/kbreakout.mo share/locale/sv/LC_MESSAGES/kbreakout.mo share/locale/tr/LC_MESSAGES/kbreakout.mo share/locale/ug/LC_MESSAGES/kbreakout.mo share/locale/uk/LC_MESSAGES/kbreakout.mo share/locale/wa/LC_MESSAGES/kbreakout.mo share/locale/zh_CN/LC_MESSAGES/kbreakout.mo share/locale/zh_TW/LC_MESSAGES/kbreakout.mo share/metainfo/org.kde.kbreakout.appdata.xml diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index 898acc5a63e6..07f332f2ef17 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741459 -SHA256 (KDE/release-service/21.04.1/kdiamond-21.04.1.tar.xz) = 92016161f9a2ceefcf704d711f7762d415722eb132282e936b7ceea2fe268a54 -SIZE (KDE/release-service/21.04.1/kdiamond-21.04.1.tar.xz) = 4697492 +TIMESTAMP = 1623520832 +SHA256 (KDE/release-service/21.04.2/kdiamond-21.04.2.tar.xz) = 8cdba76d74610ca1921e3eba72c142aaa55f9d9b159c2ce23cfe3bcf6a7e9cdd +SIZE (KDE/release-service/21.04.2/kdiamond-21.04.2.tar.xz) = 4697848 diff --git a/games/kdiamond/pkg-plist b/games/kdiamond/pkg-plist index d4056e8f0e2d..7629788abab6 100644 --- a/games/kdiamond/pkg-plist +++ b/games/kdiamond/pkg-plist @@ -1,74 +1,75 @@ bin/kdiamond share/applications/org.kde.kdiamond.desktop share/icons/hicolor/128x128/apps/kdiamond.png share/icons/hicolor/16x16/apps/kdiamond.png share/icons/hicolor/22x22/apps/kdiamond.png share/icons/hicolor/32x32/apps/kdiamond.png share/icons/hicolor/48x48/apps/kdiamond.png share/icons/hicolor/64x64/apps/kdiamond.png %%DATADIR%%/kdiamond.kcfg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/diamonds.desktop %%DATADIR%%/themes/diamonds.png %%DATADIR%%/themes/diamonds.svgz %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/funny_zoo.desktop %%DATADIR%%/themes/funny_zoo.png %%DATADIR%%/themes/funny_zoo.svgz share/knotifications5/kdiamond.notifyrc share/knsrcfiles/kdiamond.knsrc share/locale/ar/LC_MESSAGES/kdiamond.mo share/locale/bg/LC_MESSAGES/kdiamond.mo share/locale/bs/LC_MESSAGES/kdiamond.mo share/locale/ca/LC_MESSAGES/kdiamond.mo share/locale/ca@valencia/LC_MESSAGES/kdiamond.mo share/locale/cs/LC_MESSAGES/kdiamond.mo share/locale/da/LC_MESSAGES/kdiamond.mo share/locale/de/LC_MESSAGES/kdiamond.mo share/locale/el/LC_MESSAGES/kdiamond.mo share/locale/en_GB/LC_MESSAGES/kdiamond.mo share/locale/eo/LC_MESSAGES/kdiamond.mo share/locale/es/LC_MESSAGES/kdiamond.mo share/locale/et/LC_MESSAGES/kdiamond.mo share/locale/eu/LC_MESSAGES/kdiamond.mo share/locale/fi/LC_MESSAGES/kdiamond.mo share/locale/fr/LC_MESSAGES/kdiamond.mo share/locale/ga/LC_MESSAGES/kdiamond.mo share/locale/gl/LC_MESSAGES/kdiamond.mo share/locale/hi/LC_MESSAGES/kdiamond.mo share/locale/hr/LC_MESSAGES/kdiamond.mo share/locale/hu/LC_MESSAGES/kdiamond.mo share/locale/id/LC_MESSAGES/kdiamond.mo share/locale/is/LC_MESSAGES/kdiamond.mo share/locale/it/LC_MESSAGES/kdiamond.mo share/locale/ja/LC_MESSAGES/kdiamond.mo share/locale/kk/LC_MESSAGES/kdiamond.mo share/locale/km/LC_MESSAGES/kdiamond.mo share/locale/ko/LC_MESSAGES/kdiamond.mo share/locale/lt/LC_MESSAGES/kdiamond.mo share/locale/lv/LC_MESSAGES/kdiamond.mo share/locale/ml/LC_MESSAGES/kdiamond.mo share/locale/mr/LC_MESSAGES/kdiamond.mo share/locale/nb/LC_MESSAGES/kdiamond.mo share/locale/nds/LC_MESSAGES/kdiamond.mo share/locale/nl/LC_MESSAGES/kdiamond.mo share/locale/nn/LC_MESSAGES/kdiamond.mo share/locale/pl/LC_MESSAGES/kdiamond.mo share/locale/pt/LC_MESSAGES/kdiamond.mo share/locale/pt_BR/LC_MESSAGES/kdiamond.mo share/locale/ro/LC_MESSAGES/kdiamond.mo share/locale/ru/LC_MESSAGES/kdiamond.mo share/locale/sk/LC_MESSAGES/kdiamond.mo share/locale/sl/LC_MESSAGES/kdiamond.mo +share/locale/sq/LC_MESSAGES/kdiamond.mo share/locale/sr/LC_MESSAGES/kdiamond.mo share/locale/sv/LC_MESSAGES/kdiamond.mo share/locale/tr/LC_MESSAGES/kdiamond.mo share/locale/ug/LC_MESSAGES/kdiamond.mo share/locale/uk/LC_MESSAGES/kdiamond.mo share/locale/zh_CN/LC_MESSAGES/kdiamond.mo share/locale/zh_TW/LC_MESSAGES/kdiamond.mo share/metainfo/org.kde.kdiamond.appdata.xml share/sounds/KDiamond-Stone-Drop.ogg share/sounds/KDiamond-Stone-Swap.ogg share/sounds/KDiamond-Stone-Touch.ogg diff --git a/games/kfourinline/distinfo b/games/kfourinline/distinfo index 3aef2a65b97b..6fad47f7eede 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741460 -SHA256 (KDE/release-service/21.04.1/kfourinline-21.04.1.tar.xz) = 11fc1264e7b13965829a543e33dc9aa1e01c1a6e477a5a1c1d9163a47ed6785b -SIZE (KDE/release-service/21.04.1/kfourinline-21.04.1.tar.xz) = 644960 +TIMESTAMP = 1623520833 +SHA256 (KDE/release-service/21.04.2/kfourinline-21.04.2.tar.xz) = 622e4c3382fedc3efc39a3b96c0d1fc890d08bf6e87254bd527483458a72d2b7 +SIZE (KDE/release-service/21.04.2/kfourinline-21.04.2.tar.xz) = 650616 diff --git a/games/kfourinline/pkg-plist b/games/kfourinline/pkg-plist index 6cc1e325d507..ebab9635ae5d 100644 --- a/games/kfourinline/pkg-plist +++ b/games/kfourinline/pkg-plist @@ -1,75 +1,78 @@ bin/kfourinline bin/kfourinlineproc share/qlogging-categories5/kfourinline.categories share/applications/org.kde.kfourinline.desktop share/config.kcfg/kwin4.kcfg share/icons/hicolor/128x128/apps/kfourinline.png share/icons/hicolor/16x16/apps/kfourinline.png share/icons/hicolor/22x22/apps/kfourinline.png share/icons/hicolor/32x32/apps/kfourinline.png share/icons/hicolor/48x48/apps/kfourinline.png share/icons/hicolor/64x64/apps/kfourinline.png %%DATADIR%%/grafix/default.desktop %%DATADIR%%/grafix/default.rc %%DATADIR%%/grafix/default.svg %%DATADIR%%/grafix/gray_reflection.desktop %%DATADIR%%/grafix/gray_reflection.rc %%DATADIR%%/grafix/gray_reflection.svg %%DATADIR%%/grafix/yellow.desktop %%DATADIR%%/grafix/yellow.rc %%DATADIR%%/grafix/yellow.svg %%DATADIR%%/grafix/yellow_reflection.desktop %%DATADIR%%/grafix/yellow_reflection.rc share/locale/ar/LC_MESSAGES/kfourinline.mo +share/locale/be/LC_MESSAGES/kfourinline.mo share/locale/bg/LC_MESSAGES/kfourinline.mo share/locale/bs/LC_MESSAGES/kfourinline.mo share/locale/ca/LC_MESSAGES/kfourinline.mo share/locale/ca@valencia/LC_MESSAGES/kfourinline.mo share/locale/cs/LC_MESSAGES/kfourinline.mo share/locale/da/LC_MESSAGES/kfourinline.mo share/locale/de/LC_MESSAGES/kfourinline.mo share/locale/el/LC_MESSAGES/kfourinline.mo share/locale/en_GB/LC_MESSAGES/kfourinline.mo share/locale/eo/LC_MESSAGES/kfourinline.mo share/locale/es/LC_MESSAGES/kfourinline.mo share/locale/et/LC_MESSAGES/kfourinline.mo share/locale/eu/LC_MESSAGES/kfourinline.mo share/locale/fa/LC_MESSAGES/kfourinline.mo share/locale/fi/LC_MESSAGES/kfourinline.mo share/locale/fr/LC_MESSAGES/kfourinline.mo share/locale/ga/LC_MESSAGES/kfourinline.mo share/locale/gl/LC_MESSAGES/kfourinline.mo share/locale/he/LC_MESSAGES/kfourinline.mo share/locale/hr/LC_MESSAGES/kfourinline.mo share/locale/hu/LC_MESSAGES/kfourinline.mo share/locale/id/LC_MESSAGES/kfourinline.mo share/locale/is/LC_MESSAGES/kfourinline.mo share/locale/it/LC_MESSAGES/kfourinline.mo share/locale/ja/LC_MESSAGES/kfourinline.mo share/locale/kk/LC_MESSAGES/kfourinline.mo share/locale/km/LC_MESSAGES/kfourinline.mo share/locale/ko/LC_MESSAGES/kfourinline.mo share/locale/lt/LC_MESSAGES/kfourinline.mo share/locale/lv/LC_MESSAGES/kfourinline.mo share/locale/ml/LC_MESSAGES/kfourinline.mo share/locale/mr/LC_MESSAGES/kfourinline.mo share/locale/nb/LC_MESSAGES/kfourinline.mo share/locale/nds/LC_MESSAGES/kfourinline.mo share/locale/nl/LC_MESSAGES/kfourinline.mo share/locale/nn/LC_MESSAGES/kfourinline.mo share/locale/pa/LC_MESSAGES/kfourinline.mo share/locale/pl/LC_MESSAGES/kfourinline.mo share/locale/pt/LC_MESSAGES/kfourinline.mo share/locale/pt_BR/LC_MESSAGES/kfourinline.mo share/locale/ro/LC_MESSAGES/kfourinline.mo share/locale/ru/LC_MESSAGES/kfourinline.mo share/locale/sk/LC_MESSAGES/kfourinline.mo share/locale/sl/LC_MESSAGES/kfourinline.mo share/locale/sr/LC_MESSAGES/kfourinline.mo share/locale/sv/LC_MESSAGES/kfourinline.mo +share/locale/ta/LC_MESSAGES/kfourinline.mo +share/locale/tg/LC_MESSAGES/kfourinline.mo share/locale/tr/LC_MESSAGES/kfourinline.mo share/locale/ug/LC_MESSAGES/kfourinline.mo share/locale/uk/LC_MESSAGES/kfourinline.mo share/locale/zh_CN/LC_MESSAGES/kfourinline.mo share/locale/zh_TW/LC_MESSAGES/kfourinline.mo share/metainfo/org.kde.kfourinline.appdata.xml diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index a40530b8351f..8e37597abed6 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741461 -SHA256 (KDE/release-service/21.04.1/kgoldrunner-21.04.1.tar.xz) = d7a85d11f93cfacfea7325f11fe0af87447a24a4d4e403a1ece0b12776079451 -SIZE (KDE/release-service/21.04.1/kgoldrunner-21.04.1.tar.xz) = 4451024 +TIMESTAMP = 1623520834 +SHA256 (KDE/release-service/21.04.2/kgoldrunner-21.04.2.tar.xz) = bf3368d10f704aedcd153d33de2637212b4c1805efed87e0470f0deac2139643 +SIZE (KDE/release-service/21.04.2/kgoldrunner-21.04.2.tar.xz) = 4488296 diff --git a/games/kgoldrunner/pkg-plist b/games/kgoldrunner/pkg-plist index 35131aad7131..8cf7a8eda0ae 100644 --- a/games/kgoldrunner/pkg-plist +++ b/games/kgoldrunner/pkg-plist @@ -1,128 +1,133 @@ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svg %%DATADIR%%/themes/accessible/black-on-white-set.svg %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svg %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svg %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svg %%DATADIR%%/themes/nostalgia/blue-actors.svg %%DATADIR%%/themes/nostalgia/blue-set.svg %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svg share/knsrcfiles/kgoldrunner.knsrc share/locale/ar/LC_MESSAGES/kgoldrunner.mo +share/locale/be/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo share/locale/id/LC_MESSAGES/kgoldrunner.mo share/locale/is/LC_MESSAGES/kgoldrunner.mo share/locale/it/LC_MESSAGES/kgoldrunner.mo share/locale/ja/LC_MESSAGES/kgoldrunner.mo share/locale/kk/LC_MESSAGES/kgoldrunner.mo share/locale/km/LC_MESSAGES/kgoldrunner.mo share/locale/ko/LC_MESSAGES/kgoldrunner.mo share/locale/lt/LC_MESSAGES/kgoldrunner.mo share/locale/lv/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo +share/locale/se/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo +share/locale/sq/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo +share/locale/ta/LC_MESSAGES/kgoldrunner.mo +share/locale/tg/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml share/qlogging-categories5/kgoldrunner.categories diff --git a/games/khangman/distinfo b/games/khangman/distinfo index ae3e6492d1ea..060c19e5a9cc 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741461 -SHA256 (KDE/release-service/21.04.1/khangman-21.04.1.tar.xz) = 2a17eb7b7bbae284061d6c807dc5353aa3cd2c365e460423f14b1214374ab017 -SIZE (KDE/release-service/21.04.1/khangman-21.04.1.tar.xz) = 7417180 +TIMESTAMP = 1623520836 +SHA256 (KDE/release-service/21.04.2/khangman-21.04.2.tar.xz) = 26e196814ccdfe0781fff7dfb03609a048f75ac85fdcfd4083b91a0fe3eb2970 +SIZE (KDE/release-service/21.04.2/khangman-21.04.2.tar.xz) = 7422820 diff --git a/games/khangman/pkg-plist b/games/khangman/pkg-plist index 89fb1fa9f6fe..883f07cd23cc 100644 --- a/games/khangman/pkg-plist +++ b/games/khangman/pkg-plist @@ -1,142 +1,149 @@ bin/khangman etc/xdg/khangman.knsrc man/ca/man6/khangman.6.gz man/de/man6/khangman.6.gz man/es/man6/khangman.6.gz man/et/man6/khangman.6.gz man/fr/man6/khangman.6.gz man/it/man6/khangman.6.gz man/man6/khangman.6.gz man/nl/man6/khangman.6.gz man/pt/man6/khangman.6.gz man/pt_BR/man6/khangman.6.gz man/ru/man6/khangman.6.gz man/sv/man6/khangman.6.gz man/uk/man6/khangman.6.gz share/applications/org.kde.khangman.desktop share/config.kcfg/khangman.kcfg share/icons/hicolor/128x128/apps/khangman.png share/icons/hicolor/16x16/apps/khangman.png share/icons/hicolor/22x22/apps/khangman.png share/icons/hicolor/32x32/apps/khangman.png share/icons/hicolor/48x48/apps/khangman.png share/icons/hicolor/64x64/apps/khangman.png share/icons/hicolor/scalable/apps/khangman.svgz %%DATADIR%%/ca.txt %%DATADIR%%/cs.txt %%DATADIR%%/da.txt %%DATADIR%%/de.txt %%DATADIR%%/es.txt %%DATADIR%%/et.txt %%DATADIR%%/fi.txt %%DATADIR%%/fonts/Domestic_Manners.ttf %%DATADIR%%/fonts/Dustismo_Roman.ttf %%DATADIR%%/fr.txt %%DATADIR%%/ga.txt %%DATADIR%%/gl.txt %%DATADIR%%/hu.txt %%DATADIR%%/nb.txt %%DATADIR%%/nds.txt %%DATADIR%%/nn.txt %%DATADIR%%/pl.txt %%DATADIR%%/pt.txt %%DATADIR%%/pt_BR.txt %%DATADIR%%/qml/GamePage.qml %%DATADIR%%/qml/Images/about-kde.png %%DATADIR%%/qml/Images/action-fail.png %%DATADIR%%/qml/Images/action-success.png %%DATADIR%%/qml/Images/dialog-information.png %%DATADIR%%/qml/Images/get-hot-new-stuff.png %%DATADIR%%/qml/Images/go-next.png %%DATADIR%%/qml/Images/handbook.png %%DATADIR%%/qml/Images/help-hint.png %%DATADIR%%/qml/Images/pause.png %%DATADIR%%/qml/Images/play.png %%DATADIR%%/qml/Images/quit.png %%DATADIR%%/qml/Images/settings_icon.png %%DATADIR%%/qml/LetterElement.qml %%DATADIR%%/qml/MainSettingsDialog.qml %%DATADIR%%/qml/MySelectionDialog.qml %%DATADIR%%/qml/gallows/gallows1.png %%DATADIR%%/qml/gallows/gallows10.png %%DATADIR%%/qml/gallows/gallows2.png %%DATADIR%%/qml/gallows/gallows3.png %%DATADIR%%/qml/gallows/gallows4.png %%DATADIR%%/qml/gallows/gallows5.png %%DATADIR%%/qml/gallows/gallows6.png %%DATADIR%%/qml/gallows/gallows7.png %%DATADIR%%/qml/gallows/gallows8.png %%DATADIR%%/qml/gallows/gallows9.png %%DATADIR%%/qml/main.qml %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.ogg %%DATADIR%%/qml/sounds/EW_Dialogue_Appear.wav %%DATADIR%%/qml/sounds/chalk.ogg %%DATADIR%%/qml/sounds/chalk.wav %%DATADIR%%/qml/sounds/khangman-alphabet-button-press.wav %%DATADIR%%/qml/sounds/new_game.ogg %%DATADIR%%/qml/sounds/new_game.wav %%DATADIR%%/qml/sounds/splash.ogg %%DATADIR%%/qml/sounds/splash.wav %%DATADIR%%/qml/sounds/wrong.ogg %%DATADIR%%/qml/sounds/wrong.wav %%DATADIR%%/sk.txt %%DATADIR%%/sl.txt %%DATADIR%%/sv.txt +%%DATADIR%%/tg.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt share/locale/ar/LC_MESSAGES/khangman.mo +share/locale/be/LC_MESSAGES/khangman.mo share/locale/bg/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo +share/locale/ko/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo +share/locale/se/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo +share/locale/sq/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo +share/locale/ta/LC_MESSAGES/khangman.mo +share/locale/tg/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/metainfo/org.kde.khangman.appdata.xml diff --git a/games/kigo/distinfo b/games/kigo/distinfo index 58d844fccdf0..729694be4390 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741462 -SHA256 (KDE/release-service/21.04.1/kigo-21.04.1.tar.xz) = bc630772838ad53558c5e313400cea042be9a95c3b6ad3c234e7399aaad97c17 -SIZE (KDE/release-service/21.04.1/kigo-21.04.1.tar.xz) = 5245240 +TIMESTAMP = 1623520838 +SHA256 (KDE/release-service/21.04.2/kigo-21.04.2.tar.xz) = 9fb24e77c92404c0cb07d33c277543a83ae715e9f3f91e612a62e665cc5d1f2a +SIZE (KDE/release-service/21.04.2/kigo-21.04.2.tar.xz) = 5245128 diff --git a/games/killbots/distinfo b/games/killbots/distinfo index 458ee4ddfaec..14d4fb924cc6 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741463 -SHA256 (KDE/release-service/21.04.1/killbots-21.04.1.tar.xz) = bcea932167968176b2e398ac1088e061d9b1119673f3daf20eb6997322ff6062 -SIZE (KDE/release-service/21.04.1/killbots-21.04.1.tar.xz) = 1186312 +TIMESTAMP = 1623520840 +SHA256 (KDE/release-service/21.04.2/killbots-21.04.2.tar.xz) = 67aca20244329aec8cccb1140e1a2d7eb4b27d6ec3c3eb3932157b8207aa32ff +SIZE (KDE/release-service/21.04.2/killbots-21.04.2.tar.xz) = 1186296 diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 6a6d10a7d088..89d16da852b6 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741464 -SHA256 (KDE/release-service/21.04.1/kiriki-21.04.1.tar.xz) = bab6903533fe6e61b0e1be0696b23dfc2fdded05f79870bed0e7130628553f54 -SIZE (KDE/release-service/21.04.1/kiriki-21.04.1.tar.xz) = 379260 +TIMESTAMP = 1623520841 +SHA256 (KDE/release-service/21.04.2/kiriki-21.04.2.tar.xz) = a5da0f0eb813f3990cbc23acf8fedaa9602fdafd756935021da731010d004982 +SIZE (KDE/release-service/21.04.2/kiriki-21.04.2.tar.xz) = 379668 diff --git a/games/kiriki/pkg-plist b/games/kiriki/pkg-plist index 86791c63cc34..771091cadee3 100644 --- a/games/kiriki/pkg-plist +++ b/games/kiriki/pkg-plist @@ -1,64 +1,66 @@ bin/kiriki share/applications/org.kde.kiriki.desktop share/icons/hicolor/128x128/apps/kiriki.png share/icons/hicolor/16x16/apps/kiriki.png share/icons/hicolor/22x22/apps/kiriki.png share/icons/hicolor/32x32/apps/kiriki.png share/icons/hicolor/48x48/apps/kiriki.png share/icons/hicolor/64x64/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png share/locale/ar/LC_MESSAGES/kiriki.mo +share/locale/be/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 42388755a164..5227a1dbf8ed 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741465 -SHA256 (KDE/release-service/21.04.1/kjumpingcube-21.04.1.tar.xz) = d674b9403b72b1fcdc27ba7ea522f0180978d7ee57ae711c657b0eb40409c4f6 -SIZE (KDE/release-service/21.04.1/kjumpingcube-21.04.1.tar.xz) = 290972 +TIMESTAMP = 1623520842 +SHA256 (KDE/release-service/21.04.2/kjumpingcube-21.04.2.tar.xz) = ba3df9d4f24c0e5458bff9a4e7f6a6cb6db9b65f89f15cd8980bd23bbb80b5a2 +SIZE (KDE/release-service/21.04.2/kjumpingcube-21.04.2.tar.xz) = 295448 diff --git a/games/kjumpingcube/pkg-plist b/games/kjumpingcube/pkg-plist index 14bb15f66813..5e3326813ad1 100644 --- a/games/kjumpingcube/pkg-plist +++ b/games/kjumpingcube/pkg-plist @@ -1,66 +1,72 @@ bin/kjumpingcube share/qlogging-categories5/kjumpingcube.categories share/applications/org.kde.kjumpingcube.desktop share/config.kcfg/kjumpingcube.kcfg share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/kjumpingcube.png %%DATADIR%%/pics/default.desktop %%DATADIR%%/pics/default.svg share/locale/ar/LC_MESSAGES/kjumpingcube.mo +share/locale/be/LC_MESSAGES/kjumpingcube.mo share/locale/bg/LC_MESSAGES/kjumpingcube.mo share/locale/bs/LC_MESSAGES/kjumpingcube.mo share/locale/ca/LC_MESSAGES/kjumpingcube.mo share/locale/ca@valencia/LC_MESSAGES/kjumpingcube.mo share/locale/cs/LC_MESSAGES/kjumpingcube.mo share/locale/da/LC_MESSAGES/kjumpingcube.mo share/locale/de/LC_MESSAGES/kjumpingcube.mo share/locale/el/LC_MESSAGES/kjumpingcube.mo share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo share/locale/eo/LC_MESSAGES/kjumpingcube.mo share/locale/es/LC_MESSAGES/kjumpingcube.mo share/locale/et/LC_MESSAGES/kjumpingcube.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo share/locale/fa/LC_MESSAGES/kjumpingcube.mo share/locale/fi/LC_MESSAGES/kjumpingcube.mo share/locale/fr/LC_MESSAGES/kjumpingcube.mo share/locale/ga/LC_MESSAGES/kjumpingcube.mo share/locale/gl/LC_MESSAGES/kjumpingcube.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo share/locale/hi/LC_MESSAGES/kjumpingcube.mo share/locale/hr/LC_MESSAGES/kjumpingcube.mo share/locale/hu/LC_MESSAGES/kjumpingcube.mo share/locale/id/LC_MESSAGES/kjumpingcube.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo share/locale/it/LC_MESSAGES/kjumpingcube.mo share/locale/ja/LC_MESSAGES/kjumpingcube.mo share/locale/kk/LC_MESSAGES/kjumpingcube.mo share/locale/km/LC_MESSAGES/kjumpingcube.mo share/locale/ko/LC_MESSAGES/kjumpingcube.mo share/locale/lt/LC_MESSAGES/kjumpingcube.mo share/locale/lv/LC_MESSAGES/kjumpingcube.mo share/locale/ml/LC_MESSAGES/kjumpingcube.mo share/locale/mr/LC_MESSAGES/kjumpingcube.mo share/locale/nb/LC_MESSAGES/kjumpingcube.mo share/locale/nds/LC_MESSAGES/kjumpingcube.mo share/locale/nl/LC_MESSAGES/kjumpingcube.mo share/locale/nn/LC_MESSAGES/kjumpingcube.mo share/locale/pa/LC_MESSAGES/kjumpingcube.mo share/locale/pl/LC_MESSAGES/kjumpingcube.mo share/locale/pt/LC_MESSAGES/kjumpingcube.mo share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo share/locale/ru/LC_MESSAGES/kjumpingcube.mo +share/locale/se/LC_MESSAGES/kjumpingcube.mo share/locale/sk/LC_MESSAGES/kjumpingcube.mo share/locale/sl/LC_MESSAGES/kjumpingcube.mo +share/locale/sq/LC_MESSAGES/kjumpingcube.mo share/locale/sr/LC_MESSAGES/kjumpingcube.mo share/locale/sv/LC_MESSAGES/kjumpingcube.mo +share/locale/ta/LC_MESSAGES/kjumpingcube.mo +share/locale/tg/LC_MESSAGES/kjumpingcube.mo share/locale/tr/LC_MESSAGES/kjumpingcube.mo share/locale/ug/LC_MESSAGES/kjumpingcube.mo share/locale/uk/LC_MESSAGES/kjumpingcube.mo +share/locale/vi/LC_MESSAGES/kjumpingcube.mo share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo share/metainfo/org.kde.kjumpingcube.appdata.xml diff --git a/games/klickety/distinfo b/games/klickety/distinfo index e54618aeba05..f0415ba60a05 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741465 -SHA256 (KDE/release-service/21.04.1/klickety-21.04.1.tar.xz) = 3885d097df21d60d5ff929974203a7a84fdc12b66e6f8131bc08ffee1479fcc0 -SIZE (KDE/release-service/21.04.1/klickety-21.04.1.tar.xz) = 1394160 +TIMESTAMP = 1623520844 +SHA256 (KDE/release-service/21.04.2/klickety-21.04.2.tar.xz) = 893dc15a2f599d9431faed8d6200fde826b36b7b16b246be34c7bc6b60e8c8e5 +SIZE (KDE/release-service/21.04.2/klickety-21.04.2.tar.xz) = 1394216 diff --git a/games/klines/distinfo b/games/klines/distinfo index 09987ba22425..5f7e98e9921e 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741466 -SHA256 (KDE/release-service/21.04.1/klines-21.04.1.tar.xz) = 980383269c3fe9b12b9c7b4ac7d69fdb8c159dad297fe7ee19b8dca41eb98122 -SIZE (KDE/release-service/21.04.1/klines-21.04.1.tar.xz) = 1789708 +TIMESTAMP = 1623520845 +SHA256 (KDE/release-service/21.04.2/klines-21.04.2.tar.xz) = 348befb8c4f085e6d4eae296f01f336ee5ee2f3aa7508bbe7a760e4250e823ca +SIZE (KDE/release-service/21.04.2/klines-21.04.2.tar.xz) = 1794380 diff --git a/games/klines/pkg-plist b/games/klines/pkg-plist index 608ee34ccfd1..106dd5d794d0 100644 --- a/games/klines/pkg-plist +++ b/games/klines/pkg-plist @@ -1,79 +1,84 @@ bin/klines share/applications/org.kde.klines.desktop share/config.kcfg/klines.kcfg share/icons/hicolor/128x128/apps/klines.png share/icons/hicolor/16x16/apps/klines.png share/icons/hicolor/22x22/apps/klines.png share/icons/hicolor/32x32/apps/klines.png share/icons/hicolor/48x48/apps/klines.png share/icons/hicolor/64x64/apps/klines.png %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.png %%DATADIR%%/themes/egyptian.desktop %%DATADIR%%/themes/egyptian.png %%DATADIR%%/themes/egyptian.svgz %%DATADIR%%/themes/klines-gems.desktop %%DATADIR%%/themes/klines-gems.png %%DATADIR%%/themes/klines-gems.svgz %%DATADIR%%/themes/klines_crystal.svgz %%DATADIR%%/themes/metal.desktop %%DATADIR%%/themes/metal.png %%DATADIR%%/themes/metal.svgz %%DATADIR%%/themes/pool.desktop %%DATADIR%%/themes/pool.png %%DATADIR%%/themes/pool.svgz share/locale/ar/LC_MESSAGES/klines.mo +share/locale/be/LC_MESSAGES/klines.mo share/locale/bg/LC_MESSAGES/klines.mo share/locale/bs/LC_MESSAGES/klines.mo share/locale/ca/LC_MESSAGES/klines.mo share/locale/ca@valencia/LC_MESSAGES/klines.mo share/locale/cs/LC_MESSAGES/klines.mo share/locale/da/LC_MESSAGES/klines.mo share/locale/de/LC_MESSAGES/klines.mo share/locale/el/LC_MESSAGES/klines.mo share/locale/en_GB/LC_MESSAGES/klines.mo share/locale/eo/LC_MESSAGES/klines.mo share/locale/es/LC_MESSAGES/klines.mo share/locale/et/LC_MESSAGES/klines.mo share/locale/eu/LC_MESSAGES/klines.mo share/locale/fa/LC_MESSAGES/klines.mo share/locale/fi/LC_MESSAGES/klines.mo share/locale/fr/LC_MESSAGES/klines.mo share/locale/ga/LC_MESSAGES/klines.mo share/locale/gl/LC_MESSAGES/klines.mo share/locale/he/LC_MESSAGES/klines.mo share/locale/hi/LC_MESSAGES/klines.mo share/locale/hr/LC_MESSAGES/klines.mo share/locale/hu/LC_MESSAGES/klines.mo share/locale/id/LC_MESSAGES/klines.mo share/locale/is/LC_MESSAGES/klines.mo share/locale/it/LC_MESSAGES/klines.mo share/locale/ja/LC_MESSAGES/klines.mo share/locale/kk/LC_MESSAGES/klines.mo share/locale/km/LC_MESSAGES/klines.mo share/locale/ko/LC_MESSAGES/klines.mo share/locale/lt/LC_MESSAGES/klines.mo share/locale/lv/LC_MESSAGES/klines.mo share/locale/ml/LC_MESSAGES/klines.mo share/locale/mr/LC_MESSAGES/klines.mo share/locale/nb/LC_MESSAGES/klines.mo share/locale/nds/LC_MESSAGES/klines.mo share/locale/nl/LC_MESSAGES/klines.mo share/locale/nn/LC_MESSAGES/klines.mo share/locale/pa/LC_MESSAGES/klines.mo share/locale/pl/LC_MESSAGES/klines.mo share/locale/pt/LC_MESSAGES/klines.mo share/locale/pt_BR/LC_MESSAGES/klines.mo share/locale/ro/LC_MESSAGES/klines.mo share/locale/ru/LC_MESSAGES/klines.mo +share/locale/se/LC_MESSAGES/klines.mo share/locale/sk/LC_MESSAGES/klines.mo share/locale/sl/LC_MESSAGES/klines.mo +share/locale/sq/LC_MESSAGES/klines.mo share/locale/sr/LC_MESSAGES/klines.mo share/locale/sv/LC_MESSAGES/klines.mo +share/locale/ta/LC_MESSAGES/klines.mo +share/locale/tg/LC_MESSAGES/klines.mo share/locale/tr/LC_MESSAGES/klines.mo share/locale/ug/LC_MESSAGES/klines.mo share/locale/uk/LC_MESSAGES/klines.mo share/locale/zh_CN/LC_MESSAGES/klines.mo share/locale/zh_TW/LC_MESSAGES/klines.mo share/metainfo/org.kde.klines.appdata.xml share/qlogging-categories5/klines.categories diff --git a/games/kmahjongg/distinfo b/games/kmahjongg/distinfo index ceb77e9aeeb8..1c23dcfe79c1 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741467 -SHA256 (KDE/release-service/21.04.1/kmahjongg-21.04.1.tar.xz) = 256f5eb32f95307b7a33dc36531b98097a8a2ee96ccc545a3dbeaaa399e7b524 -SIZE (KDE/release-service/21.04.1/kmahjongg-21.04.1.tar.xz) = 3433836 +TIMESTAMP = 1623520846 +SHA256 (KDE/release-service/21.04.2/kmahjongg-21.04.2.tar.xz) = 0760bde8cdd1600cacdc900c3da469bf109866f0d874b1cc8f86299ec7343017 +SIZE (KDE/release-service/21.04.2/kmahjongg-21.04.2.tar.xz) = 3440588 diff --git a/games/kmahjongg/pkg-plist b/games/kmahjongg/pkg-plist index 8a4a0a180a28..d2f9b9ae9148 100644 --- a/games/kmahjongg/pkg-plist +++ b/games/kmahjongg/pkg-plist @@ -1,210 +1,215 @@ bin/kmahjongg share/qlogging-categories5/kmahjongg.categories share/applications/org.kde.kmahjongg.desktop share/config.kcfg/kmahjongg.kcfg share/icons/hicolor/128x128/apps/kmahjongg.png share/icons/hicolor/16x16/apps/kmahjongg.png share/icons/hicolor/22x22/apps/kmahjongg.png share/icons/hicolor/32x32/apps/kmahjongg.png share/icons/hicolor/48x48/apps/kmahjongg.png share/icons/hicolor/64x64/apps/kmahjongg.png share/icons/hicolor/scalable/apps/kmahjongg.svgz %%DATADIR%%/layouts/4_winds.desktop %%DATADIR%%/layouts/4_winds.layout %%DATADIR%%/layouts/Vi.desktop %%DATADIR%%/layouts/Vi.layout %%DATADIR%%/layouts/X_shaped.desktop %%DATADIR%%/layouts/X_shaped.layout %%DATADIR%%/layouts/alien.desktop %%DATADIR%%/layouts/alien.layout %%DATADIR%%/layouts/altar.desktop %%DATADIR%%/layouts/altar.layout %%DATADIR%%/layouts/arena.desktop %%DATADIR%%/layouts/arena.layout %%DATADIR%%/layouts/arrow.desktop %%DATADIR%%/layouts/arrow.layout %%DATADIR%%/layouts/atlantis.desktop %%DATADIR%%/layouts/atlantis.layout %%DATADIR%%/layouts/aztec.desktop %%DATADIR%%/layouts/aztec.layout %%DATADIR%%/layouts/balance.desktop %%DATADIR%%/layouts/balance.layout %%DATADIR%%/layouts/bat.desktop %%DATADIR%%/layouts/bat.layout %%DATADIR%%/layouts/bug.desktop %%DATADIR%%/layouts/bug.layout %%DATADIR%%/layouts/castle.desktop %%DATADIR%%/layouts/castle.layout %%DATADIR%%/layouts/castle2.desktop %%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/cat.desktop %%DATADIR%%/layouts/cat.layout %%DATADIR%%/layouts/chains.desktop %%DATADIR%%/layouts/chains.layout %%DATADIR%%/layouts/checkered.desktop %%DATADIR%%/layouts/checkered.layout %%DATADIR%%/layouts/chip.desktop %%DATADIR%%/layouts/chip.layout %%DATADIR%%/layouts/clubs.desktop %%DATADIR%%/layouts/clubs.layout %%DATADIR%%/layouts/columns.desktop %%DATADIR%%/layouts/columns.layout %%DATADIR%%/layouts/crab.desktop %%DATADIR%%/layouts/crab.layout %%DATADIR%%/layouts/cross.desktop %%DATADIR%%/layouts/cross.layout %%DATADIR%%/layouts/default.desktop %%DATADIR%%/layouts/default.layout %%DATADIR%%/layouts/dragon.desktop %%DATADIR%%/layouts/dragon.layout %%DATADIR%%/layouts/eagle.desktop %%DATADIR%%/layouts/eagle.layout %%DATADIR%%/layouts/enterprise.desktop %%DATADIR%%/layouts/enterprise.layout %%DATADIR%%/layouts/explosion.desktop %%DATADIR%%/layouts/explosion.layout %%DATADIR%%/layouts/flowers.desktop %%DATADIR%%/layouts/flowers.layout %%DATADIR%%/layouts/future.desktop %%DATADIR%%/layouts/future.layout %%DATADIR%%/layouts/galaxy.desktop %%DATADIR%%/layouts/galaxy.layout %%DATADIR%%/layouts/garden.desktop %%DATADIR%%/layouts/garden.layout %%DATADIR%%/layouts/girl.desktop %%DATADIR%%/layouts/girl.layout %%DATADIR%%/layouts/glade.desktop %%DATADIR%%/layouts/glade.layout %%DATADIR%%/layouts/grid.desktop %%DATADIR%%/layouts/grid.layout %%DATADIR%%/layouts/helios.desktop %%DATADIR%%/layouts/helios.layout %%DATADIR%%/layouts/hole.desktop %%DATADIR%%/layouts/hole.layout %%DATADIR%%/layouts/inner_circle.desktop %%DATADIR%%/layouts/inner_circle.layout %%DATADIR%%/layouts/key.desktop %%DATADIR%%/layouts/key.layout %%DATADIR%%/layouts/km.desktop %%DATADIR%%/layouts/km.layout %%DATADIR%%/layouts/labyrinth.desktop %%DATADIR%%/layouts/labyrinth.layout %%DATADIR%%/layouts/mask.desktop %%DATADIR%%/layouts/mask.layout %%DATADIR%%/layouts/maya.desktop %%DATADIR%%/layouts/maya.layout %%DATADIR%%/layouts/maze.desktop %%DATADIR%%/layouts/maze.layout %%DATADIR%%/layouts/mesh.desktop %%DATADIR%%/layouts/mesh.layout %%DATADIR%%/layouts/moth.desktop %%DATADIR%%/layouts/moth.layout %%DATADIR%%/layouts/order.desktop %%DATADIR%%/layouts/order.layout %%DATADIR%%/layouts/pattern.desktop %%DATADIR%%/layouts/pattern.layout %%DATADIR%%/layouts/penta.desktop %%DATADIR%%/layouts/penta.layout %%DATADIR%%/layouts/pillars.desktop %%DATADIR%%/layouts/pillars.layout %%DATADIR%%/layouts/pirates.desktop %%DATADIR%%/layouts/pirates.layout %%DATADIR%%/layouts/pyramid.desktop %%DATADIR%%/layouts/pyramid.layout %%DATADIR%%/layouts/rocket.desktop %%DATADIR%%/layouts/rocket.layout %%DATADIR%%/layouts/shield.desktop %%DATADIR%%/layouts/shield.layout %%DATADIR%%/layouts/spider.desktop %%DATADIR%%/layouts/spider.layout %%DATADIR%%/layouts/squares.desktop %%DATADIR%%/layouts/squares.layout %%DATADIR%%/layouts/squaring.desktop %%DATADIR%%/layouts/squaring.layout %%DATADIR%%/layouts/stadion.desktop %%DATADIR%%/layouts/stadion.layout %%DATADIR%%/layouts/stairs.desktop %%DATADIR%%/layouts/stairs.layout %%DATADIR%%/layouts/star.desktop %%DATADIR%%/layouts/star.layout %%DATADIR%%/layouts/star_ship.desktop %%DATADIR%%/layouts/star_ship.layout %%DATADIR%%/layouts/stax.desktop %%DATADIR%%/layouts/stax.layout %%DATADIR%%/layouts/swirl.desktop %%DATADIR%%/layouts/swirl.layout %%DATADIR%%/layouts/temple.desktop %%DATADIR%%/layouts/temple.layout %%DATADIR%%/layouts/the_door.desktop %%DATADIR%%/layouts/the_door.layout %%DATADIR%%/layouts/theatre.desktop %%DATADIR%%/layouts/theatre.layout %%DATADIR%%/layouts/time_tunnel.desktop %%DATADIR%%/layouts/time_tunnel.layout %%DATADIR%%/layouts/tomb.desktop %%DATADIR%%/layouts/tomb.layout %%DATADIR%%/layouts/totem.desktop %%DATADIR%%/layouts/totem.layout %%DATADIR%%/layouts/tower.desktop %%DATADIR%%/layouts/tower.layout %%DATADIR%%/layouts/triangle.desktop %%DATADIR%%/layouts/triangle.layout %%DATADIR%%/layouts/up&down.desktop %%DATADIR%%/layouts/up&down.layout %%DATADIR%%/layouts/well.desktop %%DATADIR%%/layouts/well.layout share/locale/ar/LC_MESSAGES/kmahjongg.mo +share/locale/be/LC_MESSAGES/kmahjongg.mo share/locale/bg/LC_MESSAGES/kmahjongg.mo share/locale/bs/LC_MESSAGES/kmahjongg.mo share/locale/ca/LC_MESSAGES/kmahjongg.mo share/locale/ca@valencia/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmahjongg.mo share/locale/da/LC_MESSAGES/kmahjongg.mo share/locale/de/LC_MESSAGES/kmahjongg.mo share/locale/el/LC_MESSAGES/kmahjongg.mo share/locale/en_GB/LC_MESSAGES/kmahjongg.mo share/locale/eo/LC_MESSAGES/kmahjongg.mo share/locale/es/LC_MESSAGES/kmahjongg.mo share/locale/et/LC_MESSAGES/kmahjongg.mo share/locale/eu/LC_MESSAGES/kmahjongg.mo share/locale/fa/LC_MESSAGES/kmahjongg.mo share/locale/fi/LC_MESSAGES/kmahjongg.mo share/locale/fr/LC_MESSAGES/kmahjongg.mo share/locale/ga/LC_MESSAGES/kmahjongg.mo share/locale/gl/LC_MESSAGES/kmahjongg.mo share/locale/he/LC_MESSAGES/kmahjongg.mo share/locale/hi/LC_MESSAGES/kmahjongg.mo share/locale/hr/LC_MESSAGES/kmahjongg.mo share/locale/hu/LC_MESSAGES/kmahjongg.mo share/locale/id/LC_MESSAGES/kmahjongg.mo share/locale/is/LC_MESSAGES/kmahjongg.mo share/locale/it/LC_MESSAGES/kmahjongg.mo share/locale/ja/LC_MESSAGES/kmahjongg.mo share/locale/kk/LC_MESSAGES/kmahjongg.mo share/locale/km/LC_MESSAGES/kmahjongg.mo share/locale/ko/LC_MESSAGES/kmahjongg.mo share/locale/lt/LC_MESSAGES/kmahjongg.mo share/locale/lv/LC_MESSAGES/kmahjongg.mo share/locale/ml/LC_MESSAGES/kmahjongg.mo share/locale/mr/LC_MESSAGES/kmahjongg.mo share/locale/nb/LC_MESSAGES/kmahjongg.mo share/locale/nds/LC_MESSAGES/kmahjongg.mo share/locale/nl/LC_MESSAGES/kmahjongg.mo share/locale/nn/LC_MESSAGES/kmahjongg.mo share/locale/pa/LC_MESSAGES/kmahjongg.mo share/locale/pl/LC_MESSAGES/kmahjongg.mo share/locale/pt/LC_MESSAGES/kmahjongg.mo share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmahjongg.mo +share/locale/se/LC_MESSAGES/kmahjongg.mo share/locale/sk/LC_MESSAGES/kmahjongg.mo share/locale/sl/LC_MESSAGES/kmahjongg.mo +share/locale/sq/LC_MESSAGES/kmahjongg.mo share/locale/sr/LC_MESSAGES/kmahjongg.mo share/locale/sv/LC_MESSAGES/kmahjongg.mo +share/locale/ta/LC_MESSAGES/kmahjongg.mo +share/locale/tg/LC_MESSAGES/kmahjongg.mo share/locale/tr/LC_MESSAGES/kmahjongg.mo share/locale/ug/LC_MESSAGES/kmahjongg.mo share/locale/uk/LC_MESSAGES/kmahjongg.mo share/locale/wa/LC_MESSAGES/kmahjongg.mo share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo share/metainfo/org.kde.kmahjongg.appdata.xml diff --git a/games/kmines/distinfo b/games/kmines/distinfo index ab85efa29bec..986e8c060be7 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741468 -SHA256 (KDE/release-service/21.04.1/kmines-21.04.1.tar.xz) = d04c643c69d83b3c36256a5562ed3e6c55435fe1f4a513cefc77882be6dfdc37 -SIZE (KDE/release-service/21.04.1/kmines-21.04.1.tar.xz) = 959172 +TIMESTAMP = 1623520848 +SHA256 (KDE/release-service/21.04.2/kmines-21.04.2.tar.xz) = ecee52f6c8e623ce4f90701e77c230cc4bce8416455ac6f4470bee9e63264462 +SIZE (KDE/release-service/21.04.2/kmines-21.04.2.tar.xz) = 965432 diff --git a/games/kmines/pkg-plist b/games/kmines/pkg-plist index 9621870ccc75..50ea02c55541 100644 --- a/games/kmines/pkg-plist +++ b/games/kmines/pkg-plist @@ -1,76 +1,81 @@ bin/kmines share/applications/org.kde.kmines.desktop share/icons/hicolor/128x128/apps/kmines.png share/icons/hicolor/16x16/apps/kmines.png share/icons/hicolor/22x22/apps/kmines.png share/icons/hicolor/32x32/apps/kmines.png share/icons/hicolor/48x48/apps/kmines.png share/icons/hicolor/64x64/apps/kmines.png %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/graveyard-mayhem-preview.png %%DATADIR%%/themes/graveyard-mayhem.desktop %%DATADIR%%/themes/graveyard-mayhem.svgz %%DATADIR%%/themes/green.desktop %%DATADIR%%/themes/green.png %%DATADIR%%/themes/kmines_classic.svgz %%DATADIR%%/themes/kmines_green.svgz %%DATADIR%%/themes/kmines_oxygen.svgz share/locale/ar/LC_MESSAGES/kmines.mo +share/locale/be/LC_MESSAGES/kmines.mo share/locale/bg/LC_MESSAGES/kmines.mo share/locale/bs/LC_MESSAGES/kmines.mo share/locale/ca/LC_MESSAGES/kmines.mo share/locale/ca@valencia/LC_MESSAGES/kmines.mo share/locale/cs/LC_MESSAGES/kmines.mo share/locale/da/LC_MESSAGES/kmines.mo share/locale/de/LC_MESSAGES/kmines.mo share/locale/el/LC_MESSAGES/kmines.mo share/locale/en_GB/LC_MESSAGES/kmines.mo share/locale/eo/LC_MESSAGES/kmines.mo share/locale/es/LC_MESSAGES/kmines.mo share/locale/et/LC_MESSAGES/kmines.mo share/locale/eu/LC_MESSAGES/kmines.mo share/locale/fa/LC_MESSAGES/kmines.mo share/locale/fi/LC_MESSAGES/kmines.mo share/locale/fr/LC_MESSAGES/kmines.mo share/locale/ga/LC_MESSAGES/kmines.mo share/locale/gl/LC_MESSAGES/kmines.mo share/locale/he/LC_MESSAGES/kmines.mo share/locale/hi/LC_MESSAGES/kmines.mo share/locale/hr/LC_MESSAGES/kmines.mo share/locale/hu/LC_MESSAGES/kmines.mo share/locale/id/LC_MESSAGES/kmines.mo share/locale/is/LC_MESSAGES/kmines.mo share/locale/it/LC_MESSAGES/kmines.mo share/locale/ja/LC_MESSAGES/kmines.mo share/locale/kk/LC_MESSAGES/kmines.mo share/locale/km/LC_MESSAGES/kmines.mo share/locale/ko/LC_MESSAGES/kmines.mo share/locale/lt/LC_MESSAGES/kmines.mo share/locale/lv/LC_MESSAGES/kmines.mo share/locale/ml/LC_MESSAGES/kmines.mo share/locale/mr/LC_MESSAGES/kmines.mo share/locale/nb/LC_MESSAGES/kmines.mo share/locale/nds/LC_MESSAGES/kmines.mo share/locale/nl/LC_MESSAGES/kmines.mo share/locale/nn/LC_MESSAGES/kmines.mo share/locale/pa/LC_MESSAGES/kmines.mo share/locale/pl/LC_MESSAGES/kmines.mo share/locale/pt/LC_MESSAGES/kmines.mo share/locale/pt_BR/LC_MESSAGES/kmines.mo share/locale/ro/LC_MESSAGES/kmines.mo share/locale/ru/LC_MESSAGES/kmines.mo +share/locale/se/LC_MESSAGES/kmines.mo share/locale/sk/LC_MESSAGES/kmines.mo share/locale/sl/LC_MESSAGES/kmines.mo +share/locale/sq/LC_MESSAGES/kmines.mo share/locale/sr/LC_MESSAGES/kmines.mo share/locale/sv/LC_MESSAGES/kmines.mo +share/locale/ta/LC_MESSAGES/kmines.mo +share/locale/tg/LC_MESSAGES/kmines.mo share/locale/tr/LC_MESSAGES/kmines.mo share/locale/ug/LC_MESSAGES/kmines.mo share/locale/uk/LC_MESSAGES/kmines.mo share/locale/wa/LC_MESSAGES/kmines.mo share/locale/zh_CN/LC_MESSAGES/kmines.mo share/locale/zh_TW/LC_MESSAGES/kmines.mo share/metainfo/org.kde.kmines.appdata.xml share/qlogging-categories5/kmines.categories diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index e130da15b55f..b156d9858ab3 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741468 -SHA256 (KDE/release-service/21.04.1/knavalbattle-21.04.1.tar.xz) = 3e1fa36e74268493dedec7bc29138d569c54d239431c1597ed4cf2ff163a2876 -SIZE (KDE/release-service/21.04.1/knavalbattle-21.04.1.tar.xz) = 1366680 +TIMESTAMP = 1623520849 +SHA256 (KDE/release-service/21.04.2/knavalbattle-21.04.2.tar.xz) = e52f734b86d2a587ce746776e1837e0a5dabacfe1afb1539d72482ce02721ece +SIZE (KDE/release-service/21.04.2/knavalbattle-21.04.2.tar.xz) = 1376040 diff --git a/games/knavalbattle/pkg-plist b/games/knavalbattle/pkg-plist index e632fb3e8f16..fb2d88e742a0 100644 --- a/games/knavalbattle/pkg-plist +++ b/games/knavalbattle/pkg-plist @@ -1,72 +1,78 @@ bin/knavalbattle share/applications/org.kde.knavalbattle.desktop share/icons/hicolor/128x128/apps/knavalbattle.png share/icons/hicolor/16x16/apps/knavalbattle.png share/icons/hicolor/22x22/apps/knavalbattle.png share/icons/hicolor/32x32/apps/knavalbattle.png share/icons/hicolor/48x48/apps/knavalbattle.png share/icons/hicolor/64x64/apps/knavalbattle.png share/kconf_update/knavalbattle.upd %%DATADIR%%/pictures/default.desktop %%DATADIR%%/pictures/default_theme.svgz %%DATADIR%%/sounds/ship-player-shoot-water.ogg %%DATADIR%%/sounds/ship-player1-shoot.ogg %%DATADIR%%/sounds/ship-player2-shoot.ogg %%DATADIR%%/sounds/ship-sink.ogg share/kservices5/knavalbattle.protocol share/kxmlgui5/knavalbattle/knavalbattleui.rc share/locale/ar/LC_MESSAGES/knavalbattle.mo +share/locale/be/LC_MESSAGES/knavalbattle.mo share/locale/bg/LC_MESSAGES/knavalbattle.mo share/locale/bs/LC_MESSAGES/knavalbattle.mo share/locale/ca/LC_MESSAGES/knavalbattle.mo share/locale/ca@valencia/LC_MESSAGES/knavalbattle.mo share/locale/cs/LC_MESSAGES/knavalbattle.mo share/locale/da/LC_MESSAGES/knavalbattle.mo share/locale/de/LC_MESSAGES/knavalbattle.mo share/locale/el/LC_MESSAGES/knavalbattle.mo share/locale/en_GB/LC_MESSAGES/knavalbattle.mo share/locale/eo/LC_MESSAGES/knavalbattle.mo share/locale/es/LC_MESSAGES/knavalbattle.mo share/locale/et/LC_MESSAGES/knavalbattle.mo share/locale/eu/LC_MESSAGES/knavalbattle.mo share/locale/fa/LC_MESSAGES/knavalbattle.mo share/locale/fi/LC_MESSAGES/knavalbattle.mo share/locale/fr/LC_MESSAGES/knavalbattle.mo share/locale/ga/LC_MESSAGES/knavalbattle.mo share/locale/gl/LC_MESSAGES/knavalbattle.mo share/locale/he/LC_MESSAGES/knavalbattle.mo share/locale/hi/LC_MESSAGES/knavalbattle.mo share/locale/hr/LC_MESSAGES/knavalbattle.mo share/locale/hu/LC_MESSAGES/knavalbattle.mo share/locale/id/LC_MESSAGES/knavalbattle.mo share/locale/is/LC_MESSAGES/knavalbattle.mo share/locale/it/LC_MESSAGES/knavalbattle.mo share/locale/ja/LC_MESSAGES/knavalbattle.mo share/locale/kk/LC_MESSAGES/knavalbattle.mo share/locale/km/LC_MESSAGES/knavalbattle.mo share/locale/ko/LC_MESSAGES/knavalbattle.mo share/locale/lt/LC_MESSAGES/knavalbattle.mo share/locale/lv/LC_MESSAGES/knavalbattle.mo share/locale/ml/LC_MESSAGES/knavalbattle.mo share/locale/mr/LC_MESSAGES/knavalbattle.mo share/locale/nb/LC_MESSAGES/knavalbattle.mo share/locale/nds/LC_MESSAGES/knavalbattle.mo share/locale/nl/LC_MESSAGES/knavalbattle.mo share/locale/nn/LC_MESSAGES/knavalbattle.mo share/locale/pa/LC_MESSAGES/knavalbattle.mo share/locale/pl/LC_MESSAGES/knavalbattle.mo share/locale/pt/LC_MESSAGES/knavalbattle.mo share/locale/pt_BR/LC_MESSAGES/knavalbattle.mo share/locale/ro/LC_MESSAGES/knavalbattle.mo share/locale/ru/LC_MESSAGES/knavalbattle.mo +share/locale/se/LC_MESSAGES/knavalbattle.mo share/locale/sk/LC_MESSAGES/knavalbattle.mo share/locale/sl/LC_MESSAGES/knavalbattle.mo +share/locale/sq/LC_MESSAGES/knavalbattle.mo share/locale/sr/LC_MESSAGES/knavalbattle.mo share/locale/sv/LC_MESSAGES/knavalbattle.mo +share/locale/ta/LC_MESSAGES/knavalbattle.mo +share/locale/tg/LC_MESSAGES/knavalbattle.mo share/locale/tr/LC_MESSAGES/knavalbattle.mo share/locale/ug/LC_MESSAGES/knavalbattle.mo share/locale/uk/LC_MESSAGES/knavalbattle.mo +share/locale/vi/LC_MESSAGES/knavalbattle.mo share/locale/zh_CN/LC_MESSAGES/knavalbattle.mo share/locale/zh_TW/LC_MESSAGES/knavalbattle.mo share/metainfo/org.kde.knavalbattle.appdata.xml share/qlogging-categories5/knavalbattle.categories diff --git a/games/knetwalk/distinfo b/games/knetwalk/distinfo index bb290ee13a04..13efd887fb8c 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741469 -SHA256 (KDE/release-service/21.04.1/knetwalk-21.04.1.tar.xz) = 86b303796bb43c72f99f1fff587ac6b3e1bc50e795f1026a8a8abd0ba16a300a -SIZE (KDE/release-service/21.04.1/knetwalk-21.04.1.tar.xz) = 1269576 +TIMESTAMP = 1623520851 +SHA256 (KDE/release-service/21.04.2/knetwalk-21.04.2.tar.xz) = dc8acf881985a6d7afdbaed45773400477714f510717b1b03c4f735df0c3df35 +SIZE (KDE/release-service/21.04.2/knetwalk-21.04.2.tar.xz) = 1270888 diff --git a/games/knetwalk/pkg-plist b/games/knetwalk/pkg-plist index 3847c49549ff..bae1255d3b0e 100644 --- a/games/knetwalk/pkg-plist +++ b/games/knetwalk/pkg-plist @@ -1,78 +1,81 @@ bin/knetwalk share/applications/org.kde.knetwalk.desktop share/icons/hicolor/128x128/apps/knetwalk.png share/icons/hicolor/16x16/apps/knetwalk.png share/icons/hicolor/22x22/apps/knetwalk.png share/icons/hicolor/32x32/apps/knetwalk.png share/icons/hicolor/48x48/apps/knetwalk.png share/icons/hicolor/64x64/apps/knetwalk.png %%DATADIR%%/qml/Cable.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/sounds/click.wav %%DATADIR%%/sounds/connect.wav %%DATADIR%%/sounds/start.wav %%DATADIR%%/sounds/turn.wav %%DATADIR%%/sounds/win.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/electronic.desktop %%DATADIR%%/themes/electronic.svgz %%DATADIR%%/themes/electronic_preview.png share/locale/ar/LC_MESSAGES/knetwalk.mo +share/locale/be/LC_MESSAGES/knetwalk.mo share/locale/bg/LC_MESSAGES/knetwalk.mo share/locale/bs/LC_MESSAGES/knetwalk.mo share/locale/ca/LC_MESSAGES/knetwalk.mo share/locale/ca@valencia/LC_MESSAGES/knetwalk.mo share/locale/cs/LC_MESSAGES/knetwalk.mo share/locale/da/LC_MESSAGES/knetwalk.mo share/locale/de/LC_MESSAGES/knetwalk.mo share/locale/el/LC_MESSAGES/knetwalk.mo share/locale/en_GB/LC_MESSAGES/knetwalk.mo share/locale/eo/LC_MESSAGES/knetwalk.mo share/locale/es/LC_MESSAGES/knetwalk.mo share/locale/et/LC_MESSAGES/knetwalk.mo share/locale/eu/LC_MESSAGES/knetwalk.mo share/locale/fa/LC_MESSAGES/knetwalk.mo share/locale/fi/LC_MESSAGES/knetwalk.mo share/locale/fr/LC_MESSAGES/knetwalk.mo share/locale/ga/LC_MESSAGES/knetwalk.mo share/locale/gl/LC_MESSAGES/knetwalk.mo share/locale/he/LC_MESSAGES/knetwalk.mo share/locale/hi/LC_MESSAGES/knetwalk.mo share/locale/hr/LC_MESSAGES/knetwalk.mo share/locale/hu/LC_MESSAGES/knetwalk.mo share/locale/id/LC_MESSAGES/knetwalk.mo share/locale/is/LC_MESSAGES/knetwalk.mo share/locale/it/LC_MESSAGES/knetwalk.mo share/locale/ja/LC_MESSAGES/knetwalk.mo share/locale/kk/LC_MESSAGES/knetwalk.mo share/locale/km/LC_MESSAGES/knetwalk.mo share/locale/ko/LC_MESSAGES/knetwalk.mo share/locale/lt/LC_MESSAGES/knetwalk.mo share/locale/lv/LC_MESSAGES/knetwalk.mo share/locale/ml/LC_MESSAGES/knetwalk.mo share/locale/mr/LC_MESSAGES/knetwalk.mo share/locale/nb/LC_MESSAGES/knetwalk.mo share/locale/nds/LC_MESSAGES/knetwalk.mo share/locale/nl/LC_MESSAGES/knetwalk.mo share/locale/nn/LC_MESSAGES/knetwalk.mo share/locale/pa/LC_MESSAGES/knetwalk.mo share/locale/pl/LC_MESSAGES/knetwalk.mo share/locale/pt/LC_MESSAGES/knetwalk.mo share/locale/pt_BR/LC_MESSAGES/knetwalk.mo share/locale/ro/LC_MESSAGES/knetwalk.mo share/locale/ru/LC_MESSAGES/knetwalk.mo +share/locale/se/LC_MESSAGES/knetwalk.mo share/locale/sk/LC_MESSAGES/knetwalk.mo share/locale/sl/LC_MESSAGES/knetwalk.mo +share/locale/sq/LC_MESSAGES/knetwalk.mo share/locale/sr/LC_MESSAGES/knetwalk.mo share/locale/sv/LC_MESSAGES/knetwalk.mo share/locale/tr/LC_MESSAGES/knetwalk.mo share/locale/ug/LC_MESSAGES/knetwalk.mo share/locale/uk/LC_MESSAGES/knetwalk.mo share/locale/zh_CN/LC_MESSAGES/knetwalk.mo share/locale/zh_TW/LC_MESSAGES/knetwalk.mo share/metainfo/org.kde.knetwalk.appdata.xml diff --git a/games/knights/distinfo b/games/knights/distinfo index 0c514f2dcaaf..7a896ea9ddb0 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741470 -SHA256 (KDE/release-service/21.04.1/knights-21.04.1.tar.xz) = 6da7ea050062bab63a6fbbbc32037f03bb39c30bd40bc0ac651f83fad11553c0 -SIZE (KDE/release-service/21.04.1/knights-21.04.1.tar.xz) = 3536332 +TIMESTAMP = 1623520852 +SHA256 (KDE/release-service/21.04.2/knights-21.04.2.tar.xz) = b259b32fb0fb8941691df0943237c2fa9574ef5ca871c48322edd0d1974fa633 +SIZE (KDE/release-service/21.04.2/knights-21.04.2.tar.xz) = 3536428 diff --git a/games/kolf/distinfo b/games/kolf/distinfo index eb3e78d00e02..2e19c4c321a2 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741470 -SHA256 (KDE/release-service/21.04.1/kolf-21.04.1.tar.xz) = a99ab8c024fb501d6dfe4c1b40058f60a1b0d5ab2dc1f1ef2ef9b9284b27c669 -SIZE (KDE/release-service/21.04.1/kolf-21.04.1.tar.xz) = 1032628 +TIMESTAMP = 1623520853 +SHA256 (KDE/release-service/21.04.2/kolf-21.04.2.tar.xz) = 3cbb47512f24d6ac163b26d5c09a9bf82c302c38807f8b148269e03b52535800 +SIZE (KDE/release-service/21.04.2/kolf-21.04.2.tar.xz) = 1041208 diff --git a/games/kolf/pkg-plist b/games/kolf/pkg-plist index 0ef8c5b939a4..1bfd2c64a72d 100644 --- a/games/kolf/pkg-plist +++ b/games/kolf/pkg-plist @@ -1,85 +1,90 @@ bin/kolf share/applications/org.kde.kolf.desktop share/icons/hicolor/128x128/apps/kolf.png share/icons/hicolor/16x16/apps/kolf.png share/icons/hicolor/22x22/apps/kolf.png share/icons/hicolor/32x32/apps/kolf.png share/icons/hicolor/48x48/apps/kolf.png share/icons/hicolor/64x64/apps/kolf.png share/icons/hicolor/scalable/apps/kolf.svgz %%DATADIR%%/courses/Classic.kolf %%DATADIR%%/courses/Easy.kolf %%DATADIR%%/courses/Hard.kolf %%DATADIR%%/courses/Impossible %%DATADIR%%/courses/Medium.kolf %%DATADIR%%/courses/Practice %%DATADIR%%/courses/ReallyEasy %%DATADIR%%/courses/USApro %%DATADIR%%/intro %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/sounds/blackhole.wav %%DATADIR%%/sounds/blackholeeject.wav %%DATADIR%%/sounds/blackholeputin.wav %%DATADIR%%/sounds/bumper.wav %%DATADIR%%/sounds/hit.wav %%DATADIR%%/sounds/holed.wav %%DATADIR%%/sounds/holeinone.wav %%DATADIR%%/sounds/puddle.wav %%DATADIR%%/sounds/wall.wav %%DATADIR%%/sounds/woohoo.wav %%DATADIR%%/tutorial.kolf %%DATADIR%%/tutorial.kolfgame share/kxmlgui5/kolf/kolfui.rc share/locale/ar/LC_MESSAGES/kolf.mo +share/locale/be/LC_MESSAGES/kolf.mo share/locale/bg/LC_MESSAGES/kolf.mo share/locale/bs/LC_MESSAGES/kolf.mo share/locale/ca/LC_MESSAGES/kolf.mo share/locale/ca@valencia/LC_MESSAGES/kolf.mo share/locale/cs/LC_MESSAGES/kolf.mo share/locale/da/LC_MESSAGES/kolf.mo share/locale/de/LC_MESSAGES/kolf.mo share/locale/el/LC_MESSAGES/kolf.mo share/locale/en_GB/LC_MESSAGES/kolf.mo share/locale/eo/LC_MESSAGES/kolf.mo share/locale/es/LC_MESSAGES/kolf.mo share/locale/et/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/fa/LC_MESSAGES/kolf.mo share/locale/fi/LC_MESSAGES/kolf.mo share/locale/fr/LC_MESSAGES/kolf.mo share/locale/ga/LC_MESSAGES/kolf.mo share/locale/gl/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/hi/LC_MESSAGES/kolf.mo share/locale/hr/LC_MESSAGES/kolf.mo share/locale/hu/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/it/LC_MESSAGES/kolf.mo share/locale/ja/LC_MESSAGES/kolf.mo share/locale/kk/LC_MESSAGES/kolf.mo share/locale/km/LC_MESSAGES/kolf.mo share/locale/ko/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lv/LC_MESSAGES/kolf.mo share/locale/ml/LC_MESSAGES/kolf.mo share/locale/mr/LC_MESSAGES/kolf.mo share/locale/nb/LC_MESSAGES/kolf.mo share/locale/nds/LC_MESSAGES/kolf.mo share/locale/nl/LC_MESSAGES/kolf.mo share/locale/nn/LC_MESSAGES/kolf.mo share/locale/pa/LC_MESSAGES/kolf.mo share/locale/pl/LC_MESSAGES/kolf.mo share/locale/pt/LC_MESSAGES/kolf.mo share/locale/pt_BR/LC_MESSAGES/kolf.mo share/locale/ro/LC_MESSAGES/kolf.mo share/locale/ru/LC_MESSAGES/kolf.mo +share/locale/se/LC_MESSAGES/kolf.mo share/locale/sk/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kolf.mo +share/locale/sq/LC_MESSAGES/kolf.mo share/locale/sr/LC_MESSAGES/kolf.mo share/locale/sv/LC_MESSAGES/kolf.mo +share/locale/ta/LC_MESSAGES/kolf.mo +share/locale/tg/LC_MESSAGES/kolf.mo share/locale/tr/LC_MESSAGES/kolf.mo share/locale/ug/LC_MESSAGES/kolf.mo share/locale/uk/LC_MESSAGES/kolf.mo share/locale/zh_CN/LC_MESSAGES/kolf.mo share/locale/zh_TW/LC_MESSAGES/kolf.mo share/metainfo/org.kde.kolf.appdata.xml diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 7c2496c0afa6..b83aae27d328 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741471 -SHA256 (KDE/release-service/21.04.1/kollision-21.04.1.tar.xz) = deb1e753af5cab581347cdd6664110b2415695de1eac24b35e55305582c630f8 -SIZE (KDE/release-service/21.04.1/kollision-21.04.1.tar.xz) = 290404 +TIMESTAMP = 1623520855 +SHA256 (KDE/release-service/21.04.2/kollision-21.04.2.tar.xz) = 5063b8798cb9aca62501ee7863e4e8c3b7aecb1fe0e3a0af6e238f52092ac335 +SIZE (KDE/release-service/21.04.2/kollision-21.04.2.tar.xz) = 290652 diff --git a/games/kollision/pkg-plist b/games/kollision/pkg-plist index cd1efb083146..3e5ae54a7373 100644 --- a/games/kollision/pkg-plist +++ b/games/kollision/pkg-plist @@ -1,67 +1,68 @@ bin/kollision share/applications/org.kde.kollision.desktop share/icons/hicolor/128x128/apps/kollision.png share/icons/hicolor/16x16/apps/kollision.png share/icons/hicolor/22x22/apps/kollision.png share/icons/hicolor/32x32/apps/kollision.png share/icons/hicolor/48x48/apps/kollision.png share/icons/hicolor/64x64/apps/kollision.png share/icons/oxygen/128x128/apps/kollision.png share/icons/oxygen/16x16/apps/kollision.png share/icons/oxygen/22x22/apps/kollision.png share/icons/oxygen/32x32/apps/kollision.png share/icons/oxygen/48x48/apps/kollision.png share/icons/oxygen/64x64/apps/kollision.png %%DATADIR%%/pictures/theme.svgz %%DATADIR%%/sounds/ball_leaving.ogg %%DATADIR%%/sounds/hit_wall.ogg %%DATADIR%%/sounds/start.ogg %%DATADIR%%/sounds/you_lose.ogg 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 de5073e64e5e..37e720e82d17 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741472 -SHA256 (KDE/release-service/21.04.1/konquest-21.04.1.tar.xz) = cfacc293ef394aa0c37eb8fc610482b3b93491069e243803f154e3201a6b2e04 -SIZE (KDE/release-service/21.04.1/konquest-21.04.1.tar.xz) = 665712 +TIMESTAMP = 1623520857 +SHA256 (KDE/release-service/21.04.2/konquest-21.04.2.tar.xz) = 8d26e517f6dd55aaf28e4e27e4b91520459e6cfdf3b6edbfd9424cd2c99d5f3a +SIZE (KDE/release-service/21.04.2/konquest-21.04.2.tar.xz) = 671720 diff --git a/games/konquest/pkg-plist b/games/konquest/pkg-plist index 3fbecba02b25..6f2e99e37326 100644 --- a/games/konquest/pkg-plist +++ b/games/konquest/pkg-plist @@ -1,63 +1,68 @@ bin/konquest share/applications/org.kde.konquest.desktop share/icons/hicolor/128x128/apps/konquest.png share/icons/hicolor/16x16/apps/konquest.png share/icons/hicolor/22x22/apps/konquest.png share/icons/hicolor/32x32/apps/konquest.png share/icons/hicolor/48x48/apps/konquest.png share/icons/hicolor/64x64/apps/konquest.png %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/pics/konquest-splash.png share/locale/ar/LC_MESSAGES/konquest.mo +share/locale/be/LC_MESSAGES/konquest.mo share/locale/bg/LC_MESSAGES/konquest.mo share/locale/bs/LC_MESSAGES/konquest.mo share/locale/ca/LC_MESSAGES/konquest.mo share/locale/ca@valencia/LC_MESSAGES/konquest.mo share/locale/cs/LC_MESSAGES/konquest.mo share/locale/da/LC_MESSAGES/konquest.mo share/locale/de/LC_MESSAGES/konquest.mo share/locale/el/LC_MESSAGES/konquest.mo share/locale/en_GB/LC_MESSAGES/konquest.mo share/locale/eo/LC_MESSAGES/konquest.mo share/locale/es/LC_MESSAGES/konquest.mo share/locale/et/LC_MESSAGES/konquest.mo share/locale/eu/LC_MESSAGES/konquest.mo share/locale/fa/LC_MESSAGES/konquest.mo share/locale/fi/LC_MESSAGES/konquest.mo share/locale/fr/LC_MESSAGES/konquest.mo share/locale/ga/LC_MESSAGES/konquest.mo share/locale/gl/LC_MESSAGES/konquest.mo share/locale/he/LC_MESSAGES/konquest.mo share/locale/hi/LC_MESSAGES/konquest.mo share/locale/hr/LC_MESSAGES/konquest.mo share/locale/hu/LC_MESSAGES/konquest.mo share/locale/is/LC_MESSAGES/konquest.mo share/locale/it/LC_MESSAGES/konquest.mo share/locale/ja/LC_MESSAGES/konquest.mo share/locale/kk/LC_MESSAGES/konquest.mo share/locale/km/LC_MESSAGES/konquest.mo share/locale/ko/LC_MESSAGES/konquest.mo share/locale/lt/LC_MESSAGES/konquest.mo share/locale/lv/LC_MESSAGES/konquest.mo share/locale/ml/LC_MESSAGES/konquest.mo share/locale/mr/LC_MESSAGES/konquest.mo share/locale/nb/LC_MESSAGES/konquest.mo share/locale/nds/LC_MESSAGES/konquest.mo share/locale/nl/LC_MESSAGES/konquest.mo share/locale/nn/LC_MESSAGES/konquest.mo share/locale/pa/LC_MESSAGES/konquest.mo share/locale/pl/LC_MESSAGES/konquest.mo share/locale/pt/LC_MESSAGES/konquest.mo share/locale/pt_BR/LC_MESSAGES/konquest.mo share/locale/ro/LC_MESSAGES/konquest.mo share/locale/ru/LC_MESSAGES/konquest.mo +share/locale/se/LC_MESSAGES/konquest.mo share/locale/sk/LC_MESSAGES/konquest.mo share/locale/sl/LC_MESSAGES/konquest.mo +share/locale/sq/LC_MESSAGES/konquest.mo share/locale/sr/LC_MESSAGES/konquest.mo share/locale/sv/LC_MESSAGES/konquest.mo +share/locale/ta/LC_MESSAGES/konquest.mo +share/locale/tg/LC_MESSAGES/konquest.mo share/locale/tr/LC_MESSAGES/konquest.mo share/locale/ug/LC_MESSAGES/konquest.mo share/locale/uk/LC_MESSAGES/konquest.mo share/locale/zh_CN/LC_MESSAGES/konquest.mo share/locale/zh_TW/LC_MESSAGES/konquest.mo share/metainfo/org.kde.konquest.appdata.xml diff --git a/games/kpat/distinfo b/games/kpat/distinfo index 5dcd53b7dca9..2224ab3a5d7e 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741473 -SHA256 (KDE/release-service/21.04.1/kpat-21.04.1.tar.xz) = c00fed775072e33cff67ed996f66165b6f8aacc62ab82890f2e7b4a52366d282 -SIZE (KDE/release-service/21.04.1/kpat-21.04.1.tar.xz) = 3649388 +TIMESTAMP = 1623520858 +SHA256 (KDE/release-service/21.04.2/kpat-21.04.2.tar.xz) = fdd19a5047b3ab12a36f121c66a7b854f5b1696f8626350f2a4a4d2094dc2151 +SIZE (KDE/release-service/21.04.2/kpat-21.04.2.tar.xz) = 3657204 diff --git a/games/kpat/pkg-plist b/games/kpat/pkg-plist index 92b727c4053f..5332f6d44b62 100644 --- a/games/kpat/pkg-plist +++ b/games/kpat/pkg-plist @@ -1,110 +1,115 @@ bin/kpat share/qlogging-categories5/kpat.categories lib/libkcardgame.so man/ca/man6/kpat.6.gz man/de/man6/kpat.6.gz man/es/man6/kpat.6.gz man/et/man6/kpat.6.gz man/it/man6/kpat.6.gz man/man6/kpat.6.gz man/nl/man6/kpat.6.gz man/pt/man6/kpat.6.gz man/pt_BR/man6/kpat.6.gz man/ru/man6/kpat.6.gz man/sv/man6/kpat.6.gz man/uk/man6/kpat.6.gz share/applications/org.kde.kpat.desktop share/config.kcfg/kpat.kcfg share/icons/hicolor/128x128/apps/kpat.png share/icons/hicolor/16x16/apps/kpat.png share/icons/hicolor/22x22/apps/kpat.png share/icons/hicolor/24x24/apps/kpat.png share/icons/hicolor/256x256/apps/kpat.png share/icons/hicolor/32x32/apps/kpat.png share/icons/hicolor/48x48/apps/kpat.png share/icons/hicolor/64x64/apps/kpat.png %%DATADIR%%/previews/1.png %%DATADIR%%/previews/10.png %%DATADIR%%/previews/11.png %%DATADIR%%/previews/12.png %%DATADIR%%/previews/17.png %%DATADIR%%/previews/18.png %%DATADIR%%/previews/19.png %%DATADIR%%/previews/2.png %%DATADIR%%/previews/3.png %%DATADIR%%/previews/5.png %%DATADIR%%/previews/7.png %%DATADIR%%/previews/8.png %%DATADIR%%/previews/9.png %%DATADIR%%/sounds/card-down.ogg %%DATADIR%%/sounds/card-pickup.ogg %%DATADIR%%/themes/ancientegypt.desktop %%DATADIR%%/themes/ancientegypt.png %%DATADIR%%/themes/ancientegypt.svgz %%DATADIR%%/themes/cleangreen.desktop %%DATADIR%%/themes/cleangreen.png %%DATADIR%%/themes/cleangreen.svgz %%DATADIR%%/themes/greenblaze.desktop %%DATADIR%%/themes/greenblaze.png %%DATADIR%%/themes/greenblaze.svgz %%DATADIR%%/themes/oldertheme.desktop %%DATADIR%%/themes/oldertheme.png %%DATADIR%%/themes/oldertheme.svgz share/knsrcfiles/kcardtheme.knsrc share/knsrcfiles/kpat.knsrc share/locale/ar/LC_MESSAGES/kpat.mo +share/locale/be/LC_MESSAGES/kpat.mo share/locale/bg/LC_MESSAGES/kpat.mo share/locale/bs/LC_MESSAGES/kpat.mo share/locale/ca/LC_MESSAGES/kpat.mo share/locale/ca@valencia/LC_MESSAGES/kpat.mo share/locale/cs/LC_MESSAGES/kpat.mo share/locale/da/LC_MESSAGES/kpat.mo share/locale/de/LC_MESSAGES/kpat.mo share/locale/el/LC_MESSAGES/kpat.mo share/locale/en_GB/LC_MESSAGES/kpat.mo share/locale/eo/LC_MESSAGES/kpat.mo share/locale/es/LC_MESSAGES/kpat.mo share/locale/et/LC_MESSAGES/kpat.mo share/locale/eu/LC_MESSAGES/kpat.mo share/locale/fa/LC_MESSAGES/kpat.mo share/locale/fi/LC_MESSAGES/kpat.mo share/locale/fr/LC_MESSAGES/kpat.mo share/locale/ga/LC_MESSAGES/kpat.mo share/locale/gl/LC_MESSAGES/kpat.mo share/locale/he/LC_MESSAGES/kpat.mo share/locale/hi/LC_MESSAGES/kpat.mo share/locale/hr/LC_MESSAGES/kpat.mo share/locale/hu/LC_MESSAGES/kpat.mo share/locale/id/LC_MESSAGES/kpat.mo share/locale/is/LC_MESSAGES/kpat.mo share/locale/it/LC_MESSAGES/kpat.mo share/locale/ja/LC_MESSAGES/kpat.mo share/locale/kk/LC_MESSAGES/kpat.mo share/locale/km/LC_MESSAGES/kpat.mo share/locale/ko/LC_MESSAGES/kpat.mo share/locale/lt/LC_MESSAGES/kpat.mo share/locale/lv/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.mo share/locale/mr/LC_MESSAGES/kpat.mo share/locale/nb/LC_MESSAGES/kpat.mo share/locale/nds/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat.mo share/locale/nn/LC_MESSAGES/kpat.mo share/locale/pa/LC_MESSAGES/kpat.mo share/locale/pl/LC_MESSAGES/kpat.mo share/locale/pt/LC_MESSAGES/kpat.mo share/locale/pt_BR/LC_MESSAGES/kpat.mo share/locale/ro/LC_MESSAGES/kpat.mo share/locale/ru/LC_MESSAGES/kpat.mo +share/locale/se/LC_MESSAGES/kpat.mo share/locale/sk/LC_MESSAGES/kpat.mo share/locale/sl/LC_MESSAGES/kpat.mo +share/locale/sq/LC_MESSAGES/kpat.mo share/locale/sr/LC_MESSAGES/kpat.mo share/locale/sv/LC_MESSAGES/kpat.mo +share/locale/ta/LC_MESSAGES/kpat.mo +share/locale/tg/LC_MESSAGES/kpat.mo share/locale/tr/LC_MESSAGES/kpat.mo share/locale/ug/LC_MESSAGES/kpat.mo share/locale/uk/LC_MESSAGES/kpat.mo share/locale/wa/LC_MESSAGES/kpat.mo share/locale/zh_CN/LC_MESSAGES/kpat.mo share/locale/zh_TW/LC_MESSAGES/kpat.mo share/metainfo/org.kde.kpat.appdata.xml share/mime/packages/kpatience.xml diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 8aa1b5dab743..cc9ee65c4ceb 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741473 -SHA256 (KDE/release-service/21.04.1/kreversi-21.04.1.tar.xz) = d896c70d0b210c8e1b451f47082a5a227484d39fb042634c4f5921a4d8ca2408 -SIZE (KDE/release-service/21.04.1/kreversi-21.04.1.tar.xz) = 955416 +TIMESTAMP = 1623520860 +SHA256 (KDE/release-service/21.04.2/kreversi-21.04.2.tar.xz) = adf2ad4a27b85026d35116dc09d7975c9a3862ff09ba8d53586953eec5dcbb17 +SIZE (KDE/release-service/21.04.2/kreversi-21.04.2.tar.xz) = 961792 diff --git a/games/kreversi/pkg-plist b/games/kreversi/pkg-plist index be6684da59c1..6a44067bb7db 100644 --- a/games/kreversi/pkg-plist +++ b/games/kreversi/pkg-plist @@ -1,84 +1,89 @@ bin/kreversi share/applications/org.kde.kreversi.desktop share/icons/hicolor/128x128/apps/kreversi.png share/icons/hicolor/16x16/actions/lastmoves.png share/icons/hicolor/16x16/actions/legalmoves.png share/icons/hicolor/16x16/apps/kreversi.png share/icons/hicolor/22x22/actions/lastmoves.png share/icons/hicolor/22x22/actions/legalmoves.png share/icons/hicolor/22x22/apps/kreversi.png share/icons/hicolor/32x32/actions/lastmoves.png share/icons/hicolor/32x32/actions/legalmoves.png share/icons/hicolor/32x32/apps/kreversi.png share/icons/hicolor/48x48/actions/lastmoves.png share/icons/hicolor/48x48/actions/legalmoves.png share/icons/hicolor/48x48/apps/kreversi.png share/icons/hicolor/64x64/apps/kreversi.png share/icons/hicolor/scalable/actions/lastmoves.svgz share/icons/hicolor/scalable/actions/legalmoves.svgz share/knotifications5/kreversi.notifyrc %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/qml/Board.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/Chip.qml %%DATADIR%%/qml/Popup.qml %%DATADIR%%/qml/Table.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/sounds/reversi-click.wav %%DATADIR%%/sounds/reversi-won.wav share/locale/ar/LC_MESSAGES/kreversi.mo +share/locale/be/LC_MESSAGES/kreversi.mo share/locale/bg/LC_MESSAGES/kreversi.mo share/locale/bs/LC_MESSAGES/kreversi.mo share/locale/ca/LC_MESSAGES/kreversi.mo share/locale/ca@valencia/LC_MESSAGES/kreversi.mo share/locale/cs/LC_MESSAGES/kreversi.mo share/locale/da/LC_MESSAGES/kreversi.mo share/locale/de/LC_MESSAGES/kreversi.mo share/locale/el/LC_MESSAGES/kreversi.mo share/locale/en_GB/LC_MESSAGES/kreversi.mo share/locale/eo/LC_MESSAGES/kreversi.mo share/locale/es/LC_MESSAGES/kreversi.mo share/locale/et/LC_MESSAGES/kreversi.mo share/locale/eu/LC_MESSAGES/kreversi.mo share/locale/fa/LC_MESSAGES/kreversi.mo share/locale/fi/LC_MESSAGES/kreversi.mo share/locale/fr/LC_MESSAGES/kreversi.mo share/locale/ga/LC_MESSAGES/kreversi.mo share/locale/gl/LC_MESSAGES/kreversi.mo share/locale/he/LC_MESSAGES/kreversi.mo share/locale/hi/LC_MESSAGES/kreversi.mo share/locale/hr/LC_MESSAGES/kreversi.mo share/locale/hu/LC_MESSAGES/kreversi.mo share/locale/id/LC_MESSAGES/kreversi.mo share/locale/is/LC_MESSAGES/kreversi.mo share/locale/it/LC_MESSAGES/kreversi.mo share/locale/ja/LC_MESSAGES/kreversi.mo share/locale/kk/LC_MESSAGES/kreversi.mo share/locale/km/LC_MESSAGES/kreversi.mo share/locale/ko/LC_MESSAGES/kreversi.mo share/locale/lt/LC_MESSAGES/kreversi.mo share/locale/lv/LC_MESSAGES/kreversi.mo share/locale/ml/LC_MESSAGES/kreversi.mo share/locale/mr/LC_MESSAGES/kreversi.mo share/locale/nb/LC_MESSAGES/kreversi.mo share/locale/nds/LC_MESSAGES/kreversi.mo share/locale/nl/LC_MESSAGES/kreversi.mo share/locale/nn/LC_MESSAGES/kreversi.mo share/locale/pa/LC_MESSAGES/kreversi.mo share/locale/pl/LC_MESSAGES/kreversi.mo share/locale/pt/LC_MESSAGES/kreversi.mo share/locale/pt_BR/LC_MESSAGES/kreversi.mo share/locale/ro/LC_MESSAGES/kreversi.mo share/locale/ru/LC_MESSAGES/kreversi.mo +share/locale/se/LC_MESSAGES/kreversi.mo share/locale/sk/LC_MESSAGES/kreversi.mo share/locale/sl/LC_MESSAGES/kreversi.mo +share/locale/sq/LC_MESSAGES/kreversi.mo share/locale/sr/LC_MESSAGES/kreversi.mo share/locale/sv/LC_MESSAGES/kreversi.mo +share/locale/ta/LC_MESSAGES/kreversi.mo +share/locale/tg/LC_MESSAGES/kreversi.mo share/locale/tr/LC_MESSAGES/kreversi.mo share/locale/ug/LC_MESSAGES/kreversi.mo share/locale/uk/LC_MESSAGES/kreversi.mo share/locale/zh_CN/LC_MESSAGES/kreversi.mo share/locale/zh_TW/LC_MESSAGES/kreversi.mo share/metainfo/org.kde.kreversi.appdata.xml diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index 3a4b27fab0b5..411efe2edc9e 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741474 -SHA256 (KDE/release-service/21.04.1/kshisen-21.04.1.tar.xz) = b470869db95c57cd3165bb0bb43000a1cbfb116e049d2f43f1977d6830c48f8c -SIZE (KDE/release-service/21.04.1/kshisen-21.04.1.tar.xz) = 827876 +TIMESTAMP = 1623520862 +SHA256 (KDE/release-service/21.04.2/kshisen-21.04.2.tar.xz) = 86ae95ddfb0985d38731515ecd101d54a17878324a0a68f397af349fd4b33ebd +SIZE (KDE/release-service/21.04.2/kshisen-21.04.2.tar.xz) = 831532 diff --git a/games/kshisen/pkg-plist b/games/kshisen/pkg-plist index 8fb1207c97ad..5e799a273e9b 100644 --- a/games/kshisen/pkg-plist +++ b/games/kshisen/pkg-plist @@ -1,66 +1,71 @@ bin/kshisen share/qlogging-categories5/kshisen.categories share/applications/org.kde.kshisen.desktop share/config.kcfg/kshisen.kcfg share/icons/hicolor/128x128/apps/kshisen.png share/icons/hicolor/16x16/apps/kshisen.png share/icons/hicolor/22x22/apps/kshisen.png share/icons/hicolor/32x32/apps/kshisen.png share/icons/hicolor/48x48/apps/kshisen.png share/icons/hicolor/64x64/apps/kshisen.png share/locale/ar/LC_MESSAGES/kshisen.mo +share/locale/be/LC_MESSAGES/kshisen.mo share/locale/bg/LC_MESSAGES/kshisen.mo share/locale/bs/LC_MESSAGES/kshisen.mo share/locale/ca/LC_MESSAGES/kshisen.mo share/locale/ca@valencia/LC_MESSAGES/kshisen.mo share/locale/cs/LC_MESSAGES/kshisen.mo share/locale/da/LC_MESSAGES/kshisen.mo share/locale/de/LC_MESSAGES/kshisen.mo share/locale/el/LC_MESSAGES/kshisen.mo share/locale/en_GB/LC_MESSAGES/kshisen.mo share/locale/eo/LC_MESSAGES/kshisen.mo share/locale/es/LC_MESSAGES/kshisen.mo share/locale/et/LC_MESSAGES/kshisen.mo share/locale/eu/LC_MESSAGES/kshisen.mo share/locale/fa/LC_MESSAGES/kshisen.mo share/locale/fi/LC_MESSAGES/kshisen.mo share/locale/fr/LC_MESSAGES/kshisen.mo share/locale/ga/LC_MESSAGES/kshisen.mo share/locale/gl/LC_MESSAGES/kshisen.mo share/locale/he/LC_MESSAGES/kshisen.mo share/locale/hi/LC_MESSAGES/kshisen.mo share/locale/hr/LC_MESSAGES/kshisen.mo share/locale/hu/LC_MESSAGES/kshisen.mo share/locale/id/LC_MESSAGES/kshisen.mo share/locale/is/LC_MESSAGES/kshisen.mo share/locale/it/LC_MESSAGES/kshisen.mo share/locale/ja/LC_MESSAGES/kshisen.mo share/locale/kk/LC_MESSAGES/kshisen.mo share/locale/km/LC_MESSAGES/kshisen.mo share/locale/ko/LC_MESSAGES/kshisen.mo share/locale/lt/LC_MESSAGES/kshisen.mo share/locale/lv/LC_MESSAGES/kshisen.mo share/locale/ml/LC_MESSAGES/kshisen.mo share/locale/mr/LC_MESSAGES/kshisen.mo share/locale/nb/LC_MESSAGES/kshisen.mo share/locale/nds/LC_MESSAGES/kshisen.mo share/locale/nl/LC_MESSAGES/kshisen.mo share/locale/nn/LC_MESSAGES/kshisen.mo share/locale/pa/LC_MESSAGES/kshisen.mo share/locale/pl/LC_MESSAGES/kshisen.mo share/locale/pt/LC_MESSAGES/kshisen.mo share/locale/pt_BR/LC_MESSAGES/kshisen.mo share/locale/ro/LC_MESSAGES/kshisen.mo share/locale/ru/LC_MESSAGES/kshisen.mo +share/locale/se/LC_MESSAGES/kshisen.mo share/locale/sk/LC_MESSAGES/kshisen.mo share/locale/sl/LC_MESSAGES/kshisen.mo +share/locale/sq/LC_MESSAGES/kshisen.mo share/locale/sr/LC_MESSAGES/kshisen.mo share/locale/sv/LC_MESSAGES/kshisen.mo +share/locale/ta/LC_MESSAGES/kshisen.mo +share/locale/tg/LC_MESSAGES/kshisen.mo share/locale/tr/LC_MESSAGES/kshisen.mo share/locale/ug/LC_MESSAGES/kshisen.mo share/locale/uk/LC_MESSAGES/kshisen.mo share/locale/zh_CN/LC_MESSAGES/kshisen.mo share/locale/zh_TW/LC_MESSAGES/kshisen.mo share/metainfo/org.kde.kshisen.appdata.xml share/sounds/kshisen/tile-fall-tile.ogg share/sounds/kshisen/tile-touch.ogg diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 3dd5ddf1f440..6fef9a5aeb05 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741475 -SHA256 (KDE/release-service/21.04.1/ksirk-21.04.1.tar.xz) = 61a868e829726bc820a1e51e4c85a120889c6aab132e7778952519eaf9f2dff1 -SIZE (KDE/release-service/21.04.1/ksirk-21.04.1.tar.xz) = 6996348 +TIMESTAMP = 1623520863 +SHA256 (KDE/release-service/21.04.2/ksirk-21.04.2.tar.xz) = 215819282fe25c488058f03ed7658c1ac2bce4da48e04f46d97693624e6f60da +SIZE (KDE/release-service/21.04.2/ksirk-21.04.2.tar.xz) = 6997336 diff --git a/games/ksirk/pkg-plist b/games/ksirk/pkg-plist index 8be8ab40f676..65a534ba2ea2 100644 --- a/games/ksirk/pkg-plist +++ b/games/ksirk/pkg-plist @@ -1,150 +1,151 @@ bin/ksirk bin/ksirkskineditor share/qlogging-categories5/ksirk.categories 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/128x128/apps/ksirk.png share/icons/hicolor/16x16/apps/ksirk.png share/icons/hicolor/22x22/apps/ksirk.png share/icons/hicolor/32x32/apps/ksirk.png share/icons/hicolor/48x48/apps/ksirk.png share/icons/hicolor/64x64/apps/ksirk.png share/icons/hicolor/scalable/apps/ksirk.svgz %%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/knsrcfiles/ksirk.knsrc 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/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 diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index f2f9db650d81..d7946fe7a978 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741476 -SHA256 (KDE/release-service/21.04.1/ksnakeduel-21.04.1.tar.xz) = d147c747bcc483fbc97248e54e33d8a35f170e8d01c4610ccf376261db53c0d3 -SIZE (KDE/release-service/21.04.1/ksnakeduel-21.04.1.tar.xz) = 543672 +TIMESTAMP = 1623520865 +SHA256 (KDE/release-service/21.04.2/ksnakeduel-21.04.2.tar.xz) = a2ab4942e2166bd864fa18bbf0226d2887485c5a1160acc931d0814650def043 +SIZE (KDE/release-service/21.04.2/ksnakeduel-21.04.2.tar.xz) = 544124 diff --git a/games/ksnakeduel/pkg-plist b/games/ksnakeduel/pkg-plist index 707c5da98285..91bb33f50302 100644 --- a/games/ksnakeduel/pkg-plist +++ b/games/ksnakeduel/pkg-plist @@ -1,65 +1,66 @@ bin/ksnakeduel share/qlogging-categories5/ksnakeduel.categories share/applications/org.kde.ksnakeduel.desktop share/config.kcfg/ksnakeduel.kcfg share/icons/hicolor/128x128/apps/ksnakeduel.png share/icons/hicolor/16x16/apps/ksnakeduel.png share/icons/hicolor/22x22/apps/ksnakeduel.png share/icons/hicolor/256x256/apps/ksnakeduel.png share/icons/hicolor/32x32/apps/ksnakeduel.png share/icons/hicolor/48x48/apps/ksnakeduel.png share/icons/hicolor/64x64/apps/ksnakeduel.png %%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/knsrcfiles/ksnakeduel.knsrc 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 diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 5721be906a81..b9b1cc395cd5 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741476 -SHA256 (KDE/release-service/21.04.1/kspaceduel-21.04.1.tar.xz) = 03113fa49b7d0528ea4b646e26bf94ceef8724801ae03feaa64ec76fffb833d5 -SIZE (KDE/release-service/21.04.1/kspaceduel-21.04.1.tar.xz) = 617720 +TIMESTAMP = 1623520866 +SHA256 (KDE/release-service/21.04.2/kspaceduel-21.04.2.tar.xz) = 89a5a060aebb665a027a88b23503058e81318632432d0eeb718c93477ddeeed8 +SIZE (KDE/release-service/21.04.2/kspaceduel-21.04.2.tar.xz) = 621784 diff --git a/games/kspaceduel/pkg-plist b/games/kspaceduel/pkg-plist index 1dd190c09763..5d9447e3b76a 100644 --- a/games/kspaceduel/pkg-plist +++ b/games/kspaceduel/pkg-plist @@ -1,84 +1,89 @@ bin/kspaceduel share/applications/org.kde.kspaceduel.desktop share/config.kcfg/kspaceduel.kcfg share/icons/hicolor/128x128/apps/kspaceduel.png share/icons/hicolor/16x16/apps/kspaceduel.png share/icons/hicolor/22x22/apps/kspaceduel.png share/icons/hicolor/32x32/apps/kspaceduel.png share/icons/hicolor/48x48/apps/kspaceduel.png share/icons/hicolor/64x64/apps/kspaceduel.png %%DATADIR%%/icons/hicolor/16x16/actions/spnewgame.png %%DATADIR%%/icons/hicolor/16x16/actions/spnewround.png %%DATADIR%%/icons/hicolor/16x16/actions/sppausegame.png %%DATADIR%%/icons/hicolor/22x22/actions/spnewgame.png %%DATADIR%%/icons/hicolor/22x22/actions/spnewround.png %%DATADIR%%/icons/hicolor/22x22/actions/sppausegame.png %%DATADIR%%/icons/hicolor/32x32/actions/spnewgame.png %%DATADIR%%/icons/hicolor/32x32/actions/spnewround.png %%DATADIR%%/icons/hicolor/32x32/actions/sppausegame.png %%DATADIR%%/sprites/backgr.png %%DATADIR%%/sprites/default_theme.svgz %%DATADIR%%/sprites/playerinfo/energy.png %%DATADIR%%/sprites/playerinfo/mine.png %%DATADIR%%/sprites/playerinfo/ship10.png %%DATADIR%%/sprites/playerinfo/ship11.png %%DATADIR%%/sprites/playerinfo/ship12.png %%DATADIR%%/sprites/playerinfo/ship13.png %%DATADIR%%/sprites/playerinfo/ship20.png %%DATADIR%%/sprites/playerinfo/ship21.png %%DATADIR%%/sprites/playerinfo/ship22.png %%DATADIR%%/sprites/playerinfo/ship23.png %%DATADIR%%/sprites/playerinfo/win.png share/locale/ar/LC_MESSAGES/kspaceduel.mo +share/locale/be/LC_MESSAGES/kspaceduel.mo share/locale/bg/LC_MESSAGES/kspaceduel.mo share/locale/bs/LC_MESSAGES/kspaceduel.mo share/locale/ca/LC_MESSAGES/kspaceduel.mo share/locale/ca@valencia/LC_MESSAGES/kspaceduel.mo share/locale/cs/LC_MESSAGES/kspaceduel.mo share/locale/da/LC_MESSAGES/kspaceduel.mo share/locale/de/LC_MESSAGES/kspaceduel.mo share/locale/el/LC_MESSAGES/kspaceduel.mo share/locale/en_GB/LC_MESSAGES/kspaceduel.mo share/locale/eo/LC_MESSAGES/kspaceduel.mo share/locale/es/LC_MESSAGES/kspaceduel.mo share/locale/et/LC_MESSAGES/kspaceduel.mo share/locale/eu/LC_MESSAGES/kspaceduel.mo share/locale/fa/LC_MESSAGES/kspaceduel.mo share/locale/fi/LC_MESSAGES/kspaceduel.mo share/locale/fr/LC_MESSAGES/kspaceduel.mo share/locale/ga/LC_MESSAGES/kspaceduel.mo share/locale/gl/LC_MESSAGES/kspaceduel.mo share/locale/he/LC_MESSAGES/kspaceduel.mo share/locale/hi/LC_MESSAGES/kspaceduel.mo share/locale/hr/LC_MESSAGES/kspaceduel.mo share/locale/hu/LC_MESSAGES/kspaceduel.mo share/locale/is/LC_MESSAGES/kspaceduel.mo share/locale/it/LC_MESSAGES/kspaceduel.mo share/locale/ja/LC_MESSAGES/kspaceduel.mo share/locale/kk/LC_MESSAGES/kspaceduel.mo share/locale/km/LC_MESSAGES/kspaceduel.mo share/locale/ko/LC_MESSAGES/kspaceduel.mo share/locale/lt/LC_MESSAGES/kspaceduel.mo share/locale/lv/LC_MESSAGES/kspaceduel.mo share/locale/ml/LC_MESSAGES/kspaceduel.mo share/locale/mr/LC_MESSAGES/kspaceduel.mo share/locale/nb/LC_MESSAGES/kspaceduel.mo share/locale/nds/LC_MESSAGES/kspaceduel.mo share/locale/nl/LC_MESSAGES/kspaceduel.mo share/locale/nn/LC_MESSAGES/kspaceduel.mo share/locale/pa/LC_MESSAGES/kspaceduel.mo share/locale/pl/LC_MESSAGES/kspaceduel.mo share/locale/pt/LC_MESSAGES/kspaceduel.mo share/locale/pt_BR/LC_MESSAGES/kspaceduel.mo share/locale/ro/LC_MESSAGES/kspaceduel.mo share/locale/ru/LC_MESSAGES/kspaceduel.mo +share/locale/se/LC_MESSAGES/kspaceduel.mo share/locale/sk/LC_MESSAGES/kspaceduel.mo share/locale/sl/LC_MESSAGES/kspaceduel.mo +share/locale/sq/LC_MESSAGES/kspaceduel.mo share/locale/sr/LC_MESSAGES/kspaceduel.mo share/locale/sv/LC_MESSAGES/kspaceduel.mo +share/locale/ta/LC_MESSAGES/kspaceduel.mo +share/locale/tg/LC_MESSAGES/kspaceduel.mo share/locale/tr/LC_MESSAGES/kspaceduel.mo share/locale/ug/LC_MESSAGES/kspaceduel.mo share/locale/uk/LC_MESSAGES/kspaceduel.mo share/locale/zh_CN/LC_MESSAGES/kspaceduel.mo share/locale/zh_TW/LC_MESSAGES/kspaceduel.mo share/metainfo/org.kde.kspaceduel.appdata.xml diff --git a/games/ksquares/distinfo b/games/ksquares/distinfo index 6883e67c2dd8..06c957ada7e7 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741477 -SHA256 (KDE/release-service/21.04.1/ksquares-21.04.1.tar.xz) = 5cd36b6256db209184a20d3becd1829025b295b5099eb16abe0bd65e7045bd4f -SIZE (KDE/release-service/21.04.1/ksquares-21.04.1.tar.xz) = 266284 +TIMESTAMP = 1623520867 +SHA256 (KDE/release-service/21.04.2/ksquares-21.04.2.tar.xz) = aa9dd35c3b606c760d7bf393b25a569895409a714ab1f1f7f257823c140f26dd +SIZE (KDE/release-service/21.04.2/ksquares-21.04.2.tar.xz) = 267444 diff --git a/games/ksquares/pkg-plist b/games/ksquares/pkg-plist index 09aab62f196a..cee573a75f4a 100644 --- a/games/ksquares/pkg-plist +++ b/games/ksquares/pkg-plist @@ -1,58 +1,61 @@ bin/ksquares share/applications/org.kde.ksquares.desktop share/config.kcfg/ksquares.kcfg share/icons/hicolor/128x128/apps/ksquares.png share/icons/hicolor/16x16/apps/ksquares.png share/icons/hicolor/22x22/apps/ksquares.png share/icons/hicolor/32x32/apps/ksquares.png share/icons/hicolor/48x48/apps/ksquares.png share/icons/hicolor/64x64/apps/ksquares.png share/locale/ar/LC_MESSAGES/ksquares.mo +share/locale/be/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/ml/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 d9654ef5ccd9..e4375c0c66fb 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741478 -SHA256 (KDE/release-service/21.04.1/ksudoku-21.04.1.tar.xz) = 149ab89406b94eafc2557475ec98bc74337fb7e98129d3c9edece8cac954915a -SIZE (KDE/release-service/21.04.1/ksudoku-21.04.1.tar.xz) = 1678580 +TIMESTAMP = 1623520868 +SHA256 (KDE/release-service/21.04.2/ksudoku-21.04.2.tar.xz) = cbdae1f3537cd33cbfd03404cd4998af9a07cc244d6455c1997b871605fe0994 +SIZE (KDE/release-service/21.04.2/ksudoku-21.04.2.tar.xz) = 1679332 diff --git a/games/ksudoku/pkg-plist b/games/ksudoku/pkg-plist index 085fd3ea3257..cb629d7c1759 100644 --- a/games/ksudoku/pkg-plist +++ b/games/ksudoku/pkg-plist @@ -1,178 +1,180 @@ bin/ksudoku etc/xdg/ksudokurc share/applications/org.kde.ksudoku.desktop share/icons/hicolor/128x128/apps/ksudoku.png share/icons/hicolor/16x16/apps/ksudoku.png share/icons/hicolor/32x32/apps/ksudoku.png %%DATADIR%%/4x4.desktop %%DATADIR%%/4x4.xml %%DATADIR%%/6x6.desktop %%DATADIR%%/6x6.xml %%DATADIR%%/Aztec.desktop %%DATADIR%%/Aztec.xml %%DATADIR%%/DoubleRoxdoku.desktop %%DATADIR%%/DoubleRoxdoku.xml %%DATADIR%%/Jigsaw.desktop %%DATADIR%%/Jigsaw.xml %%DATADIR%%/Killer_4x4.desktop %%DATADIR%%/Killer_4x4.xml %%DATADIR%%/Killer_9x9.desktop %%DATADIR%%/Killer_9x9.xml %%DATADIR%%/Mathdoku_4x4.desktop %%DATADIR%%/Mathdoku_4x4.xml %%DATADIR%%/Mathdoku_Settable.desktop %%DATADIR%%/Mathdoku_Settable.xml %%DATADIR%%/Nonomino.desktop %%DATADIR%%/Nonomino.xml %%DATADIR%%/Pentomino.desktop %%DATADIR%%/Pentomino.xml %%DATADIR%%/RoxdokuTwin.desktop %%DATADIR%%/RoxdokuTwin.xml %%DATADIR%%/Samurai.desktop %%DATADIR%%/Samurai.xml %%DATADIR%%/SamuraiRoxdoku.desktop %%DATADIR%%/SamuraiRoxdoku.xml %%DATADIR%%/Sohei.desktop %%DATADIR%%/Sohei.xml %%DATADIR%%/Tetromino.desktop %%DATADIR%%/Tetromino.xml %%DATADIR%%/TinySamurai.desktop %%DATADIR%%/TinySamurai.xml %%DATADIR%%/Windmill.desktop %%DATADIR%%/Windmill.xml %%DATADIR%%/XSudoku.desktop %%DATADIR%%/XSudoku.xml %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/128x128/actions/ksudoku.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/16x16/actions/ksudoku.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/22x22/actions/ksudoku.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/32x32/actions/ksudoku.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/48x48/actions/ksudoku.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-jigsaw.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_16x16.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_25x25.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_4x4.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-ksudoku_9x9.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_3x3x3.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_4x4x4.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-roxdoku_5x5x5.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-samurai.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-tiny_samurai.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku-xsudoku.png %%DATADIR%%/icons/hicolor/64x64/actions/ksudoku.png %%DATADIR%%/themes/abstraction.desktop %%DATADIR%%/themes/abstraction.svg %%DATADIR%%/themes/abstraction_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/ksudoku_egyptian.svg %%DATADIR%%/themes/ksudoku_scrible.desktop %%DATADIR%%/themes/ksudoku_scrible.svg %%DATADIR%%/themes/scribble_preview.png share/kxmlgui5/ksudoku/ksudokuui.rc share/locale/ar/LC_MESSAGES/ksudoku.mo +share/locale/be/LC_MESSAGES/ksudoku.mo share/locale/bg/LC_MESSAGES/ksudoku.mo share/locale/bs/LC_MESSAGES/ksudoku.mo share/locale/ca/LC_MESSAGES/ksudoku.mo share/locale/ca@valencia/LC_MESSAGES/ksudoku.mo share/locale/cs/LC_MESSAGES/ksudoku.mo share/locale/da/LC_MESSAGES/ksudoku.mo share/locale/de/LC_MESSAGES/ksudoku.mo share/locale/el/LC_MESSAGES/ksudoku.mo share/locale/en_GB/LC_MESSAGES/ksudoku.mo share/locale/eo/LC_MESSAGES/ksudoku.mo share/locale/es/LC_MESSAGES/ksudoku.mo share/locale/et/LC_MESSAGES/ksudoku.mo share/locale/eu/LC_MESSAGES/ksudoku.mo share/locale/fa/LC_MESSAGES/ksudoku.mo share/locale/fi/LC_MESSAGES/ksudoku.mo share/locale/fr/LC_MESSAGES/ksudoku.mo share/locale/ga/LC_MESSAGES/ksudoku.mo share/locale/gl/LC_MESSAGES/ksudoku.mo share/locale/hi/LC_MESSAGES/ksudoku.mo share/locale/hr/LC_MESSAGES/ksudoku.mo share/locale/hu/LC_MESSAGES/ksudoku.mo share/locale/is/LC_MESSAGES/ksudoku.mo share/locale/it/LC_MESSAGES/ksudoku.mo share/locale/ja/LC_MESSAGES/ksudoku.mo share/locale/kk/LC_MESSAGES/ksudoku.mo share/locale/km/LC_MESSAGES/ksudoku.mo share/locale/ko/LC_MESSAGES/ksudoku.mo share/locale/lt/LC_MESSAGES/ksudoku.mo share/locale/lv/LC_MESSAGES/ksudoku.mo share/locale/ml/LC_MESSAGES/ksudoku.mo share/locale/mr/LC_MESSAGES/ksudoku.mo share/locale/nb/LC_MESSAGES/ksudoku.mo share/locale/nds/LC_MESSAGES/ksudoku.mo share/locale/nl/LC_MESSAGES/ksudoku.mo share/locale/nn/LC_MESSAGES/ksudoku.mo share/locale/pa/LC_MESSAGES/ksudoku.mo share/locale/pl/LC_MESSAGES/ksudoku.mo share/locale/pt/LC_MESSAGES/ksudoku.mo share/locale/pt_BR/LC_MESSAGES/ksudoku.mo share/locale/ro/LC_MESSAGES/ksudoku.mo share/locale/ru/LC_MESSAGES/ksudoku.mo +share/locale/se/LC_MESSAGES/ksudoku.mo share/locale/sk/LC_MESSAGES/ksudoku.mo share/locale/sl/LC_MESSAGES/ksudoku.mo share/locale/sr/LC_MESSAGES/ksudoku.mo share/locale/sv/LC_MESSAGES/ksudoku.mo share/locale/tr/LC_MESSAGES/ksudoku.mo share/locale/ug/LC_MESSAGES/ksudoku.mo share/locale/uk/LC_MESSAGES/ksudoku.mo share/locale/zh_CN/LC_MESSAGES/ksudoku.mo share/locale/zh_TW/LC_MESSAGES/ksudoku.mo share/metainfo/org.kde.ksudoku.appdata.xml diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 8cfa9bd73a01..02a5464c3443 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741479 -SHA256 (KDE/release-service/21.04.1/ktuberling-21.04.1.tar.xz) = 2afce9b62f13e650f4acc6bdbfeb394751ddcc023b21863cadd92a493c995b23 -SIZE (KDE/release-service/21.04.1/ktuberling-21.04.1.tar.xz) = 70747556 +TIMESTAMP = 1623520872 +SHA256 (KDE/release-service/21.04.2/ktuberling-21.04.2.tar.xz) = 674eca6e272b96c130ea228c2d71f4e4399334750d3d45672498507030369fbf +SIZE (KDE/release-service/21.04.2/ktuberling-21.04.2.tar.xz) = 70756376 diff --git a/games/ktuberling/pkg-plist b/games/ktuberling/pkg-plist index 7639cda8b3ee..0daf829c0f5a 100644 --- a/games/ktuberling/pkg-plist +++ b/games/ktuberling/pkg-plist @@ -1,1780 +1,1785 @@ bin/ktuberling share/applications/org.kde.ktuberling.desktop share/icons/hicolor/128x128/apps/ktuberling.png share/icons/hicolor/128x128/mimetypes/application-x-tuberling.png share/icons/hicolor/16x16/apps/ktuberling.png share/icons/hicolor/16x16/mimetypes/application-x-tuberling.png share/icons/hicolor/22x22/apps/ktuberling.png share/icons/hicolor/22x22/mimetypes/application-x-tuberling.png share/icons/hicolor/32x32/apps/ktuberling.png share/icons/hicolor/32x32/mimetypes/application-x-tuberling.png share/icons/hicolor/48x48/apps/ktuberling.png share/icons/hicolor/48x48/mimetypes/application-x-tuberling.png share/icons/hicolor/64x64/apps/ktuberling.png share/icons/hicolor/64x64/mimetypes/application-x-tuberling.png %%DATADIR%%/pics/butterflies.desktop %%DATADIR%%/pics/butterflies.svgz %%DATADIR%%/pics/butterflies.theme %%DATADIR%%/pics/christmas.desktop %%DATADIR%%/pics/christmas.svgz %%DATADIR%%/pics/christmas.theme %%DATADIR%%/pics/default_theme.desktop %%DATADIR%%/pics/default_theme.svg %%DATADIR%%/pics/default_theme.theme %%DATADIR%%/pics/egypt.desktop %%DATADIR%%/pics/egypt.svg %%DATADIR%%/pics/egypt.theme %%DATADIR%%/pics/moon.desktop %%DATADIR%%/pics/moon.svg %%DATADIR%%/pics/moon.theme %%DATADIR%%/pics/pizzeria.desktop %%DATADIR%%/pics/pizzeria.svgz %%DATADIR%%/pics/pizzeria.theme %%DATADIR%%/pics/potato-game.desktop %%DATADIR%%/pics/potato-game.svg %%DATADIR%%/pics/potato-game.theme %%DATADIR%%/pics/robin-tux.desktop %%DATADIR%%/pics/robin-tux.svgz %%DATADIR%%/pics/robin-tux.theme %%DATADIR%%/pics/robot_workshop.desktop %%DATADIR%%/pics/robot_workshop.svgz %%DATADIR%%/pics/robot_workshop.theme %%DATADIR%%/pics/train_valley.desktop %%DATADIR%%/pics/train_valley.svgz %%DATADIR%%/pics/train_valley.theme %%DATADIR%%/sounds/ca.soundtheme %%DATADIR%%/sounds/ca/Frier-Tux.ogg %%DATADIR%%/sounds/ca/Guard-Tux.ogg %%DATADIR%%/sounds/ca/Kid-Tux.ogg %%DATADIR%%/sounds/ca/Little-Tux.ogg %%DATADIR%%/sounds/ca/Maiden-Tux.ogg %%DATADIR%%/sounds/ca/Prince-Tux.ogg %%DATADIR%%/sounds/ca/Robin-Tux.ogg %%DATADIR%%/sounds/ca/Sherif-Tux.ogg %%DATADIR%%/sounds/ca/Whitch-Tux.ogg %%DATADIR%%/sounds/ca/apple.ogg %%DATADIR%%/sounds/ca/arrow.ogg %%DATADIR%%/sounds/ca/arrows.ogg %%DATADIR%%/sounds/ca/bow-shoot.ogg %%DATADIR%%/sounds/ca/bow.ogg %%DATADIR%%/sounds/ca/bullseye.ogg %%DATADIR%%/sounds/ca/butterflies_body.ogg %%DATADIR%%/sounds/ca/butterflies_circle.ogg %%DATADIR%%/sounds/ca/butterflies_circles.ogg %%DATADIR%%/sounds/ca/butterflies_eye.ogg %%DATADIR%%/sounds/ca/butterflies_heart.ogg %%DATADIR%%/sounds/ca/butterflies_purple_shape.ogg %%DATADIR%%/sounds/ca/butterflies_spiral.ogg %%DATADIR%%/sounds/ca/butterflies_wing.ogg %%DATADIR%%/sounds/ca/candles-glow.ogg %%DATADIR%%/sounds/ca/candles.ogg %%DATADIR%%/sounds/ca/egypt_arch.ogg %%DATADIR%%/sounds/ca/egypt_birds.ogg %%DATADIR%%/sounds/ca/egypt_boy.ogg %%DATADIR%%/sounds/ca/egypt_bridge.ogg %%DATADIR%%/sounds/ca/egypt_camel.ogg %%DATADIR%%/sounds/ca/egypt_cart.ogg %%DATADIR%%/sounds/ca/egypt_column.ogg %%DATADIR%%/sounds/ca/egypt_donkey.ogg %%DATADIR%%/sounds/ca/egypt_girl.ogg %%DATADIR%%/sounds/ca/egypt_grass.ogg %%DATADIR%%/sounds/ca/egypt_man.ogg %%DATADIR%%/sounds/ca/egypt_oasis.ogg %%DATADIR%%/sounds/ca/egypt_palmtree.ogg %%DATADIR%%/sounds/ca/egypt_pyramid.ogg %%DATADIR%%/sounds/ca/egypt_road.ogg %%DATADIR%%/sounds/ca/egypt_sphynx.ogg %%DATADIR%%/sounds/ca/egypt_well.ogg %%DATADIR%%/sounds/ca/egypt_woman.ogg %%DATADIR%%/sounds/ca/fish.ogg %%DATADIR%%/sounds/ca/flask-poison.ogg %%DATADIR%%/sounds/ca/flask.ogg %%DATADIR%%/sounds/ca/goblet.ogg %%DATADIR%%/sounds/ca/guitar.ogg %%DATADIR%%/sounds/ca/key.ogg %%DATADIR%%/sounds/ca/letter-love.ogg %%DATADIR%%/sounds/ca/letter.ogg %%DATADIR%%/sounds/ca/moon_alien.ogg %%DATADIR%%/sounds/ca/moon_astronaut.ogg %%DATADIR%%/sounds/ca/moon_earth.ogg %%DATADIR%%/sounds/ca/moon_fallingstar.ogg %%DATADIR%%/sounds/ca/moon_hotel.ogg %%DATADIR%%/sounds/ca/moon_monster.ogg %%DATADIR%%/sounds/ca/moon_moonwalker.ogg %%DATADIR%%/sounds/ca/moon_planet.ogg %%DATADIR%%/sounds/ca/moon_radar.ogg %%DATADIR%%/sounds/ca/moon_rocket.ogg %%DATADIR%%/sounds/ca/moon_satellite.ogg %%DATADIR%%/sounds/ca/moon_sign.ogg %%DATADIR%%/sounds/ca/moon_star.ogg %%DATADIR%%/sounds/ca/moon_ufo.ogg %%DATADIR%%/sounds/ca/note.ogg %%DATADIR%%/sounds/ca/notes.ogg %%DATADIR%%/sounds/ca/patata_arrecada.ogg %%DATADIR%%/sounds/ca/patata_barret.ogg %%DATADIR%%/sounds/ca/patata_basto.ogg %%DATADIR%%/sounds/ca/patata_bermudes.ogg %%DATADIR%%/sounds/ca/patata_bigoti.ogg %%DATADIR%%/sounds/ca/patata_cabell.ogg %%DATADIR%%/sounds/ca/patata_cella.ogg %%DATADIR%%/sounds/ca/patata_corbata.ogg %%DATADIR%%/sounds/ca/patata_corbati.ogg %%DATADIR%%/sounds/ca/patata_faldilla.ogg %%DATADIR%%/sounds/ca/patata_flors.ogg %%DATADIR%%/sounds/ca/patata_llavis.ogg %%DATADIR%%/sounds/ca/patata_nas.ogg %%DATADIR%%/sounds/ca/patata_orella.ogg %%DATADIR%%/sounds/ca/patata_paraigua.ogg %%DATADIR%%/sounds/ca/patata_pilota.ogg %%DATADIR%%/sounds/ca/patata_sabata.ogg %%DATADIR%%/sounds/ca/patata_ull.ogg %%DATADIR%%/sounds/ca/patata_ulleres.ogg %%DATADIR%%/sounds/ca/patata_ulleresdesol.ogg %%DATADIR%%/sounds/ca/patata_vestit.ogg %%DATADIR%%/sounds/ca/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ca/pizzeria_bacon.ogg %%DATADIR%%/sounds/ca/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ca/pizzeria_cheese.ogg %%DATADIR%%/sounds/ca/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ca/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ca/pizzeria_olive.ogg %%DATADIR%%/sounds/ca/pizzeria_onion.ogg %%DATADIR%%/sounds/ca/pizzeria_oregano.ogg %%DATADIR%%/sounds/ca/pizzeria_pepper.ogg %%DATADIR%%/sounds/ca/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ca/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ca/pizzeria_salami.ogg %%DATADIR%%/sounds/ca/pizzeria_tomato.ogg %%DATADIR%%/sounds/ca/plate.ogg %%DATADIR%%/sounds/ca/robot_workshop_antenna.ogg %%DATADIR%%/sounds/ca/robot_workshop_arm.ogg %%DATADIR%%/sounds/ca/robot_workshop_ball.ogg %%DATADIR%%/sounds/ca/robot_workshop_base.ogg %%DATADIR%%/sounds/ca/robot_workshop_block.ogg %%DATADIR%%/sounds/ca/robot_workshop_body.ogg %%DATADIR%%/sounds/ca/robot_workshop_claw.ogg %%DATADIR%%/sounds/ca/robot_workshop_eye.ogg %%DATADIR%%/sounds/ca/robot_workshop_foot.ogg %%DATADIR%%/sounds/ca/robot_workshop_hand.ogg %%DATADIR%%/sounds/ca/robot_workshop_head.ogg %%DATADIR%%/sounds/ca/robot_workshop_panel.ogg %%DATADIR%%/sounds/ca/robot_workshop_rocket.ogg %%DATADIR%%/sounds/ca/robot_workshop_rod.ogg %%DATADIR%%/sounds/ca/robot_workshop_wheel.ogg %%DATADIR%%/sounds/ca/say-angry.ogg %%DATADIR%%/sounds/ca/say-huh.ogg %%DATADIR%%/sounds/ca/say-idea.ogg %%DATADIR%%/sounds/ca/say-laugh.ogg %%DATADIR%%/sounds/ca/say-love.ogg %%DATADIR%%/sounds/ca/say-sick.ogg %%DATADIR%%/sounds/ca/say-stare.ogg %%DATADIR%%/sounds/ca/say-what.ogg %%DATADIR%%/sounds/ca/say-wow.ogg %%DATADIR%%/sounds/ca/say-zzz.ogg %%DATADIR%%/sounds/ca/teacup.ogg %%DATADIR%%/sounds/ca/tv_accident.ogg %%DATADIR%%/sounds/ca/tv_ball.ogg %%DATADIR%%/sounds/ca/tv_barrier.ogg %%DATADIR%%/sounds/ca/tv_bicycle.ogg %%DATADIR%%/sounds/ca/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ca/tv_car.ogg %%DATADIR%%/sounds/ca/tv_caravan.ogg %%DATADIR%%/sounds/ca/tv_cyclist.ogg %%DATADIR%%/sounds/ca/tv_elephant.ogg %%DATADIR%%/sounds/ca/tv_excavator.ogg %%DATADIR%%/sounds/ca/tv_fence.ogg %%DATADIR%%/sounds/ca/tv_fire.ogg %%DATADIR%%/sounds/ca/tv_fireengine.ogg %%DATADIR%%/sounds/ca/tv_fireman.ogg %%DATADIR%%/sounds/ca/tv_fisherman.ogg %%DATADIR%%/sounds/ca/tv_giraffe.ogg %%DATADIR%%/sounds/ca/tv_guitar.ogg %%DATADIR%%/sounds/ca/tv_guitarist.ogg %%DATADIR%%/sounds/ca/tv_house.ogg %%DATADIR%%/sounds/ca/tv_ladder.ogg %%DATADIR%%/sounds/ca/tv_lion.ogg %%DATADIR%%/sounds/ca/tv_lorry.ogg %%DATADIR%%/sounds/ca/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ca/tv_man.ogg %%DATADIR%%/sounds/ca/tv_mechanic.ogg %%DATADIR%%/sounds/ca/tv_monkey.ogg %%DATADIR%%/sounds/ca/tv_path.ogg %%DATADIR%%/sounds/ca/tv_rock.ogg %%DATADIR%%/sounds/ca/tv_school.ogg %%DATADIR%%/sounds/ca/tv_shop.ogg %%DATADIR%%/sounds/ca/tv_smoke.ogg %%DATADIR%%/sounds/ca/tv_tipper.ogg %%DATADIR%%/sounds/ca/tv_trailer.ogg %%DATADIR%%/sounds/ca/tv_train.ogg %%DATADIR%%/sounds/ca/tv_tree.ogg %%DATADIR%%/sounds/ca/tv_tunnel.ogg %%DATADIR%%/sounds/ca/tv_volley_net.ogg %%DATADIR%%/sounds/ca/tv_wagon.ogg %%DATADIR%%/sounds/ca/tv_woman.ogg %%DATADIR%%/sounds/ca/vase.ogg %%DATADIR%%/sounds/ca/wanted.ogg %%DATADIR%%/sounds/ca/white-dowe-fly.ogg %%DATADIR%%/sounds/ca/white-dowe.ogg %%DATADIR%%/sounds/ca/xmas_angel.ogg %%DATADIR%%/sounds/ca/xmas_ball.ogg %%DATADIR%%/sounds/ca/xmas_boot.ogg %%DATADIR%%/sounds/ca/xmas_candle.ogg %%DATADIR%%/sounds/ca/xmas_comet.ogg %%DATADIR%%/sounds/ca/xmas_garland.ogg %%DATADIR%%/sounds/ca/xmas_lights.ogg %%DATADIR%%/sounds/ca/xmas_mistletoe.ogg %%DATADIR%%/sounds/ca/xmas_moon.ogg %%DATADIR%%/sounds/ca/xmas_owl.ogg %%DATADIR%%/sounds/ca/xmas_present.ogg %%DATADIR%%/sounds/ca/xmas_rabbit.ogg %%DATADIR%%/sounds/ca/xmas_reindeer.ogg %%DATADIR%%/sounds/ca/xmas_shoe.ogg %%DATADIR%%/sounds/ca/xmas_snowflake.ogg %%DATADIR%%/sounds/ca/xmas_snowman.ogg %%DATADIR%%/sounds/ca/xmas_star.ogg %%DATADIR%%/sounds/ca/xmas_tree.ogg %%DATADIR%%/sounds/ca/xmas_turtle.ogg %%DATADIR%%/sounds/ca/xmas_tux.ogg %%DATADIR%%/sounds/da.soundtheme %%DATADIR%%/sounds/da/blomst.ogg %%DATADIR%%/sounds/da/bold.ogg %%DATADIR%%/sounds/da/briller.ogg %%DATADIR%%/sounds/da/egypt_aesel.ogg %%DATADIR%%/sounds/da/egypt_bro.ogg %%DATADIR%%/sounds/da/egypt_broend.ogg %%DATADIR%%/sounds/da/egypt_bue.ogg %%DATADIR%%/sounds/da/egypt_dreng.ogg %%DATADIR%%/sounds/da/egypt_fugle.ogg %%DATADIR%%/sounds/da/egypt_graes.ogg %%DATADIR%%/sounds/da/egypt_kamel.ogg %%DATADIR%%/sounds/da/egypt_kvinde.ogg %%DATADIR%%/sounds/da/egypt_mand.ogg %%DATADIR%%/sounds/da/egypt_oase.ogg %%DATADIR%%/sounds/da/egypt_palme.ogg %%DATADIR%%/sounds/da/egypt_pige.ogg %%DATADIR%%/sounds/da/egypt_pyramide.ogg %%DATADIR%%/sounds/da/egypt_sfinx.ogg %%DATADIR%%/sounds/da/egypt_soejle.ogg %%DATADIR%%/sounds/da/egypt_vej.ogg %%DATADIR%%/sounds/da/egypt_vogn.ogg %%DATADIR%%/sounds/da/frakke.ogg %%DATADIR%%/sounds/da/frier-tux.ogg %%DATADIR%%/sounds/da/guard-tux.ogg %%DATADIR%%/sounds/da/haar.ogg %%DATADIR%%/sounds/da/hat.ogg %%DATADIR%%/sounds/da/kid-tux.ogg %%DATADIR%%/sounds/da/little-tux.ogg %%DATADIR%%/sounds/da/maiden-tux.ogg %%DATADIR%%/sounds/da/moon_astronaut.ogg %%DATADIR%%/sounds/da/moon_hotel.ogg %%DATADIR%%/sounds/da/moon_jorden.ogg %%DATADIR%%/sounds/da/moon_maanefartoej.ogg %%DATADIR%%/sounds/da/moon_planet.ogg %%DATADIR%%/sounds/da/moon_radar.ogg %%DATADIR%%/sounds/da/moon_raket.ogg %%DATADIR%%/sounds/da/moon_rumvaesen.ogg %%DATADIR%%/sounds/da/moon_satellit.ogg %%DATADIR%%/sounds/da/moon_skilt.ogg %%DATADIR%%/sounds/da/moon_stjerne.ogg %%DATADIR%%/sounds/da/moon_stjerneskud.ogg %%DATADIR%%/sounds/da/moon_ufo.ogg %%DATADIR%%/sounds/da/moon_uhyre.ogg %%DATADIR%%/sounds/da/mund.ogg %%DATADIR%%/sounds/da/naese.ogg %%DATADIR%%/sounds/da/nederdel.ogg %%DATADIR%%/sounds/da/oeje.ogg %%DATADIR%%/sounds/da/oejenbryn.ogg %%DATADIR%%/sounds/da/oere.ogg %%DATADIR%%/sounds/da/oerering.ogg %%DATADIR%%/sounds/da/overskaeg.ogg %%DATADIR%%/sounds/da/paraply.ogg %%DATADIR%%/sounds/da/pizza_agurk.ogg %%DATADIR%%/sounds/da/pizza_ananas.ogg %%DATADIR%%/sounds/da/pizza_ansjos.ogg %%DATADIR%%/sounds/da/pizza_bacon.ogg %%DATADIR%%/sounds/da/pizza_broccoli.ogg %%DATADIR%%/sounds/da/pizza_champignon.ogg %%DATADIR%%/sounds/da/pizza_loeg.ogg %%DATADIR%%/sounds/da/pizza_oliven.ogg %%DATADIR%%/sounds/da/pizza_oregano.ogg %%DATADIR%%/sounds/da/pizza_ost.ogg %%DATADIR%%/sounds/da/pizza_pebber.ogg %%DATADIR%%/sounds/da/pizza_pebberoni.ogg %%DATADIR%%/sounds/da/pizza_salami.ogg %%DATADIR%%/sounds/da/pizza_tomat.ogg %%DATADIR%%/sounds/da/prince-tux.ogg %%DATADIR%%/sounds/da/robin-tux.ogg %%DATADIR%%/sounds/da/sherif-tux.ogg %%DATADIR%%/sounds/da/shorts.ogg %%DATADIR%%/sounds/da/sko.ogg %%DATADIR%%/sounds/da/slips.ogg %%DATADIR%%/sounds/da/sloejfe.ogg %%DATADIR%%/sounds/da/solbriller.ogg %%DATADIR%%/sounds/da/stok.ogg %%DATADIR%%/sounds/da/tux-angry.ogg %%DATADIR%%/sounds/da/tux-apple.ogg %%DATADIR%%/sounds/da/tux-arrow.ogg %%DATADIR%%/sounds/da/tux-arrows.ogg %%DATADIR%%/sounds/da/tux-bow.ogg %%DATADIR%%/sounds/da/tux-bullseye.ogg %%DATADIR%%/sounds/da/tux-candles.ogg %%DATADIR%%/sounds/da/tux-dowe.ogg %%DATADIR%%/sounds/da/tux-fish.ogg %%DATADIR%%/sounds/da/tux-flask.ogg %%DATADIR%%/sounds/da/tux-fly.ogg %%DATADIR%%/sounds/da/tux-goblet.ogg %%DATADIR%%/sounds/da/tux-guitar.ogg %%DATADIR%%/sounds/da/tux-huh.ogg %%DATADIR%%/sounds/da/tux-idea.ogg %%DATADIR%%/sounds/da/tux-key.ogg %%DATADIR%%/sounds/da/tux-laugh.ogg %%DATADIR%%/sounds/da/tux-letter.ogg %%DATADIR%%/sounds/da/tux-love.ogg %%DATADIR%%/sounds/da/tux-note.ogg %%DATADIR%%/sounds/da/tux-notes.ogg %%DATADIR%%/sounds/da/tux-plate.ogg %%DATADIR%%/sounds/da/tux-poison.ogg %%DATADIR%%/sounds/da/tux-sick.ogg %%DATADIR%%/sounds/da/tux-stare.ogg %%DATADIR%%/sounds/da/tux-teacup.ogg %%DATADIR%%/sounds/da/tux-vase.ogg %%DATADIR%%/sounds/da/tux-wanted.ogg %%DATADIR%%/sounds/da/tux-what.ogg %%DATADIR%%/sounds/da/tux-wow.ogg %%DATADIR%%/sounds/da/tux-zzz.ogg %%DATADIR%%/sounds/da/tv_accident.ogg %%DATADIR%%/sounds/da/tv_ball.ogg %%DATADIR%%/sounds/da/tv_barrier.ogg %%DATADIR%%/sounds/da/tv_bil.ogg %%DATADIR%%/sounds/da/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/da/tv_caravan.ogg %%DATADIR%%/sounds/da/tv_cykel.ogg %%DATADIR%%/sounds/da/tv_cyklist.ogg %%DATADIR%%/sounds/da/tv_elephant.ogg %%DATADIR%%/sounds/da/tv_excavator.ogg %%DATADIR%%/sounds/da/tv_fence.ogg %%DATADIR%%/sounds/da/tv_fire.ogg %%DATADIR%%/sounds/da/tv_fireengine.ogg %%DATADIR%%/sounds/da/tv_fireman.ogg %%DATADIR%%/sounds/da/tv_fisherman.ogg %%DATADIR%%/sounds/da/tv_giraffe.ogg %%DATADIR%%/sounds/da/tv_guitar.ogg %%DATADIR%%/sounds/da/tv_guitarist.ogg %%DATADIR%%/sounds/da/tv_house.ogg %%DATADIR%%/sounds/da/tv_ladder.ogg %%DATADIR%%/sounds/da/tv_lion.ogg %%DATADIR%%/sounds/da/tv_lorry.ogg %%DATADIR%%/sounds/da/tv_lorry_tractor.ogg %%DATADIR%%/sounds/da/tv_man.ogg %%DATADIR%%/sounds/da/tv_mechanic.ogg %%DATADIR%%/sounds/da/tv_monkey.ogg %%DATADIR%%/sounds/da/tv_path.ogg %%DATADIR%%/sounds/da/tv_rock.ogg %%DATADIR%%/sounds/da/tv_school.ogg %%DATADIR%%/sounds/da/tv_shop.ogg %%DATADIR%%/sounds/da/tv_smoke.ogg %%DATADIR%%/sounds/da/tv_tipper.ogg %%DATADIR%%/sounds/da/tv_tog.ogg %%DATADIR%%/sounds/da/tv_trailer.ogg %%DATADIR%%/sounds/da/tv_tree.ogg %%DATADIR%%/sounds/da/tv_tunnel.ogg %%DATADIR%%/sounds/da/tv_volley_net.ogg %%DATADIR%%/sounds/da/tv_wagon.ogg %%DATADIR%%/sounds/da/tv_woman.ogg %%DATADIR%%/sounds/da/whitch-tux.ogg %%DATADIR%%/sounds/da/xmas_angel.ogg %%DATADIR%%/sounds/da/xmas_ball.ogg %%DATADIR%%/sounds/da/xmas_boot.ogg %%DATADIR%%/sounds/da/xmas_candle.ogg %%DATADIR%%/sounds/da/xmas_comet.ogg %%DATADIR%%/sounds/da/xmas_garland.ogg %%DATADIR%%/sounds/da/xmas_lights.ogg %%DATADIR%%/sounds/da/xmas_mistletoe.ogg %%DATADIR%%/sounds/da/xmas_moon.ogg %%DATADIR%%/sounds/da/xmas_owl.ogg %%DATADIR%%/sounds/da/xmas_present.ogg %%DATADIR%%/sounds/da/xmas_rabbit.ogg %%DATADIR%%/sounds/da/xmas_reindeer.ogg %%DATADIR%%/sounds/da/xmas_shoe.ogg %%DATADIR%%/sounds/da/xmas_snowflake.ogg %%DATADIR%%/sounds/da/xmas_snowman.ogg %%DATADIR%%/sounds/da/xmas_star.ogg %%DATADIR%%/sounds/da/xmas_tree.ogg %%DATADIR%%/sounds/da/xmas_turtle.ogg %%DATADIR%%/sounds/da/xmas_tux.ogg %%DATADIR%%/sounds/de.soundtheme %%DATADIR%%/sounds/de/ball.ogg %%DATADIR%%/sounds/de/bow.ogg %%DATADIR%%/sounds/de/coat.ogg %%DATADIR%%/sounds/de/ear.ogg %%DATADIR%%/sounds/de/earring.ogg %%DATADIR%%/sounds/de/egypt_arch.ogg %%DATADIR%%/sounds/de/egypt_birds.ogg %%DATADIR%%/sounds/de/egypt_boy.ogg %%DATADIR%%/sounds/de/egypt_bridge.ogg %%DATADIR%%/sounds/de/egypt_camel.ogg %%DATADIR%%/sounds/de/egypt_cart.ogg %%DATADIR%%/sounds/de/egypt_column.ogg %%DATADIR%%/sounds/de/egypt_donkey.ogg %%DATADIR%%/sounds/de/egypt_girl.ogg %%DATADIR%%/sounds/de/egypt_grass.ogg %%DATADIR%%/sounds/de/egypt_man.ogg %%DATADIR%%/sounds/de/egypt_oasis.ogg %%DATADIR%%/sounds/de/egypt_palmtree.ogg %%DATADIR%%/sounds/de/egypt_pyramid.ogg %%DATADIR%%/sounds/de/egypt_road.ogg %%DATADIR%%/sounds/de/egypt_sphynx.ogg %%DATADIR%%/sounds/de/egypt_well.ogg %%DATADIR%%/sounds/de/egypt_woman.ogg %%DATADIR%%/sounds/de/eye.ogg %%DATADIR%%/sounds/de/eyebrow.ogg %%DATADIR%%/sounds/de/flower.ogg %%DATADIR%%/sounds/de/hair.ogg %%DATADIR%%/sounds/de/hat.ogg %%DATADIR%%/sounds/de/moon_alien.ogg %%DATADIR%%/sounds/de/moon_astronaut.ogg %%DATADIR%%/sounds/de/moon_earth.ogg %%DATADIR%%/sounds/de/moon_fallingstar.ogg %%DATADIR%%/sounds/de/moon_hotel.ogg %%DATADIR%%/sounds/de/moon_monster.ogg %%DATADIR%%/sounds/de/moon_moonwalker.ogg %%DATADIR%%/sounds/de/moon_planet.ogg %%DATADIR%%/sounds/de/moon_radar.ogg %%DATADIR%%/sounds/de/moon_rocket.ogg %%DATADIR%%/sounds/de/moon_satellite.ogg %%DATADIR%%/sounds/de/moon_sign.ogg %%DATADIR%%/sounds/de/moon_star.ogg %%DATADIR%%/sounds/de/moon_ufo.ogg %%DATADIR%%/sounds/de/moustache.ogg %%DATADIR%%/sounds/de/mouth.ogg %%DATADIR%%/sounds/de/nose.ogg %%DATADIR%%/sounds/de/pizzeria_anchovy.ogg %%DATADIR%%/sounds/de/pizzeria_bacon.ogg %%DATADIR%%/sounds/de/pizzeria_broccolli.ogg %%DATADIR%%/sounds/de/pizzeria_cheese.ogg %%DATADIR%%/sounds/de/pizzeria_cucumber.ogg %%DATADIR%%/sounds/de/pizzeria_mushroom.ogg %%DATADIR%%/sounds/de/pizzeria_olive.ogg %%DATADIR%%/sounds/de/pizzeria_onion.ogg %%DATADIR%%/sounds/de/pizzeria_oregano.ogg %%DATADIR%%/sounds/de/pizzeria_pepper.ogg %%DATADIR%%/sounds/de/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/de/pizzeria_pineapple.ogg %%DATADIR%%/sounds/de/pizzeria_salami.ogg %%DATADIR%%/sounds/de/pizzeria_tomato.ogg %%DATADIR%%/sounds/de/shoes.ogg %%DATADIR%%/sounds/de/shorts.ogg %%DATADIR%%/sounds/de/skirt.ogg %%DATADIR%%/sounds/de/spectacles.ogg %%DATADIR%%/sounds/de/stick.ogg %%DATADIR%%/sounds/de/sunglasses.ogg %%DATADIR%%/sounds/de/tie.ogg %%DATADIR%%/sounds/de/tv_bicycle.ogg %%DATADIR%%/sounds/de/tv_car.ogg %%DATADIR%%/sounds/de/tv_cyclist.ogg %%DATADIR%%/sounds/de/tv_train.ogg %%DATADIR%%/sounds/de/tv_tree.ogg %%DATADIR%%/sounds/de/umbrella.ogg %%DATADIR%%/sounds/el.soundtheme %%DATADIR%%/sounds/el/arrow.ogg %%DATADIR%%/sounds/el/ball.ogg %%DATADIR%%/sounds/el/cheese.ogg %%DATADIR%%/sounds/el/coat.ogg %%DATADIR%%/sounds/el/ear.ogg %%DATADIR%%/sounds/el/earring.ogg %%DATADIR%%/sounds/el/egypt_arch.ogg %%DATADIR%%/sounds/el/egypt_birds.ogg %%DATADIR%%/sounds/el/egypt_boy.ogg %%DATADIR%%/sounds/el/egypt_bridge.ogg %%DATADIR%%/sounds/el/egypt_camel.ogg %%DATADIR%%/sounds/el/egypt_cart.ogg %%DATADIR%%/sounds/el/egypt_column.ogg %%DATADIR%%/sounds/el/egypt_donkey.ogg %%DATADIR%%/sounds/el/egypt_girl.ogg %%DATADIR%%/sounds/el/egypt_grass.ogg %%DATADIR%%/sounds/el/egypt_man.ogg %%DATADIR%%/sounds/el/egypt_oasis.ogg %%DATADIR%%/sounds/el/egypt_palmtree.ogg %%DATADIR%%/sounds/el/egypt_pyramid.ogg %%DATADIR%%/sounds/el/egypt_road.ogg %%DATADIR%%/sounds/el/egypt_sphynx.ogg %%DATADIR%%/sounds/el/egypt_well.ogg %%DATADIR%%/sounds/el/egypt_woman.ogg %%DATADIR%%/sounds/el/eye.ogg %%DATADIR%%/sounds/el/eyebrow.ogg %%DATADIR%%/sounds/el/flower.ogg %%DATADIR%%/sounds/el/hair.ogg %%DATADIR%%/sounds/el/hat.ogg %%DATADIR%%/sounds/el/moon_alien.ogg %%DATADIR%%/sounds/el/moon_astronaut.ogg %%DATADIR%%/sounds/el/moon_earth.ogg %%DATADIR%%/sounds/el/moon_fallingstar.ogg %%DATADIR%%/sounds/el/moon_hotel.ogg %%DATADIR%%/sounds/el/moon_monster.ogg %%DATADIR%%/sounds/el/moon_moonwalker.ogg %%DATADIR%%/sounds/el/moon_planet.ogg %%DATADIR%%/sounds/el/moon_radar.ogg %%DATADIR%%/sounds/el/moon_rocket.ogg %%DATADIR%%/sounds/el/moon_satellite.ogg %%DATADIR%%/sounds/el/moon_sign.ogg %%DATADIR%%/sounds/el/moon_star.ogg %%DATADIR%%/sounds/el/moon_ufo.ogg %%DATADIR%%/sounds/el/moustache.ogg %%DATADIR%%/sounds/el/mouth.ogg %%DATADIR%%/sounds/el/nose.ogg %%DATADIR%%/sounds/el/pizzeria_anchovy.ogg %%DATADIR%%/sounds/el/pizzeria_bacon.ogg %%DATADIR%%/sounds/el/pizzeria_broccolli.ogg %%DATADIR%%/sounds/el/pizzeria_cheese.ogg %%DATADIR%%/sounds/el/pizzeria_cucumber.ogg %%DATADIR%%/sounds/el/pizzeria_mushroom.ogg %%DATADIR%%/sounds/el/pizzeria_olive.ogg %%DATADIR%%/sounds/el/pizzeria_onion.ogg %%DATADIR%%/sounds/el/pizzeria_oregano.ogg %%DATADIR%%/sounds/el/pizzeria_pepper.ogg %%DATADIR%%/sounds/el/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/el/pizzeria_pineapple.ogg %%DATADIR%%/sounds/el/pizzeria_salami.ogg %%DATADIR%%/sounds/el/pizzeria_tomato.ogg %%DATADIR%%/sounds/el/shoe.ogg %%DATADIR%%/sounds/el/shorts.ogg %%DATADIR%%/sounds/el/skirt.ogg %%DATADIR%%/sounds/el/spectacles.ogg %%DATADIR%%/sounds/el/stick.ogg %%DATADIR%%/sounds/el/stick2.ogg %%DATADIR%%/sounds/el/sunglasses.ogg %%DATADIR%%/sounds/el/tie.ogg %%DATADIR%%/sounds/el/tv_bicycle.ogg %%DATADIR%%/sounds/el/tv_car.ogg %%DATADIR%%/sounds/el/tv_cyclist.ogg %%DATADIR%%/sounds/el/tv_train.ogg %%DATADIR%%/sounds/el/tv_tree.ogg %%DATADIR%%/sounds/el/umbrella.ogg %%DATADIR%%/sounds/en.soundtheme %%DATADIR%%/sounds/en/ball.ogg %%DATADIR%%/sounds/en/bow.ogg %%DATADIR%%/sounds/en/coat.ogg %%DATADIR%%/sounds/en/ear.ogg %%DATADIR%%/sounds/en/earring.ogg %%DATADIR%%/sounds/en/egypt_arch.ogg %%DATADIR%%/sounds/en/egypt_birds.ogg %%DATADIR%%/sounds/en/egypt_boy.ogg %%DATADIR%%/sounds/en/egypt_bridge.ogg %%DATADIR%%/sounds/en/egypt_camel.ogg %%DATADIR%%/sounds/en/egypt_cart.ogg %%DATADIR%%/sounds/en/egypt_column.ogg %%DATADIR%%/sounds/en/egypt_donkey.ogg %%DATADIR%%/sounds/en/egypt_girl.ogg %%DATADIR%%/sounds/en/egypt_grass.ogg %%DATADIR%%/sounds/en/egypt_man.ogg %%DATADIR%%/sounds/en/egypt_oasis.ogg %%DATADIR%%/sounds/en/egypt_palmtree.ogg %%DATADIR%%/sounds/en/egypt_pyramid.ogg %%DATADIR%%/sounds/en/egypt_road.ogg %%DATADIR%%/sounds/en/egypt_sphynx.ogg %%DATADIR%%/sounds/en/egypt_well.ogg %%DATADIR%%/sounds/en/egypt_woman.ogg %%DATADIR%%/sounds/en/eye.ogg %%DATADIR%%/sounds/en/eyebrow.ogg %%DATADIR%%/sounds/en/flower.ogg %%DATADIR%%/sounds/en/hair.ogg %%DATADIR%%/sounds/en/hat.ogg %%DATADIR%%/sounds/en/moon_alien.ogg %%DATADIR%%/sounds/en/moon_astronaut.ogg %%DATADIR%%/sounds/en/moon_earth.ogg %%DATADIR%%/sounds/en/moon_fallingstar.ogg %%DATADIR%%/sounds/en/moon_hotel.ogg %%DATADIR%%/sounds/en/moon_monster.ogg %%DATADIR%%/sounds/en/moon_moonwalker.ogg %%DATADIR%%/sounds/en/moon_planet.ogg %%DATADIR%%/sounds/en/moon_radar.ogg %%DATADIR%%/sounds/en/moon_rocket.ogg %%DATADIR%%/sounds/en/moon_satellite.ogg %%DATADIR%%/sounds/en/moon_sign.ogg %%DATADIR%%/sounds/en/moon_star.ogg %%DATADIR%%/sounds/en/moon_ufo.ogg %%DATADIR%%/sounds/en/moustache.ogg %%DATADIR%%/sounds/en/mouth.ogg %%DATADIR%%/sounds/en/nose.ogg %%DATADIR%%/sounds/en/pizzeria_anchovy.ogg %%DATADIR%%/sounds/en/pizzeria_bacon.ogg %%DATADIR%%/sounds/en/pizzeria_broccolli.ogg %%DATADIR%%/sounds/en/pizzeria_cheese.ogg %%DATADIR%%/sounds/en/pizzeria_cucumber.ogg %%DATADIR%%/sounds/en/pizzeria_mushroom.ogg %%DATADIR%%/sounds/en/pizzeria_olive.ogg %%DATADIR%%/sounds/en/pizzeria_onion.ogg %%DATADIR%%/sounds/en/pizzeria_oregano.ogg %%DATADIR%%/sounds/en/pizzeria_pepper.ogg %%DATADIR%%/sounds/en/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/en/pizzeria_pineapple.ogg %%DATADIR%%/sounds/en/pizzeria_salami.ogg %%DATADIR%%/sounds/en/pizzeria_tomato.ogg %%DATADIR%%/sounds/en/shoe.ogg %%DATADIR%%/sounds/en/shorts.ogg %%DATADIR%%/sounds/en/skirt.ogg %%DATADIR%%/sounds/en/spectacles.ogg %%DATADIR%%/sounds/en/stick.ogg %%DATADIR%%/sounds/en/sunglasses.ogg %%DATADIR%%/sounds/en/tie.ogg %%DATADIR%%/sounds/en/tv_bicycle.ogg %%DATADIR%%/sounds/en/tv_car.ogg %%DATADIR%%/sounds/en/tv_cyclist.ogg %%DATADIR%%/sounds/en/tv_train.ogg %%DATADIR%%/sounds/en/tv_tree.ogg %%DATADIR%%/sounds/en/umbrella.ogg %%DATADIR%%/sounds/es.soundtheme %%DATADIR%%/sounds/es/anteojos.wav %%DATADIR%%/sounds/es/bigote.wav %%DATADIR%%/sounds/es/boca.wav %%DATADIR%%/sounds/es/ceja.wav %%DATADIR%%/sounds/es/gafasdesol.wav %%DATADIR%%/sounds/es/lazo.wav %%DATADIR%%/sounds/es/nariz.wav %%DATADIR%%/sounds/es/ojo.wav %%DATADIR%%/sounds/es/oreja.wav %%DATADIR%%/sounds/es/pelo.wav %%DATADIR%%/sounds/es/pendiente.wav %%DATADIR%%/sounds/es/sombrero.wav %%DATADIR%%/sounds/fi.soundtheme %%DATADIR%%/sounds/fi/aurinkolasit.wav %%DATADIR%%/sounds/fi/hattu.wav %%DATADIR%%/sounds/fi/korva.wav %%DATADIR%%/sounds/fi/korvakoru.wav %%DATADIR%%/sounds/fi/kulmakarva.wav %%DATADIR%%/sounds/fi/nena.wav %%DATADIR%%/sounds/fi/rusetti.wav %%DATADIR%%/sounds/fi/silma.wav %%DATADIR%%/sounds/fi/silmalasit.wav %%DATADIR%%/sounds/fi/suu.wav %%DATADIR%%/sounds/fi/viikset.wav %%DATADIR%%/sounds/fr.soundtheme %%DATADIR%%/sounds/fr/bouche.wav %%DATADIR%%/sounds/fr/boucle-d-oreille.wav %%DATADIR%%/sounds/fr/chapeau.wav %%DATADIR%%/sounds/fr/cheveux.wav %%DATADIR%%/sounds/fr/cravate.wav %%DATADIR%%/sounds/fr/egypte_ane.wav %%DATADIR%%/sounds/fr/egypte_arche.wav %%DATADIR%%/sounds/fr/egypte_chameau.wav %%DATADIR%%/sounds/fr/egypte_charette.wav %%DATADIR%%/sounds/fr/egypte_colonne.wav %%DATADIR%%/sounds/fr/egypte_femme.wav %%DATADIR%%/sounds/fr/egypte_fille.wav %%DATADIR%%/sounds/fr/egypte_garcon.wav %%DATADIR%%/sounds/fr/egypte_herbe.wav %%DATADIR%%/sounds/fr/egypte_homme.wav %%DATADIR%%/sounds/fr/egypte_oasis.wav %%DATADIR%%/sounds/fr/egypte_oiseaux.wav %%DATADIR%%/sounds/fr/egypte_palmier.wav %%DATADIR%%/sounds/fr/egypte_pont.wav %%DATADIR%%/sounds/fr/egypte_puits.wav %%DATADIR%%/sounds/fr/egypte_pyramide.wav %%DATADIR%%/sounds/fr/egypte_route.wav %%DATADIR%%/sounds/fr/egypte_sphinx.wav %%DATADIR%%/sounds/fr/lune_astronaute.wav %%DATADIR%%/sounds/fr/lune_etoile-filante.wav %%DATADIR%%/sounds/fr/lune_etoile.wav %%DATADIR%%/sounds/fr/lune_extraterrestre.wav %%DATADIR%%/sounds/fr/lune_fusee.wav %%DATADIR%%/sounds/fr/lune_hotel.wav %%DATADIR%%/sounds/fr/lune_monstre.wav %%DATADIR%%/sounds/fr/lune_ovni.wav %%DATADIR%%/sounds/fr/lune_planete.wav %%DATADIR%%/sounds/fr/lune_radar.wav %%DATADIR%%/sounds/fr/lune_rover.wav %%DATADIR%%/sounds/fr/lune_satellite.wav %%DATADIR%%/sounds/fr/lune_signe.wav %%DATADIR%%/sounds/fr/lune_terre.wav %%DATADIR%%/sounds/fr/lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/lunettes.wav %%DATADIR%%/sounds/fr/moustache.wav %%DATADIR%%/sounds/fr/nez.wav %%DATADIR%%/sounds/fr/noel_Tux-le-pingouin.wav %%DATADIR%%/sounds/fr/noel_ange.wav %%DATADIR%%/sounds/fr/noel_arbre.wav %%DATADIR%%/sounds/fr/noel_bonhomme-de-neige.wav %%DATADIR%%/sounds/fr/noel_botte.wav %%DATADIR%%/sounds/fr/noel_bougie.wav %%DATADIR%%/sounds/fr/noel_boule-de-noel.wav %%DATADIR%%/sounds/fr/noel_boule.wav %%DATADIR%%/sounds/fr/noel_branche-de-gui.wav %%DATADIR%%/sounds/fr/noel_branche-de-houx.wav %%DATADIR%%/sounds/fr/noel_chaussure.wav %%DATADIR%%/sounds/fr/noel_chouette.wav %%DATADIR%%/sounds/fr/noel_comete.wav %%DATADIR%%/sounds/fr/noel_etoile.wav %%DATADIR%%/sounds/fr/noel_flocon.wav %%DATADIR%%/sounds/fr/noel_guirlande-lumineuse.wav %%DATADIR%%/sounds/fr/noel_guirlande.wav %%DATADIR%%/sounds/fr/noel_lapin.wav %%DATADIR%%/sounds/fr/noel_lune.wav %%DATADIR%%/sounds/fr/noel_paquet-cadeau.wav %%DATADIR%%/sounds/fr/noel_renne.wav %%DATADIR%%/sounds/fr/noel_tortue.wav %%DATADIR%%/sounds/fr/noeud-papillon.wav %%DATADIR%%/sounds/fr/oeil.wav %%DATADIR%%/sounds/fr/oreille.wav %%DATADIR%%/sounds/fr/papillons_aile.wav %%DATADIR%%/sounds/fr/papillons_ailes.wav %%DATADIR%%/sounds/fr/papillons_cercle.wav %%DATADIR%%/sounds/fr/papillons_cercles.wav %%DATADIR%%/sounds/fr/papillons_coeur.wav %%DATADIR%%/sounds/fr/papillons_corps.wav %%DATADIR%%/sounds/fr/papillons_forme-violette.wav %%DATADIR%%/sounds/fr/papillons_oeil.wav %%DATADIR%%/sounds/fr/papillons_spirale.wav %%DATADIR%%/sounds/fr/patate_ballon.wav %%DATADIR%%/sounds/fr/patate_baton.wav %%DATADIR%%/sounds/fr/patate_bouche.wav %%DATADIR%%/sounds/fr/patate_boucle-d-oreille.wav %%DATADIR%%/sounds/fr/patate_chapeau.wav %%DATADIR%%/sounds/fr/patate_chaussure.wav %%DATADIR%%/sounds/fr/patate_cheveu.wav %%DATADIR%%/sounds/fr/patate_cheveux.wav %%DATADIR%%/sounds/fr/patate_cravate.wav %%DATADIR%%/sounds/fr/patate_fleur.wav %%DATADIR%%/sounds/fr/patate_jupe.wav %%DATADIR%%/sounds/fr/patate_lunettes-de-soleil.wav %%DATADIR%%/sounds/fr/patate_lunettes.wav %%DATADIR%%/sounds/fr/patate_manteau.wav %%DATADIR%%/sounds/fr/patate_moustache.wav %%DATADIR%%/sounds/fr/patate_nez.wav %%DATADIR%%/sounds/fr/patate_noeud-papillon.wav %%DATADIR%%/sounds/fr/patate_oeil.wav %%DATADIR%%/sounds/fr/patate_oreille.wav %%DATADIR%%/sounds/fr/patate_parapluie.wav %%DATADIR%%/sounds/fr/patate_short.wav %%DATADIR%%/sounds/fr/patate_sourcil.wav %%DATADIR%%/sounds/fr/pizzeria_ananas.wav %%DATADIR%%/sounds/fr/pizzeria_anchois.wav %%DATADIR%%/sounds/fr/pizzeria_brocoli.wav %%DATADIR%%/sounds/fr/pizzeria_champignon.wav %%DATADIR%%/sounds/fr/pizzeria_concombre.wav %%DATADIR%%/sounds/fr/pizzeria_fromage.wav %%DATADIR%%/sounds/fr/pizzeria_lardon.wav %%DATADIR%%/sounds/fr/pizzeria_oignon.wav %%DATADIR%%/sounds/fr/pizzeria_olive.wav %%DATADIR%%/sounds/fr/pizzeria_origan.wav %%DATADIR%%/sounds/fr/pizzeria_pepperoni.wav %%DATADIR%%/sounds/fr/pizzeria_piment.wav %%DATADIR%%/sounds/fr/pizzeria_poivre.wav %%DATADIR%%/sounds/fr/pizzeria_poivron.wav %%DATADIR%%/sounds/fr/pizzeria_salami.wav %%DATADIR%%/sounds/fr/pizzeria_tomate.wav %%DATADIR%%/sounds/fr/robin_Tux-Robin.wav %%DATADIR%%/sounds/fr/robin_Tux-l-enfant.wav %%DATADIR%%/sounds/fr/robin_Tux-la-jeune-fille.wav %%DATADIR%%/sounds/fr/robin_Tux-la-sorciere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-frere.wav %%DATADIR%%/sounds/fr/robin_Tux-le-garde.wav %%DATADIR%%/sounds/fr/robin_Tux-le-petit.wav %%DATADIR%%/sounds/fr/robin_Tux-le-prince.wav %%DATADIR%%/sounds/fr/robin_Tux-le-sheriff.wav %%DATADIR%%/sounds/fr/robin_arc.wav %%DATADIR%%/sounds/fr/robin_assiette.wav %%DATADIR%%/sounds/fr/robin_avis-recherche.wav %%DATADIR%%/sounds/fr/robin_chandelles-allumees.wav %%DATADIR%%/sounds/fr/robin_chandelles.wav %%DATADIR%%/sounds/fr/robin_cible.wav %%DATADIR%%/sounds/fr/robin_cle.wav %%DATADIR%%/sounds/fr/robin_coupe.wav %%DATADIR%%/sounds/fr/robin_flacon.wav %%DATADIR%%/sounds/fr/robin_fleche.wav %%DATADIR%%/sounds/fr/robin_fleches.wav %%DATADIR%%/sounds/fr/robin_guitare.wav %%DATADIR%%/sounds/fr/robin_heu.wav %%DATADIR%%/sounds/fr/robin_j-ai-une-idee.wav %%DATADIR%%/sounds/fr/robin_j-aime.wav %%DATADIR%%/sounds/fr/robin_j-examine.wav %%DATADIR%%/sounds/fr/robin_je-dors.wav %%DATADIR%%/sounds/fr/robin_je-me-fache.wav %%DATADIR%%/sounds/fr/robin_je-ris.wav %%DATADIR%%/sounds/fr/robin_je-suis-malade.wav %%DATADIR%%/sounds/fr/robin_lettre.wav %%DATADIR%%/sounds/fr/robin_note.wav %%DATADIR%%/sounds/fr/robin_notes.wav %%DATADIR%%/sounds/fr/robin_pigeon-volant.wav %%DATADIR%%/sounds/fr/robin_pigeon.wav %%DATADIR%%/sounds/fr/robin_poison.wav %%DATADIR%%/sounds/fr/robin_poisson.wav %%DATADIR%%/sounds/fr/robin_pomme.wav %%DATADIR%%/sounds/fr/robin_quoi.wav %%DATADIR%%/sounds/fr/robin_tasse.wav %%DATADIR%%/sounds/fr/robin_tir.wav %%DATADIR%%/sounds/fr/robin_vase.wav %%DATADIR%%/sounds/fr/robin_wouah.wav %%DATADIR%%/sounds/fr/robot_antenne.wav %%DATADIR%%/sounds/fr/robot_ballon.wav %%DATADIR%%/sounds/fr/robot_base.wav %%DATADIR%%/sounds/fr/robot_bloc.wav %%DATADIR%%/sounds/fr/robot_bras.wav %%DATADIR%%/sounds/fr/robot_corps.wav %%DATADIR%%/sounds/fr/robot_fusee.wav %%DATADIR%%/sounds/fr/robot_main.wav %%DATADIR%%/sounds/fr/robot_oeil.wav %%DATADIR%%/sounds/fr/robot_panneau.wav %%DATADIR%%/sounds/fr/robot_pieds.wav %%DATADIR%%/sounds/fr/robot_pince.wav %%DATADIR%%/sounds/fr/robot_roue.wav %%DATADIR%%/sounds/fr/robot_tete.wav %%DATADIR%%/sounds/fr/robot_tige.wav %%DATADIR%%/sounds/fr/sourcil.wav %%DATADIR%%/sounds/fr/tv_accident.wav %%DATADIR%%/sounds/fr/tv_arbre.wav %%DATADIR%%/sounds/fr/tv_ballon.wav %%DATADIR%%/sounds/fr/tv_barriere.wav %%DATADIR%%/sounds/fr/tv_benne-basculante.wav %%DATADIR%%/sounds/fr/tv_bicyclette.wav %%DATADIR%%/sounds/fr/tv_camion-de-depannage.wav %%DATADIR%%/sounds/fr/tv_camion-de-pompier.wav %%DATADIR%%/sounds/fr/tv_camion.wav %%DATADIR%%/sounds/fr/tv_caravane.wav %%DATADIR%%/sounds/fr/tv_chemin.wav %%DATADIR%%/sounds/fr/tv_cloture.wav %%DATADIR%%/sounds/fr/tv_cycliste.wav %%DATADIR%%/sounds/fr/tv_echelle.wav %%DATADIR%%/sounds/fr/tv_ecole.wav %%DATADIR%%/sounds/fr/tv_elephant.wav %%DATADIR%%/sounds/fr/tv_femme.wav %%DATADIR%%/sounds/fr/tv_feu.wav %%DATADIR%%/sounds/fr/tv_filet-de-volley.wav %%DATADIR%%/sounds/fr/tv_fumee.wav %%DATADIR%%/sounds/fr/tv_girafe.wav %%DATADIR%%/sounds/fr/tv_guitare.wav %%DATADIR%%/sounds/fr/tv_guitariste.wav %%DATADIR%%/sounds/fr/tv_homme.wav %%DATADIR%%/sounds/fr/tv_lion.wav %%DATADIR%%/sounds/fr/tv_magasin.wav %%DATADIR%%/sounds/fr/tv_maison.wav %%DATADIR%%/sounds/fr/tv_mecanicien.wav %%DATADIR%%/sounds/fr/tv_pecheur.wav %%DATADIR%%/sounds/fr/tv_pompier.wav %%DATADIR%%/sounds/fr/tv_remorque.wav %%DATADIR%%/sounds/fr/tv_rocher.wav %%DATADIR%%/sounds/fr/tv_singe.wav %%DATADIR%%/sounds/fr/tv_tracteur-routier.wav %%DATADIR%%/sounds/fr/tv_tractopelle.wav %%DATADIR%%/sounds/fr/tv_train.wav %%DATADIR%%/sounds/fr/tv_tunnel.wav %%DATADIR%%/sounds/fr/tv_voiture.wav %%DATADIR%%/sounds/fr/tv_wagon.wav %%DATADIR%%/sounds/ga.soundtheme %%DATADIR%%/sounds/ga/beal.wav %%DATADIR%%/sounds/ga/carbhat.wav %%DATADIR%%/sounds/ga/cluas.wav %%DATADIR%%/sounds/ga/croimeal.wav %%DATADIR%%/sounds/ga/cuachog.wav %%DATADIR%%/sounds/ga/fainne-cluaise.wav %%DATADIR%%/sounds/ga/gruaig.wav %%DATADIR%%/sounds/ga/hata.wav %%DATADIR%%/sounds/ga/mala.wav %%DATADIR%%/sounds/ga/speaclai-greine.wav %%DATADIR%%/sounds/ga/speaclai.wav %%DATADIR%%/sounds/ga/sron.wav %%DATADIR%%/sounds/ga/suil.wav %%DATADIR%%/sounds/gl.soundtheme %%DATADIR%%/sounds/gl/ball.ogg %%DATADIR%%/sounds/gl/bow.ogg %%DATADIR%%/sounds/gl/coat.ogg %%DATADIR%%/sounds/gl/ear.ogg %%DATADIR%%/sounds/gl/earring.ogg %%DATADIR%%/sounds/gl/egypt_arch.ogg %%DATADIR%%/sounds/gl/egypt_birds.ogg %%DATADIR%%/sounds/gl/egypt_boy.ogg %%DATADIR%%/sounds/gl/egypt_bridge.ogg %%DATADIR%%/sounds/gl/egypt_camel.ogg %%DATADIR%%/sounds/gl/egypt_cart.ogg %%DATADIR%%/sounds/gl/egypt_column.ogg %%DATADIR%%/sounds/gl/egypt_donkey.ogg %%DATADIR%%/sounds/gl/egypt_girl.ogg %%DATADIR%%/sounds/gl/egypt_grass.ogg %%DATADIR%%/sounds/gl/egypt_man.ogg %%DATADIR%%/sounds/gl/egypt_oasis.ogg %%DATADIR%%/sounds/gl/egypt_palmtree.ogg %%DATADIR%%/sounds/gl/egypt_pyramid.ogg %%DATADIR%%/sounds/gl/egypt_road.ogg %%DATADIR%%/sounds/gl/egypt_sphynx.ogg %%DATADIR%%/sounds/gl/egypt_well.ogg %%DATADIR%%/sounds/gl/egypt_woman.ogg %%DATADIR%%/sounds/gl/eye.ogg %%DATADIR%%/sounds/gl/eyebrow.ogg %%DATADIR%%/sounds/gl/flower.ogg %%DATADIR%%/sounds/gl/hair.ogg %%DATADIR%%/sounds/gl/hat.ogg %%DATADIR%%/sounds/gl/moon_alien.ogg %%DATADIR%%/sounds/gl/moon_astronaut.ogg %%DATADIR%%/sounds/gl/moon_earth.ogg %%DATADIR%%/sounds/gl/moon_fallingstar.ogg %%DATADIR%%/sounds/gl/moon_hotel.ogg %%DATADIR%%/sounds/gl/moon_monster.ogg %%DATADIR%%/sounds/gl/moon_moonwalker.ogg %%DATADIR%%/sounds/gl/moon_planet.ogg %%DATADIR%%/sounds/gl/moon_radar.ogg %%DATADIR%%/sounds/gl/moon_rocket.ogg %%DATADIR%%/sounds/gl/moon_satellite.ogg %%DATADIR%%/sounds/gl/moon_sign.ogg %%DATADIR%%/sounds/gl/moon_star.ogg %%DATADIR%%/sounds/gl/moon_ufo.ogg %%DATADIR%%/sounds/gl/moustache.ogg %%DATADIR%%/sounds/gl/mouth.ogg %%DATADIR%%/sounds/gl/nose.ogg %%DATADIR%%/sounds/gl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/gl/pizzeria_bacon.ogg %%DATADIR%%/sounds/gl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/gl/pizzeria_cheese.ogg %%DATADIR%%/sounds/gl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/gl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/gl/pizzeria_olive.ogg %%DATADIR%%/sounds/gl/pizzeria_onion.ogg %%DATADIR%%/sounds/gl/pizzeria_oregano.ogg %%DATADIR%%/sounds/gl/pizzeria_pepper.ogg %%DATADIR%%/sounds/gl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/gl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/gl/pizzeria_salami.ogg %%DATADIR%%/sounds/gl/pizzeria_tomato.ogg %%DATADIR%%/sounds/gl/shoe.ogg %%DATADIR%%/sounds/gl/shorts.ogg %%DATADIR%%/sounds/gl/skirt.ogg %%DATADIR%%/sounds/gl/spectacles.ogg %%DATADIR%%/sounds/gl/stick.ogg %%DATADIR%%/sounds/gl/sunglasses.ogg %%DATADIR%%/sounds/gl/tie.ogg %%DATADIR%%/sounds/gl/tv_bicycle.ogg %%DATADIR%%/sounds/gl/tv_car.ogg %%DATADIR%%/sounds/gl/tv_cyclist.ogg %%DATADIR%%/sounds/gl/tv_train.ogg %%DATADIR%%/sounds/gl/umbrella.ogg %%DATADIR%%/sounds/id.soundtheme %%DATADIR%%/sounds/it.soundtheme %%DATADIR%%/sounds/it/baffi.wav %%DATADIR%%/sounds/it/bocca.wav %%DATADIR%%/sounds/it/capelli.wav %%DATADIR%%/sounds/it/cappello.wav %%DATADIR%%/sounds/it/cravatta.wav %%DATADIR%%/sounds/it/cravattino.wav %%DATADIR%%/sounds/it/naso.wav %%DATADIR%%/sounds/it/occhiali.wav %%DATADIR%%/sounds/it/occhialidasole.wav %%DATADIR%%/sounds/it/occhio.wav %%DATADIR%%/sounds/it/orecchino.wav %%DATADIR%%/sounds/it/orecchio.wav %%DATADIR%%/sounds/it/sopracciglio.wav %%DATADIR%%/sounds/lt.soundtheme %%DATADIR%%/sounds/lt/ball.ogg %%DATADIR%%/sounds/lt/bow.ogg %%DATADIR%%/sounds/lt/coat.ogg %%DATADIR%%/sounds/lt/ear.ogg %%DATADIR%%/sounds/lt/earring.ogg %%DATADIR%%/sounds/lt/egypt_arch.ogg %%DATADIR%%/sounds/lt/egypt_birds.ogg %%DATADIR%%/sounds/lt/egypt_boy.ogg %%DATADIR%%/sounds/lt/egypt_bridge.ogg %%DATADIR%%/sounds/lt/egypt_camel.ogg %%DATADIR%%/sounds/lt/egypt_cart.ogg %%DATADIR%%/sounds/lt/egypt_column.ogg %%DATADIR%%/sounds/lt/egypt_donkey.ogg %%DATADIR%%/sounds/lt/egypt_girl.ogg %%DATADIR%%/sounds/lt/egypt_grass.ogg %%DATADIR%%/sounds/lt/egypt_man.ogg %%DATADIR%%/sounds/lt/egypt_oasis.ogg %%DATADIR%%/sounds/lt/egypt_palmtree.ogg %%DATADIR%%/sounds/lt/egypt_pyramid.ogg %%DATADIR%%/sounds/lt/egypt_road.ogg %%DATADIR%%/sounds/lt/egypt_sphynx.ogg %%DATADIR%%/sounds/lt/egypt_well.ogg %%DATADIR%%/sounds/lt/egypt_woman.ogg %%DATADIR%%/sounds/lt/eye.ogg %%DATADIR%%/sounds/lt/eyebrow.ogg %%DATADIR%%/sounds/lt/flower.ogg %%DATADIR%%/sounds/lt/frier-tux.ogg %%DATADIR%%/sounds/lt/guard-tux.ogg %%DATADIR%%/sounds/lt/hair.ogg %%DATADIR%%/sounds/lt/hat.ogg %%DATADIR%%/sounds/lt/kid-tux.ogg %%DATADIR%%/sounds/lt/little-tux.ogg %%DATADIR%%/sounds/lt/maiden-tux.ogg %%DATADIR%%/sounds/lt/moon_alien.ogg %%DATADIR%%/sounds/lt/moon_astronaut.ogg %%DATADIR%%/sounds/lt/moon_earth.ogg %%DATADIR%%/sounds/lt/moon_fallingstar.ogg %%DATADIR%%/sounds/lt/moon_hotel.ogg %%DATADIR%%/sounds/lt/moon_monster.ogg %%DATADIR%%/sounds/lt/moon_moonwalker.ogg %%DATADIR%%/sounds/lt/moon_planet.ogg %%DATADIR%%/sounds/lt/moon_radar.ogg %%DATADIR%%/sounds/lt/moon_rocket.ogg %%DATADIR%%/sounds/lt/moon_satellite.ogg %%DATADIR%%/sounds/lt/moon_sign.ogg %%DATADIR%%/sounds/lt/moon_star.ogg %%DATADIR%%/sounds/lt/moon_ufo.ogg %%DATADIR%%/sounds/lt/moustache.ogg %%DATADIR%%/sounds/lt/mouth.ogg %%DATADIR%%/sounds/lt/nose.ogg %%DATADIR%%/sounds/lt/pizzeria_anchovy.ogg %%DATADIR%%/sounds/lt/pizzeria_bacon.ogg %%DATADIR%%/sounds/lt/pizzeria_broccolli.ogg %%DATADIR%%/sounds/lt/pizzeria_cheese.ogg %%DATADIR%%/sounds/lt/pizzeria_cucumber.ogg %%DATADIR%%/sounds/lt/pizzeria_mushroom.ogg %%DATADIR%%/sounds/lt/pizzeria_olive.ogg %%DATADIR%%/sounds/lt/pizzeria_onion.ogg %%DATADIR%%/sounds/lt/pizzeria_oregano.ogg %%DATADIR%%/sounds/lt/pizzeria_pepper.ogg %%DATADIR%%/sounds/lt/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/lt/pizzeria_pineapple.ogg %%DATADIR%%/sounds/lt/pizzeria_salami.ogg %%DATADIR%%/sounds/lt/pizzeria_tomato.ogg %%DATADIR%%/sounds/lt/prince-tux.ogg %%DATADIR%%/sounds/lt/robin-tux.ogg %%DATADIR%%/sounds/lt/sherif-tux.ogg %%DATADIR%%/sounds/lt/shoe.ogg %%DATADIR%%/sounds/lt/shorts.ogg %%DATADIR%%/sounds/lt/skirt.ogg %%DATADIR%%/sounds/lt/spectacles.ogg %%DATADIR%%/sounds/lt/stick.ogg %%DATADIR%%/sounds/lt/sunglasses.ogg %%DATADIR%%/sounds/lt/tie.ogg %%DATADIR%%/sounds/lt/tux-angry.ogg %%DATADIR%%/sounds/lt/tux-apple.ogg %%DATADIR%%/sounds/lt/tux-arrow.ogg %%DATADIR%%/sounds/lt/tux-arrows.ogg %%DATADIR%%/sounds/lt/tux-bow.ogg %%DATADIR%%/sounds/lt/tux-bullseye.ogg %%DATADIR%%/sounds/lt/tux-candles.ogg %%DATADIR%%/sounds/lt/tux-dowe.ogg %%DATADIR%%/sounds/lt/tux-fish.ogg %%DATADIR%%/sounds/lt/tux-flask.ogg %%DATADIR%%/sounds/lt/tux-fly.ogg %%DATADIR%%/sounds/lt/tux-goblet.ogg %%DATADIR%%/sounds/lt/tux-guitar.ogg %%DATADIR%%/sounds/lt/tux-huh.ogg %%DATADIR%%/sounds/lt/tux-idea.ogg %%DATADIR%%/sounds/lt/tux-key.ogg %%DATADIR%%/sounds/lt/tux-laugh.ogg %%DATADIR%%/sounds/lt/tux-letter.ogg %%DATADIR%%/sounds/lt/tux-love.ogg %%DATADIR%%/sounds/lt/tux-note.ogg %%DATADIR%%/sounds/lt/tux-notes.ogg %%DATADIR%%/sounds/lt/tux-plate.ogg %%DATADIR%%/sounds/lt/tux-poison.ogg %%DATADIR%%/sounds/lt/tux-shoot.ogg %%DATADIR%%/sounds/lt/tux-sick.ogg %%DATADIR%%/sounds/lt/tux-stare.ogg %%DATADIR%%/sounds/lt/tux-teacup.ogg %%DATADIR%%/sounds/lt/tux-vase.ogg %%DATADIR%%/sounds/lt/tux-wanted.ogg %%DATADIR%%/sounds/lt/tux-what.ogg %%DATADIR%%/sounds/lt/tux-wow.ogg %%DATADIR%%/sounds/lt/tux-zzz.ogg %%DATADIR%%/sounds/lt/tv_accident.ogg %%DATADIR%%/sounds/lt/tv_ball.ogg %%DATADIR%%/sounds/lt/tv_barrier.ogg %%DATADIR%%/sounds/lt/tv_bicycle.ogg %%DATADIR%%/sounds/lt/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/lt/tv_car.ogg %%DATADIR%%/sounds/lt/tv_caravan.ogg %%DATADIR%%/sounds/lt/tv_cyclist.ogg %%DATADIR%%/sounds/lt/tv_elephant.ogg %%DATADIR%%/sounds/lt/tv_excavator.ogg %%DATADIR%%/sounds/lt/tv_fence.ogg %%DATADIR%%/sounds/lt/tv_fire.ogg %%DATADIR%%/sounds/lt/tv_fireengine.ogg %%DATADIR%%/sounds/lt/tv_fireman.ogg %%DATADIR%%/sounds/lt/tv_fisherman.ogg %%DATADIR%%/sounds/lt/tv_giraffe.ogg %%DATADIR%%/sounds/lt/tv_guitar.ogg %%DATADIR%%/sounds/lt/tv_guitarist.ogg %%DATADIR%%/sounds/lt/tv_house.ogg %%DATADIR%%/sounds/lt/tv_ladder.ogg %%DATADIR%%/sounds/lt/tv_lion.ogg %%DATADIR%%/sounds/lt/tv_lorry.ogg %%DATADIR%%/sounds/lt/tv_lorry_tractor.ogg %%DATADIR%%/sounds/lt/tv_man.ogg %%DATADIR%%/sounds/lt/tv_mechanic.ogg %%DATADIR%%/sounds/lt/tv_monkey.ogg %%DATADIR%%/sounds/lt/tv_path.ogg %%DATADIR%%/sounds/lt/tv_rock.ogg %%DATADIR%%/sounds/lt/tv_school.ogg %%DATADIR%%/sounds/lt/tv_shop.ogg %%DATADIR%%/sounds/lt/tv_smoke.ogg %%DATADIR%%/sounds/lt/tv_tipper.ogg %%DATADIR%%/sounds/lt/tv_trailer.ogg %%DATADIR%%/sounds/lt/tv_train.ogg %%DATADIR%%/sounds/lt/tv_tree.ogg %%DATADIR%%/sounds/lt/tv_tunnel.ogg %%DATADIR%%/sounds/lt/tv_volley_net.ogg %%DATADIR%%/sounds/lt/tv_wagon.ogg %%DATADIR%%/sounds/lt/tv_woman.ogg %%DATADIR%%/sounds/lt/umbrella.ogg %%DATADIR%%/sounds/lt/whitch-tux.ogg %%DATADIR%%/sounds/lt/xmas_angel.ogg %%DATADIR%%/sounds/lt/xmas_ball.ogg %%DATADIR%%/sounds/lt/xmas_boot.ogg %%DATADIR%%/sounds/lt/xmas_candle.ogg %%DATADIR%%/sounds/lt/xmas_comet.ogg %%DATADIR%%/sounds/lt/xmas_garland.ogg %%DATADIR%%/sounds/lt/xmas_lights.ogg %%DATADIR%%/sounds/lt/xmas_mistletoe.ogg %%DATADIR%%/sounds/lt/xmas_moon.ogg %%DATADIR%%/sounds/lt/xmas_owl.ogg %%DATADIR%%/sounds/lt/xmas_present.ogg %%DATADIR%%/sounds/lt/xmas_rabbit.ogg %%DATADIR%%/sounds/lt/xmas_reindeer.ogg %%DATADIR%%/sounds/lt/xmas_shoe.ogg %%DATADIR%%/sounds/lt/xmas_snowflake.ogg %%DATADIR%%/sounds/lt/xmas_snowman.ogg %%DATADIR%%/sounds/lt/xmas_star.ogg %%DATADIR%%/sounds/lt/xmas_tree.ogg %%DATADIR%%/sounds/lt/xmas_turtle.ogg %%DATADIR%%/sounds/lt/xmas_tux.ogg %%DATADIR%%/sounds/nds.soundtheme %%DATADIR%%/sounds/nds/brill.wav %%DATADIR%%/sounds/nds/farken.wav %%DATADIR%%/sounds/nds/fleeg.wav %%DATADIR%%/sounds/nds/hoor.wav %%DATADIR%%/sounds/nds/hoot.wav %%DATADIR%%/sounds/nds/mund.wav %%DATADIR%%/sounds/nds/nees.wav %%DATADIR%%/sounds/nds/neesboort.wav %%DATADIR%%/sounds/nds/ohr.wav %%DATADIR%%/sounds/nds/ohrring.wav %%DATADIR%%/sounds/nds/oog.wav %%DATADIR%%/sounds/nds/oogbro.wav %%DATADIR%%/sounds/nds/slips.wav %%DATADIR%%/sounds/nds/suennbrill.wav %%DATADIR%%/sounds/nl.soundtheme %%DATADIR%%/sounds/nl/bril.wav %%DATADIR%%/sounds/nl/haar.wav %%DATADIR%%/sounds/nl/hoed.wav %%DATADIR%%/sounds/nl/mond.wav %%DATADIR%%/sounds/nl/neus.wav %%DATADIR%%/sounds/nl/oog.wav %%DATADIR%%/sounds/nl/oor.wav %%DATADIR%%/sounds/nl/oorbel.wav %%DATADIR%%/sounds/nl/snor.wav %%DATADIR%%/sounds/nl/strik.wav %%DATADIR%%/sounds/nl/stropdas.wav %%DATADIR%%/sounds/nl/wenkbrauw.wav %%DATADIR%%/sounds/nl/zonnebril.wav %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg share/kxmlgui5/ktuberling/ktuberlingui.rc share/locale/ar/LC_MESSAGES/ktuberling.mo +share/locale/be/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo share/locale/ml/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo +share/locale/se/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo +share/locale/sq/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo +share/locale/ta/LC_MESSAGES/ktuberling.mo +share/locale/tg/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml share/qlogging-categories5/ktuberling.categories diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index b0fd35ef27f6..87c6543fdeb2 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741480 -SHA256 (KDE/release-service/21.04.1/kubrick-21.04.1.tar.xz) = c402c46b00668e39a0a36d4ffd124b430c2997f6bdca11dcc5fb0b7e3b71e7a3 -SIZE (KDE/release-service/21.04.1/kubrick-21.04.1.tar.xz) = 341152 +TIMESTAMP = 1623520873 +SHA256 (KDE/release-service/21.04.2/kubrick-21.04.2.tar.xz) = f21f5bcbfbe73f740deb276dd2711d18175d11ca330efa2e6dc13692499822de +SIZE (KDE/release-service/21.04.2/kubrick-21.04.2.tar.xz) = 343244 diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 7e4713aa07e6..8590403c06f2 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741481 -SHA256 (KDE/release-service/21.04.1/libkdegames-21.04.1.tar.xz) = a4efc0caf9ad877b3c01c83c69e9b3240aeda6ab14332db06e2da9f6660b4c93 -SIZE (KDE/release-service/21.04.1/libkdegames-21.04.1.tar.xz) = 6389100 +TIMESTAMP = 1623520875 +SHA256 (KDE/release-service/21.04.2/libkdegames-21.04.2.tar.xz) = 0d52eadca34dc6a9685535e3ca97c618142696c292a20c28b0b315a87cda33d8 +SIZE (KDE/release-service/21.04.2/libkdegames-21.04.2.tar.xz) = 6404416 diff --git a/games/libkdegames/pkg-plist b/games/libkdegames/pkg-plist index 93d48f8a8198..5f5d7b926b1a 100644 --- a/games/libkdegames/pkg-plist +++ b/games/libkdegames/pkg-plist @@ -1,182 +1,187 @@ include/KF5/KF5KDEGames/KGameClock include/KF5/KF5KDEGames/KGamePopupItem include/KF5/KF5KDEGames/KGameRenderedItem include/KF5/KF5KDEGames/highscore/khighscore.h include/KF5/KF5KDEGames/KGameRenderedObjectItem include/KF5/KF5KDEGames/KGameRenderer include/KF5/KF5KDEGames/KGameRendererClient include/KF5/KF5KDEGames/KHighscore include/KF5/KF5KDEGames/KScoreDialog include/KF5/KF5KDEGames/KStandardGameAction include/KF5/KF5KDEGames/KgAudioScene include/KF5/KF5KDEGames/KgDeclarativeView include/KF5/KF5KDEGames/KgDifficulty include/KF5/KF5KDEGames/KgSound include/KF5/KF5KDEGames/KgTheme include/KF5/KF5KDEGames/KgThemeProvider include/KF5/KF5KDEGames/KgThemeSelector include/KF5/KF5KDEGames/highscore/kscoredialog.h include/KF5/KF5KDEGames/kdegames_version.h include/KF5/KF5KDEGames/kgameclock.h include/KF5/KF5KDEGames/kgamepopupitem.h include/KF5/KF5KDEGames/kgamerendereditem.h include/KF5/KF5KDEGames/kgamerenderedobjectitem.h include/KF5/KF5KDEGames/kgamerenderer.h include/KF5/KF5KDEGames/kgamerendererclient.h include/KF5/KF5KDEGames/kgaudioscene.h include/KF5/KF5KDEGames/kgdeclarativeview.h include/KF5/KF5KDEGames/kgdifficulty.h include/KF5/KF5KDEGames/kgsound.h include/KF5/KF5KDEGames/kgtheme.h include/KF5/KF5KDEGames/kgthemeprovider.h include/KF5/KF5KDEGames/kgthemeselector.h include/KF5/KF5KDEGames/kstandardgameaction.h include/KF5/KF5KDEGames/libkdegames_capabilities.h include/KF5/KF5KDEGames/libkdegames_export.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbase.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbaseitemdelegate.h include/KF5/KF5KDEGames/libkdegamesprivate/kchatbasemodel.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgame.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamechat.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameerror.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamemessage.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamenetwork.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameproperty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamepropertyhandler.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgamesequence.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kgameversion.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageclient.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageio.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kmessageserver.h include/KF5/KF5KDEGames/libkdegamesprivate/kgame/kplayer.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamecanvas.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamedifficulty.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamesvgdocument.h include/KF5/KF5KDEGames/libkdegamesprivate/kgametheme.h include/KF5/KF5KDEGames/libkdegamesprivate/kgamethemeselector.h include/KF5/KF5KDEGames/libkdegamesprivate/libkdegamesprivate_export.h lib/cmake/KF5KDEGames/KF5KDEGamesConfig.cmake lib/cmake/KF5KDEGames/KF5KDEGamesConfigVersion.cmake lib/cmake/KF5KDEGames/KF5KDEGamesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KDEGames/KF5KDEGamesTargets.cmake lib/libKF5KDEGames.so lib/libKF5KDEGames.so.%%SHLIB_SHVER%% lib/libKF5KDEGames.so.%%SHLIB_SHVER%%.3.0 lib/libKF5KDEGamesPrivate.so lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%% lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%%.3.0 %%QT_QMLDIR%%/org/kde/games/core/KgItem.qml %%QT_QMLDIR%%/org/kde/games/core/libcorebindingsplugin.so %%QT_QMLDIR%%/org/kde/games/core/qmldir share/carddecks/svg-ancient-egyptians/11.png share/carddecks/svg-ancient-egyptians/Ancient_Egyptians.svgz share/carddecks/svg-ancient-egyptians/index.desktop share/carddecks/svg-dondorf/11.png share/carddecks/svg-dondorf/dondorf.svgz share/carddecks/svg-dondorf/index.desktop share/carddecks/svg-future/11.png share/carddecks/svg-future/future.svgz share/carddecks/svg-future/index.desktop share/carddecks/svg-gm-paris/11.png share/carddecks/svg-gm-paris/index.desktop share/carddecks/svg-gm-paris/paris.svgz share/carddecks/svg-jolly-royal/11.png share/carddecks/svg-jolly-royal/index.desktop share/carddecks/svg-jolly-royal/jolly-royal.svgz share/carddecks/svg-konqi-modern/11.png share/carddecks/svg-konqi-modern/index.desktop share/carddecks/svg-konqi-modern/konqi.svgz share/carddecks/svg-nicu-ornamental/11.png share/carddecks/svg-nicu-ornamental/AUTHORS share/carddecks/svg-nicu-ornamental/COPYING share/carddecks/svg-nicu-ornamental/index.desktop share/carddecks/svg-nicu-ornamental/ornamental.svgz share/carddecks/svg-nicu-white/11.png share/carddecks/svg-nicu-white/AUTHORS share/carddecks/svg-nicu-white/COPYING share/carddecks/svg-nicu-white/index.desktop share/carddecks/svg-nicu-white/white.svgz share/carddecks/svg-oxygen-air/11.png share/carddecks/svg-oxygen-air/index.desktop share/carddecks/svg-oxygen-air/oxygen-air.svgz share/carddecks/svg-oxygen-white/11.png share/carddecks/svg-oxygen-white/index.desktop share/carddecks/svg-oxygen-white/oxygen-white.svgz share/carddecks/svg-oxygen/11.png share/carddecks/svg-oxygen/index.desktop share/carddecks/svg-oxygen/oxygen.svgz share/carddecks/svg-penguins/11.png share/carddecks/svg-penguins/COPYRIGHT share/carddecks/svg-penguins/index.desktop share/carddecks/svg-penguins/penguins.svgz share/carddecks/svg-standard/11.png share/carddecks/svg-standard/index.desktop share/carddecks/svg-standard/standard.svgz share/carddecks/svg-tigullio-international/index.desktop share/carddecks/svg-tigullio-international/queen-of-hearts.png share/carddecks/svg-tigullio-international/tigullio-international.svgz share/carddecks/svg-xskat-french/11.png share/carddecks/svg-xskat-french/COPYRIGHT share/carddecks/svg-xskat-french/french.svgz share/carddecks/svg-xskat-french/index.desktop share/carddecks/svg-xskat-german/11.png share/carddecks/svg-xskat-german/COPYRIGHT share/carddecks/svg-xskat-german/german.svgz share/carddecks/svg-xskat-german/index.desktop share/kconf_update/kgthemeprovider-migration.upd share/locale/ar/LC_MESSAGES/libkdegames5.mo +share/locale/be/LC_MESSAGES/libkdegames5.mo share/locale/bg/LC_MESSAGES/libkdegames5.mo share/locale/bs/LC_MESSAGES/libkdegames5.mo share/locale/ca/LC_MESSAGES/libkdegames5.mo share/locale/ca@valencia/LC_MESSAGES/libkdegames5.mo share/locale/cs/LC_MESSAGES/libkdegames5.mo share/locale/da/LC_MESSAGES/libkdegames5.mo share/locale/de/LC_MESSAGES/libkdegames5.mo share/locale/el/LC_MESSAGES/libkdegames5.mo share/locale/en_GB/LC_MESSAGES/libkdegames5.mo share/locale/eo/LC_MESSAGES/libkdegames5.mo share/locale/es/LC_MESSAGES/libkdegames5.mo share/locale/et/LC_MESSAGES/libkdegames5.mo share/locale/eu/LC_MESSAGES/libkdegames5.mo share/locale/fa/LC_MESSAGES/libkdegames5.mo share/locale/fi/LC_MESSAGES/libkdegames5.mo share/locale/fr/LC_MESSAGES/libkdegames5.mo share/locale/ga/LC_MESSAGES/libkdegames5.mo share/locale/gl/LC_MESSAGES/libkdegames5.mo share/locale/he/LC_MESSAGES/libkdegames5.mo share/locale/hi/LC_MESSAGES/libkdegames5.mo share/locale/hr/LC_MESSAGES/libkdegames5.mo share/locale/hu/LC_MESSAGES/libkdegames5.mo share/locale/id/LC_MESSAGES/libkdegames5.mo share/locale/is/LC_MESSAGES/libkdegames5.mo share/locale/it/LC_MESSAGES/libkdegames5.mo share/locale/ja/LC_MESSAGES/libkdegames5.mo share/locale/kk/LC_MESSAGES/libkdegames5.mo share/locale/km/LC_MESSAGES/libkdegames5.mo share/locale/ko/LC_MESSAGES/libkdegames5.mo share/locale/lt/LC_MESSAGES/libkdegames5.mo share/locale/lv/LC_MESSAGES/libkdegames5.mo share/locale/ml/LC_MESSAGES/libkdegames5.mo share/locale/mr/LC_MESSAGES/libkdegames5.mo share/locale/nb/LC_MESSAGES/libkdegames5.mo share/locale/nds/LC_MESSAGES/libkdegames5.mo share/locale/nl/LC_MESSAGES/libkdegames5.mo share/locale/nn/LC_MESSAGES/libkdegames5.mo share/locale/pa/LC_MESSAGES/libkdegames5.mo share/locale/pl/LC_MESSAGES/libkdegames5.mo share/locale/pt/LC_MESSAGES/libkdegames5.mo share/locale/pt_BR/LC_MESSAGES/libkdegames5.mo share/locale/ro/LC_MESSAGES/libkdegames5.mo share/locale/ru/LC_MESSAGES/libkdegames5.mo +share/locale/se/LC_MESSAGES/libkdegames5.mo share/locale/sk/LC_MESSAGES/libkdegames5.mo share/locale/sl/LC_MESSAGES/libkdegames5.mo +share/locale/sq/LC_MESSAGES/libkdegames5.mo share/locale/sr/LC_MESSAGES/libkdegames5.mo share/locale/sv/LC_MESSAGES/libkdegames5.mo +share/locale/ta/LC_MESSAGES/libkdegames5.mo +share/locale/tg/LC_MESSAGES/libkdegames5.mo share/locale/tr/LC_MESSAGES/libkdegames5.mo share/locale/ug/LC_MESSAGES/libkdegames5.mo share/locale/uk/LC_MESSAGES/libkdegames5.mo share/locale/wa/LC_MESSAGES/libkdegames5.mo share/locale/zh_CN/LC_MESSAGES/libkdegames5.mo share/locale/zh_TW/LC_MESSAGES/libkdegames5.mo share/qlogging-categories5/libkdegames.categories diff --git a/games/libkmahjongg/distinfo b/games/libkmahjongg/distinfo index 8b9a771d635f..e8e0aea114bb 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741481 -SHA256 (KDE/release-service/21.04.1/libkmahjongg-21.04.1.tar.xz) = 5aedad50b112ddec1c98fc3b3a66d85ed40d346ca531c932581e927d133e56be -SIZE (KDE/release-service/21.04.1/libkmahjongg-21.04.1.tar.xz) = 1681088 +TIMESTAMP = 1623520876 +SHA256 (KDE/release-service/21.04.2/libkmahjongg-21.04.2.tar.xz) = 02f070f2ad8912814a3a26ee23eaa9a8abf5e22ba2c19c42b2776fe3a6620146 +SIZE (KDE/release-service/21.04.2/libkmahjongg-21.04.2.tar.xz) = 1680868 diff --git a/games/libkmahjongg/pkg-plist b/games/libkmahjongg/pkg-plist index 8dee7249de7e..21a54f509f47 100644 --- a/games/libkmahjongg/pkg-plist +++ b/games/libkmahjongg/pkg-plist @@ -1,100 +1,103 @@ include/KF5/KF5KMahjongg/KMahjonggBackground include/KF5/KF5KMahjongg/KMahjonggConfigDialog include/KF5/KF5KMahjongg/KMahjonggTileset include/KF5/KF5KMahjongg/kmahjonggbackground.h include/KF5/KF5KMahjongg/kmahjonggconfigdialog.h include/KF5/KF5KMahjongg/kmahjongglib_version.h include/KF5/KF5KMahjongg/kmahjonggtileset.h include/KF5/KF5KMahjongg/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.svg 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.svg share/kmahjongglib/backgrounds/wood_light.copyright share/kmahjongglib/backgrounds/wood_light.desktop share/kmahjongglib/backgrounds/wood_light.svg 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.svg 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/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 5a5f7b13af70..2e65ec5e356c 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741482 -SHA256 (KDE/release-service/21.04.1/lskat-21.04.1.tar.xz) = 0e587d23bb66f4caff5af6b55bd1f20f53bdbc9de68381aa7d9bb55975fa410b -SIZE (KDE/release-service/21.04.1/lskat-21.04.1.tar.xz) = 1222556 +TIMESTAMP = 1623520878 +SHA256 (KDE/release-service/21.04.2/lskat-21.04.2.tar.xz) = 4cad38eab9369c206026ac70f71ba7fbbde87008390ccf021ebbb0950d817cc0 +SIZE (KDE/release-service/21.04.2/lskat-21.04.2.tar.xz) = 1229356 diff --git a/games/lskat/pkg-plist b/games/lskat/pkg-plist index 92b32a81cb8f..be7a11f69f9e 100644 --- a/games/lskat/pkg-plist +++ b/games/lskat/pkg-plist @@ -1,72 +1,77 @@ bin/lskat share/qlogging-categories5/lskat.categories share/applications/org.kde.lskat.desktop share/icons/hicolor/128x128/apps/lskat.png share/icons/hicolor/16x16/apps/lskat.png share/icons/hicolor/22x22/apps/lskat.png share/icons/hicolor/32x32/apps/lskat.png share/icons/hicolor/48x48/apps/lskat.png share/icons/hicolor/64x64/apps/lskat.png share/locale/ar/LC_MESSAGES/lskat.mo +share/locale/be/LC_MESSAGES/lskat.mo share/locale/bg/LC_MESSAGES/lskat.mo share/locale/bs/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca@valencia/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/en_GB/LC_MESSAGES/lskat.mo share/locale/eo/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/eu/LC_MESSAGES/lskat.mo share/locale/fa/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/he/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/lskat.mo share/locale/hr/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/lskat.mo share/locale/id/LC_MESSAGES/lskat.mo share/locale/is/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/lskat.mo share/locale/kk/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/lskat.mo share/locale/ml/LC_MESSAGES/lskat.mo share/locale/mr/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/ro/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/lskat.mo +share/locale/se/LC_MESSAGES/lskat.mo share/locale/sk/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/lskat.mo +share/locale/sq/LC_MESSAGES/lskat.mo share/locale/sr/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/lskat.mo +share/locale/ta/LC_MESSAGES/lskat.mo +share/locale/tg/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/ug/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo %%DATADIR%%/grafix/blue.desktop %%DATADIR%%/grafix/blue.rc %%DATADIR%%/grafix/blue.svg %%DATADIR%%/grafix/egyptian.desktop %%DATADIR%%/grafix/egyptian.rc %%DATADIR%%/grafix/egyptian.svg %%DATADIR%%/grafix/oxygen.desktop %%DATADIR%%/grafix/oxygen.rc %%DATADIR%%/grafix/oxygen.svg share/metainfo/org.kde.lskat.appdata.xml diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 1a7e43ab8e34..81d9869303bb 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741483 -SHA256 (KDE/release-service/21.04.1/palapeli-21.04.1.tar.xz) = 0165eaa8a47b25f99e7c2c8cee68d761fe0e687a255f708eb283aa27d2552820 -SIZE (KDE/release-service/21.04.1/palapeli-21.04.1.tar.xz) = 2076368 +TIMESTAMP = 1623520879 +SHA256 (KDE/release-service/21.04.2/palapeli-21.04.2.tar.xz) = 2cbc7f429a1dc754d4a19379e960b8f28e6b4ad0276edddb59caefc0c58fefc5 +SIZE (KDE/release-service/21.04.2/palapeli-21.04.2.tar.xz) = 2077004 diff --git a/games/palapeli/pkg-plist b/games/palapeli/pkg-plist index 86ae89aa1b13..692f7caae6b8 100644 --- a/games/palapeli/pkg-plist +++ b/games/palapeli/pkg-plist @@ -1,106 +1,107 @@ bin/palapeli lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 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 %%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/128x128/apps/palapeli.png share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png share/icons/hicolor/16x16/apps/palapeli.png share/icons/hicolor/16x16/mimetypes/application-x-palapeli.png share/icons/hicolor/24x24/apps/palapeli.png share/icons/hicolor/24x24/mimetypes/application-x-palapeli.png share/icons/hicolor/32x32/apps/palapeli.png share/icons/hicolor/32x32/mimetypes/application-x-palapeli.png share/icons/hicolor/48x48/apps/palapeli.png share/icons/hicolor/48x48/mimetypes/application-x-palapeli.png share/icons/hicolor/64x64/apps/palapeli.png share/icons/hicolor/64x64/mimetypes/application-x-palapeli.png share/knotifications5/palapeli.notifyrc share/kservices5/ServiceMenus/palapeli_servicemenu.desktop share/kservices5/palathumbcreator.desktop 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 6a93abc48ca4..1474243618e3 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741484 -SHA256 (KDE/release-service/21.04.1/picmi-21.04.1.tar.xz) = 1ba9d037009f217c8ec267aeb6bd0385829b45351107858a876a7c3be1c1d14f -SIZE (KDE/release-service/21.04.1/picmi-21.04.1.tar.xz) = 1369176 +TIMESTAMP = 1623520881 +SHA256 (KDE/release-service/21.04.2/picmi-21.04.2.tar.xz) = 7ae99d2f85931c979fedb53ae6559edbb443ddf196854fdc444e6d9610bd406c +SIZE (KDE/release-service/21.04.2/picmi-21.04.2.tar.xz) = 1369268 diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 84697f1ea6b3..aa8baa02ab79 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741484 -SHA256 (KDE/release-service/21.04.1/gwenview-21.04.1.tar.xz) = 675c7109c95e5a592d68e7c132afff5e48868895c54428a65c66ebeae56633c5 -SIZE (KDE/release-service/21.04.1/gwenview-21.04.1.tar.xz) = 6757668 +TIMESTAMP = 1623520883 +SHA256 (KDE/release-service/21.04.2/gwenview-21.04.2.tar.xz) = db062fa4f07c9372534c21b15f2953eecf172c81a1d3ebc227267670f615d47e +SIZE (KDE/release-service/21.04.2/gwenview-21.04.2.tar.xz) = 6772300 diff --git a/graphics/gwenview/pkg-plist b/graphics/gwenview/pkg-plist index 229ec8c26e1d..0196f276843e 100644 --- a/graphics/gwenview/pkg-plist +++ b/graphics/gwenview/pkg-plist @@ -1,83 +1,86 @@ bin/gwenview bin/gwenview_importer lib/libgwenviewlib.so.4.97.0 lib/libgwenviewlib.so.5 %%QT_PLUGINDIR%%/kf5/kfileitemaction/slideshowfileitemaction.so %%QT_PLUGINDIR%%/kf5/parts/gvpart.so share/applications/org.kde.gwenview.desktop %%DATADIR%%/color-schemes/fullscreen.colors %%DATADIR%%/cursors/zoom.png %%DATADIR%%/images/background.png share/icons/hicolor/128x128/actions/document-share.png share/icons/hicolor/128x128/apps/gwenview.png share/icons/hicolor/16x16/actions/document-share.png share/icons/hicolor/16x16/apps/gwenview.png share/icons/hicolor/22x22/actions/document-share.png share/icons/hicolor/22x22/apps/gwenview.png share/icons/hicolor/32x32/actions/document-share.png share/icons/hicolor/32x32/apps/gwenview.png share/icons/hicolor/48x48/actions/document-share.png share/icons/hicolor/48x48/apps/gwenview.png share/icons/hicolor/64x64/actions/document-share.png share/icons/hicolor/64x64/apps/gwenview.png share/kconf_update/gwenview-imageview-alphabackgroundmode-update.pl share/kconf_update/gwenview.upd share/kservices5/gvpart.desktop share/locale/ar/LC_MESSAGES/gwenview.mo +share/locale/az/LC_MESSAGES/gwenview.mo +share/locale/be/LC_MESSAGES/gwenview.mo share/locale/bg/LC_MESSAGES/gwenview.mo share/locale/bs/LC_MESSAGES/gwenview.mo share/locale/ca/LC_MESSAGES/gwenview.mo share/locale/ca@valencia/LC_MESSAGES/gwenview.mo share/locale/cs/LC_MESSAGES/gwenview.mo share/locale/da/LC_MESSAGES/gwenview.mo share/locale/de/LC_MESSAGES/gwenview.mo share/locale/el/LC_MESSAGES/gwenview.mo share/locale/en_GB/LC_MESSAGES/gwenview.mo share/locale/eo/LC_MESSAGES/gwenview.mo share/locale/es/LC_MESSAGES/gwenview.mo share/locale/et/LC_MESSAGES/gwenview.mo share/locale/eu/LC_MESSAGES/gwenview.mo share/locale/fi/LC_MESSAGES/gwenview.mo share/locale/fr/LC_MESSAGES/gwenview.mo share/locale/ga/LC_MESSAGES/gwenview.mo share/locale/gl/LC_MESSAGES/gwenview.mo share/locale/he/LC_MESSAGES/gwenview.mo share/locale/hi/LC_MESSAGES/gwenview.mo share/locale/hr/LC_MESSAGES/gwenview.mo share/locale/hu/LC_MESSAGES/gwenview.mo share/locale/ia/LC_MESSAGES/gwenview.mo share/locale/id/LC_MESSAGES/gwenview.mo share/locale/is/LC_MESSAGES/gwenview.mo share/locale/it/LC_MESSAGES/gwenview.mo share/locale/ja/LC_MESSAGES/gwenview.mo share/locale/kk/LC_MESSAGES/gwenview.mo share/locale/km/LC_MESSAGES/gwenview.mo share/locale/ko/LC_MESSAGES/gwenview.mo share/locale/lt/LC_MESSAGES/gwenview.mo share/locale/lv/LC_MESSAGES/gwenview.mo share/locale/ml/LC_MESSAGES/gwenview.mo share/locale/mr/LC_MESSAGES/gwenview.mo share/locale/nb/LC_MESSAGES/gwenview.mo share/locale/nds/LC_MESSAGES/gwenview.mo share/locale/nl/LC_MESSAGES/gwenview.mo share/locale/nn/LC_MESSAGES/gwenview.mo share/locale/pa/LC_MESSAGES/gwenview.mo share/locale/pl/LC_MESSAGES/gwenview.mo share/locale/pt/LC_MESSAGES/gwenview.mo share/locale/pt_BR/LC_MESSAGES/gwenview.mo share/locale/ro/LC_MESSAGES/gwenview.mo share/locale/ru/LC_MESSAGES/gwenview.mo share/locale/sk/LC_MESSAGES/gwenview.mo share/locale/sl/LC_MESSAGES/gwenview.mo +share/locale/sq/LC_MESSAGES/gwenview.mo share/locale/sr/LC_MESSAGES/gwenview.mo share/locale/sv/LC_MESSAGES/gwenview.mo share/locale/tr/LC_MESSAGES/gwenview.mo share/locale/ug/LC_MESSAGES/gwenview.mo share/locale/uk/LC_MESSAGES/gwenview.mo share/locale/wa/LC_MESSAGES/gwenview.mo share/locale/zh_CN/LC_MESSAGES/gwenview.mo share/locale/zh_TW/LC_MESSAGES/gwenview.mo share/metainfo/org.kde.gwenview.appdata.xml +share/qlogging-categories5/gwenview.categories share/solid/actions/gwenview_importer.desktop share/solid/actions/gwenview_importer_camera.desktop -share/qlogging-categories5/gwenview.categories diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index d05ba631a499..d67477d33dff 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741485 -SHA256 (KDE/release-service/21.04.1/kamera-21.04.1.tar.xz) = 1c0c8aa58e933b82d358113de758f3b543f30fbdb2b06c0683937e770e8406a3 -SIZE (KDE/release-service/21.04.1/kamera-21.04.1.tar.xz) = 109776 +TIMESTAMP = 1623520884 +SHA256 (KDE/release-service/21.04.2/kamera-21.04.2.tar.xz) = 80375923b5182b36b601d9c18ac21889bdff689571dcffbdaad4e318153578ec +SIZE (KDE/release-service/21.04.2/kamera-21.04.2.tar.xz) = 115600 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index fc0a35253d16..17f61ab27312 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,91 +1,99 @@ %%QT_PLUGINDIR%%/kcm_kamera.so %%QT_PLUGINDIR%%/kio_kamera.so share/kservices5/camera.protocol share/kservices5/kamera.desktop share/locale/ar/LC_MESSAGES/kcmkamera.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/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/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/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 c9ee235d6457..a54c77828e29 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741486 -SHA256 (KDE/release-service/21.04.1/kcolorchooser-21.04.1.tar.xz) = 13ac1f2dee86f4b87c538656e186177cd42b95251404014595f364484e232e9f -SIZE (KDE/release-service/21.04.1/kcolorchooser-21.04.1.tar.xz) = 27720 +TIMESTAMP = 1623520885 +SHA256 (KDE/release-service/21.04.2/kcolorchooser-21.04.2.tar.xz) = ca1b5adb817f1a7758e472312ae066cfb9a39bda87b663598112753991739f26 +SIZE (KDE/release-service/21.04.2/kcolorchooser-21.04.2.tar.xz) = 28468 diff --git a/graphics/kcolorchooser/pkg-plist b/graphics/kcolorchooser/pkg-plist index a66f5750e3f6..b85caa076b2e 100644 --- a/graphics/kcolorchooser/pkg-plist +++ b/graphics/kcolorchooser/pkg-plist @@ -1,58 +1,62 @@ bin/kcolorchooser +share/locale/az/LC_MESSAGES/kcolorchooser.mo +share/locale/be/LC_MESSAGES/kcolorchooser.mo +share/locale/sq/LC_MESSAGES/kcolorchooser.mo +share/locale/vi/LC_MESSAGES/kcolorchooser.mo share/applications/org.kde.kcolorchooser.desktop share/icons/hicolor/16x16/apps/kcolorchooser.png share/icons/hicolor/22x22/apps/kcolorchooser.png share/locale/ar/LC_MESSAGES/kcolorchooser.mo share/locale/bg/LC_MESSAGES/kcolorchooser.mo share/locale/bs/LC_MESSAGES/kcolorchooser.mo share/locale/ca/LC_MESSAGES/kcolorchooser.mo share/locale/ca@valencia/LC_MESSAGES/kcolorchooser.mo share/locale/cs/LC_MESSAGES/kcolorchooser.mo share/locale/da/LC_MESSAGES/kcolorchooser.mo share/locale/de/LC_MESSAGES/kcolorchooser.mo share/locale/el/LC_MESSAGES/kcolorchooser.mo share/locale/en_GB/LC_MESSAGES/kcolorchooser.mo share/locale/eo/LC_MESSAGES/kcolorchooser.mo share/locale/es/LC_MESSAGES/kcolorchooser.mo share/locale/et/LC_MESSAGES/kcolorchooser.mo share/locale/eu/LC_MESSAGES/kcolorchooser.mo share/locale/fi/LC_MESSAGES/kcolorchooser.mo share/locale/fr/LC_MESSAGES/kcolorchooser.mo share/locale/ga/LC_MESSAGES/kcolorchooser.mo share/locale/gl/LC_MESSAGES/kcolorchooser.mo share/locale/he/LC_MESSAGES/kcolorchooser.mo share/locale/hi/LC_MESSAGES/kcolorchooser.mo share/locale/hr/LC_MESSAGES/kcolorchooser.mo share/locale/hu/LC_MESSAGES/kcolorchooser.mo share/locale/ia/LC_MESSAGES/kcolorchooser.mo share/locale/is/LC_MESSAGES/kcolorchooser.mo share/locale/it/LC_MESSAGES/kcolorchooser.mo share/locale/ja/LC_MESSAGES/kcolorchooser.mo share/locale/kk/LC_MESSAGES/kcolorchooser.mo share/locale/km/LC_MESSAGES/kcolorchooser.mo share/locale/ko/LC_MESSAGES/kcolorchooser.mo share/locale/lt/LC_MESSAGES/kcolorchooser.mo share/locale/lv/LC_MESSAGES/kcolorchooser.mo share/locale/ml/LC_MESSAGES/kcolorchooser.mo share/locale/mr/LC_MESSAGES/kcolorchooser.mo share/locale/nb/LC_MESSAGES/kcolorchooser.mo share/locale/nds/LC_MESSAGES/kcolorchooser.mo share/locale/nl/LC_MESSAGES/kcolorchooser.mo share/locale/nn/LC_MESSAGES/kcolorchooser.mo share/locale/pa/LC_MESSAGES/kcolorchooser.mo share/locale/pl/LC_MESSAGES/kcolorchooser.mo share/locale/pt/LC_MESSAGES/kcolorchooser.mo share/locale/pt_BR/LC_MESSAGES/kcolorchooser.mo share/locale/ro/LC_MESSAGES/kcolorchooser.mo share/locale/ru/LC_MESSAGES/kcolorchooser.mo share/locale/sk/LC_MESSAGES/kcolorchooser.mo share/locale/sl/LC_MESSAGES/kcolorchooser.mo share/locale/sr/LC_MESSAGES/kcolorchooser.mo share/locale/sv/LC_MESSAGES/kcolorchooser.mo share/locale/tr/LC_MESSAGES/kcolorchooser.mo share/locale/ug/LC_MESSAGES/kcolorchooser.mo share/locale/uk/LC_MESSAGES/kcolorchooser.mo share/locale/wa/LC_MESSAGES/kcolorchooser.mo share/locale/zh_CN/LC_MESSAGES/kcolorchooser.mo share/locale/zh_TW/LC_MESSAGES/kcolorchooser.mo share/metainfo/org.kde.kcolorchooser.appdata.xml diff --git a/graphics/kdegraphics-mobipocket/distinfo b/graphics/kdegraphics-mobipocket/distinfo index 5d27aca7569a..342c3fa3ae86 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741486 -SHA256 (KDE/release-service/21.04.1/kdegraphics-mobipocket-21.04.1.tar.xz) = f5746fcc53ce307a6b7c86b63116268f68b7045035b6df5638ae7083ba8bddcd -SIZE (KDE/release-service/21.04.1/kdegraphics-mobipocket-21.04.1.tar.xz) = 17096 +TIMESTAMP = 1623520886 +SHA256 (KDE/release-service/21.04.2/kdegraphics-mobipocket-21.04.2.tar.xz) = f7ad0ed2eb7c8d0547bb24279bdac564d352ac2d639c58c057dda5e2bcf64364 +SIZE (KDE/release-service/21.04.2/kdegraphics-mobipocket-21.04.2.tar.xz) = 17096 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index 95f21eee8fef..9baf2ffab282 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741487 -SHA256 (KDE/release-service/21.04.1/svgpart-21.04.1.tar.xz) = eb7d7041d778c880851b4cedb8dde2b336c73acaa353ace9c71db6e3749f7e18 -SIZE (KDE/release-service/21.04.1/svgpart-21.04.1.tar.xz) = 23968 +TIMESTAMP = 1623520888 +SHA256 (KDE/release-service/21.04.2/svgpart-21.04.2.tar.xz) = 65b52aa564728ca0d2e4ff7bbde5b05879f25d6c3d1440ca27d411af1084ada5 +SIZE (KDE/release-service/21.04.2/svgpart-21.04.2.tar.xz) = 24576 diff --git a/graphics/kdegraphics-svgpart/pkg-plist b/graphics/kdegraphics-svgpart/pkg-plist index 333d79875a6f..0e09f5719380 100644 --- a/graphics/kdegraphics-svgpart/pkg-plist +++ b/graphics/kdegraphics-svgpart/pkg-plist @@ -1,54 +1,56 @@ %%QT_PLUGINDIR%%/kf5/parts/svgpart.so share/kservices5/svgpart.desktop share/locale/ar/LC_MESSAGES/svgpart.mo +share/locale/be/LC_MESSAGES/svgpart.mo share/locale/bg/LC_MESSAGES/svgpart.mo share/locale/bs/LC_MESSAGES/svgpart.mo share/locale/ca/LC_MESSAGES/svgpart.mo share/locale/ca@valencia/LC_MESSAGES/svgpart.mo share/locale/cs/LC_MESSAGES/svgpart.mo share/locale/da/LC_MESSAGES/svgpart.mo share/locale/de/LC_MESSAGES/svgpart.mo share/locale/el/LC_MESSAGES/svgpart.mo share/locale/en_GB/LC_MESSAGES/svgpart.mo share/locale/eo/LC_MESSAGES/svgpart.mo share/locale/es/LC_MESSAGES/svgpart.mo share/locale/et/LC_MESSAGES/svgpart.mo share/locale/eu/LC_MESSAGES/svgpart.mo share/locale/fi/LC_MESSAGES/svgpart.mo share/locale/fr/LC_MESSAGES/svgpart.mo share/locale/ga/LC_MESSAGES/svgpart.mo share/locale/gl/LC_MESSAGES/svgpart.mo share/locale/hi/LC_MESSAGES/svgpart.mo share/locale/hr/LC_MESSAGES/svgpart.mo share/locale/hu/LC_MESSAGES/svgpart.mo share/locale/ia/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo share/locale/ml/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo +share/locale/sq/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo share/metainfo/org.kde.svgpart.metainfo.xml diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 5eaf482c70ab..bd9cd5354289 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741488 -SHA256 (KDE/release-service/21.04.1/kdegraphics-thumbnailers-21.04.1.tar.xz) = 59f0486d7d63f4f77ffe1887942576164683c39cd5b0665e18618980aaa7587e -SIZE (KDE/release-service/21.04.1/kdegraphics-thumbnailers-21.04.1.tar.xz) = 46960 +TIMESTAMP = 1623520889 +SHA256 (KDE/release-service/21.04.2/kdegraphics-thumbnailers-21.04.2.tar.xz) = 71770b13072ae50dea8ab045d0cefb82693e157aef1b37adea8526bafec2ba4b +SIZE (KDE/release-service/21.04.2/kdegraphics-thumbnailers-21.04.2.tar.xz) = 46940 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 73826aaae9a1..a796c0f8c551 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741489 -SHA256 (KDE/release-service/21.04.1/kimagemapeditor-21.04.1.tar.xz) = bd27c1695cb70cd8bd60f4012d1e473228130c9807caefea59837442f012d151 -SIZE (KDE/release-service/21.04.1/kimagemapeditor-21.04.1.tar.xz) = 1079532 +TIMESTAMP = 1623520891 +SHA256 (KDE/release-service/21.04.2/kimagemapeditor-21.04.2.tar.xz) = 495280b0cc837d762ad63fa8ce637d720001fbc3b06ba556517a2208a955b1ad +SIZE (KDE/release-service/21.04.2/kimagemapeditor-21.04.2.tar.xz) = 1088556 diff --git a/graphics/kimagemapeditor/pkg-plist b/graphics/kimagemapeditor/pkg-plist index 665e166aac52..40bcdd1ee2da 100644 --- a/graphics/kimagemapeditor/pkg-plist +++ b/graphics/kimagemapeditor/pkg-plist @@ -1,75 +1,79 @@ bin/kimagemapeditor share/qlogging-categories5/kimagemapeditor.categories %%QT_PLUGINDIR%%/kf5/parts/kimagemapeditorpart.so share/applications/org.kde.kimagemapeditor.desktop share/icons/hicolor/128x128/apps/kimagemapeditor.png share/icons/hicolor/16x16/apps/kimagemapeditor.png share/icons/hicolor/22x22/actions/addpoint.png share/icons/hicolor/22x22/actions/arrow.png share/icons/hicolor/22x22/actions/circle.png share/icons/hicolor/22x22/actions/circle2.png share/icons/hicolor/22x22/actions/freehand.png share/icons/hicolor/22x22/actions/lower.png share/icons/hicolor/22x22/actions/polygon.png share/icons/hicolor/22x22/actions/raise.png share/icons/hicolor/22x22/actions/rectangle.png share/icons/hicolor/22x22/actions/removepoint.png share/icons/hicolor/22x22/apps/kimagemapeditor.png share/icons/hicolor/32x32/apps/kimagemapeditor.png share/icons/hicolor/48x48/apps/kimagemapeditor.png share/icons/hicolor/64x64/apps/kimagemapeditor.png share/icons/hicolor/scalable/apps/kimagemapeditor.svgz %%DATADIR%%/addpointcursor.png %%DATADIR%%/freehandcursor.png %%DATADIR%%/polygoncursor.png %%DATADIR%%/removepointcursor.png share/kservices5/kimagemapeditorpart.desktop share/locale/ar/LC_MESSAGES/kimagemapeditor.mo +share/locale/be/LC_MESSAGES/kimagemapeditor.mo share/locale/bg/LC_MESSAGES/kimagemapeditor.mo share/locale/bs/LC_MESSAGES/kimagemapeditor.mo share/locale/ca/LC_MESSAGES/kimagemapeditor.mo share/locale/ca@valencia/LC_MESSAGES/kimagemapeditor.mo share/locale/cs/LC_MESSAGES/kimagemapeditor.mo share/locale/da/LC_MESSAGES/kimagemapeditor.mo share/locale/de/LC_MESSAGES/kimagemapeditor.mo share/locale/el/LC_MESSAGES/kimagemapeditor.mo share/locale/en_GB/LC_MESSAGES/kimagemapeditor.mo share/locale/eo/LC_MESSAGES/kimagemapeditor.mo share/locale/es/LC_MESSAGES/kimagemapeditor.mo share/locale/et/LC_MESSAGES/kimagemapeditor.mo share/locale/eu/LC_MESSAGES/kimagemapeditor.mo share/locale/fa/LC_MESSAGES/kimagemapeditor.mo share/locale/fi/LC_MESSAGES/kimagemapeditor.mo share/locale/fr/LC_MESSAGES/kimagemapeditor.mo share/locale/ga/LC_MESSAGES/kimagemapeditor.mo share/locale/gl/LC_MESSAGES/kimagemapeditor.mo share/locale/hi/LC_MESSAGES/kimagemapeditor.mo share/locale/hr/LC_MESSAGES/kimagemapeditor.mo share/locale/hu/LC_MESSAGES/kimagemapeditor.mo share/locale/it/LC_MESSAGES/kimagemapeditor.mo share/locale/ja/LC_MESSAGES/kimagemapeditor.mo share/locale/kk/LC_MESSAGES/kimagemapeditor.mo share/locale/km/LC_MESSAGES/kimagemapeditor.mo share/locale/ko/LC_MESSAGES/kimagemapeditor.mo share/locale/lt/LC_MESSAGES/kimagemapeditor.mo share/locale/lv/LC_MESSAGES/kimagemapeditor.mo share/locale/mr/LC_MESSAGES/kimagemapeditor.mo share/locale/nb/LC_MESSAGES/kimagemapeditor.mo share/locale/nds/LC_MESSAGES/kimagemapeditor.mo share/locale/nl/LC_MESSAGES/kimagemapeditor.mo share/locale/nn/LC_MESSAGES/kimagemapeditor.mo share/locale/pa/LC_MESSAGES/kimagemapeditor.mo share/locale/pl/LC_MESSAGES/kimagemapeditor.mo share/locale/pt/LC_MESSAGES/kimagemapeditor.mo share/locale/pt_BR/LC_MESSAGES/kimagemapeditor.mo share/locale/ro/LC_MESSAGES/kimagemapeditor.mo share/locale/ru/LC_MESSAGES/kimagemapeditor.mo +share/locale/se/LC_MESSAGES/kimagemapeditor.mo share/locale/sk/LC_MESSAGES/kimagemapeditor.mo share/locale/sl/LC_MESSAGES/kimagemapeditor.mo share/locale/sv/LC_MESSAGES/kimagemapeditor.mo +share/locale/ta/LC_MESSAGES/kimagemapeditor.mo +share/locale/tg/LC_MESSAGES/kimagemapeditor.mo share/locale/tr/LC_MESSAGES/kimagemapeditor.mo share/locale/ug/LC_MESSAGES/kimagemapeditor.mo share/locale/uk/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_CN/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo share/metainfo/org.kde.kimagemapeditor.appdata.xml diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index 8d1909542edf..b21f9c812c3c 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741490 -SHA256 (KDE/release-service/21.04.1/kipi-plugins-21.04.1.tar.xz) = af4c744ab4e13922827745212ad34c1ea113c33a9c68911452dec1593a4ce74e -SIZE (KDE/release-service/21.04.1/kipi-plugins-21.04.1.tar.xz) = 1650832 +TIMESTAMP = 1623520892 +SHA256 (KDE/release-service/21.04.2/kipi-plugins-21.04.2.tar.xz) = a510f13809f5307c3d5ffc979c1aa6f9dfbe24112e2f613178b3f02249850991 +SIZE (KDE/release-service/21.04.2/kipi-plugins-21.04.2.tar.xz) = 1654380 diff --git a/graphics/kipi-plugins/pkg-plist b/graphics/kipi-plugins/pkg-plist index dd4831940fde..65eee179cc3b 100644 --- a/graphics/kipi-plugins/pkg-plist +++ b/graphics/kipi-plugins/pkg-plist @@ -1,978 +1,986 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flashexport.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 %%KVKONTAKTE%%%%QT_PLUGINDIR%%/kipiplugin_vkontakte.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/128x128/apps/kipi-flash.png share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flash.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-flash.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-flash.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-flash.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-flash.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_flashexport/index.template share/kipiplugin_flashexport/index2.template share/kipiplugin_flashexport/index3.template share/kipiplugin_flashexport/index4.template share/kipiplugin_flashexport/simpleviewer_html/space.png share/kipiplugin_piwigo/pics/piwigo_logo.png 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/1_photo_8x10.desktop share/kipiplugin_printimages/templates/1_photo_9x13cm.desktop share/kipiplugin_printimages/templates/2_photos_13x18cm.desktop share/kipiplugin_printimages/templates/2_photos_5x7.desktop share/kipiplugin_printimages/templates/3_photos_10x15cm.desktop share/kipiplugin_printimages/templates/3_photos_4x6.desktop share/kipiplugin_printimages/templates/4_photos_10x13.33cm.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/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-Collage.desktop share/kipiplugin_printimages/templates/Album-Collage1.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_flashexport.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 %%KVKONTAKTE%%share/kservices5/kipiplugin_vkontakte.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_flashexportui.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 %%KVKONTAKTE%%share/kxmlgui5/kipi/kipiplugin_vkontakteui.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/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_flashexport.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_flashexport.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flashexport.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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_flashexport.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_vkontakte.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 1bcaf4de5260..7fb4b2f93e19 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741490 -SHA256 (KDE/release-service/21.04.1/kolourpaint-21.04.1.tar.xz) = aa212fc8af0c74110651579b5cad87046aadcdf99450adac596f1beb201ed074 -SIZE (KDE/release-service/21.04.1/kolourpaint-21.04.1.tar.xz) = 5691064 +TIMESTAMP = 1623520894 +SHA256 (KDE/release-service/21.04.2/kolourpaint-21.04.2.tar.xz) = e22922d1b5f45d58ebb0ac5912adb2fb98d95cfd2324fd63e3a28779ce2f158b +SIZE (KDE/release-service/21.04.2/kolourpaint-21.04.2.tar.xz) = 5714904 diff --git a/graphics/kolourpaint/pkg-plist b/graphics/kolourpaint/pkg-plist index 5331896b5ca5..f4552c3d0dd5 100644 --- a/graphics/kolourpaint/pkg-plist +++ b/graphics/kolourpaint/pkg-plist @@ -1,154 +1,159 @@ bin/kolourpaint lib/libkolourpaint_lgpl.so lib/libkolourpaint_lgpl.so.5 share/applications/org.kde.kolourpaint.desktop share/icons/hicolor/128x128/apps/kolourpaint.png 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/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/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 81eb1864dbee..76230230f723 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741491 -SHA256 (KDE/release-service/21.04.1/kontrast-21.04.1.tar.xz) = 12c70cbf2262fdae29f4d3be1b7a4417af3f9787fd6ad5165499c45b06f10f50 -SIZE (KDE/release-service/21.04.1/kontrast-21.04.1.tar.xz) = 123064 +TIMESTAMP = 1623520895 +SHA256 (KDE/release-service/21.04.2/kontrast-21.04.2.tar.xz) = 8b4b6f6976583bf1333418506eb1f4b25fd2d8097af0331a8dda974d5c4c75f7 +SIZE (KDE/release-service/21.04.2/kontrast-21.04.2.tar.xz) = 123756 diff --git a/graphics/kontrast/pkg-plist b/graphics/kontrast/pkg-plist index 071819c6d02e..8a183e675c4f 100644 --- a/graphics/kontrast/pkg-plist +++ b/graphics/kontrast/pkg-plist @@ -1,29 +1,30 @@ bin/kontrast share/applications/org.kde.kontrast.desktop share/icons/hicolor/scalable/apps/org.kde.kontrast.svg share/locale/ca/LC_MESSAGES/kontrast.mo share/locale/ca@valencia/LC_MESSAGES/kontrast.mo share/locale/cs/LC_MESSAGES/kontrast.mo share/locale/da/LC_MESSAGES/kontrast.mo share/locale/de/LC_MESSAGES/kontrast.mo share/locale/el/LC_MESSAGES/kontrast.mo share/locale/en_GB/LC_MESSAGES/kontrast.mo share/locale/es/LC_MESSAGES/kontrast.mo share/locale/eu/LC_MESSAGES/kontrast.mo share/locale/fi/LC_MESSAGES/kontrast.mo share/locale/fr/LC_MESSAGES/kontrast.mo share/locale/it/LC_MESSAGES/kontrast.mo +share/locale/ja/LC_MESSAGES/kontrast.mo share/locale/ko/LC_MESSAGES/kontrast.mo share/locale/lt/LC_MESSAGES/kontrast.mo share/locale/nl/LC_MESSAGES/kontrast.mo share/locale/nn/LC_MESSAGES/kontrast.mo share/locale/pl/LC_MESSAGES/kontrast.mo share/locale/pt/LC_MESSAGES/kontrast.mo share/locale/pt_BR/LC_MESSAGES/kontrast.mo share/locale/ru/LC_MESSAGES/kontrast.mo share/locale/sk/LC_MESSAGES/kontrast.mo share/locale/sl/LC_MESSAGES/kontrast.mo share/locale/sv/LC_MESSAGES/kontrast.mo share/locale/uk/LC_MESSAGES/kontrast.mo share/locale/zh_CN/LC_MESSAGES/kontrast.mo share/metainfo/org.kde.kontrast.appdata.xml diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 11aac2583f07..3c677428d3d6 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741492 -SHA256 (KDE/release-service/21.04.1/kqtquickcharts-21.04.1.tar.xz) = 452b365626f47fe9fb51d1a202ed341493a42e375d64d09d9c13007a12ac0fff -SIZE (KDE/release-service/21.04.1/kqtquickcharts-21.04.1.tar.xz) = 29932 +TIMESTAMP = 1623520896 +SHA256 (KDE/release-service/21.04.2/kqtquickcharts-21.04.2.tar.xz) = 4176e7d3a2cbb48a33f6a242d5e8c9e643d2d16393fe6946d8ca7c77baf58b44 +SIZE (KDE/release-service/21.04.2/kqtquickcharts-21.04.2.tar.xz) = 29932 diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index d3661971fdfe..8b5637e8d952 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741493 -SHA256 (KDE/release-service/21.04.1/libkdcraw-21.04.1.tar.xz) = 5dd3c38224f9b0ca8121cb81a8575dc2cf70bc1a80066925b0a8e9b138e4ab09 -SIZE (KDE/release-service/21.04.1/libkdcraw-21.04.1.tar.xz) = 37196 +TIMESTAMP = 1623520897 +SHA256 (KDE/release-service/21.04.2/libkdcraw-21.04.2.tar.xz) = 2906e7cfff0dcfdebff46cabe4715dff3e21385f6dd4db1d479a14edaa1510e2 +SIZE (KDE/release-service/21.04.2/libkdcraw-21.04.2.tar.xz) = 37188 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index 45c45490de62..f19f1a6279ae 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741493 -SHA256 (KDE/release-service/21.04.1/libkexiv2-21.04.1.tar.xz) = b3f1f4e2f6b30008e008dbd000d428654f46c74b146af622cf60c512bbfde092 -SIZE (KDE/release-service/21.04.1/libkexiv2-21.04.1.tar.xz) = 60272 +TIMESTAMP = 1623520899 +SHA256 (KDE/release-service/21.04.2/libkexiv2-21.04.2.tar.xz) = 0421ac039d4f0f7e20f24146deab6ff6ddd9e282878c8e96ac6e6842cab4f625 +SIZE (KDE/release-service/21.04.2/libkexiv2-21.04.2.tar.xz) = 60268 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index bdd94159de3d..9c649dedaf0f 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741494 -SHA256 (KDE/release-service/21.04.1/libkipi-21.04.1.tar.xz) = e736c0e665798a5948029a73434a834f70fe4073ac1cee8441127dead96af9cf -SIZE (KDE/release-service/21.04.1/libkipi-21.04.1.tar.xz) = 103436 +TIMESTAMP = 1623520900 +SHA256 (KDE/release-service/21.04.2/libkipi-21.04.2.tar.xz) = b0b0cb38a0e347d0016fb33dbb064e142cd82dd9fd4ce37b30732881d99e123d +SIZE (KDE/release-service/21.04.2/libkipi-21.04.2.tar.xz) = 103424 diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index 64b8332d7200..9f9471d894e6 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -1,23 +1,22 @@ PORTNAME= libksane DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= SANE library interface for KDE LIB_DEPENDS= libsane.so:graphics/sane-backends USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= config i18n sonnet textwidgets wallet widgetsaddons \ ecm_build USE_QT= core gui widgets \ buildtools_build qmake_build testlib_build USE_LDCONFIG= yes OPTIONS_DEFINE= DOCS # Override shared library version KDE_APPLICATIONS_SHLIB_VER= "${KDE_APPLICATIONS_VERSION}" .include diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 824abfc7b6d0..fb4e3e4204de 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741495 -SHA256 (KDE/release-service/21.04.1/libksane-21.04.1.tar.xz) = 33027c28e0a7f66b444d9e5d75aef1c268239d64384ce847dc69b86b9bc50af6 -SIZE (KDE/release-service/21.04.1/libksane-21.04.1.tar.xz) = 143740 +TIMESTAMP = 1623520901 +SHA256 (KDE/release-service/21.04.2/libksane-21.04.2.tar.xz) = c20eac11af76bf8655abc5a06764c5b9b5e21724e89f37f08c30b967393bdd65 +SIZE (KDE/release-service/21.04.2/libksane-21.04.2.tar.xz) = 145380 diff --git a/graphics/libksane/pkg-plist b/graphics/libksane/pkg-plist index d88ab75e0c1a..d2fb6b67afd5 100644 --- a/graphics/libksane/pkg-plist +++ b/graphics/libksane/pkg-plist @@ -1,66 +1,68 @@ include/KF5/KSane/KSaneWidget include/KF5/KSane/ksane_export.h include/KF5/KSane/ksanewidget.h include/KF5/ksane_version.h lib/cmake/KF5Sane/KF5SaneConfig.cmake lib/cmake/KF5Sane/KF5SaneConfigVersion.cmake lib/cmake/KF5Sane/KF5SaneTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Sane/KF5SaneTargets.cmake lib/libKF5Sane.so lib/libKF5Sane.so.5 lib/libKF5Sane.so.%%KDE_APPLICATIONS_VERSION%% share/icons/hicolor/16x16/actions/black-white.png share/icons/hicolor/16x16/actions/color.png share/icons/hicolor/16x16/actions/gray-scale.png share/locale/ar/LC_MESSAGES/libksane.mo +share/locale/be/LC_MESSAGES/libksane.mo share/locale/bg/LC_MESSAGES/libksane.mo share/locale/bs/LC_MESSAGES/libksane.mo share/locale/ca/LC_MESSAGES/libksane.mo share/locale/ca@valencia/LC_MESSAGES/libksane.mo share/locale/cs/LC_MESSAGES/libksane.mo share/locale/da/LC_MESSAGES/libksane.mo share/locale/de/LC_MESSAGES/libksane.mo share/locale/el/LC_MESSAGES/libksane.mo share/locale/en_GB/LC_MESSAGES/libksane.mo share/locale/eo/LC_MESSAGES/libksane.mo share/locale/es/LC_MESSAGES/libksane.mo share/locale/et/LC_MESSAGES/libksane.mo share/locale/eu/LC_MESSAGES/libksane.mo share/locale/fi/LC_MESSAGES/libksane.mo share/locale/fr/LC_MESSAGES/libksane.mo share/locale/ga/LC_MESSAGES/libksane.mo share/locale/gl/LC_MESSAGES/libksane.mo share/locale/hi/LC_MESSAGES/libksane.mo share/locale/hr/LC_MESSAGES/libksane.mo share/locale/hu/LC_MESSAGES/libksane.mo share/locale/ia/LC_MESSAGES/libksane.mo share/locale/id/LC_MESSAGES/libksane.mo share/locale/is/LC_MESSAGES/libksane.mo share/locale/it/LC_MESSAGES/libksane.mo share/locale/ja/LC_MESSAGES/libksane.mo share/locale/kk/LC_MESSAGES/libksane.mo share/locale/km/LC_MESSAGES/libksane.mo share/locale/ko/LC_MESSAGES/libksane.mo share/locale/lt/LC_MESSAGES/libksane.mo share/locale/lv/LC_MESSAGES/libksane.mo share/locale/ml/LC_MESSAGES/libksane.mo share/locale/mr/LC_MESSAGES/libksane.mo share/locale/nb/LC_MESSAGES/libksane.mo share/locale/nds/LC_MESSAGES/libksane.mo share/locale/nl/LC_MESSAGES/libksane.mo share/locale/nn/LC_MESSAGES/libksane.mo share/locale/pa/LC_MESSAGES/libksane.mo share/locale/pl/LC_MESSAGES/libksane.mo share/locale/pt/LC_MESSAGES/libksane.mo share/locale/pt_BR/LC_MESSAGES/libksane.mo share/locale/ro/LC_MESSAGES/libksane.mo share/locale/ru/LC_MESSAGES/libksane.mo share/locale/sk/LC_MESSAGES/libksane.mo share/locale/sl/LC_MESSAGES/libksane.mo +share/locale/sq/LC_MESSAGES/libksane.mo share/locale/sv/LC_MESSAGES/libksane.mo share/locale/tr/LC_MESSAGES/libksane.mo share/locale/ug/LC_MESSAGES/libksane.mo share/locale/uk/LC_MESSAGES/libksane.mo share/locale/wa/LC_MESSAGES/libksane.mo share/locale/zh_CN/LC_MESSAGES/libksane.mo share/locale/zh_TW/LC_MESSAGES/libksane.mo diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 9a73b0d0a051..abbf580d6103 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -1,44 +1,43 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE universal document viewer LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= markdown:textproc/discount RUN_DEPENDS= markdown:textproc/discount LIB_DEPENDS= libchm.so:misc/chmlib \ libdjvulibre.so:graphics/djvulibre \ libepub.so:textproc/ebook-tools \ libfreetype.so:print/freetype2 \ libqmobipocket.so:graphics/kdegraphics-mobipocket \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 \ libspectre.so:print/libspectre \ libtiff.so:graphics/tiff \ libzip.so:archivers/libzip USES= cmake compiler:c++11-lib desktop-file-utils \ gettext jpeg kde:5 pkgconfig qca qt:5 tar:xz USE_KDE= activities archive auth bookmarks codecs completion config \ configwidgets coreaddons crash dbusaddons ecm emoticons i18n \ iconthemes init itemmodels itemviews jobwidgets js \ kdelibs4support khtml kio libkexiv2 parts pty \ service solid sonnet textwidgets threadweaver wallet \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui network phonon4 printsupport speech \ svg widgets xml \ buildtools_build qmake_build OPTIONS_DEFINE= DOCS PURPOSE OPTIONS_DEFAULT= PURPOSE PURPOSE_DESC= Enable 'Share' menu PURPOSE_USE= KDE=purpose PURPOSE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_KDEExperimentalPurpose .include diff --git a/graphics/okular/distinfo b/graphics/okular/distinfo index 8e994dc7f6f0..a5a8c105cef4 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741496 -SHA256 (KDE/release-service/21.04.1/okular-21.04.1.tar.xz) = 95804e90130a4d5fdeb5f88bb3bfc29b4dbe1592c5a343786779ce9b4fa11e3d -SIZE (KDE/release-service/21.04.1/okular-21.04.1.tar.xz) = 7999664 +TIMESTAMP = 1623520903 +SHA256 (KDE/release-service/21.04.2/okular-21.04.2.tar.xz) = 330dbe847409bfc544093ac703754fb5f43398ea3dbea88b976dc393d3bda65c +SIZE (KDE/release-service/21.04.2/okular-21.04.2.tar.xz) = 8050596 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index dfd966a4485d..ca5475ccdcec 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1071 +1,1125 @@ 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.9 lib/libOkular5Core.so.9.0.0 %%QT_PLUGINDIR%%/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/128x128/apps/okular.png 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/kconf_update/okular.upd share/kservices5/ms-its.protocol 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_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.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_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.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_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.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_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_xps.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_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.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/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_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.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/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/spectacle/Makefile b/graphics/spectacle/Makefile index b0fb6d7708ce..da89525aa480 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -1,27 +1,26 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 3 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= KDE screen capture program LIB_DEPENDS= libxcb-cursor.so:x11/xcb-util-cursor \ libxcb-image.so:x11/xcb-util-image \ libxcb-util.so:x11/xcb-util \ libkImageAnnotator.so:graphics/kimageannotator RUN_DEPENDS= kipi-plugins>=0:graphics/kipi-plugins USES= cmake compiler:c++11-lang gettext kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ dbusaddons doctools ecm globalaccel i18n jobwidgets kdeclarative kio \ libkipi newstuff notifications package service wayland \ widgetsaddons windowsystem xmlgui USE_QT= core concurrent dbus declarative gui network printsupport \ quickcontrols widgets x11extras xml \ buildtools_build qmake_build USE_XORG= x11 xcb xext xfixes OPTIONS_DEFINE= DOCS .include diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index a8cb3a562a0d..2756fd870b83 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741497 -SHA256 (KDE/release-service/21.04.1/spectacle-21.04.1.tar.xz) = 71ed0c2561b2a9e886c3f607c11e46e5b26c2b7f44871d801d08405deb463b1c -SIZE (KDE/release-service/21.04.1/spectacle-21.04.1.tar.xz) = 1168624 +TIMESTAMP = 1623520905 +SHA256 (KDE/release-service/21.04.2/spectacle-21.04.2.tar.xz) = 614d2b78a7cbb771e579de4401602b6f41403b40c8c034238df74dfe814feb6c +SIZE (KDE/release-service/21.04.2/spectacle-21.04.2.tar.xz) = 1174904 diff --git a/graphics/spectacle/pkg-plist b/graphics/spectacle/pkg-plist index 91ac81617a66..49bf3636856c 100644 --- a/graphics/spectacle/pkg-plist +++ b/graphics/spectacle/pkg-plist @@ -1,64 +1,65 @@ bin/spectacle lib/kconf_update_bin/spectacle-migrate-shortcuts lib/systemd/user/app-org.kde.spectacle.service man/ca/man1/spectacle.1.gz man/de/man1/spectacle.1.gz man/es/man1/spectacle.1.gz man/it/man1/spectacle.1.gz man/man1/spectacle.1.gz man/nl/man1/spectacle.1.gz man/sv/man1/spectacle.1.gz man/uk/man1/spectacle.1.gz share/qlogging-categories5/spectacle.categories share/applications/org.kde.spectacle.desktop share/dbus-1/interfaces/org.kde.Spectacle.xml share/dbus-1/services/org.kde.Spectacle.service share/icons/hicolor/16x16/apps/spectacle.png share/icons/hicolor/22x22/apps/spectacle.png share/icons/hicolor/32x32/apps/spectacle.png share/icons/hicolor/48x48/apps/spectacle.png share/icons/hicolor/scalable/apps/spectacle.svgz share/kconf_update/spectacle_newConfig.upd share/kconf_update/spectacle_shortcuts.upd share/kglobalaccel/org.kde.spectacle.desktop share/knotifications5/spectacle.notifyrc share/locale/ar/LC_MESSAGES/spectacle.mo +share/locale/az/LC_MESSAGES/spectacle.mo share/locale/bg/LC_MESSAGES/spectacle.mo share/locale/ca/LC_MESSAGES/spectacle.mo share/locale/ca@valencia/LC_MESSAGES/spectacle.mo share/locale/cs/LC_MESSAGES/spectacle.mo share/locale/da/LC_MESSAGES/spectacle.mo share/locale/de/LC_MESSAGES/spectacle.mo share/locale/el/LC_MESSAGES/spectacle.mo share/locale/en_GB/LC_MESSAGES/spectacle.mo share/locale/es/LC_MESSAGES/spectacle.mo share/locale/et/LC_MESSAGES/spectacle.mo share/locale/eu/LC_MESSAGES/spectacle.mo share/locale/fi/LC_MESSAGES/spectacle.mo share/locale/fr/LC_MESSAGES/spectacle.mo share/locale/gl/LC_MESSAGES/spectacle.mo share/locale/he/LC_MESSAGES/spectacle.mo share/locale/hu/LC_MESSAGES/spectacle.mo share/locale/ia/LC_MESSAGES/spectacle.mo share/locale/id/LC_MESSAGES/spectacle.mo share/locale/it/LC_MESSAGES/spectacle.mo share/locale/ja/LC_MESSAGES/spectacle.mo share/locale/ko/LC_MESSAGES/spectacle.mo share/locale/lt/LC_MESSAGES/spectacle.mo share/locale/ml/LC_MESSAGES/spectacle.mo share/locale/nl/LC_MESSAGES/spectacle.mo share/locale/nn/LC_MESSAGES/spectacle.mo share/locale/pl/LC_MESSAGES/spectacle.mo share/locale/pt/LC_MESSAGES/spectacle.mo share/locale/pt_BR/LC_MESSAGES/spectacle.mo share/locale/ro/LC_MESSAGES/spectacle.mo share/locale/ru/LC_MESSAGES/spectacle.mo share/locale/sk/LC_MESSAGES/spectacle.mo share/locale/sl/LC_MESSAGES/spectacle.mo share/locale/sr/LC_MESSAGES/spectacle.mo share/locale/sv/LC_MESSAGES/spectacle.mo share/locale/tr/LC_MESSAGES/spectacle.mo share/locale/uk/LC_MESSAGES/spectacle.mo share/locale/zh_CN/LC_MESSAGES/spectacle.mo share/locale/zh_TW/LC_MESSAGES/spectacle.mo share/metainfo/org.kde.spectacle.appdata.xml diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 4c189416de06..c8357cf4bcd3 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741497 -SHA256 (KDE/release-service/21.04.1/konversation-21.04.1.tar.xz) = 61f4a59ea00d90755fc3e00a504aeff275301db7584c34d82c158901347336dd -SIZE (KDE/release-service/21.04.1/konversation-21.04.1.tar.xz) = 4230632 +TIMESTAMP = 1623520906 +SHA256 (KDE/release-service/21.04.2/konversation-21.04.2.tar.xz) = e1e63746a358bd5679309cd6c4ce15fff200cb69a36bed33b6514f2fde2fe8e9 +SIZE (KDE/release-service/21.04.2/konversation-21.04.2.tar.xz) = 4252240 diff --git a/irc/konversation/pkg-plist b/irc/konversation/pkg-plist index 0407b33537dd..3c315f10b05e 100644 --- a/irc/konversation/pkg-plist +++ b/irc/konversation/pkg-plist @@ -1,164 +1,166 @@ bin/konversation share/applications/org.kde.konversation.desktop share/icons/hicolor/128x128/actions/konv_message.png share/icons/hicolor/128x128/apps/konversation.png share/icons/hicolor/16x16/actions/konv_message.png share/icons/hicolor/16x16/apps/konversation.png share/icons/hicolor/22x22/actions/konv_message.png share/icons/hicolor/22x22/apps/konversation.png share/icons/hicolor/32x32/actions/konv_message.png share/icons/hicolor/32x32/apps/konversation.png share/icons/hicolor/48x48/actions/konv_message.png share/icons/hicolor/48x48/apps/konversation.png share/icons/hicolor/64x64/actions/konv_message.png share/icons/hicolor/64x64/apps/konversation.png share/kconf_update/konversation-0.19-appearance.pl share/kconf_update/konversation-0.19-colorcodes.pl share/kconf_update/konversation-0.19-colors.pl share/kconf_update/konversation-0.19-custombrowser.pl share/kconf_update/konversation-0.19-notifylists.pl share/kconf_update/konversation-0.19-sortorder.pl share/kconf_update/konversation-0.19-tabplacement.pl share/kconf_update/konversation-0.20-customfonts.pl share/kconf_update/konversation-0.20-quickbuttons.pl share/kconf_update/konversation.upd share/knotifications5/konversation.notifyrc share/knsrcfiles/konversation_nicklist_theme.knsrc %%DATADIR%%/scripting_support/python/konversation/__init__.py %%DATADIR%%/scripting_support/python/konversation/dbus.py %%DATADIR%%/scripting_support/python/konversation/i18n.py %%DATADIR%%/scripts/bug %%DATADIR%%/scripts/cmd %%DATADIR%%/scripts/fortune %%DATADIR%%/scripts/fortunes.dat %%DATADIR%%/scripts/gauge %%DATADIR%%/scripts/media %%DATADIR%%/scripts/sayclip %%DATADIR%%/scripts/sysinfo %%DATADIR%%/scripts/tinyurl %%DATADIR%%/scripts/uptime %%DATADIR%%/themes/alternative/index.desktop %%DATADIR%%/themes/alternative/irc_admin.png %%DATADIR%%/themes/alternative/irc_away.png %%DATADIR%%/themes/alternative/irc_halfop.png %%DATADIR%%/themes/alternative/irc_normal.png %%DATADIR%%/themes/alternative/irc_op.png %%DATADIR%%/themes/alternative/irc_owner.png %%DATADIR%%/themes/alternative/irc_voice.png %%DATADIR%%/themes/christmas/index.desktop %%DATADIR%%/themes/christmas/irc_admin.png %%DATADIR%%/themes/christmas/irc_away.png %%DATADIR%%/themes/christmas/irc_halfop.png %%DATADIR%%/themes/christmas/irc_normal.png %%DATADIR%%/themes/christmas/irc_op.png %%DATADIR%%/themes/christmas/irc_owner.png %%DATADIR%%/themes/christmas/irc_voice.png %%DATADIR%%/themes/classic/index.desktop %%DATADIR%%/themes/classic/irc_admin.png %%DATADIR%%/themes/classic/irc_away.png %%DATADIR%%/themes/classic/irc_halfop.png %%DATADIR%%/themes/classic/irc_normal.png %%DATADIR%%/themes/classic/irc_op.png %%DATADIR%%/themes/classic/irc_owner.png %%DATADIR%%/themes/classic/irc_voice.png %%DATADIR%%/themes/default-dark/index.desktop %%DATADIR%%/themes/default-dark/irc_admin.svg %%DATADIR%%/themes/default-dark/irc_away.svg %%DATADIR%%/themes/default-dark/irc_away_stacked.svg %%DATADIR%%/themes/default-dark/irc_halfop.svg %%DATADIR%%/themes/default-dark/irc_normal.svg %%DATADIR%%/themes/default-dark/irc_op.svg %%DATADIR%%/themes/default-dark/irc_owner.svg %%DATADIR%%/themes/default-dark/irc_voice.svg %%DATADIR%%/themes/default/index.desktop %%DATADIR%%/themes/default/irc_admin.svg %%DATADIR%%/themes/default/irc_away.svg %%DATADIR%%/themes/default/irc_away_stacked.svg %%DATADIR%%/themes/default/irc_halfop.svg %%DATADIR%%/themes/default/irc_normal.svg %%DATADIR%%/themes/default/irc_op.svg %%DATADIR%%/themes/default/irc_owner.svg %%DATADIR%%/themes/default/irc_voice.svg %%DATADIR%%/themes/oxygen/index.desktop %%DATADIR%%/themes/oxygen/irc_admin.png %%DATADIR%%/themes/oxygen/irc_away.png %%DATADIR%%/themes/oxygen/irc_halfop.png %%DATADIR%%/themes/oxygen/irc_normal.png %%DATADIR%%/themes/oxygen/irc_op.png %%DATADIR%%/themes/oxygen/irc_owner.png %%DATADIR%%/themes/oxygen/irc_voice.png %%DATADIR%%/themes/simplistic/index.desktop %%DATADIR%%/themes/simplistic/irc_admin.png %%DATADIR%%/themes/simplistic/irc_away.png %%DATADIR%%/themes/simplistic/irc_halfop.png %%DATADIR%%/themes/simplistic/irc_normal.png %%DATADIR%%/themes/simplistic/irc_op.png %%DATADIR%%/themes/simplistic/irc_owner.png %%DATADIR%%/themes/simplistic/irc_voice.png %%DATADIR%%/themes/smiling/index.desktop %%DATADIR%%/themes/smiling/irc_admin.png %%DATADIR%%/themes/smiling/irc_away.png %%DATADIR%%/themes/smiling/irc_halfop.png %%DATADIR%%/themes/smiling/irc_normal.png %%DATADIR%%/themes/smiling/irc_op.png %%DATADIR%%/themes/smiling/irc_owner.png %%DATADIR%%/themes/smiling/irc_voice.png %%DATADIR%%/themes/square/index.desktop %%DATADIR%%/themes/square/irc_admin.png %%DATADIR%%/themes/square/irc_away.png %%DATADIR%%/themes/square/irc_halfop.png %%DATADIR%%/themes/square/irc_normal.png %%DATADIR%%/themes/square/irc_op.png %%DATADIR%%/themes/square/irc_owner.png %%DATADIR%%/themes/square/irc_voice.png share/locale/ar/LC_MESSAGES/konversation.mo share/locale/bg/LC_MESSAGES/konversation.mo share/locale/bs/LC_MESSAGES/konversation.mo share/locale/ca/LC_MESSAGES/konversation.mo share/locale/ca@valencia/LC_MESSAGES/konversation.mo share/locale/cs/LC_MESSAGES/konversation.mo share/locale/da/LC_MESSAGES/konversation.mo share/locale/de/LC_MESSAGES/konversation.mo share/locale/el/LC_MESSAGES/konversation.mo share/locale/en_GB/LC_MESSAGES/konversation.mo share/locale/eo/LC_MESSAGES/konversation.mo share/locale/es/LC_MESSAGES/konversation.mo share/locale/et/LC_MESSAGES/konversation.mo share/locale/fi/LC_MESSAGES/konversation.mo share/locale/fr/LC_MESSAGES/konversation.mo share/locale/ga/LC_MESSAGES/konversation.mo share/locale/gl/LC_MESSAGES/konversation.mo share/locale/he/LC_MESSAGES/konversation.mo share/locale/hi/LC_MESSAGES/konversation.mo share/locale/hr/LC_MESSAGES/konversation.mo share/locale/hu/LC_MESSAGES/konversation.mo share/locale/ia/LC_MESSAGES/konversation.mo share/locale/is/LC_MESSAGES/konversation.mo share/locale/it/LC_MESSAGES/konversation.mo share/locale/ja/LC_MESSAGES/konversation.mo share/locale/kk/LC_MESSAGES/konversation.mo share/locale/km/LC_MESSAGES/konversation.mo share/locale/ko/LC_MESSAGES/konversation.mo share/locale/lt/LC_MESSAGES/konversation.mo share/locale/mr/LC_MESSAGES/konversation.mo share/locale/nb/LC_MESSAGES/konversation.mo share/locale/nds/LC_MESSAGES/konversation.mo share/locale/nl/LC_MESSAGES/konversation.mo share/locale/nn/LC_MESSAGES/konversation.mo share/locale/pa/LC_MESSAGES/konversation.mo share/locale/pl/LC_MESSAGES/konversation.mo share/locale/pt/LC_MESSAGES/konversation.mo share/locale/pt_BR/LC_MESSAGES/konversation.mo share/locale/ro/LC_MESSAGES/konversation.mo share/locale/ru/LC_MESSAGES/konversation.mo share/locale/sk/LC_MESSAGES/konversation.mo share/locale/sl/LC_MESSAGES/konversation.mo +share/locale/sq/LC_MESSAGES/konversation.mo share/locale/sr/LC_MESSAGES/konversation.mo share/locale/sv/LC_MESSAGES/konversation.mo +share/locale/ta/LC_MESSAGES/konversation.mo share/locale/tr/LC_MESSAGES/konversation.mo share/locale/ug/LC_MESSAGES/konversation.mo share/locale/uk/LC_MESSAGES/konversation.mo share/locale/zh_CN/LC_MESSAGES/konversation.mo share/locale/zh_TW/LC_MESSAGES/konversation.mo share/metainfo/org.kde.konversation.appdata.xml share/qlogging-categories5/konversation.categories diff --git a/japanese/kiten/distinfo b/japanese/kiten/distinfo index 29ed94553d69..c8755a0a9e12 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741498 -SHA256 (KDE/release-service/21.04.1/kiten-21.04.1.tar.xz) = 37bc1ee43c58ef3e0c7a3d707099e9e92a9d5d239e788d921f14442d70f7d9ef -SIZE (KDE/release-service/21.04.1/kiten-21.04.1.tar.xz) = 11301964 +TIMESTAMP = 1623520908 +SHA256 (KDE/release-service/21.04.2/kiten-21.04.2.tar.xz) = 670ad1f00ee85fd00a3a3d904bf889ea6b740eff412e3c80abe80dd061a38105 +SIZE (KDE/release-service/21.04.2/kiten-21.04.2.tar.xz) = 11312352 diff --git a/japanese/kiten/pkg-plist b/japanese/kiten/pkg-plist index 4a6b0321aeaf..3fbd5b6c765e 100644 --- a/japanese/kiten/pkg-plist +++ b/japanese/kiten/pkg-plist @@ -1,87 +1,93 @@ bin/kiten bin/kitengen bin/kitenkanjibrowser bin/kitenradselect include/libkiten/DictEdict/dictfileedict.h include/libkiten/DictEdict/entryedict.h include/libkiten/DictKanjidic/dictfilekanjidic.h include/libkiten/DictKanjidic/entrykanjidic.h include/libkiten/dictionarymanager.h include/libkiten/dictionarypreferencedialog.h include/libkiten/dictquery.h include/libkiten/entry.h include/libkiten/entrylist.h include/libkiten/historyptrlist.h include/libkiten/kromajiedit.h lib/libkiten.so lib/libkiten.so.5 lib/libkiten.so.5.0.0 share/applications/org.kde.kiten.desktop share/applications/org.kde.kitenkanjibrowser.desktop share/applications/org.kde.kitenradselect.desktop share/config.kcfg/kiten.kcfg share/fonts/kanjistrokeorders/KanjiStrokeOrders.ttf share/icons/hicolor/128x128/apps/kiten.png share/icons/hicolor/16x16/apps/kiten.png share/icons/hicolor/22x22/apps/kiten.png share/icons/hicolor/32x32/apps/kiten.png share/icons/hicolor/48x48/apps/kiten.png share/icons/hicolor/64x64/apps/kiten.png share/icons/hicolor/scalable/apps/kiten.svgz %%DATADIR%%/edict %%DATADIR%%/kanjidic %%DATADIR%%/radkfile %%DATADIR%%/romkana.cnv %%DATADIR%%/vconj share/kxmlgui5/kiten/kitenui.rc share/kxmlgui5/kitenkanjibrowser/kanjibrowserui.rc share/kxmlgui5/kitenradselect/radselectui.rc share/locale/ar/LC_MESSAGES/kiten.mo +share/locale/be/LC_MESSAGES/kiten.mo share/locale/bg/LC_MESSAGES/kiten.mo share/locale/bs/LC_MESSAGES/kiten.mo share/locale/ca/LC_MESSAGES/kiten.mo share/locale/ca@valencia/LC_MESSAGES/kiten.mo share/locale/cs/LC_MESSAGES/kiten.mo share/locale/da/LC_MESSAGES/kiten.mo share/locale/de/LC_MESSAGES/kiten.mo share/locale/el/LC_MESSAGES/kiten.mo share/locale/en_GB/LC_MESSAGES/kiten.mo share/locale/eo/LC_MESSAGES/kiten.mo share/locale/es/LC_MESSAGES/kiten.mo share/locale/et/LC_MESSAGES/kiten.mo share/locale/eu/LC_MESSAGES/kiten.mo share/locale/fa/LC_MESSAGES/kiten.mo share/locale/fi/LC_MESSAGES/kiten.mo share/locale/fr/LC_MESSAGES/kiten.mo share/locale/ga/LC_MESSAGES/kiten.mo share/locale/gl/LC_MESSAGES/kiten.mo share/locale/hi/LC_MESSAGES/kiten.mo share/locale/hr/LC_MESSAGES/kiten.mo share/locale/hu/LC_MESSAGES/kiten.mo share/locale/is/LC_MESSAGES/kiten.mo share/locale/it/LC_MESSAGES/kiten.mo share/locale/ja/LC_MESSAGES/kiten.mo share/locale/kk/LC_MESSAGES/kiten.mo share/locale/km/LC_MESSAGES/kiten.mo +share/locale/ko/LC_MESSAGES/kiten.mo share/locale/lt/LC_MESSAGES/kiten.mo share/locale/lv/LC_MESSAGES/kiten.mo share/locale/ml/LC_MESSAGES/kiten.mo share/locale/mr/LC_MESSAGES/kiten.mo share/locale/nb/LC_MESSAGES/kiten.mo share/locale/nds/LC_MESSAGES/kiten.mo share/locale/nl/LC_MESSAGES/kiten.mo share/locale/nn/LC_MESSAGES/kiten.mo share/locale/pl/LC_MESSAGES/kiten.mo share/locale/pt/LC_MESSAGES/kiten.mo share/locale/pt_BR/LC_MESSAGES/kiten.mo share/locale/ro/LC_MESSAGES/kiten.mo share/locale/ru/LC_MESSAGES/kiten.mo +share/locale/se/LC_MESSAGES/kiten.mo share/locale/sk/LC_MESSAGES/kiten.mo share/locale/sl/LC_MESSAGES/kiten.mo +share/locale/sq/LC_MESSAGES/kiten.mo share/locale/sv/LC_MESSAGES/kiten.mo +share/locale/ta/LC_MESSAGES/kiten.mo +share/locale/tg/LC_MESSAGES/kiten.mo share/locale/tr/LC_MESSAGES/kiten.mo share/locale/ug/LC_MESSAGES/kiten.mo share/locale/uk/LC_MESSAGES/kiten.mo share/locale/zh_CN/LC_MESSAGES/kiten.mo share/locale/zh_TW/LC_MESSAGES/kiten.mo share/metainfo/org.kde.kiten.appdata.xml diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index d3610d63ecdd..ef7c9c3f1f50 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741499 -SHA256 (KDE/release-service/21.04.1/kross-interpreters-21.04.1.tar.xz) = f5e2fb7b846dd375a8fad46137c4531ffc75066d5dd7e82da95d501c62ed77e1 -SIZE (KDE/release-service/21.04.1/kross-interpreters-21.04.1.tar.xz) = 151612 +TIMESTAMP = 1623520910 +SHA256 (KDE/release-service/21.04.2/kross-interpreters-21.04.2.tar.xz) = 9f55ee47d04166d5a3eee9f2fda4b4059cefab6f80e1f50afafc9ed68276a9a9 +SIZE (KDE/release-service/21.04.2/kross-interpreters-21.04.2.tar.xz) = 151620 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 270a37790ee6..d858f7cf2fa3 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741499 -SHA256 (KDE/release-service/21.04.1/kturtle-21.04.1.tar.xz) = 35fbbb78e626f678658eaccd6a4151cc3e9d17a8800395454ccb2cbe1a265912 -SIZE (KDE/release-service/21.04.1/kturtle-21.04.1.tar.xz) = 1838472 +TIMESTAMP = 1623520911 +SHA256 (KDE/release-service/21.04.2/kturtle-21.04.2.tar.xz) = b2fa12c69e9109c19690b390bcc44a40b6c27dc3f2d3c824c6847ae3aac13759 +SIZE (KDE/release-service/21.04.2/kturtle-21.04.2.tar.xz) = 1858020 diff --git a/lang/kturtle/pkg-plist b/lang/kturtle/pkg-plist index a1c96bf57166..ceab29660923 100644 --- a/lang/kturtle/pkg-plist +++ b/lang/kturtle/pkg-plist @@ -1,108 +1,114 @@ bin/kturtle etc/xdg/kturtle.knsrc share/applications/org.kde.kturtle.desktop share/icons/hicolor/128x128/apps/kturtle.png share/icons/hicolor/16x16/apps/kturtle.png share/icons/hicolor/22x22/apps/kturtle.png share/icons/hicolor/32x32/apps/kturtle.png share/icons/hicolor/48x48/apps/kturtle.png share/icons/hicolor/64x64/apps/kturtle.png share/katepart/syntax/logohighlightstyle.en_GB.xml share/katepart/syntax/logohighlightstyle.nb.xml share/katepart/syntax/logohighlightstyle.nds.xml share/katepart/syntax/logohighlightstyle.nl.xml %%DATADIR%%/data/logokeywords.en_GB.xml %%DATADIR%%/data/logokeywords.nb.xml %%DATADIR%%/data/logokeywords.nl.xml %%DATADIR%%/examples/en_GB/curly.logo %%DATADIR%%/examples/en_GB/example1.logo %%DATADIR%%/examples/en_GB/square.logo %%DATADIR%%/examples/en_GB/triangle.logo %%DATADIR%%/examples/nb/arkfarge.logo %%DATADIR%%/examples/nb/blomst.logo %%DATADIR%%/examples/nb/gangetabell.logo %%DATADIR%%/examples/nb/kde.logo %%DATADIR%%/examples/nb/krusedull.logo %%DATADIR%%/examples/nb/kvadrat.logo %%DATADIR%%/examples/nb/kvadrathjul.logo %%DATADIR%%/examples/nb/pil.logo %%DATADIR%%/examples/nb/reklame.logo %%DATADIR%%/examples/nb/tilfeldige-navn.logo %%DATADIR%%/examples/nb/trekant.logo %%DATADIR%%/examples/nb/trekanthjul.logo %%DATADIR%%/examples/nds/bloom.logo %%DATADIR%%/examples/nds/dreeeck.logo %%DATADIR%%/examples/nds/dreeecks.logo %%DATADIR%%/examples/nds/eenmaaleen.logo %%DATADIR%%/examples/nds/kde.logo %%DATADIR%%/examples/nds/locken.logo %%DATADIR%%/examples/nds/niklaas.logo %%DATADIR%%/examples/nds/oeversicht_befehlen.logo %%DATADIR%%/examples/nds/piel.logo %%DATADIR%%/examples/nds/quadraat.logo %%DATADIR%%/examples/nds/quadraten.logo %%DATADIR%%/examples/nds/tofallnaam.logo %%DATADIR%%/examples/nds/wandkloeren.logo %%DATADIR%%/examples/nds/warf.logo %%DATADIR%%/examples/nl/advertentie.logo %%DATADIR%%/examples/nl/bloem.logo %%DATADIR%%/examples/nl/driehoek.logo %%DATADIR%%/examples/nl/driehoeken.logo %%DATADIR%%/examples/nl/kleuren.logo %%DATADIR%%/examples/nl/krullen.logo %%DATADIR%%/examples/nl/pijl.logo %%DATADIR%%/examples/nl/randomnaam.logo %%DATADIR%%/examples/nl/tafels.logo %%DATADIR%%/examples/nl/vierkant.logo %%DATADIR%%/examples/nl/vierkanten.logo share/kxmlgui5/kturtle/kturtleui.rc share/locale/ar/LC_MESSAGES/kturtle.mo +share/locale/be/LC_MESSAGES/kturtle.mo share/locale/bg/LC_MESSAGES/kturtle.mo share/locale/bs/LC_MESSAGES/kturtle.mo share/locale/ca/LC_MESSAGES/kturtle.mo share/locale/ca@valencia/LC_MESSAGES/kturtle.mo share/locale/cs/LC_MESSAGES/kturtle.mo share/locale/da/LC_MESSAGES/kturtle.mo share/locale/de/LC_MESSAGES/kturtle.mo share/locale/el/LC_MESSAGES/kturtle.mo share/locale/en_GB/LC_MESSAGES/kturtle.mo share/locale/eo/LC_MESSAGES/kturtle.mo share/locale/es/LC_MESSAGES/kturtle.mo share/locale/et/LC_MESSAGES/kturtle.mo share/locale/eu/LC_MESSAGES/kturtle.mo share/locale/fa/LC_MESSAGES/kturtle.mo share/locale/fi/LC_MESSAGES/kturtle.mo share/locale/fr/LC_MESSAGES/kturtle.mo share/locale/ga/LC_MESSAGES/kturtle.mo share/locale/gl/LC_MESSAGES/kturtle.mo share/locale/he/LC_MESSAGES/kturtle.mo share/locale/hi/LC_MESSAGES/kturtle.mo share/locale/hr/LC_MESSAGES/kturtle.mo share/locale/hu/LC_MESSAGES/kturtle.mo share/locale/it/LC_MESSAGES/kturtle.mo share/locale/ja/LC_MESSAGES/kturtle.mo share/locale/kk/LC_MESSAGES/kturtle.mo share/locale/km/LC_MESSAGES/kturtle.mo +share/locale/ko/LC_MESSAGES/kturtle.mo share/locale/lt/LC_MESSAGES/kturtle.mo share/locale/lv/LC_MESSAGES/kturtle.mo share/locale/ml/LC_MESSAGES/kturtle.mo share/locale/mr/LC_MESSAGES/kturtle.mo share/locale/nb/LC_MESSAGES/kturtle.mo share/locale/nds/LC_MESSAGES/kturtle.mo share/locale/nl/LC_MESSAGES/kturtle.mo share/locale/nn/LC_MESSAGES/kturtle.mo share/locale/pa/LC_MESSAGES/kturtle.mo share/locale/pl/LC_MESSAGES/kturtle.mo share/locale/pt/LC_MESSAGES/kturtle.mo share/locale/pt_BR/LC_MESSAGES/kturtle.mo share/locale/ro/LC_MESSAGES/kturtle.mo share/locale/ru/LC_MESSAGES/kturtle.mo +share/locale/se/LC_MESSAGES/kturtle.mo share/locale/sk/LC_MESSAGES/kturtle.mo share/locale/sl/LC_MESSAGES/kturtle.mo +share/locale/sq/LC_MESSAGES/kturtle.mo share/locale/sv/LC_MESSAGES/kturtle.mo +share/locale/ta/LC_MESSAGES/kturtle.mo +share/locale/tg/LC_MESSAGES/kturtle.mo share/locale/tr/LC_MESSAGES/kturtle.mo share/locale/ug/LC_MESSAGES/kturtle.mo share/locale/uk/LC_MESSAGES/kturtle.mo share/locale/zh_CN/LC_MESSAGES/kturtle.mo share/locale/zh_TW/LC_MESSAGES/kturtle.mo share/metainfo/org.kde.kturtle.appdata.xml diff --git a/math/analitza/distinfo b/math/analitza/distinfo index 6b89dad1b1e9..a2858a64a312 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741500 -SHA256 (KDE/release-service/21.04.1/analitza-21.04.1.tar.xz) = 0466fa146b427533c5c8177faf48c2a4c003b1885a02868d339191d3559b4107 -SIZE (KDE/release-service/21.04.1/analitza-21.04.1.tar.xz) = 342060 +TIMESTAMP = 1623520913 +SHA256 (KDE/release-service/21.04.2/analitza-21.04.2.tar.xz) = 42c254df94fa223b1dd02c52e6a220898b589c65b842afe68513f20785dac2e1 +SIZE (KDE/release-service/21.04.2/analitza-21.04.2.tar.xz) = 346032 diff --git a/math/analitza/pkg-plist b/math/analitza/pkg-plist index 473a35614e2f..239695ac5139 100644 --- a/math/analitza/pkg-plist +++ b/math/analitza/pkg-plist @@ -1,108 +1,110 @@ include/Analitza5/analitza/abstractexpressionvisitor.h include/Analitza5/analitza/abstractlexer.h include/Analitza5/analitza/analitzaexport.h include/Analitza5/analitza/analitzautils.h include/Analitza5/analitza/analyzer.h include/Analitza5/analitza/apply.h include/Analitza5/analitza/builtinmethods.h include/Analitza5/analitza/container.h include/Analitza5/analitza/customobject.h include/Analitza5/analitza/expression.h include/Analitza5/analitza/expressionstream.h include/Analitza5/analitza/expressiontype.h include/Analitza5/analitza/importqobjectmetatype.h include/Analitza5/analitza/list.h include/Analitza5/analitza/matrix.h include/Analitza5/analitza/object.h include/Analitza5/analitza/operations.h include/Analitza5/analitza/operator.h include/Analitza5/analitza/value.h include/Analitza5/analitza/variable.h include/Analitza5/analitza/variables.h include/Analitza5/analitza/vector.h include/Analitza5/analitza_version.h include/Analitza5/analitzagui/algebrahighlighter.h include/Analitza5/analitzagui/analitzaguiexport.h include/Analitza5/analitzagui/analitzawidgets_export.h include/Analitza5/analitzagui/expressionedit.h include/Analitza5/analitzagui/operatorsmodel.h include/Analitza5/analitzagui/plotsview2d.h include/Analitza5/analitzagui/plotsview3d_es.h include/Analitza5/analitzagui/variablesmodel.h include/Analitza5/analitzaplot/analitzaplotexport.h include/Analitza5/analitzaplot/functiongraph.h include/Analitza5/analitzaplot/planecurve.h include/Analitza5/analitzaplot/plotitem.h include/Analitza5/analitzaplot/plotsdictionarymodel.h include/Analitza5/analitzaplot/plotsfactory.h include/Analitza5/analitzaplot/plotsmodel.h include/Analitza5/analitzaplot/plotter2d.h include/Analitza5/analitzaplot/plotter3d_es.h include/Analitza5/analitzaplot/plottingenums.h include/Analitza5/analitzaplot/spacecurve.h include/Analitza5/analitzaplot/surface.h lib/cmake/Analitza5/Analitza5Config.cmake lib/cmake/Analitza5/Analitza5ConfigVersion.cmake lib/cmake/Analitza5/Analitza5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Analitza5/Analitza5Targets.cmake lib/libAnalitza.so lib/libAnalitza.so.%%SHLIB_SHVER%% lib/libAnalitza.so.%%SHLIB_VER%% lib/libAnalitzaGui.so lib/libAnalitzaGui.so.%%SHLIB_SHVER%% lib/libAnalitzaGui.so.%%SHLIB_VER%% lib/libAnalitzaPlot.so lib/libAnalitzaPlot.so.%%SHLIB_SHVER%% lib/libAnalitzaPlot.so.%%SHLIB_VER%% lib/libAnalitzaWidgets.so lib/libAnalitzaWidgets.so.%%SHLIB_SHVER%% lib/libAnalitzaWidgets.so.%%SHLIB_VER%% %%QT_QMLDIR%%/org/kde/analitza/Graph2D.qml %%QT_QMLDIR%%/org/kde/analitza/Graph3D.qml %%QT_QMLDIR%%/org/kde/analitza/libanalitzadeclarativeplugin.so %%QT_QMLDIR%%/org/kde/analitza/qmldir share/libanalitza/plots/3Ds.plots share/libanalitza/plots/basic_curves.plots share/libanalitza/plots/conics.plots share/libanalitza/plots/polar.plots share/locale/ar/LC_MESSAGES/analitza_qt.qm share/locale/bs/LC_MESSAGES/analitza_qt.qm share/locale/ca/LC_MESSAGES/analitza_qt.qm share/locale/ca@valencia/LC_MESSAGES/analitza_qt.qm share/locale/cs/LC_MESSAGES/analitza_qt.qm share/locale/da/LC_MESSAGES/analitza_qt.qm share/locale/de/LC_MESSAGES/analitza_qt.qm share/locale/el/LC_MESSAGES/analitza_qt.qm share/locale/en_GB/LC_MESSAGES/analitza_qt.qm share/locale/es/LC_MESSAGES/analitza_qt.qm share/locale/et/LC_MESSAGES/analitza_qt.qm share/locale/eu/LC_MESSAGES/analitza_qt.qm share/locale/fi/LC_MESSAGES/analitza_qt.qm share/locale/fr/LC_MESSAGES/analitza_qt.qm share/locale/ga/LC_MESSAGES/analitza_qt.qm share/locale/gl/LC_MESSAGES/analitza_qt.qm share/locale/hu/LC_MESSAGES/analitza_qt.qm share/locale/ia/LC_MESSAGES/analitza_qt.qm share/locale/it/LC_MESSAGES/analitza_qt.qm share/locale/ja/LC_MESSAGES/analitza_qt.qm share/locale/kk/LC_MESSAGES/analitza_qt.qm +share/locale/ko/LC_MESSAGES/analitza_qt.qm share/locale/lt/LC_MESSAGES/analitza_qt.qm share/locale/lv/LC_MESSAGES/analitza_qt.qm share/locale/ml/LC_MESSAGES/analitza_qt.qm share/locale/mr/LC_MESSAGES/analitza_qt.qm share/locale/nb/LC_MESSAGES/analitza_qt.qm share/locale/nds/LC_MESSAGES/analitza_qt.qm share/locale/nl/LC_MESSAGES/analitza_qt.qm share/locale/nn/LC_MESSAGES/analitza_qt.qm share/locale/pl/LC_MESSAGES/analitza_qt.qm share/locale/pt/LC_MESSAGES/analitza_qt.qm share/locale/pt_BR/LC_MESSAGES/analitza_qt.qm share/locale/ru/LC_MESSAGES/analitza_qt.qm +share/locale/se/LC_MESSAGES/analitza_qt.qm share/locale/sk/LC_MESSAGES/analitza_qt.qm share/locale/sl/LC_MESSAGES/analitza_qt.qm share/locale/sv/LC_MESSAGES/analitza_qt.qm share/locale/tr/LC_MESSAGES/analitza_qt.qm share/locale/ug/LC_MESSAGES/analitza_qt.qm share/locale/uk/LC_MESSAGES/analitza_qt.qm share/locale/zh_CN/LC_MESSAGES/analitza_qt.qm share/locale/zh_TW/LC_MESSAGES/analitza_qt.qm diff --git a/math/cantor/Makefile b/math/cantor/Makefile index 54c19263c0df..2da0ee477679 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -1,63 +1,62 @@ # TODO: ensure only ${PYTON_CMD} is pixked again PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Mathematical software frontend by KDE LIB_DEPENDS= libAnalitza.so:math/analitza \ libcln.so:math/cln \ libqalculate.so:math/libqalculate \ libspectre.so:print/libspectre \ libpoppler.so:graphics/poppler \ libpoppler-qt5.so:graphics/poppler-qt5 BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/html/docbook.xsl:textproc/docbook-xsl \ docbook-xml>0:textproc/docbook-xml USES= cmake compiler:c++11-lang desktop-file-utils gettext kde:5 \ pkgconfig python:3.4+ qt:5 tar:xz USE_KDE= attica auth archive bookmarks codecs completion config \ configwidgets coreaddons crash ecm emoticons i18n iconthemes \ itemmodels itemviews init jobwidgets kdelibs4support kio \ newstuff parts pty service solid sonnet syntaxhighlighting \ texteditor textwidgets widgetsaddons xmlgui USE_QT= concurrent core dbus gui network printsupport svg widgets xml xmlpatterns \ buildtools_build qmake_build USE_LDCONFIG= yes OPTIONS_DEFINE= LUAJIT MAXIMA OCTAVE R SAGE SCILAB DOCS OPTIONS_SUB= yes # R LUAJIT LUAJIT_DESC= Build LuaJIT backend and install LuaJIT LUAJIT_LIB_DEPENDS= libluajit-5.1.so:lang/luajit LUAJIT_CMAKE_OFF= -DWITH_LuaJIT:BOOL=FALSE MAXIMA_DESC= Install Maxima MAXIMA_RUN_DEPENDS= maxima:math/maxima OCTAVE_DESC= Install Octave OCTAVE_RUN_DEPENDS= octave:math/octave R_DESC= Build R backend and install R R_LIB_DEPENDS= libR.so:math/R # Required to set CFLAGS for -lgfortran. R_USES= fortran R_CMAKE_OFF= -DWITH_R:BOOL=FALSE SAGE_DESC= Install Sage SAGE_RUN_DEPENDS= sage:math/sage SCILAB_DESC= Install Scilab SCILAB_RUN_DEPENDS= scilab:math/scilab # Disable python2 binding (should probably be an option PYTHON2, PYTHON3) CMAKE_ON= CMAKE_DISABLE_FIND_PACKAGE_PythonLibs post-patch: ${REINPLACE_CMD} -e '/FIND_PROGRAM(_GFORTRAN_EXECUTABLE/s,gfortran,${FC},' \ ${WRKSRC}/cmake/FindR.cmake .include diff --git a/math/cantor/distinfo b/math/cantor/distinfo index 5cf76f8c803f..b4a7c83be12c 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741501 -SHA256 (KDE/release-service/21.04.1/cantor-21.04.1.tar.xz) = ea5f15dd29253421e161ce9b4942c40c8704b652d606d53b655a340bb843cf8c -SIZE (KDE/release-service/21.04.1/cantor-21.04.1.tar.xz) = 9134532 +TIMESTAMP = 1623520915 +SHA256 (KDE/release-service/21.04.2/cantor-21.04.2.tar.xz) = 8bd35569d15de7eec9b95e1e5a56c2c90f3555a9c24c557e3e391da49d518cbf +SIZE (KDE/release-service/21.04.2/cantor-21.04.2.tar.xz) = 9145956 diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 13d6f0393d9e..773b286c8ad7 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741502 -SHA256 (KDE/release-service/21.04.1/kalgebra-21.04.1.tar.xz) = af43c9afcfab9dfbf155cdeedcb97797c44146b9bfb9c53bc98274ede4f3ede2 -SIZE (KDE/release-service/21.04.1/kalgebra-21.04.1.tar.xz) = 1022000 +TIMESTAMP = 1623520917 +SHA256 (KDE/release-service/21.04.2/kalgebra-21.04.2.tar.xz) = 3d044ea367f304ba9560931a5ac29245f4cc3efcc4f07c299e6595874e29a3c4 +SIZE (KDE/release-service/21.04.2/kalgebra-21.04.2.tar.xz) = 1025344 diff --git a/math/kalgebra/pkg-plist b/math/kalgebra/pkg-plist index 599285d24c38..9818a353b215 100644 --- a/math/kalgebra/pkg-plist +++ b/math/kalgebra/pkg-plist @@ -1,133 +1,137 @@ 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/be/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.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 7a519c45645c..96e7a9b867a9 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741502 -SHA256 (KDE/release-service/21.04.1/kbruch-21.04.1.tar.xz) = 2496f6d59ba7baf0f0c2392ede9b3e00ec914d087aea667ad5ef8fc4e659a763 -SIZE (KDE/release-service/21.04.1/kbruch-21.04.1.tar.xz) = 5615848 +TIMESTAMP = 1623520918 +SHA256 (KDE/release-service/21.04.2/kbruch-21.04.2.tar.xz) = 1490f0735613a3679286c09fa7ca976a894678b066d670e7c4b8f7bdf4b1ca2a +SIZE (KDE/release-service/21.04.2/kbruch-21.04.2.tar.xz) = 5627676 diff --git a/math/kbruch/pkg-plist b/math/kbruch/pkg-plist index 49898b1f00db..ae34aa4410f0 100644 --- a/math/kbruch/pkg-plist +++ b/math/kbruch/pkg-plist @@ -1,89 +1,95 @@ bin/kbruch man/ca/man1/kbruch.1.gz man/de/man1/kbruch.1.gz man/es/man1/kbruch.1.gz man/et/man1/kbruch.1.gz man/fr/man1/kbruch.1.gz man/it/man1/kbruch.1.gz man/man1/kbruch.1.gz man/nl/man1/kbruch.1.gz man/pt/man1/kbruch.1.gz man/pt_BR/man1/kbruch.1.gz man/ru/man1/kbruch.1.gz man/sv/man1/kbruch.1.gz man/uk/man1/kbruch.1.gz share/applications/org.kde.kbruch.desktop share/config.kcfg/kbruch.kcfg share/icons/hicolor/16x16/apps/kbruch.png share/icons/hicolor/22x22/apps/kbruch.png share/icons/hicolor/32x32/apps/kbruch.png share/icons/hicolor/48x48/apps/kbruch.png share/icons/hicolor/64x64/apps/kbruch.png share/icons/hicolor/scalable/apps/kbruch.svgz %%DATADIR%%/pics/exercise_arithmetics.png %%DATADIR%%/pics/exercise_compare.png %%DATADIR%%/pics/exercise_conversion.png %%DATADIR%%/pics/exercise_factorization.png %%DATADIR%%/pics/exercise_mixed.png %%DATADIR%%/pics/exercise_percentage.png %%DATADIR%%/pics/icon_back_arrow.png %%DATADIR%%/pics/icon_freestyle.png %%DATADIR%%/pics/icon_freestyle_1.png %%DATADIR%%/pics/icon_learning.png %%DATADIR%%/pics/icon_learning_1.png %%DATADIR%%/pics/icon_test_case.png %%DATADIR%%/pics/icon_test_case_1.png share/kxmlgui5/kbruch/AppMenuWidgetui.rc share/kxmlgui5/kbruch/FractionRingWidgetui.rc share/kxmlgui5/kbruch/kbruchui.rc share/locale/ar/LC_MESSAGES/kbruch.mo +share/locale/be/LC_MESSAGES/kbruch.mo share/locale/bg/LC_MESSAGES/kbruch.mo share/locale/bs/LC_MESSAGES/kbruch.mo share/locale/ca/LC_MESSAGES/kbruch.mo share/locale/ca@valencia/LC_MESSAGES/kbruch.mo share/locale/cs/LC_MESSAGES/kbruch.mo share/locale/da/LC_MESSAGES/kbruch.mo share/locale/de/LC_MESSAGES/kbruch.mo share/locale/el/LC_MESSAGES/kbruch.mo share/locale/en_GB/LC_MESSAGES/kbruch.mo share/locale/eo/LC_MESSAGES/kbruch.mo share/locale/es/LC_MESSAGES/kbruch.mo share/locale/et/LC_MESSAGES/kbruch.mo share/locale/eu/LC_MESSAGES/kbruch.mo share/locale/fa/LC_MESSAGES/kbruch.mo share/locale/fi/LC_MESSAGES/kbruch.mo share/locale/fr/LC_MESSAGES/kbruch.mo share/locale/ga/LC_MESSAGES/kbruch.mo share/locale/gl/LC_MESSAGES/kbruch.mo share/locale/he/LC_MESSAGES/kbruch.mo share/locale/hi/LC_MESSAGES/kbruch.mo share/locale/hr/LC_MESSAGES/kbruch.mo share/locale/hu/LC_MESSAGES/kbruch.mo share/locale/is/LC_MESSAGES/kbruch.mo share/locale/it/LC_MESSAGES/kbruch.mo share/locale/ja/LC_MESSAGES/kbruch.mo share/locale/kk/LC_MESSAGES/kbruch.mo share/locale/km/LC_MESSAGES/kbruch.mo +share/locale/ko/LC_MESSAGES/kbruch.mo share/locale/lt/LC_MESSAGES/kbruch.mo share/locale/lv/LC_MESSAGES/kbruch.mo share/locale/ml/LC_MESSAGES/kbruch.mo share/locale/mr/LC_MESSAGES/kbruch.mo share/locale/nb/LC_MESSAGES/kbruch.mo share/locale/nds/LC_MESSAGES/kbruch.mo share/locale/nl/LC_MESSAGES/kbruch.mo share/locale/nn/LC_MESSAGES/kbruch.mo share/locale/pa/LC_MESSAGES/kbruch.mo share/locale/pl/LC_MESSAGES/kbruch.mo share/locale/pt/LC_MESSAGES/kbruch.mo share/locale/pt_BR/LC_MESSAGES/kbruch.mo share/locale/ro/LC_MESSAGES/kbruch.mo share/locale/ru/LC_MESSAGES/kbruch.mo +share/locale/se/LC_MESSAGES/kbruch.mo share/locale/sk/LC_MESSAGES/kbruch.mo share/locale/sl/LC_MESSAGES/kbruch.mo +share/locale/sq/LC_MESSAGES/kbruch.mo share/locale/sv/LC_MESSAGES/kbruch.mo +share/locale/ta/LC_MESSAGES/kbruch.mo +share/locale/tg/LC_MESSAGES/kbruch.mo share/locale/tr/LC_MESSAGES/kbruch.mo share/locale/ug/LC_MESSAGES/kbruch.mo share/locale/uk/LC_MESSAGES/kbruch.mo share/locale/zh_CN/LC_MESSAGES/kbruch.mo share/locale/zh_TW/LC_MESSAGES/kbruch.mo share/metainfo/org.kde.kbruch.appdata.xml diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 8e7244e5a949..f09076bc5d05 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741503 -SHA256 (KDE/release-service/21.04.1/kcalc-21.04.1.tar.xz) = 489a9efc3b402b4c18e1d72412c485180e72675c9658878b2a54bc70218fa2b2 -SIZE (KDE/release-service/21.04.1/kcalc-21.04.1.tar.xz) = 360472 +TIMESTAMP = 1623520920 +SHA256 (KDE/release-service/21.04.2/kcalc-21.04.2.tar.xz) = 06bab7b1d8a4d8d3562dc2cd43241b7941c6579ea3e9e7df9a6760ac782c5b0b +SIZE (KDE/release-service/21.04.2/kcalc-21.04.2.tar.xz) = 372028 diff --git a/math/kcalc/pkg-plist b/math/kcalc/pkg-plist index 98dba3d29f0d..997d206c0aa8 100644 --- a/math/kcalc/pkg-plist +++ b/math/kcalc/pkg-plist @@ -1,62 +1,67 @@ bin/kcalc lib/libkdeinit5_kcalc.so share/applications/org.kde.kcalc.desktop share/config.kcfg/kcalc.kcfg %%DATADIR%%/scienceconstants.xml share/kconf_update/kcalcrc.upd share/kxmlgui5/kcalc/kcalcui.rc share/locale/ar/LC_MESSAGES/kcalc.mo +share/locale/be/LC_MESSAGES/kcalc.mo share/locale/bg/LC_MESSAGES/kcalc.mo share/locale/bs/LC_MESSAGES/kcalc.mo share/locale/ca/LC_MESSAGES/kcalc.mo share/locale/ca@valencia/LC_MESSAGES/kcalc.mo share/locale/cs/LC_MESSAGES/kcalc.mo share/locale/da/LC_MESSAGES/kcalc.mo share/locale/de/LC_MESSAGES/kcalc.mo share/locale/el/LC_MESSAGES/kcalc.mo share/locale/en_GB/LC_MESSAGES/kcalc.mo share/locale/eo/LC_MESSAGES/kcalc.mo share/locale/es/LC_MESSAGES/kcalc.mo share/locale/et/LC_MESSAGES/kcalc.mo share/locale/eu/LC_MESSAGES/kcalc.mo share/locale/fa/LC_MESSAGES/kcalc.mo share/locale/fi/LC_MESSAGES/kcalc.mo share/locale/fr/LC_MESSAGES/kcalc.mo share/locale/ga/LC_MESSAGES/kcalc.mo share/locale/gl/LC_MESSAGES/kcalc.mo share/locale/he/LC_MESSAGES/kcalc.mo share/locale/hi/LC_MESSAGES/kcalc.mo share/locale/hr/LC_MESSAGES/kcalc.mo share/locale/hu/LC_MESSAGES/kcalc.mo share/locale/ia/LC_MESSAGES/kcalc.mo share/locale/id/LC_MESSAGES/kcalc.mo share/locale/is/LC_MESSAGES/kcalc.mo share/locale/it/LC_MESSAGES/kcalc.mo share/locale/ja/LC_MESSAGES/kcalc.mo share/locale/kk/LC_MESSAGES/kcalc.mo share/locale/km/LC_MESSAGES/kcalc.mo share/locale/ko/LC_MESSAGES/kcalc.mo share/locale/lt/LC_MESSAGES/kcalc.mo share/locale/lv/LC_MESSAGES/kcalc.mo share/locale/mr/LC_MESSAGES/kcalc.mo share/locale/nb/LC_MESSAGES/kcalc.mo share/locale/nds/LC_MESSAGES/kcalc.mo share/locale/nl/LC_MESSAGES/kcalc.mo share/locale/nn/LC_MESSAGES/kcalc.mo share/locale/pa/LC_MESSAGES/kcalc.mo share/locale/pl/LC_MESSAGES/kcalc.mo share/locale/pt/LC_MESSAGES/kcalc.mo share/locale/pt_BR/LC_MESSAGES/kcalc.mo share/locale/ro/LC_MESSAGES/kcalc.mo share/locale/ru/LC_MESSAGES/kcalc.mo +share/locale/se/LC_MESSAGES/kcalc.mo share/locale/sk/LC_MESSAGES/kcalc.mo share/locale/sl/LC_MESSAGES/kcalc.mo +share/locale/sq/LC_MESSAGES/kcalc.mo share/locale/sr/LC_MESSAGES/kcalc.mo share/locale/sv/LC_MESSAGES/kcalc.mo +share/locale/ta/LC_MESSAGES/kcalc.mo +share/locale/tg/LC_MESSAGES/kcalc.mo share/locale/tr/LC_MESSAGES/kcalc.mo share/locale/ug/LC_MESSAGES/kcalc.mo share/locale/uk/LC_MESSAGES/kcalc.mo share/locale/wa/LC_MESSAGES/kcalc.mo share/locale/zh_CN/LC_MESSAGES/kcalc.mo share/locale/zh_TW/LC_MESSAGES/kcalc.mo share/metainfo/org.kde.kcalc.appdata.xml diff --git a/math/kig/distinfo b/math/kig/distinfo index 56d82fe9fb3b..1a1649f92dab 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741504 -SHA256 (KDE/release-service/21.04.1/kig-21.04.1.tar.xz) = 11389aa2021871ac954074538f63819ce67aef8b898a431f591d9672e60c5578 -SIZE (KDE/release-service/21.04.1/kig-21.04.1.tar.xz) = 3127664 +TIMESTAMP = 1623520921 +SHA256 (KDE/release-service/21.04.2/kig-21.04.2.tar.xz) = 5939d298b40d265f1ddef4bd81540b1a26204d858f85db5847cc102366a5ce58 +SIZE (KDE/release-service/21.04.2/kig-21.04.2.tar.xz) = 3166704 diff --git a/math/kig/pkg-plist b/math/kig/pkg-plist index b3c5a849d958..4ebbab287c8d 100644 --- a/math/kig/pkg-plist +++ b/math/kig/pkg-plist @@ -1,367 +1,372 @@ bin/kig bin/pykig.py man/ca/man1/kig.1.gz man/de/man1/kig.1.gz man/es/man1/kig.1.gz man/et/man1/kig.1.gz man/fr/man1/kig.1.gz man/it/man1/kig.1.gz man/man1/kig.1.gz man/nl/man1/kig.1.gz man/pt_BR/man1/kig.1.gz man/ru/man1/kig.1.gz man/sv/man1/kig.1.gz man/uk/man1/kig.1.gz %%QT_PLUGINDIR%%/kigpart.so share/applications/org.kde.kig.desktop share/icons/hicolor/128x128/apps/kig.png share/icons/hicolor/128x128/mimetypes/application-x-kig.png share/icons/hicolor/16x16/apps/kig.png share/icons/hicolor/16x16/mimetypes/application-x-kig.png share/icons/hicolor/22x22/apps/kig.png share/icons/hicolor/22x22/mimetypes/application-x-kig.png share/icons/hicolor/32x32/apps/kig.png share/icons/hicolor/32x32/mimetypes/application-x-kig.png share/icons/hicolor/48x48/apps/kig.png share/icons/hicolor/48x48/mimetypes/application-x-kig.png share/icons/hicolor/64x64/apps/kig.png share/icons/hicolor/64x64/mimetypes/application-x-kig.png share/icons/hicolor/scalable/apps/kig.svgz share/icons/hicolor/scalable/mimetypes/application-x-kig.svgz share/katepart5/syntax/python-kig.xml %%DATADIR%%/builtin-macros/circle_by_center_and_line.kigt %%DATADIR%%/builtin-macros/circle_by_point_and_diameter.kigt %%DATADIR%%/builtin-macros/equitriangle.kigt %%DATADIR%%/builtin-macros/evolute.kigt %%DATADIR%%/builtin-macros/osculating_circle.kigt %%DATADIR%%/builtin-macros/square.kigt %%DATADIR%%/builtin-macros/vector_difference.kigt %%DATADIR%%/icons/hicolor/16x16/actions/kig_xfig.png %%DATADIR%%/icons/hicolor/22x22/actions/angle.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/22x22/actions/angle_size.png %%DATADIR%%/icons/hicolor/22x22/actions/arc.png %%DATADIR%%/icons/hicolor/22x22/actions/arc_center.png %%DATADIR%%/icons/hicolor/22x22/actions/areaCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/attacher.png %%DATADIR%%/icons/hicolor/22x22/actions/baseCircle.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/bezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/bezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/beziercurves.png %%DATADIR%%/icons/hicolor/22x22/actions/bisection.png %%DATADIR%%/icons/hicolor/22x22/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/22x22/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcl.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebcp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebpd.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebps.png %%DATADIR%%/icons/hicolor/22x22/actions/circlebtp.png %%DATADIR%%/icons/hicolor/22x22/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/circumference.png %%DATADIR%%/icons/hicolor/22x22/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/22x22/actions/conicb5p.png %%DATADIR%%/icons/hicolor/22x22/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/convexhull.png %%DATADIR%%/icons/hicolor/22x22/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/22x22/actions/directrix.png %%DATADIR%%/icons/hicolor/22x22/actions/distance.png %%DATADIR%%/icons/hicolor/22x22/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/22x22/actions/en.png %%DATADIR%%/icons/hicolor/22x22/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/22x22/actions/equitriangle.png %%DATADIR%%/icons/hicolor/22x22/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/22x22/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/22x22/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/22x22/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/22x22/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/22x22/actions/intersection.png %%DATADIR%%/icons/hicolor/22x22/actions/inversion.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/kig_text.png %%DATADIR%%/icons/hicolor/22x22/actions/line.png %%DATADIR%%/icons/hicolor/22x22/actions/linebyvector.png %%DATADIR%%/icons/hicolor/22x22/actions/locus.png %%DATADIR%%/icons/hicolor/22x22/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/openpolygon.png %%DATADIR%%/icons/hicolor/22x22/actions/paint.png %%DATADIR%%/icons/hicolor/22x22/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/22x22/actions/parallel.png %%DATADIR%%/icons/hicolor/22x22/actions/perpendicular.png %%DATADIR%%/icons/hicolor/22x22/actions/point.png %%DATADIR%%/icons/hicolor/22x22/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/22x22/actions/pointxy.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonsides.png %%DATADIR%%/icons/hicolor/22x22/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/22x22/actions/projection.png %%DATADIR%%/icons/hicolor/22x22/actions/python.png %%DATADIR%%/icons/hicolor/22x22/actions/radicalline.png %%DATADIR%%/icons/hicolor/22x22/actions/ray.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier3.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezier4.png %%DATADIR%%/icons/hicolor/22x22/actions/rbezierN.png %%DATADIR%%/icons/hicolor/22x22/actions/rotation.png %%DATADIR%%/icons/hicolor/22x22/actions/scale.png %%DATADIR%%/icons/hicolor/22x22/actions/segment.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/22x22/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/22x22/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/22x22/actions/similitude.png %%DATADIR%%/icons/hicolor/22x22/actions/sizer.png %%DATADIR%%/icons/hicolor/22x22/actions/slope.png %%DATADIR%%/icons/hicolor/22x22/actions/square.png %%DATADIR%%/icons/hicolor/22x22/actions/stretch.png %%DATADIR%%/icons/hicolor/22x22/actions/tangent.png %%DATADIR%%/icons/hicolor/22x22/actions/test.png %%DATADIR%%/icons/hicolor/22x22/actions/testcollinear.png %%DATADIR%%/icons/hicolor/22x22/actions/testcontains.png %%DATADIR%%/icons/hicolor/22x22/actions/testdistance.png %%DATADIR%%/icons/hicolor/22x22/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/22x22/actions/testparallel.png %%DATADIR%%/icons/hicolor/22x22/actions/translation.png %%DATADIR%%/icons/hicolor/22x22/actions/triangle.png %%DATADIR%%/icons/hicolor/22x22/actions/vector.png %%DATADIR%%/icons/hicolor/22x22/actions/vectordifference.png %%DATADIR%%/icons/hicolor/22x22/actions/vectorsum.png %%DATADIR%%/icons/hicolor/22x22/actions/view_fit_to_page.png %%DATADIR%%/icons/hicolor/22x22/actions/w.png %%DATADIR%%/icons/hicolor/32x32/actions/angle.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_bisector.png %%DATADIR%%/icons/hicolor/32x32/actions/angle_size.png %%DATADIR%%/icons/hicolor/32x32/actions/arc.png %%DATADIR%%/icons/hicolor/32x32/actions/arc_center.png %%DATADIR%%/icons/hicolor/32x32/actions/areaCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/attacher.png %%DATADIR%%/icons/hicolor/32x32/actions/baseCircle.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/bezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/bezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/beziercurves.png %%DATADIR%%/icons/hicolor/32x32/actions/bisection.png %%DATADIR%%/icons/hicolor/32x32/actions/centerofcurvature.png %%DATADIR%%/icons/hicolor/32x32/actions/centralsymmetry.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcl.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebcp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebpd.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebps.png %%DATADIR%%/icons/hicolor/32x32/actions/circlebtp.png %%DATADIR%%/icons/hicolor/32x32/actions/circlelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/circumference.png %%DATADIR%%/icons/hicolor/32x32/actions/conicasymptotes.png %%DATADIR%%/icons/hicolor/32x32/actions/conicb5p.png %%DATADIR%%/icons/hicolor/32x32/actions/coniclineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/conicsradicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/controlpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/convexhull.png %%DATADIR%%/icons/hicolor/32x32/actions/curvelineintersection.png %%DATADIR%%/icons/hicolor/32x32/actions/directrix.png %%DATADIR%%/icons/hicolor/32x32/actions/distance.png %%DATADIR%%/icons/hicolor/32x32/actions/ellipsebffp.png %%DATADIR%%/icons/hicolor/32x32/actions/en.png %%DATADIR%%/icons/hicolor/32x32/actions/equilateralhyperbolab4p.png %%DATADIR%%/icons/hicolor/32x32/actions/equitriangle.png %%DATADIR%%/icons/hicolor/32x32/actions/genericaffinity.png %%DATADIR%%/icons/hicolor/32x32/actions/genericprojectivity.png %%DATADIR%%/icons/hicolor/32x32/actions/halflinebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/harmonichomology.png %%DATADIR%%/icons/hicolor/32x32/actions/hexagonbcv.png %%DATADIR%%/icons/hicolor/32x32/actions/hyperbolabffp.png %%DATADIR%%/icons/hicolor/32x32/actions/intersection.png %%DATADIR%%/icons/hicolor/32x32/actions/inversion.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_numericvalue.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/kig_text.png %%DATADIR%%/icons/hicolor/32x32/actions/line.png %%DATADIR%%/icons/hicolor/32x32/actions/linebyvector.png %%DATADIR%%/icons/hicolor/32x32/actions/locus.png %%DATADIR%%/icons/hicolor/32x32/actions/mirrorpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/openpolygon.png %%DATADIR%%/icons/hicolor/32x32/actions/paint.png %%DATADIR%%/icons/hicolor/32x32/actions/parabolabtp.png %%DATADIR%%/icons/hicolor/32x32/actions/parallel.png %%DATADIR%%/icons/hicolor/32x32/actions/perpendicular.png %%DATADIR%%/icons/hicolor/32x32/actions/point.png %%DATADIR%%/icons/hicolor/32x32/actions/pointOnLine.png %%DATADIR%%/icons/hicolor/32x32/actions/pointxy.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonsides.png %%DATADIR%%/icons/hicolor/32x32/actions/polygonvertices.png %%DATADIR%%/icons/hicolor/32x32/actions/projection.png %%DATADIR%%/icons/hicolor/32x32/actions/python.png %%DATADIR%%/icons/hicolor/32x32/actions/radicalline.png %%DATADIR%%/icons/hicolor/32x32/actions/ray.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier3.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezier4.png %%DATADIR%%/icons/hicolor/32x32/actions/rbezierN.png %%DATADIR%%/icons/hicolor/32x32/actions/rotation.png %%DATADIR%%/icons/hicolor/32x32/actions/scale.png %%DATADIR%%/icons/hicolor/32x32/actions/segment.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_golden_point.png %%DATADIR%%/icons/hicolor/32x32/actions/segment_midpoint.png %%DATADIR%%/icons/hicolor/32x32/actions/segmentaxis.png %%DATADIR%%/icons/hicolor/32x32/actions/similitude.png %%DATADIR%%/icons/hicolor/32x32/actions/sizer.png %%DATADIR%%/icons/hicolor/32x32/actions/slope.png %%DATADIR%%/icons/hicolor/32x32/actions/square.png %%DATADIR%%/icons/hicolor/32x32/actions/stretch.png %%DATADIR%%/icons/hicolor/32x32/actions/tangent.png %%DATADIR%%/icons/hicolor/32x32/actions/test.png %%DATADIR%%/icons/hicolor/32x32/actions/testcollinear.png %%DATADIR%%/icons/hicolor/32x32/actions/testcontains.png %%DATADIR%%/icons/hicolor/32x32/actions/testdistance.png %%DATADIR%%/icons/hicolor/32x32/actions/testorthogonal.png %%DATADIR%%/icons/hicolor/32x32/actions/testparallel.png %%DATADIR%%/icons/hicolor/32x32/actions/translation.png %%DATADIR%%/icons/hicolor/32x32/actions/triangle.png %%DATADIR%%/icons/hicolor/32x32/actions/vector.png %%DATADIR%%/icons/hicolor/32x32/actions/vectordifference.png %%DATADIR%%/icons/hicolor/32x32/actions/vectorsum.png %%DATADIR%%/icons/hicolor/32x32/actions/w.png %%DATADIR%%/icons/hicolor/scalable/actions/angle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_bisector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/angle_size.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/arc_center.svgz %%DATADIR%%/icons/hicolor/scalable/actions/areaCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/attacher.svgz %%DATADIR%%/icons/hicolor/scalable/actions/baseCircle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/beziercurves.svgz %%DATADIR%%/icons/hicolor/scalable/actions/bisection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centerofcurvature.svgz %%DATADIR%%/icons/hicolor/scalable/actions/centralsymmetry.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcl.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebcp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebpd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebps.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlebtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circlelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/circumference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicasymptotes.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicb5p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/coniclineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/conicsradicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/controlpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/convexhull.svgz %%DATADIR%%/icons/hicolor/scalable/actions/curvelineintersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/directrix.svgz %%DATADIR%%/icons/hicolor/scalable/actions/distance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ellipsebffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/en.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equilateralhyperbolab4p.svgz %%DATADIR%%/icons/hicolor/scalable/actions/equitriangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericaffinity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/genericprojectivity.svgz %%DATADIR%%/icons/hicolor/scalable/actions/halflinebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/harmonichomology.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hexagonbcv.svgz %%DATADIR%%/icons/hicolor/scalable/actions/hyperbolabffp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/intersection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/inversion.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_numericvalue.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kig_text.svgz %%DATADIR%%/icons/hicolor/scalable/actions/line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/linebyvector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/locus.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mirrorpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/openpolygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/paint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parabolabtp.svgz %%DATADIR%%/icons/hicolor/scalable/actions/parallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/perpendicular.svgz %%DATADIR%%/icons/hicolor/scalable/actions/point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointOnLine.svgz %%DATADIR%%/icons/hicolor/scalable/actions/pointxy.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonsides.svgz %%DATADIR%%/icons/hicolor/scalable/actions/polygonvertices.svgz %%DATADIR%%/icons/hicolor/scalable/actions/projection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/python.svgz %%DATADIR%%/icons/hicolor/scalable/actions/radicalline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/ray.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezier4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rbezierN.svgz %%DATADIR%%/icons/hicolor/scalable/actions/rotation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/scale.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_golden_point.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segment_midpoint.svgz %%DATADIR%%/icons/hicolor/scalable/actions/segmentaxis.svgz %%DATADIR%%/icons/hicolor/scalable/actions/similitude.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sizer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/slope.svgz %%DATADIR%%/icons/hicolor/scalable/actions/square.svgz %%DATADIR%%/icons/hicolor/scalable/actions/stretch.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tangent.svgz %%DATADIR%%/icons/hicolor/scalable/actions/test.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcollinear.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testcontains.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testdistance.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testorthogonal.svgz %%DATADIR%%/icons/hicolor/scalable/actions/testparallel.svgz %%DATADIR%%/icons/hicolor/scalable/actions/translation.svgz %%DATADIR%%/icons/hicolor/scalable/actions/triangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vector.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectordifference.svgz %%DATADIR%%/icons/hicolor/scalable/actions/vectorsum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/w.svgz %%DATADIR%%/tips share/kservices5/kig_part.desktop share/kxmlgui5/kig/kigpartui.rc share/kxmlgui5/kig/kigui.rc share/locale/ar/LC_MESSAGES/kig.mo +share/locale/be/LC_MESSAGES/kig.mo share/locale/bg/LC_MESSAGES/kig.mo share/locale/bs/LC_MESSAGES/kig.mo share/locale/ca/LC_MESSAGES/kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo share/locale/cs/LC_MESSAGES/kig.mo share/locale/da/LC_MESSAGES/kig.mo share/locale/de/LC_MESSAGES/kig.mo share/locale/el/LC_MESSAGES/kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo share/locale/eo/LC_MESSAGES/kig.mo share/locale/es/LC_MESSAGES/kig.mo share/locale/et/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/fa/LC_MESSAGES/kig.mo share/locale/fi/LC_MESSAGES/kig.mo share/locale/fr/LC_MESSAGES/kig.mo share/locale/ga/LC_MESSAGES/kig.mo share/locale/gl/LC_MESSAGES/kig.mo share/locale/hi/LC_MESSAGES/kig.mo share/locale/hr/LC_MESSAGES/kig.mo share/locale/hu/LC_MESSAGES/kig.mo share/locale/is/LC_MESSAGES/kig.mo share/locale/it/LC_MESSAGES/kig.mo share/locale/ja/LC_MESSAGES/kig.mo share/locale/kk/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kig.mo share/locale/lt/LC_MESSAGES/kig.mo share/locale/lv/LC_MESSAGES/kig.mo share/locale/ml/LC_MESSAGES/kig.mo share/locale/mr/LC_MESSAGES/kig.mo share/locale/nb/LC_MESSAGES/kig.mo share/locale/nds/LC_MESSAGES/kig.mo share/locale/nl/LC_MESSAGES/kig.mo share/locale/nn/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pl/LC_MESSAGES/kig.mo share/locale/pt/LC_MESSAGES/kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo share/locale/ro/LC_MESSAGES/kig.mo share/locale/ru/LC_MESSAGES/kig.mo +share/locale/se/LC_MESSAGES/kig.mo share/locale/sk/LC_MESSAGES/kig.mo share/locale/sl/LC_MESSAGES/kig.mo +share/locale/sq/LC_MESSAGES/kig.mo share/locale/sv/LC_MESSAGES/kig.mo +share/locale/ta/LC_MESSAGES/kig.mo +share/locale/tg/LC_MESSAGES/kig.mo share/locale/tr/LC_MESSAGES/kig.mo share/locale/ug/LC_MESSAGES/kig.mo share/locale/uk/LC_MESSAGES/kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/metainfo/org.kde.kig.appdata.xml diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 92664cc433e6..bad50ad22ece 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741505 -SHA256 (KDE/release-service/21.04.1/kmplot-21.04.1.tar.xz) = 1a31af7ba8f5708f821cab0fe5081de38e4c5c36fd9f4a8114c01a17ff31e2ee -SIZE (KDE/release-service/21.04.1/kmplot-21.04.1.tar.xz) = 3010924 +TIMESTAMP = 1623520923 +SHA256 (KDE/release-service/21.04.2/kmplot-21.04.2.tar.xz) = b013ee799f19a13a21face62c1321704d8a629665b1a31ededf9ac3e35d3935a +SIZE (KDE/release-service/21.04.2/kmplot-21.04.2.tar.xz) = 3044044 diff --git a/math/kmplot/pkg-plist b/math/kmplot/pkg-plist index e2b3c8d08b40..9b661237268d 100644 --- a/math/kmplot/pkg-plist +++ b/math/kmplot/pkg-plist @@ -1,86 +1,92 @@ bin/kmplot man/ca/man1/kmplot.1.gz man/de/man1/kmplot.1.gz man/es/man1/kmplot.1.gz man/et/man1/kmplot.1.gz man/fr/man1/kmplot.1.gz man/gl/man1/kmplot.1.gz man/it/man1/kmplot.1.gz man/man1/kmplot.1.gz man/nl/man1/kmplot.1.gz man/pl/man1/kmplot.1.gz man/pt/man1/kmplot.1.gz man/pt_BR/man1/kmplot.1.gz man/ru/man1/kmplot.1.gz man/sv/man1/kmplot.1.gz man/uk/man1/kmplot.1.gz %%QT_PLUGINDIR%%/kmplotpart.so share/applications/org.kde.kmplot.desktop share/config.kcfg/kmplot.kcfg share/dbus-1/interfaces/org.kde.kmplot.KmPlot.xml share/dbus-1/interfaces/org.kde.kmplot.MainDlg.xml share/dbus-1/interfaces/org.kde.kmplot.Parser.xml share/dbus-1/interfaces/org.kde.kmplot.View.xml share/icons/hicolor/128x128/apps/kmplot.png share/icons/hicolor/16x16/apps/kmplot.png share/icons/hicolor/22x22/apps/kmplot.png share/icons/hicolor/32x32/apps/kmplot.png share/icons/hicolor/48x48/apps/kmplot.png share/icons/hicolor/64x64/apps/kmplot.png share/icons/hicolor/scalable/apps/kmplot.svgz share/kservices5/kmplot_part.desktop share/kxmlgui5/kmplot/kmplot_part.rc share/kxmlgui5/kmplot/kmplot_part_readonly.rc share/kxmlgui5/kmplot/kmplot_shell.rc share/locale/ar/LC_MESSAGES/kmplot.mo +share/locale/be/LC_MESSAGES/kmplot.mo share/locale/bg/LC_MESSAGES/kmplot.mo share/locale/bs/LC_MESSAGES/kmplot.mo share/locale/ca/LC_MESSAGES/kmplot.mo share/locale/ca@valencia/LC_MESSAGES/kmplot.mo share/locale/cs/LC_MESSAGES/kmplot.mo share/locale/da/LC_MESSAGES/kmplot.mo share/locale/de/LC_MESSAGES/kmplot.mo share/locale/el/LC_MESSAGES/kmplot.mo share/locale/en_GB/LC_MESSAGES/kmplot.mo share/locale/eo/LC_MESSAGES/kmplot.mo share/locale/es/LC_MESSAGES/kmplot.mo share/locale/et/LC_MESSAGES/kmplot.mo share/locale/eu/LC_MESSAGES/kmplot.mo share/locale/fa/LC_MESSAGES/kmplot.mo share/locale/fi/LC_MESSAGES/kmplot.mo share/locale/fr/LC_MESSAGES/kmplot.mo share/locale/ga/LC_MESSAGES/kmplot.mo share/locale/gl/LC_MESSAGES/kmplot.mo share/locale/he/LC_MESSAGES/kmplot.mo share/locale/hi/LC_MESSAGES/kmplot.mo share/locale/hr/LC_MESSAGES/kmplot.mo share/locale/hu/LC_MESSAGES/kmplot.mo share/locale/is/LC_MESSAGES/kmplot.mo share/locale/it/LC_MESSAGES/kmplot.mo share/locale/ja/LC_MESSAGES/kmplot.mo share/locale/kk/LC_MESSAGES/kmplot.mo share/locale/km/LC_MESSAGES/kmplot.mo share/locale/ko/LC_MESSAGES/kmplot.mo share/locale/lt/LC_MESSAGES/kmplot.mo share/locale/lv/LC_MESSAGES/kmplot.mo share/locale/ml/LC_MESSAGES/kmplot.mo share/locale/mr/LC_MESSAGES/kmplot.mo share/locale/nb/LC_MESSAGES/kmplot.mo share/locale/nds/LC_MESSAGES/kmplot.mo share/locale/nl/LC_MESSAGES/kmplot.mo share/locale/nn/LC_MESSAGES/kmplot.mo share/locale/pa/LC_MESSAGES/kmplot.mo share/locale/pl/LC_MESSAGES/kmplot.mo share/locale/pt/LC_MESSAGES/kmplot.mo share/locale/pt_BR/LC_MESSAGES/kmplot.mo share/locale/ro/LC_MESSAGES/kmplot.mo share/locale/ru/LC_MESSAGES/kmplot.mo +share/locale/se/LC_MESSAGES/kmplot.mo share/locale/sk/LC_MESSAGES/kmplot.mo share/locale/sl/LC_MESSAGES/kmplot.mo +share/locale/sq/LC_MESSAGES/kmplot.mo share/locale/sv/LC_MESSAGES/kmplot.mo +share/locale/ta/LC_MESSAGES/kmplot.mo +share/locale/tg/LC_MESSAGES/kmplot.mo share/locale/tr/LC_MESSAGES/kmplot.mo share/locale/ug/LC_MESSAGES/kmplot.mo share/locale/uk/LC_MESSAGES/kmplot.mo +share/locale/vi/LC_MESSAGES/kmplot.mo share/locale/zh_CN/LC_MESSAGES/kmplot.mo share/locale/zh_TW/LC_MESSAGES/kmplot.mo share/metainfo/org.kde.kmplot.appdata.xml diff --git a/math/rocs/distinfo b/math/rocs/distinfo index 41fa3feac13b..41aa4286f42e 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741505 -SHA256 (KDE/release-service/21.04.1/rocs-21.04.1.tar.xz) = 25ef0a811a366c081ad5fe2d9cc1944cfadaf6b353f1acd75ce837fc00835375 -SIZE (KDE/release-service/21.04.1/rocs-21.04.1.tar.xz) = 1542104 +TIMESTAMP = 1623520925 +SHA256 (KDE/release-service/21.04.2/rocs-21.04.2.tar.xz) = 2f591e8471d1be64acdf8eb88276a175f751d076849eb2aefba53b773f406e9d +SIZE (KDE/release-service/21.04.2/rocs-21.04.2.tar.xz) = 1547680 diff --git a/math/rocs/pkg-plist b/math/rocs/pkg-plist index 3b57109a9635..8165c88e2f35 100644 --- a/math/rocs/pkg-plist +++ b/math/rocs/pkg-plist @@ -1,134 +1,136 @@ 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/128x128/apps/rocs.png share/icons/hicolor/16x16/apps/rocs.png share/icons/hicolor/22x22/apps/rocs.png share/icons/hicolor/32x32/apps/rocs.png share/icons/hicolor/48x48/apps/rocs.png share/icons/hicolor/64x64/apps/rocs.png share/icons/hicolor/scalable/actions/rocsadvancedsetup.svgz share/icons/hicolor/scalable/actions/rocsalignbottom.svgz share/icons/hicolor/scalable/actions/rocsaligncircle.svgz share/icons/hicolor/scalable/actions/rocsalignleft.svgz share/icons/hicolor/scalable/actions/rocsalignmiddle.svgz share/icons/hicolor/scalable/actions/rocsalignright.svgz share/icons/hicolor/scalable/actions/rocsaligntop.svgz share/icons/hicolor/scalable/actions/rocsaligntree.svgz share/icons/hicolor/scalable/actions/rocsalignvmiddle.svgz share/icons/hicolor/scalable/actions/rocsbidirectional.svgz share/icons/hicolor/scalable/actions/rocsdelete.svgz share/icons/hicolor/scalable/actions/rocsedge.svgz share/icons/hicolor/scalable/actions/rocsnode.svgz share/icons/hicolor/scalable/actions/rocsselect.svgz share/icons/hicolor/scalable/actions/rocsunidirectional.svgz share/icons/hicolor/scalable/actions/rocsvisible.svgz share/icons/hicolor/scalable/apps/rocs.svgz share/kxmlgui5/rocs/rocsui.rc 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 80e98e2b7ed4..1fbb1ff0c31a 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741506 -SHA256 (KDE/release-service/21.04.1/artikulate-21.04.1.tar.xz) = 6426d0e1bff304832789a0e72337c773996f39d4c9f4736192b22e4244e0155f -SIZE (KDE/release-service/21.04.1/artikulate-21.04.1.tar.xz) = 1086540 +TIMESTAMP = 1623520926 +SHA256 (KDE/release-service/21.04.2/artikulate-21.04.2.tar.xz) = d0917618ca5bc4b9f5dfe70f7e7146250ffa060e9aef835f7ed0111d787faa48 +SIZE (KDE/release-service/21.04.2/artikulate-21.04.2.tar.xz) = 1090528 diff --git a/misc/artikulate/pkg-plist b/misc/artikulate/pkg-plist index 1f9f2ea44d87..c6b0356df66b 100644 --- a/misc/artikulate/pkg-plist +++ b/misc/artikulate/pkg-plist @@ -1,54 +1,56 @@ bin/artikulate bin/artikulate_editor lib/libartikulatecore.so.0 lib/libartikulatelearnerprofile.so.0 lib/libartikulatesound.so.0 %%QT_PLUGINDIR%%/artikulate/libsound/qtmultimediabackend.so share/applications/org.kde.artikulate.desktop share/config.kcfg/artikulate.kcfg share/icons/hicolor/16x16/apps/artikulate.png share/icons/hicolor/32x32/apps/artikulate.png share/icons/hicolor/48x48/apps/artikulate.png share/icons/hicolor/64x64/apps/artikulate.png share/icons/hicolor/scalable/apps/artikulate.svg share/knsrcfiles/artikulate.knsrc +share/locale/az/LC_MESSAGES/artikulate.mo share/locale/bs/LC_MESSAGES/artikulate.mo share/locale/ca/LC_MESSAGES/artikulate.mo share/locale/ca@valencia/LC_MESSAGES/artikulate.mo share/locale/cs/LC_MESSAGES/artikulate.mo share/locale/da/LC_MESSAGES/artikulate.mo share/locale/de/LC_MESSAGES/artikulate.mo share/locale/el/LC_MESSAGES/artikulate.mo share/locale/en_GB/LC_MESSAGES/artikulate.mo share/locale/eo/LC_MESSAGES/artikulate.mo share/locale/es/LC_MESSAGES/artikulate.mo share/locale/et/LC_MESSAGES/artikulate.mo share/locale/eu/LC_MESSAGES/artikulate.mo share/locale/fi/LC_MESSAGES/artikulate.mo share/locale/fr/LC_MESSAGES/artikulate.mo share/locale/gl/LC_MESSAGES/artikulate.mo share/locale/hi/LC_MESSAGES/artikulate.mo share/locale/hu/LC_MESSAGES/artikulate.mo share/locale/ia/LC_MESSAGES/artikulate.mo share/locale/it/LC_MESSAGES/artikulate.mo share/locale/ja/LC_MESSAGES/artikulate.mo +share/locale/ko/LC_MESSAGES/artikulate.mo share/locale/lt/LC_MESSAGES/artikulate.mo share/locale/ml/LC_MESSAGES/artikulate.mo share/locale/mr/LC_MESSAGES/artikulate.mo share/locale/nds/LC_MESSAGES/artikulate.mo share/locale/nl/LC_MESSAGES/artikulate.mo share/locale/nn/LC_MESSAGES/artikulate.mo share/locale/pl/LC_MESSAGES/artikulate.mo share/locale/pt/LC_MESSAGES/artikulate.mo share/locale/pt_BR/LC_MESSAGES/artikulate.mo share/locale/ro/LC_MESSAGES/artikulate.mo share/locale/ru/LC_MESSAGES/artikulate.mo share/locale/sk/LC_MESSAGES/artikulate.mo share/locale/sl/LC_MESSAGES/artikulate.mo share/locale/sv/LC_MESSAGES/artikulate.mo share/locale/tr/LC_MESSAGES/artikulate.mo share/locale/ug/LC_MESSAGES/artikulate.mo share/locale/uk/LC_MESSAGES/artikulate.mo share/locale/zh_CN/LC_MESSAGES/artikulate.mo share/locale/zh_TW/LC_MESSAGES/artikulate.mo share/metainfo/org.kde.artikulate.appdata.xml diff --git a/misc/kdeedu-data/distinfo b/misc/kdeedu-data/distinfo index 95cf1fe515c6..54b4bbc47ad1 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741507 -SHA256 (KDE/release-service/21.04.1/kdeedu-data-21.04.1.tar.xz) = 9d509807c78768da67750c4b137a2c7929dd9942e264b9d15ac18d75bdc14b64 -SIZE (KDE/release-service/21.04.1/kdeedu-data-21.04.1.tar.xz) = 333844 +TIMESTAMP = 1623520927 +SHA256 (KDE/release-service/21.04.2/kdeedu-data-21.04.2.tar.xz) = 5b7aed7aa3a24952df2e4bb21dce61bf23fdda335a995608e8db86d547c5c556 +SIZE (KDE/release-service/21.04.2/kdeedu-data-21.04.2.tar.xz) = 335672 diff --git a/misc/kdeedu-data/pkg-plist b/misc/kdeedu-data/pkg-plist index f2ada5e8f770..6d282b55183b 100644 --- a/misc/kdeedu-data/pkg-plist +++ b/misc/kdeedu-data/pkg-plist @@ -1,423 +1,427 @@ share/apps/kvtml/bg/animals.kvtml share/apps/kvtml/bg/easy.kvtml share/apps/kvtml/bg/hard.kvtml share/apps/kvtml/bg/medium.kvtml share/apps/kvtml/ca/animals_pri.kvtml share/apps/kvtml/ca/biografies_sec.kvtml share/apps/kvtml/ca/capitalsdelmón_sec.kvtml share/apps/kvtml/ca/comarques_sec.kvtml share/apps/kvtml/ca/divises_sec.kvtml share/apps/kvtml/ca/espai_pri.kvtml share/apps/kvtml/ca/esports_sec.kvtml share/apps/kvtml/ca/fruites_pri.kvtml share/apps/kvtml/ca/invents_sec.kvtml share/apps/kvtml/ca/objectes_pri.kvtml share/apps/kvtml/ca/ordinadors_pri.kvtml share/apps/kvtml/ca/professions_pri.kvtml share/apps/kvtml/ca/províncies_sec.kvtml share/apps/kvtml/ca/roba_pri.kvtml share/apps/kvtml/ca/transports_pri.kvtml share/apps/kvtml/ca/verdures_pri.kvtml share/apps/kvtml/ca/vestit_pri.kvtml share/apps/kvtml/cs/animals.kvtml share/apps/kvtml/cs/easy.kvtml share/apps/kvtml/cs/hard.kvtml share/apps/kvtml/cs/medium.kvtml share/apps/kvtml/da/beklaedning.kvtml share/apps/kvtml/da/computere.kvtml share/apps/kvtml/da/da_sports.kvtml share/apps/kvtml/da/dyr.kvtml share/apps/kvtml/da/easy.kvtml share/apps/kvtml/da/frugter.kvtml share/apps/kvtml/da/grontsager.kvtml share/apps/kvtml/da/hard.kvtml share/apps/kvtml/da/medium.kvtml share/apps/kvtml/da/numre.kvtml share/apps/kvtml/da/objekter.kvtml share/apps/kvtml/da/opfindelser.kvtml share/apps/kvtml/da/personer.kvtml share/apps/kvtml/da/professioner.kvtml share/apps/kvtml/da/rummet.kvtml share/apps/kvtml/da/transport.kvtml share/apps/kvtml/da/valutaer.kvtml share/apps/kvtml/da/verdenshovedstaeder.kvtml share/apps/kvtml/de/animals.kvtml share/apps/kvtml/de/clothing.kvtml share/apps/kvtml/de/computers.kvtml share/apps/kvtml/de/currencies.kvtml share/apps/kvtml/de/easy.kvtml share/apps/kvtml/de/fruits.kvtml share/apps/kvtml/de/hard.kvtml share/apps/kvtml/de/inventions.kvtml share/apps/kvtml/de/medium.kvtml share/apps/kvtml/de/numbers.kvtml share/apps/kvtml/de/objects.kvtml share/apps/kvtml/de/people.kvtml share/apps/kvtml/de/professions.kvtml share/apps/kvtml/de/space.kvtml share/apps/kvtml/de/sports.kvtml share/apps/kvtml/de/transportation.kvtml share/apps/kvtml/de/vegetables.kvtml share/apps/kvtml/de/worldcapitals.kvtml share/apps/kvtml/el/animals.kvtml share/apps/kvtml/el/clothing.kvtml share/apps/kvtml/el/computers.kvtml share/apps/kvtml/el/currencies.kvtml share/apps/kvtml/el/easy.kvtml share/apps/kvtml/el/fruits.kvtml share/apps/kvtml/el/hard.kvtml share/apps/kvtml/el/inventions.kvtml share/apps/kvtml/el/medium.kvtml share/apps/kvtml/el/numbers.kvtml share/apps/kvtml/el/objects.kvtml share/apps/kvtml/el/people.kvtml share/apps/kvtml/el/professions.kvtml share/apps/kvtml/el/space.kvtml share/apps/kvtml/el/sport.kvtml share/apps/kvtml/el/transportation.kvtml share/apps/kvtml/el/vegetables.kvtml share/apps/kvtml/el/worldcapitals.kvtml share/apps/kvtml/en/animals.kvtml share/apps/kvtml/en/clothing.kvtml share/apps/kvtml/en/computers.kvtml share/apps/kvtml/en/currencies.kvtml share/apps/kvtml/en/easy.kvtml share/apps/kvtml/en/fruits.kvtml share/apps/kvtml/en/hard.kvtml share/apps/kvtml/en/inventions.kvtml share/apps/kvtml/en/medium.kvtml share/apps/kvtml/en/numbers.kvtml share/apps/kvtml/en/objects.kvtml share/apps/kvtml/en/people.kvtml share/apps/kvtml/en/professions.kvtml share/apps/kvtml/en/space.kvtml share/apps/kvtml/en/sports.kvtml share/apps/kvtml/en/transportation.kvtml share/apps/kvtml/en/vegetables.kvtml share/apps/kvtml/en/worldcapitals.kvtml share/apps/kvtml/en_GB/animals.kvtml share/apps/kvtml/en_GB/animals_en_gb.kvtml share/apps/kvtml/en_GB/clothing.kvtml share/apps/kvtml/en_GB/computers.kvtml share/apps/kvtml/en_GB/currencies.kvtml share/apps/kvtml/en_GB/easy.kvtml share/apps/kvtml/en_GB/fruits.kvtml share/apps/kvtml/en_GB/hard.kvtml share/apps/kvtml/en_GB/inventions.kvtml share/apps/kvtml/en_GB/medium.kvtml share/apps/kvtml/en_GB/numbers.kvtml share/apps/kvtml/en_GB/objects.kvtml share/apps/kvtml/en_GB/people.kvtml share/apps/kvtml/en_GB/professions.kvtml share/apps/kvtml/en_GB/space.kvtml share/apps/kvtml/en_GB/sport.kvtml share/apps/kvtml/en_GB/transportation.kvtml share/apps/kvtml/en_GB/vegetables.kvtml share/apps/kvtml/en_GB/worldcapitals.kvtml share/apps/kvtml/es/animals.kvtml share/apps/kvtml/es/computadoras.kvtml share/apps/kvtml/es/deportes.kvtml share/apps/kvtml/es/easy.kvtml share/apps/kvtml/es/espacio.kvtml share/apps/kvtml/es/frutas.kvtml share/apps/kvtml/es/gente.kvtml share/apps/kvtml/es/hard.kvtml share/apps/kvtml/es/inventos.kvtml share/apps/kvtml/es/medium.kvtml share/apps/kvtml/es/monedas.kvtml share/apps/kvtml/es/numeros.kvtml share/apps/kvtml/es/objetos.kvtml share/apps/kvtml/es/prendas.kvtml share/apps/kvtml/es/professiones.kvtml share/apps/kvtml/es/transportes.kvtml share/apps/kvtml/es/vegetales.kvtml share/apps/kvtml/es/worldcapitals.kvtml share/apps/kvtml/et/animals.kvtml share/apps/kvtml/et/easy.kvtml share/apps/kvtml/et/hard.kvtml share/apps/kvtml/et/medium.kvtml share/apps/kvtml/fi/animals.kvtml share/apps/kvtml/fi/easy.kvtml share/apps/kvtml/fi/hard.kvtml share/apps/kvtml/fi/medium.kvtml share/apps/kvtml/fr/animals.kvtml share/apps/kvtml/fr/easy.kvtml share/apps/kvtml/fr/hard.kvtml share/apps/kvtml/fr/maison.kvtml share/apps/kvtml/fr/medium.kvtml share/apps/kvtml/ga/animals.kvtml share/apps/kvtml/ga/clothing.kvtml share/apps/kvtml/ga/computers.kvtml share/apps/kvtml/ga/currencies.kvtml share/apps/kvtml/ga/easy.kvtml share/apps/kvtml/ga/fruits.kvtml share/apps/kvtml/ga/hard.kvtml share/apps/kvtml/ga/inventions.kvtml share/apps/kvtml/ga/medium.kvtml share/apps/kvtml/ga/numbers.kvtml share/apps/kvtml/ga/objects.kvtml share/apps/kvtml/ga/people.kvtml share/apps/kvtml/ga/professions.kvtml share/apps/kvtml/ga/space.kvtml share/apps/kvtml/ga/sports.kvtml share/apps/kvtml/ga/transportation.kvtml share/apps/kvtml/ga/vegetables.kvtml share/apps/kvtml/ga/worldcapitals.kvtml share/apps/kvtml/gl/animals.kvtml share/apps/kvtml/gl/capitaisdomundo.kvtml share/apps/kvtml/gl/deportes.kvtml share/apps/kvtml/gl/easy.kvtml share/apps/kvtml/gl/espazo.kvtml share/apps/kvtml/gl/froita.kvtml share/apps/kvtml/gl/hard.kvtml share/apps/kvtml/gl/informatica.kvtml share/apps/kvtml/gl/invencions.kvtml share/apps/kvtml/gl/medium.kvtml share/apps/kvtml/gl/moedas.kvtml share/apps/kvtml/gl/obxectos.kvtml share/apps/kvtml/gl/profesions.kvtml share/apps/kvtml/gl/roupa.kvtml share/apps/kvtml/gl/transporte.kvtml share/apps/kvtml/gl/verduras.kvtml share/apps/kvtml/gl/xente.kvtml share/apps/kvtml/hu/animals.kvtml share/apps/kvtml/hu/clothing.kvtml share/apps/kvtml/hu/computers.kvtml share/apps/kvtml/hu/currencies.kvtml share/apps/kvtml/hu/fruits.kvtml share/apps/kvtml/hu/numbers.kvtml share/apps/kvtml/hu/transportation.kvtml share/apps/kvtml/hu/worldcapitals.kvtml share/apps/kvtml/it/animali.kvtml share/apps/kvtml/it/animals.kvtml share/apps/kvtml/it/capitalidelmondo.kvtml share/apps/kvtml/it/computer.kvtml share/apps/kvtml/it/easy.kvtml share/apps/kvtml/it/hard.kvtml share/apps/kvtml/it/invenzioni.kvtml share/apps/kvtml/it/medium.kvtml share/apps/kvtml/it/numeri.kvtml share/apps/kvtml/it/oggetti.kvtml share/apps/kvtml/it/persone.kvtml share/apps/kvtml/it/spazio.kvtml share/apps/kvtml/it/trasporti.kvtml share/apps/kvtml/it/valute.kvtml share/apps/kvtml/nb/animals.kvtml share/apps/kvtml/nb/easy.kvtml share/apps/kvtml/nb/hard.kvtml share/apps/kvtml/nb/medium.kvtml share/apps/kvtml/nds/animals.kvtml share/apps/kvtml/nds/clothing.kvtml share/apps/kvtml/nds/computers.kvtml share/apps/kvtml/nds/currencies.kvtml share/apps/kvtml/nds/easy.kvtml share/apps/kvtml/nds/fruits.kvtml share/apps/kvtml/nds/hard.kvtml share/apps/kvtml/nds/inventions.kvtml share/apps/kvtml/nds/medium.kvtml share/apps/kvtml/nds/numbers.kvtml share/apps/kvtml/nds/objects.kvtml share/apps/kvtml/nds/people.kvtml share/apps/kvtml/nds/professions.kvtml share/apps/kvtml/nds/space.kvtml share/apps/kvtml/nds/sports.kvtml share/apps/kvtml/nds/transportation.kvtml share/apps/kvtml/nds/vegetables.kvtml share/apps/kvtml/nds/worldcapitals.kvtml share/apps/kvtml/nl/Europese_landen.kvtml share/apps/kvtml/nl/Nederlandse_eilanden.kvtml share/apps/kvtml/nl/Nederlandse_provincies.kvtml share/apps/kvtml/nl/animals.kvtml share/apps/kvtml/nl/easy.kvtml share/apps/kvtml/nl/hard.kvtml share/apps/kvtml/nl/medium.kvtml share/apps/kvtml/nn/animals.kvtml share/apps/kvtml/nn/easy.kvtml share/apps/kvtml/nn/hard.kvtml share/apps/kvtml/nn/medium.kvtml share/apps/kvtml/pa/animals.kvtml share/apps/kvtml/pa/clothing.kvtml share/apps/kvtml/pa/computers.kvtml share/apps/kvtml/pa/currencies.kvtml share/apps/kvtml/pa/easy.kvtml share/apps/kvtml/pa/fruits.kvtml share/apps/kvtml/pa/hard.kvtml share/apps/kvtml/pa/inventions.kvtml share/apps/kvtml/pa/medium.kvtml share/apps/kvtml/pa/numbers.kvtml share/apps/kvtml/pa/objects.kvtml share/apps/kvtml/pa/people.kvtml share/apps/kvtml/pa/professions.kvtml share/apps/kvtml/pa/space.kvtml share/apps/kvtml/pa/sports.kvtml share/apps/kvtml/pa/transportation.kvtml share/apps/kvtml/pa/vegetables.kvtml share/apps/kvtml/pa/worldcapitals.kvtml share/apps/kvtml/pl/animals.kvtml share/apps/kvtml/pl/easy.kvtml share/apps/kvtml/pl/hard.kvtml share/apps/kvtml/pl/medium.kvtml share/apps/kvtml/pt/animals.kvtml share/apps/kvtml/pt/easy.kvtml share/apps/kvtml/pt/hard.kvtml share/apps/kvtml/pt/medium.kvtml share/apps/kvtml/pt_BR/animals.kvtml share/apps/kvtml/pt_BR/easy.kvtml share/apps/kvtml/pt_BR/hard.kvtml share/apps/kvtml/pt_BR/medium.kvtml share/apps/kvtml/ro/animals.kvtml share/apps/kvtml/ro/easy.kvtml share/apps/kvtml/ro/hard.kvtml share/apps/kvtml/ro/medium.kvtml share/apps/kvtml/ru/animals.kvtml share/apps/kvtml/ru/astronomy.kvtml share/apps/kvtml/ru/computers.kvtml share/apps/kvtml/ru/currencies.kvtml share/apps/kvtml/ru/easy.kvtml share/apps/kvtml/ru/hard.kvtml share/apps/kvtml/ru/medium.kvtml share/apps/kvtml/ru/numbers.kvtml share/apps/kvtml/ru/objects.kvtml share/apps/kvtml/ru/people.kvtml share/apps/kvtml/ru/space.kvtml share/apps/kvtml/ru/transportation.kvtml share/apps/kvtml/ru/worldcapitals.kvtml share/apps/kvtml/sk/animals.kvtml share/apps/kvtml/sk/easy.kvtml share/apps/kvtml/sk/hard.kvtml share/apps/kvtml/sk/medium.kvtml share/apps/kvtml/sl/animals.kvtml share/apps/kvtml/sl/clothing.kvtml share/apps/kvtml/sl/computers.kvtml share/apps/kvtml/sl/currencies.kvtml share/apps/kvtml/sl/easy.kvtml share/apps/kvtml/sl/fruits.kvtml share/apps/kvtml/sl/hard.kvtml share/apps/kvtml/sl/inventions.kvtml share/apps/kvtml/sl/medium.kvtml share/apps/kvtml/sl/numbers.kvtml share/apps/kvtml/sl/objects.kvtml share/apps/kvtml/sl/people.kvtml share/apps/kvtml/sl/professions.kvtml share/apps/kvtml/sl/space.kvtml share/apps/kvtml/sl/sports.kvtml share/apps/kvtml/sl/transportation.kvtml share/apps/kvtml/sl/vegetables.kvtml share/apps/kvtml/sl/worldcapitals.kvtml share/apps/kvtml/sr/animals.kvtml share/apps/kvtml/sr/easy.kvtml share/apps/kvtml/sr/hard.kvtml share/apps/kvtml/sr/medium.kvtml share/apps/kvtml/sr@ijekavian/animals.kvtml share/apps/kvtml/sr@ijekavian/easy.kvtml share/apps/kvtml/sr@ijekavian/hard.kvtml share/apps/kvtml/sr@ijekavian/medium.kvtml share/apps/kvtml/sr@ijekavianlatin/animals.kvtml share/apps/kvtml/sr@ijekavianlatin/easy.kvtml share/apps/kvtml/sr@ijekavianlatin/hard.kvtml share/apps/kvtml/sr@ijekavianlatin/medium.kvtml share/apps/kvtml/sr@latin/animals.kvtml share/apps/kvtml/sr@latin/easy.kvtml share/apps/kvtml/sr@latin/hard.kvtml share/apps/kvtml/sr@latin/medium.kvtml share/apps/kvtml/sv/animals.kvtml share/apps/kvtml/sv/clothing.kvtml share/apps/kvtml/sv/computers.kvtml share/apps/kvtml/sv/currencies.kvtml share/apps/kvtml/sv/easy.kvtml share/apps/kvtml/sv/fruits.kvtml share/apps/kvtml/sv/hard.kvtml share/apps/kvtml/sv/inventions.kvtml share/apps/kvtml/sv/medium.kvtml share/apps/kvtml/sv/numbers.kvtml share/apps/kvtml/sv/objects.kvtml share/apps/kvtml/sv/people.kvtml share/apps/kvtml/sv/professions.kvtml share/apps/kvtml/sv/space.kvtml share/apps/kvtml/sv/sports.kvtml share/apps/kvtml/sv/transportation.kvtml share/apps/kvtml/sv/vegetables.kvtml share/apps/kvtml/sv/worldcapitals.kvtml +share/apps/kvtml/tg/animals.kvtml +share/apps/kvtml/tg/easy.kvtml +share/apps/kvtml/tg/hard.kvtml +share/apps/kvtml/tg/medium.kvtml share/apps/kvtml/tr/animals.kvtml share/apps/kvtml/tr/easy.kvtml share/apps/kvtml/tr/hard.kvtml share/apps/kvtml/tr/medium.kvtml share/apps/kvtml/uk/animals.kvtml share/apps/kvtml/uk/clothing.kvtml share/apps/kvtml/uk/computers.kvtml share/apps/kvtml/uk/currencies.kvtml share/apps/kvtml/uk/easy.kvtml share/apps/kvtml/uk/fruits.kvtml share/apps/kvtml/uk/hard.kvtml share/apps/kvtml/uk/inventions.kvtml share/apps/kvtml/uk/medium.kvtml share/apps/kvtml/uk/numbers.kvtml share/apps/kvtml/uk/objects.kvtml share/apps/kvtml/uk/people.kvtml share/apps/kvtml/uk/professions.kvtml share/apps/kvtml/uk/space.kvtml share/apps/kvtml/uk/sports.kvtml share/apps/kvtml/uk/transportation.kvtml share/apps/kvtml/uk/vegetables.kvtml share/apps/kvtml/uk/worldcapitals.kvtml share/icons/hicolor/16x16/actions/editplots.png share/icons/hicolor/16x16/actions/functionhelp.png share/icons/hicolor/16x16/actions/integral_func.png share/icons/hicolor/16x16/actions/maximum.png share/icons/hicolor/16x16/actions/minimum.png share/icons/hicolor/16x16/actions/newdifferential.png share/icons/hicolor/16x16/actions/newfunction.png share/icons/hicolor/16x16/actions/newimplicit.png share/icons/hicolor/16x16/actions/newparametric.png share/icons/hicolor/16x16/actions/newpolar.png share/icons/hicolor/16x16/actions/resetview.png share/icons/hicolor/22x22/actions/editplots.png share/icons/hicolor/22x22/actions/functionhelp.png share/icons/hicolor/22x22/actions/maximum.png share/icons/hicolor/22x22/actions/minimum.png share/icons/hicolor/22x22/actions/newdifferential.png share/icons/hicolor/22x22/actions/newfunction.png share/icons/hicolor/22x22/actions/newimplicit.png share/icons/hicolor/22x22/actions/newparametric.png share/icons/hicolor/22x22/actions/newpolar.png share/icons/hicolor/22x22/actions/resetview.png share/icons/hicolor/32x32/actions/coords.png share/icons/hicolor/32x32/actions/deriv_func.png share/icons/hicolor/32x32/actions/editconstants.png share/icons/hicolor/32x32/actions/editplots.png share/icons/hicolor/32x32/actions/func.png share/icons/hicolor/32x32/actions/functionhelp.png share/icons/hicolor/32x32/actions/integral_func.png share/icons/hicolor/32x32/actions/lessen.png share/icons/hicolor/32x32/actions/magnify.png share/icons/hicolor/32x32/actions/maximum.png share/icons/hicolor/32x32/actions/minimum.png share/icons/hicolor/32x32/actions/newdifferential.png share/icons/hicolor/32x32/actions/newfunction.png share/icons/hicolor/32x32/actions/newimplicit.png share/icons/hicolor/32x32/actions/newparametric.png share/icons/hicolor/32x32/actions/newpolar.png share/icons/hicolor/32x32/actions/resetview.png share/icons/hicolor/48x48/actions/editplots.png share/icons/hicolor/48x48/actions/functionhelp.png share/icons/hicolor/48x48/actions/maximum.png share/icons/hicolor/48x48/actions/minimum.png share/icons/hicolor/48x48/actions/newdifferential.png share/icons/hicolor/48x48/actions/newfunction.png share/icons/hicolor/48x48/actions/newimplicit.png share/icons/hicolor/48x48/actions/newparametric.png share/icons/hicolor/48x48/actions/newpolar.png share/icons/hicolor/48x48/actions/resetview.png share/icons/hicolor/64x64/actions/maximum.png share/icons/hicolor/64x64/actions/minimum.png share/icons/hicolor/scalable/actions/deriv_func.svgz share/icons/hicolor/scalable/actions/editconstants.svgz share/icons/hicolor/scalable/actions/editplots.svgz share/icons/hicolor/scalable/actions/functionhelp.svgz share/icons/hicolor/scalable/actions/integral_func.svgz share/icons/hicolor/scalable/actions/maximum.svgz share/icons/hicolor/scalable/actions/minimum.svgz share/icons/hicolor/scalable/actions/newfunction.svgz share/icons/hicolor/scalable/actions/newparametric.svgz share/icons/hicolor/scalable/actions/newpolar.svgz share/icons/hicolor/scalable/actions/resetview.svgz diff --git a/misc/kgeography/distinfo b/misc/kgeography/distinfo index b3c95a9497c8..18fc7c36677d 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741507 -SHA256 (KDE/release-service/21.04.1/kgeography-21.04.1.tar.xz) = 6abddaaa76520d480ca6c18fc301a4781b3cd6fd2497c1d14e015b04acacb6b6 -SIZE (KDE/release-service/21.04.1/kgeography-21.04.1.tar.xz) = 10762996 +TIMESTAMP = 1623520929 +SHA256 (KDE/release-service/21.04.2/kgeography-21.04.2.tar.xz) = a72ed230bc9157a953b27d54a505aeb1fb84526e772b6957949ac0854525688e +SIZE (KDE/release-service/21.04.2/kgeography-21.04.2.tar.xz) = 10995324 diff --git a/misc/kgeography/pkg-plist b/misc/kgeography/pkg-plist index 927e40c5ec9d..bba86818a9bb 100644 --- a/misc/kgeography/pkg-plist +++ b/misc/kgeography/pkg-plist @@ -1,1049 +1,1054 @@ bin/kgeography share/applications/org.kde.kgeography.desktop share/config.kcfg/kgeography.kcfg share/icons/hicolor/128x128/apps/kgeography.png share/icons/hicolor/16x16/apps/kgeography.png share/icons/hicolor/22x22/apps/kgeography.png share/icons/hicolor/32x32/apps/kgeography.png share/icons/hicolor/48x48/apps/kgeography.png share/icons/hicolor/64x64/apps/kgeography.png share/icons/hicolor/scalable/apps/kgeography.svgz %%DATADIR%%/afghanistan.kgm %%DATADIR%%/afghanistan.png %%DATADIR%%/africa.kgm %%DATADIR%%/africa.png %%DATADIR%%/albania_districts.kgm %%DATADIR%%/albania_districts.png %%DATADIR%%/albania_prefectures.kgm %%DATADIR%%/albania_prefectures.png %%DATADIR%%/algeria.kgm %%DATADIR%%/algeria.png %%DATADIR%%/andhrapradesh.kgm %%DATADIR%%/andhrapradesh.png %%DATADIR%%/andorra.kgm %%DATADIR%%/andorra.png %%DATADIR%%/angola_provinces.kgm %%DATADIR%%/angola_provinces.png %%DATADIR%%/argentina.kgm %%DATADIR%%/argentina.png %%DATADIR%%/armenia.kgm %%DATADIR%%/armenia.png %%DATADIR%%/arunachalpradesh.kgm %%DATADIR%%/arunachalpradesh.png %%DATADIR%%/asia.kgm %%DATADIR%%/asia.png %%DATADIR%%/assam-district-map.png %%DATADIR%%/assam.kgm %%DATADIR%%/australia.kgm %%DATADIR%%/australia.png %%DATADIR%%/austria.kgm %%DATADIR%%/austria.png %%DATADIR%%/azerbaijan.kgm %%DATADIR%%/azerbaijan.png %%DATADIR%%/bangladesh.kgm %%DATADIR%%/bangladesh.png %%DATADIR%%/belarus.kgm %%DATADIR%%/belarus.png %%DATADIR%%/belgium.kgm %%DATADIR%%/belgium.png %%DATADIR%%/belize.kgm %%DATADIR%%/belize.png %%DATADIR%%/bhutan.kgm %%DATADIR%%/bhutan.png %%DATADIR%%/bihar-map.png %%DATADIR%%/bihar.kgm %%DATADIR%%/bolivia.kgm %%DATADIR%%/bolivia.png %%DATADIR%%/bosnia-herzegovina.kgm %%DATADIR%%/bosnia-herzegovina.png %%DATADIR%%/botswana.kgm %%DATADIR%%/botswana.png %%DATADIR%%/brazil.kgm %%DATADIR%%/brazil.png %%DATADIR%%/bulgaria.kgm %%DATADIR%%/bulgaria.png %%DATADIR%%/burkina_provinces.kgm %%DATADIR%%/burkina_provinces.png %%DATADIR%%/burkina_regions.kgm %%DATADIR%%/burkina_regions.png %%DATADIR%%/burma.kgm %%DATADIR%%/burma.png %%DATADIR%%/cameroon_departments.kgm %%DATADIR%%/cameroon_departments.png %%DATADIR%%/cameroon_provinces.kgm %%DATADIR%%/cameroon_provinces.png %%DATADIR%%/canada.kgm %%DATADIR%%/canada.png %%DATADIR%%/caribbean.kgm %%DATADIR%%/caribbean.png %%DATADIR%%/catalonia_comarques.kgm %%DATADIR%%/catalonia_comarques.png %%DATADIR%%/chhattisgarh.kgm %%DATADIR%%/chhattisgarh.png %%DATADIR%%/chile.kgm %%DATADIR%%/chile.png %%DATADIR%%/china.kgm %%DATADIR%%/china.png %%DATADIR%%/colombia.kgm %%DATADIR%%/colombia.png %%DATADIR%%/costa_rica.kgm %%DATADIR%%/costa_rica.png %%DATADIR%%/cuba.kgm %%DATADIR%%/cuba.png %%DATADIR%%/cyprus.kgm %%DATADIR%%/cyprus.png %%DATADIR%%/czech.kgm %%DATADIR%%/czech.png %%DATADIR%%/denmark_counties.kgm %%DATADIR%%/denmark_counties.png %%DATADIR%%/dominican_republic.kgm %%DATADIR%%/dominican_republic.png %%DATADIR%%/ecuador.kgm %%DATADIR%%/ecuador.png %%DATADIR%%/egypt.kgm %%DATADIR%%/egypt.png %%DATADIR%%/el_salvador.kgm %%DATADIR%%/el_salvador.png %%DATADIR%%/emirates.kgm %%DATADIR%%/emirates.png %%DATADIR%%/estonia.kgm %%DATADIR%%/estonia.png %%DATADIR%%/europe.kgm %%DATADIR%%/europe.png %%DATADIR%%/finland_regions.kgm %%DATADIR%%/finland_regions.png %%DATADIR%%/flags/Monaco.png %%DATADIR%%/flags/SriLanka.png %%DATADIR%%/flags/Vatican.png %%DATADIR%%/flags/afghanistan.png %%DATADIR%%/flags/albania.png %%DATADIR%%/flags/algeria.png %%DATADIR%%/flags/american_samoa.png %%DATADIR%%/flags/andorra.png %%DATADIR%%/flags/angola.png %%DATADIR%%/flags/anguilla.png %%DATADIR%%/flags/antigua.png %%DATADIR%%/flags/argentina.png %%DATADIR%%/flags/armenia.png %%DATADIR%%/flags/aruba.png %%DATADIR%%/flags/australia.png %%DATADIR%%/flags/australia/australian_capital_territory.png %%DATADIR%%/flags/australia/new_south_wales.png %%DATADIR%%/flags/australia/northern_territory.png %%DATADIR%%/flags/australia/queensland.png %%DATADIR%%/flags/australia/south_australia.png %%DATADIR%%/flags/australia/tasmania.png %%DATADIR%%/flags/australia/victoria.png %%DATADIR%%/flags/australia/western_australia.png %%DATADIR%%/flags/austria.png %%DATADIR%%/flags/azerbaijan.png %%DATADIR%%/flags/bahamas.png %%DATADIR%%/flags/bahrain.png %%DATADIR%%/flags/bangladesh.png %%DATADIR%%/flags/barbados.png %%DATADIR%%/flags/belarus.png %%DATADIR%%/flags/belarus/Brest.png %%DATADIR%%/flags/belarus/Homyel.png %%DATADIR%%/flags/belarus/Hrodna.png %%DATADIR%%/flags/belarus/Mahilyow.png %%DATADIR%%/flags/belarus/Minsk.png %%DATADIR%%/flags/belarus/Minsk_vobl.png %%DATADIR%%/flags/belarus/Vitebsk.png %%DATADIR%%/flags/belgium.png %%DATADIR%%/flags/belgium/antwerp.png %%DATADIR%%/flags/belgium/brussels.png %%DATADIR%%/flags/belgium/east_flanders.png %%DATADIR%%/flags/belgium/flemish_brabant.png %%DATADIR%%/flags/belgium/hainaut.png %%DATADIR%%/flags/belgium/liege.png %%DATADIR%%/flags/belgium/limburg.png %%DATADIR%%/flags/belgium/luxembourg.png %%DATADIR%%/flags/belgium/namur.png %%DATADIR%%/flags/belgium/walloon_brabant.png %%DATADIR%%/flags/belgium/west_flanders.png %%DATADIR%%/flags/belize.png %%DATADIR%%/flags/benin.png %%DATADIR%%/flags/bhutan.png %%DATADIR%%/flags/bolivia.png %%DATADIR%%/flags/bosnia_herzegovina.png %%DATADIR%%/flags/botswana.png %%DATADIR%%/flags/brazil.png %%DATADIR%%/flags/brazil/br_AC.png %%DATADIR%%/flags/brazil/br_AL.png %%DATADIR%%/flags/brazil/br_AM.png %%DATADIR%%/flags/brazil/br_AP.png %%DATADIR%%/flags/brazil/br_BA.png %%DATADIR%%/flags/brazil/br_CE.png %%DATADIR%%/flags/brazil/br_DF.png %%DATADIR%%/flags/brazil/br_ES.png %%DATADIR%%/flags/brazil/br_GO.png %%DATADIR%%/flags/brazil/br_MA.png %%DATADIR%%/flags/brazil/br_MG.png %%DATADIR%%/flags/brazil/br_MS.png %%DATADIR%%/flags/brazil/br_MT.png %%DATADIR%%/flags/brazil/br_PA.png %%DATADIR%%/flags/brazil/br_PE.png %%DATADIR%%/flags/brazil/br_PI.png %%DATADIR%%/flags/brazil/br_PN.png %%DATADIR%%/flags/brazil/br_PR.png %%DATADIR%%/flags/brazil/br_RJ.png %%DATADIR%%/flags/brazil/br_RN.png %%DATADIR%%/flags/brazil/br_RO.png %%DATADIR%%/flags/brazil/br_RR.png %%DATADIR%%/flags/brazil/br_RS.png %%DATADIR%%/flags/brazil/br_SC.png %%DATADIR%%/flags/brazil/br_SE.png %%DATADIR%%/flags/brazil/br_SP.png %%DATADIR%%/flags/brazil/br_TO.png %%DATADIR%%/flags/british_virgin_islands.png %%DATADIR%%/flags/brunei.png %%DATADIR%%/flags/bulgaria.png %%DATADIR%%/flags/burkina.png %%DATADIR%%/flags/burundi.png %%DATADIR%%/flags/cambodia.png %%DATADIR%%/flags/cameroon.png %%DATADIR%%/flags/canada.png %%DATADIR%%/flags/canada/alberta.png %%DATADIR%%/flags/canada/bc.png %%DATADIR%%/flags/canada/manitoba.png %%DATADIR%%/flags/canada/newbrunswick.png %%DATADIR%%/flags/canada/newfoundland.png %%DATADIR%%/flags/canada/novascotia.png %%DATADIR%%/flags/canada/nunavut.png %%DATADIR%%/flags/canada/nwterritories.png %%DATADIR%%/flags/canada/ontario.png %%DATADIR%%/flags/canada/pei.png %%DATADIR%%/flags/canada/quebec.png %%DATADIR%%/flags/canada/saskatchewan.png %%DATADIR%%/flags/canada/yukon.png %%DATADIR%%/flags/cape_verde.png %%DATADIR%%/flags/cayman_islands.png %%DATADIR%%/flags/central_african_republic.png %%DATADIR%%/flags/chad.png %%DATADIR%%/flags/chile.png %%DATADIR%%/flags/china.png %%DATADIR%%/flags/colombia.png %%DATADIR%%/flags/colombia/amazonas.png %%DATADIR%%/flags/colombia/antioquia.png %%DATADIR%%/flags/colombia/arauca.png %%DATADIR%%/flags/colombia/atlantico.png %%DATADIR%%/flags/colombia/bolivar.png %%DATADIR%%/flags/colombia/boyaca.png %%DATADIR%%/flags/colombia/caldas.png %%DATADIR%%/flags/colombia/caqueta.png %%DATADIR%%/flags/colombia/casanare.png %%DATADIR%%/flags/colombia/cauca.png %%DATADIR%%/flags/colombia/cesar.png %%DATADIR%%/flags/colombia/choco.png %%DATADIR%%/flags/colombia/cordoba.png %%DATADIR%%/flags/colombia/cundinamarca.png %%DATADIR%%/flags/colombia/dc.png %%DATADIR%%/flags/colombia/guainia.png %%DATADIR%%/flags/colombia/guajira.png %%DATADIR%%/flags/colombia/guaviare.png %%DATADIR%%/flags/colombia/huila.png %%DATADIR%%/flags/colombia/magdalena.png %%DATADIR%%/flags/colombia/meta.png %%DATADIR%%/flags/colombia/narinyo.png %%DATADIR%%/flags/colombia/nsantander.png %%DATADIR%%/flags/colombia/putumayo.png %%DATADIR%%/flags/colombia/quindio.png %%DATADIR%%/flags/colombia/risaralda.png %%DATADIR%%/flags/colombia/santander.png %%DATADIR%%/flags/colombia/standrew.png %%DATADIR%%/flags/colombia/sucre.png %%DATADIR%%/flags/colombia/tolima.png %%DATADIR%%/flags/colombia/valle.png %%DATADIR%%/flags/colombia/vaupes.png %%DATADIR%%/flags/colombia/vichada.png %%DATADIR%%/flags/comoros.png %%DATADIR%%/flags/congo_brazzaville.png %%DATADIR%%/flags/congo_kinshasa.png %%DATADIR%%/flags/cook_islands.png %%DATADIR%%/flags/costa_rica.png %%DATADIR%%/flags/cote_divoire.png %%DATADIR%%/flags/croatia.png %%DATADIR%%/flags/cuba_3x2.png %%DATADIR%%/flags/cyprus_4x3.png %%DATADIR%%/flags/czech.png %%DATADIR%%/flags/denmark.png %%DATADIR%%/flags/djibouti.png %%DATADIR%%/flags/dominica.png %%DATADIR%%/flags/dominicanrepublic.png %%DATADIR%%/flags/dutch_antilles.png %%DATADIR%%/flags/easter_island.png %%DATADIR%%/flags/easttimor.png %%DATADIR%%/flags/ecuador.png %%DATADIR%%/flags/egypt.png %%DATADIR%%/flags/el_salvador.png %%DATADIR%%/flags/equatorial_guinea.png %%DATADIR%%/flags/eritrea.png %%DATADIR%%/flags/estonia.png %%DATADIR%%/flags/estonia/Harjumaa_flag.png %%DATADIR%%/flags/estonia/Hiiumaa_flag.png %%DATADIR%%/flags/estonia/Ida-Virumaa_flag.png %%DATADIR%%/flags/estonia/Jarvamaa_flag.png %%DATADIR%%/flags/estonia/Jogevamaa_flag.png %%DATADIR%%/flags/estonia/Laane-Virumaa_flag.png %%DATADIR%%/flags/estonia/Laanemaa_flag.png %%DATADIR%%/flags/estonia/Parnumaa_flag.png %%DATADIR%%/flags/estonia/Polvamaa_flag.png %%DATADIR%%/flags/estonia/Raplamaa_flag.png %%DATADIR%%/flags/estonia/Saaremaa_flag.png %%DATADIR%%/flags/estonia/Tartumaa_flag.png %%DATADIR%%/flags/estonia/Valgamaa_flag.png %%DATADIR%%/flags/estonia/Viljandimaa_flag.png %%DATADIR%%/flags/estonia/Vorumaa_flag.png %%DATADIR%%/flags/ethiopia.png %%DATADIR%%/flags/fiji.png %%DATADIR%%/flags/finland.png %%DATADIR%%/flags/france.png %%DATADIR%%/flags/french_polynesia.png %%DATADIR%%/flags/gabon.png %%DATADIR%%/flags/gambia.png %%DATADIR%%/flags/georgia.png %%DATADIR%%/flags/germany.png %%DATADIR%%/flags/germany/baden_wurttemberg.png %%DATADIR%%/flags/germany/bavaria.png %%DATADIR%%/flags/germany/berlin.png %%DATADIR%%/flags/germany/brandenburg.png %%DATADIR%%/flags/germany/bremen.png %%DATADIR%%/flags/germany/hamburg.png %%DATADIR%%/flags/germany/hesse.png %%DATADIR%%/flags/germany/lower_saxony.png %%DATADIR%%/flags/germany/mecklenburg_western_pomerania.png %%DATADIR%%/flags/germany/north_rhine_westphalia.png %%DATADIR%%/flags/germany/rhineland_palatinate.png %%DATADIR%%/flags/germany/saarland.png %%DATADIR%%/flags/germany/saxony.png %%DATADIR%%/flags/germany/saxony_anhalt.png %%DATADIR%%/flags/germany/schleswig_holstein.png %%DATADIR%%/flags/germany/thuringia.png %%DATADIR%%/flags/ghana.png %%DATADIR%%/flags/ghana/ashanti.png %%DATADIR%%/flags/ghana/brongahafo.png %%DATADIR%%/flags/ghana/central.png %%DATADIR%%/flags/ghana/eastern.png %%DATADIR%%/flags/ghana/greateraccra.png %%DATADIR%%/flags/ghana/volta.png %%DATADIR%%/flags/ghana/western.png %%DATADIR%%/flags/greece.png %%DATADIR%%/flags/greenland.png %%DATADIR%%/flags/grenada.png %%DATADIR%%/flags/guam.png %%DATADIR%%/flags/guatemala.png %%DATADIR%%/flags/guinea.png %%DATADIR%%/flags/guineabissau.png %%DATADIR%%/flags/guyana.png %%DATADIR%%/flags/haiti.png %%DATADIR%%/flags/honduras.png %%DATADIR%%/flags/hungary.png %%DATADIR%%/flags/iceland.png %%DATADIR%%/flags/india.png %%DATADIR%%/flags/indonesia.png %%DATADIR%%/flags/iran.png %%DATADIR%%/flags/iraq.png %%DATADIR%%/flags/ireland.png %%DATADIR%%/flags/ireland/connacht.png %%DATADIR%%/flags/ireland/leinster.png %%DATADIR%%/flags/ireland/munster.png %%DATADIR%%/flags/ireland/ulster.png %%DATADIR%%/flags/israel.png %%DATADIR%%/flags/italy.png %%DATADIR%%/flags/italy/it-abr200.png %%DATADIR%%/flags/italy/it-aos200.png %%DATADIR%%/flags/italy/it-bas200.png %%DATADIR%%/flags/italy/it-cal200.png %%DATADIR%%/flags/italy/it-cam200.png %%DATADIR%%/flags/italy/it-emi200.png %%DATADIR%%/flags/italy/it-fri200.png %%DATADIR%%/flags/italy/it-lat200.png %%DATADIR%%/flags/italy/it-lig200.png %%DATADIR%%/flags/italy/it-lom200.png %%DATADIR%%/flags/italy/it-mar200.png %%DATADIR%%/flags/italy/it-mol200.png %%DATADIR%%/flags/italy/it-pie200.png %%DATADIR%%/flags/italy/it-pug200.png %%DATADIR%%/flags/italy/it-sar200.png %%DATADIR%%/flags/italy/it-sic200.png %%DATADIR%%/flags/italy/it-tre200.png %%DATADIR%%/flags/italy/it-tus200.png %%DATADIR%%/flags/italy/it-umb200.png %%DATADIR%%/flags/italy/it-ven200.png %%DATADIR%%/flags/jamaica.png %%DATADIR%%/flags/japan.png %%DATADIR%%/flags/japan/jp-aichi.png %%DATADIR%%/flags/japan/jp-akita.png %%DATADIR%%/flags/japan/jp-aomori.png %%DATADIR%%/flags/japan/jp-chiba.png %%DATADIR%%/flags/japan/jp-ehime.png %%DATADIR%%/flags/japan/jp-fukui.png %%DATADIR%%/flags/japan/jp-fukuoka.png %%DATADIR%%/flags/japan/jp-fukushima.png %%DATADIR%%/flags/japan/jp-gifu.png %%DATADIR%%/flags/japan/jp-gunma.png %%DATADIR%%/flags/japan/jp-hiroshima.png %%DATADIR%%/flags/japan/jp-hokkaido.png %%DATADIR%%/flags/japan/jp-hyogo.png %%DATADIR%%/flags/japan/jp-ibaraki.png %%DATADIR%%/flags/japan/jp-ishikawa.png %%DATADIR%%/flags/japan/jp-iwate.png %%DATADIR%%/flags/japan/jp-kagawa.png %%DATADIR%%/flags/japan/jp-kagoshima.png %%DATADIR%%/flags/japan/jp-kanagawa.png %%DATADIR%%/flags/japan/jp-kochi.png %%DATADIR%%/flags/japan/jp-kumamoto.png %%DATADIR%%/flags/japan/jp-kyoto.png %%DATADIR%%/flags/japan/jp-mie.png %%DATADIR%%/flags/japan/jp-miyagi.png %%DATADIR%%/flags/japan/jp-miyazaki.png %%DATADIR%%/flags/japan/jp-nagano.png %%DATADIR%%/flags/japan/jp-nagasaki.png %%DATADIR%%/flags/japan/jp-nara.png %%DATADIR%%/flags/japan/jp-niigata.png %%DATADIR%%/flags/japan/jp-oita.png %%DATADIR%%/flags/japan/jp-okayama.png %%DATADIR%%/flags/japan/jp-okinawa.png %%DATADIR%%/flags/japan/jp-osaka.png %%DATADIR%%/flags/japan/jp-saga.png %%DATADIR%%/flags/japan/jp-saitama.png %%DATADIR%%/flags/japan/jp-shiga.png %%DATADIR%%/flags/japan/jp-shimane.png %%DATADIR%%/flags/japan/jp-shizuoka.png %%DATADIR%%/flags/japan/jp-tochigi.png %%DATADIR%%/flags/japan/jp-tokushima.png %%DATADIR%%/flags/japan/jp-tokyo.png %%DATADIR%%/flags/japan/jp-tottori.png %%DATADIR%%/flags/japan/jp-toyama.png %%DATADIR%%/flags/japan/jp-wakayama.png %%DATADIR%%/flags/japan/jp-yamagata.png %%DATADIR%%/flags/japan/jp-yamaguchi.png %%DATADIR%%/flags/japan/jp-yamanashi.png %%DATADIR%%/flags/jordan.png %%DATADIR%%/flags/kazakhstan.png %%DATADIR%%/flags/kenya.png %%DATADIR%%/flags/kiribati.png %%DATADIR%%/flags/kuwait.png %%DATADIR%%/flags/kyrgyzstan.png %%DATADIR%%/flags/laos.png %%DATADIR%%/flags/latvia.png %%DATADIR%%/flags/lebanon.png %%DATADIR%%/flags/lesotho.png %%DATADIR%%/flags/liberia.png %%DATADIR%%/flags/libya.png %%DATADIR%%/flags/liechtenstein.png %%DATADIR%%/flags/lithuania.png %%DATADIR%%/flags/luxembourg.png %%DATADIR%%/flags/macedonia.png %%DATADIR%%/flags/madagascar.png %%DATADIR%%/flags/madeira.png %%DATADIR%%/flags/malawi.png %%DATADIR%%/flags/malaysia.png %%DATADIR%%/flags/mali.png %%DATADIR%%/flags/malta.png %%DATADIR%%/flags/marshall_islands.png %%DATADIR%%/flags/martinique.png %%DATADIR%%/flags/mauritania.png %%DATADIR%%/flags/mauritius.png %%DATADIR%%/flags/mexico.png %%DATADIR%%/flags/micronesia.png %%DATADIR%%/flags/moldova.png %%DATADIR%%/flags/mongolia.png %%DATADIR%%/flags/montenegro.png %%DATADIR%%/flags/montserrat.png %%DATADIR%%/flags/morocco.png %%DATADIR%%/flags/mozambique.png %%DATADIR%%/flags/myanmar.png %%DATADIR%%/flags/namibia.png %%DATADIR%%/flags/nauru.png %%DATADIR%%/flags/nepal.png %%DATADIR%%/flags/netherlands.png %%DATADIR%%/flags/new_caledonia.png %%DATADIR%%/flags/new_zealand.png %%DATADIR%%/flags/nicaragua.png %%DATADIR%%/flags/niger.png %%DATADIR%%/flags/nigeria.png %%DATADIR%%/flags/niue.png %%DATADIR%%/flags/nkorea.png %%DATADIR%%/flags/norfolk_island.png %%DATADIR%%/flags/northern_mariana_islands.png %%DATADIR%%/flags/norway.png %%DATADIR%%/flags/norway/agder.png %%DATADIR%%/flags/norway/innlandet.png %%DATADIR%%/flags/norway/more_og_romsdal.png %%DATADIR%%/flags/norway/nordland.png %%DATADIR%%/flags/norway/oslo.png %%DATADIR%%/flags/norway/rogaland.png %%DATADIR%%/flags/norway/troms_og_finnmark.png %%DATADIR%%/flags/norway/trondelag.png %%DATADIR%%/flags/norway/vestfold_og_telemark.png %%DATADIR%%/flags/norway/vestland.png %%DATADIR%%/flags/norway/viken.png %%DATADIR%%/flags/oman.png %%DATADIR%%/flags/pakistan.png %%DATADIR%%/flags/palau.png %%DATADIR%%/flags/panama.png %%DATADIR%%/flags/papua_new_guinea.png %%DATADIR%%/flags/paraguay.png %%DATADIR%%/flags/peru.png %%DATADIR%%/flags/peru/amazonas.png %%DATADIR%%/flags/peru/ancash.png %%DATADIR%%/flags/peru/apurimac.png %%DATADIR%%/flags/peru/arequipa.png %%DATADIR%%/flags/peru/ayacucho.png %%DATADIR%%/flags/peru/cajamarca.png %%DATADIR%%/flags/peru/cusco.png %%DATADIR%%/flags/peru/huancavelica.png %%DATADIR%%/flags/peru/huanuco.png %%DATADIR%%/flags/peru/ica.png %%DATADIR%%/flags/peru/junin.png %%DATADIR%%/flags/peru/la_libertad.png %%DATADIR%%/flags/peru/lambayeque.png %%DATADIR%%/flags/peru/lima.png %%DATADIR%%/flags/peru/loreto.png %%DATADIR%%/flags/peru/madre_de_dios.png %%DATADIR%%/flags/peru/moquegua.png %%DATADIR%%/flags/peru/pasco.png %%DATADIR%%/flags/peru/piura.png %%DATADIR%%/flags/peru/puno.png %%DATADIR%%/flags/peru/san_martin.png %%DATADIR%%/flags/peru/tacna.png %%DATADIR%%/flags/peru/tumbes.png %%DATADIR%%/flags/peru/ucayali.png %%DATADIR%%/flags/philippines.png %%DATADIR%%/flags/pitcairn_islands.png %%DATADIR%%/flags/poland.png %%DATADIR%%/flags/portugal.png %%DATADIR%%/flags/portugal/aveiro.png %%DATADIR%%/flags/portugal/azores.png %%DATADIR%%/flags/portugal/beja.png %%DATADIR%%/flags/portugal/braga.png %%DATADIR%%/flags/portugal/braganca.png %%DATADIR%%/flags/portugal/castelo_branco.png %%DATADIR%%/flags/portugal/coimbra.png %%DATADIR%%/flags/portugal/evora.png %%DATADIR%%/flags/portugal/faro.png %%DATADIR%%/flags/portugal/guarda.png %%DATADIR%%/flags/portugal/leiria.png %%DATADIR%%/flags/portugal/lisboa.png %%DATADIR%%/flags/portugal/madeira.png %%DATADIR%%/flags/portugal/portalegre.png %%DATADIR%%/flags/portugal/porto.png %%DATADIR%%/flags/portugal/santarem.png %%DATADIR%%/flags/portugal/setubal.png %%DATADIR%%/flags/portugal/viana_do_castelo.png %%DATADIR%%/flags/portugal/vila_real.png %%DATADIR%%/flags/portugal/viseu.png %%DATADIR%%/flags/puerto_rico.png %%DATADIR%%/flags/qatar.png %%DATADIR%%/flags/romania.png %%DATADIR%%/flags/russia.png %%DATADIR%%/flags/russia/adygeya.png %%DATADIR%%/flags/russia/altai_krai.png %%DATADIR%%/flags/russia/altai_republic.png %%DATADIR%%/flags/russia/amur_oblast.png %%DATADIR%%/flags/russia/arkhangelsk_oblast.png %%DATADIR%%/flags/russia/astrakhan_oblast.png %%DATADIR%%/flags/russia/bashkortostan.png %%DATADIR%%/flags/russia/belgorod_oblast.png %%DATADIR%%/flags/russia/bryansk_oblast.png %%DATADIR%%/flags/russia/buryatia.png %%DATADIR%%/flags/russia/chechen_republic.png %%DATADIR%%/flags/russia/chelyabinsk_oblast.png %%DATADIR%%/flags/russia/chukotka.png %%DATADIR%%/flags/russia/chuvashia.png %%DATADIR%%/flags/russia/dagestan.png %%DATADIR%%/flags/russia/ingushetia.png %%DATADIR%%/flags/russia/irkutsk_oblast.png %%DATADIR%%/flags/russia/ivanovo_oblast.png %%DATADIR%%/flags/russia/jewish_autonomous_oblast.png %%DATADIR%%/flags/russia/kabardino-balkaria.png %%DATADIR%%/flags/russia/kaliningrad_oblast.png %%DATADIR%%/flags/russia/kalmykia.png %%DATADIR%%/flags/russia/kaluga_oblast.png %%DATADIR%%/flags/russia/kamchatka_krai.png %%DATADIR%%/flags/russia/karachay-cherkessia.png %%DATADIR%%/flags/russia/karelia.png %%DATADIR%%/flags/russia/kemerovo_oblast.png %%DATADIR%%/flags/russia/khabarovsk_krai.png %%DATADIR%%/flags/russia/khakassia.png %%DATADIR%%/flags/russia/khantia-mansia.png %%DATADIR%%/flags/russia/kirov_oblast.png %%DATADIR%%/flags/russia/komi.png %%DATADIR%%/flags/russia/kostroma_oblast.png %%DATADIR%%/flags/russia/krasnodar_krai.png %%DATADIR%%/flags/russia/krasnoyarsk_krai.png %%DATADIR%%/flags/russia/kurgan_oblast.png %%DATADIR%%/flags/russia/kursk_oblast.png %%DATADIR%%/flags/russia/leningrad_oblast.png %%DATADIR%%/flags/russia/lipetsk_oblast.png %%DATADIR%%/flags/russia/magadan_oblast.png %%DATADIR%%/flags/russia/mari_el.png %%DATADIR%%/flags/russia/mordovia.png %%DATADIR%%/flags/russia/moscow.png %%DATADIR%%/flags/russia/moscow_oblast.png %%DATADIR%%/flags/russia/murmansk_oblast.png %%DATADIR%%/flags/russia/nenets_autonomous_district.png %%DATADIR%%/flags/russia/nizhny_novgorod_oblast.png %%DATADIR%%/flags/russia/north_ossetia.png %%DATADIR%%/flags/russia/novgorod_oblast.png %%DATADIR%%/flags/russia/novosibirsk_oblast.png %%DATADIR%%/flags/russia/omsk_oblast.png %%DATADIR%%/flags/russia/orenburg_oblast.png %%DATADIR%%/flags/russia/oryol_oblast.png %%DATADIR%%/flags/russia/penza_oblast.png %%DATADIR%%/flags/russia/perm_krai.png %%DATADIR%%/flags/russia/primorsky_krai.png %%DATADIR%%/flags/russia/rostov_oblast.png %%DATADIR%%/flags/russia/ryazan_oblast.png %%DATADIR%%/flags/russia/saint_petersburg.png %%DATADIR%%/flags/russia/sakha.png %%DATADIR%%/flags/russia/sakhalin_oblast.png %%DATADIR%%/flags/russia/samara_oblast.png %%DATADIR%%/flags/russia/saratov_oblast.png %%DATADIR%%/flags/russia/smolensk_oblast.png %%DATADIR%%/flags/russia/stavropol_krai.png %%DATADIR%%/flags/russia/sverdlovsk_oblast.png %%DATADIR%%/flags/russia/tambov_oblast.png %%DATADIR%%/flags/russia/tatarstan.png %%DATADIR%%/flags/russia/tomsk_oblast.png %%DATADIR%%/flags/russia/tula_oblast.png %%DATADIR%%/flags/russia/tuva.png %%DATADIR%%/flags/russia/tver_oblast.png %%DATADIR%%/flags/russia/tyumen_oblast.png %%DATADIR%%/flags/russia/udmurtia.png %%DATADIR%%/flags/russia/ulyanovsk_oblast.png %%DATADIR%%/flags/russia/vladimir_oblast.png %%DATADIR%%/flags/russia/volgograd_oblast.png %%DATADIR%%/flags/russia/vologda_oblast.png %%DATADIR%%/flags/russia/voronezh_oblast.png %%DATADIR%%/flags/russia/yamal-nenets_autonomous_district.png %%DATADIR%%/flags/russia/yaroslavl_oblast.png %%DATADIR%%/flags/russia/zabaykalsky_krai.png %%DATADIR%%/flags/rwanda.png %%DATADIR%%/flags/saint_lucia.png %%DATADIR%%/flags/samoa.png %%DATADIR%%/flags/san_marino.png %%DATADIR%%/flags/sao_tome_and_principe.png %%DATADIR%%/flags/saudiarabia.png %%DATADIR%%/flags/senegal.png %%DATADIR%%/flags/serbia.png %%DATADIR%%/flags/seychelles.png %%DATADIR%%/flags/sierra_leone.png %%DATADIR%%/flags/singapore.png %%DATADIR%%/flags/skorea.png %%DATADIR%%/flags/slovakia.png %%DATADIR%%/flags/slovakia/Banskobystricky_vlajka.png %%DATADIR%%/flags/slovakia/Bratislavsky_vlajka.png %%DATADIR%%/flags/slovakia/Kosicky_vlajka.png %%DATADIR%%/flags/slovakia/Nitriansky_vlajka.png %%DATADIR%%/flags/slovakia/Presovsky_vlajka.png %%DATADIR%%/flags/slovakia/Trenciansky_vlajka.png %%DATADIR%%/flags/slovakia/Trnavsky_vlajka.png %%DATADIR%%/flags/slovakia/Zilinsky_vlajka.png %%DATADIR%%/flags/slovenia.png %%DATADIR%%/flags/solomon_islands.png %%DATADIR%%/flags/somalia.png %%DATADIR%%/flags/southafrica.png %%DATADIR%%/flags/southsudan.png %%DATADIR%%/flags/spain.png %%DATADIR%%/flags/spain/andalucia.png %%DATADIR%%/flags/spain/aragon.png %%DATADIR%%/flags/spain/asturias.png %%DATADIR%%/flags/spain/balearic_islands.png %%DATADIR%%/flags/spain/basque_country.png %%DATADIR%%/flags/spain/canary_islands.png %%DATADIR%%/flags/spain/cantabria.png %%DATADIR%%/flags/spain/castilla_la_mancha.png %%DATADIR%%/flags/spain/castilla_y_leon.png %%DATADIR%%/flags/spain/catalonia.png %%DATADIR%%/flags/spain/extremadura.png %%DATADIR%%/flags/spain/galicia.png %%DATADIR%%/flags/spain/la_rioja.png %%DATADIR%%/flags/spain/madrid.png %%DATADIR%%/flags/spain/murcia.png %%DATADIR%%/flags/spain/navarre.png %%DATADIR%%/flags/spain/valencia.png %%DATADIR%%/flags/st_helena.png %%DATADIR%%/flags/st_kitts_and_nevis.png %%DATADIR%%/flags/st_vincent_and_grenadines.png %%DATADIR%%/flags/sudan.png %%DATADIR%%/flags/suriname.png %%DATADIR%%/flags/swaziland.png %%DATADIR%%/flags/sweden.png %%DATADIR%%/flags/switzerland.png %%DATADIR%%/flags/syria.png %%DATADIR%%/flags/taiwan.png %%DATADIR%%/flags/tajikistan.png %%DATADIR%%/flags/tanzania.png %%DATADIR%%/flags/thailand.png %%DATADIR%%/flags/togo.png %%DATADIR%%/flags/tokelau.png %%DATADIR%%/flags/tonga.png %%DATADIR%%/flags/trinidad_tobago.png %%DATADIR%%/flags/tunisia.png %%DATADIR%%/flags/turk_and_caicos_islands.png %%DATADIR%%/flags/turkey.png %%DATADIR%%/flags/turkmenistan.png %%DATADIR%%/flags/tuvalu.png %%DATADIR%%/flags/uae.png %%DATADIR%%/flags/uganda.png %%DATADIR%%/flags/uk.png %%DATADIR%%/flags/ukraine.png %%DATADIR%%/flags/ukraine/Cherkasy.png %%DATADIR%%/flags/ukraine/Chernigiv.png %%DATADIR%%/flags/ukraine/Chernivtsi.png %%DATADIR%%/flags/ukraine/Crimea.png %%DATADIR%%/flags/ukraine/Dnipopetrovsk.png %%DATADIR%%/flags/ukraine/Donetsk.png %%DATADIR%%/flags/ukraine/Ivano-Frankivsk.png %%DATADIR%%/flags/ukraine/Kharkiv.png %%DATADIR%%/flags/ukraine/Kherson.png %%DATADIR%%/flags/ukraine/Khmelnitsky.png %%DATADIR%%/flags/ukraine/Kirovohrad.png %%DATADIR%%/flags/ukraine/Kyiv-city.png %%DATADIR%%/flags/ukraine/Kyiv.png %%DATADIR%%/flags/ukraine/Lugansk.png %%DATADIR%%/flags/ukraine/Lviv.png %%DATADIR%%/flags/ukraine/Mykolayiv.png %%DATADIR%%/flags/ukraine/Odesa.png %%DATADIR%%/flags/ukraine/Poltava.png %%DATADIR%%/flags/ukraine/Rivne.png %%DATADIR%%/flags/ukraine/Sevastopol-city.png %%DATADIR%%/flags/ukraine/Sumi.png %%DATADIR%%/flags/ukraine/Ternopil.png %%DATADIR%%/flags/ukraine/Vinnytsa.png %%DATADIR%%/flags/ukraine/Volyn.png %%DATADIR%%/flags/ukraine/Zakarpatya.png %%DATADIR%%/flags/ukraine/Zaporizhya.png %%DATADIR%%/flags/ukraine/Zhitomir.png %%DATADIR%%/flags/uruguay.png %%DATADIR%%/flags/us_virgin_islands.png %%DATADIR%%/flags/usa.png %%DATADIR%%/flags/usa_alabama.png %%DATADIR%%/flags/usa_alaska.png %%DATADIR%%/flags/usa_arizona.png %%DATADIR%%/flags/usa_arkansas.png %%DATADIR%%/flags/usa_california.png %%DATADIR%%/flags/usa_colorado.png %%DATADIR%%/flags/usa_connecticut.png %%DATADIR%%/flags/usa_delaware.png %%DATADIR%%/flags/usa_district_of_columbia.png %%DATADIR%%/flags/usa_florida.png %%DATADIR%%/flags/usa_georgia.png %%DATADIR%%/flags/usa_hawaii.png %%DATADIR%%/flags/usa_idaho.png %%DATADIR%%/flags/usa_illinois.png %%DATADIR%%/flags/usa_indiana.png %%DATADIR%%/flags/usa_iowa.png %%DATADIR%%/flags/usa_kansas.png %%DATADIR%%/flags/usa_kentucky.png %%DATADIR%%/flags/usa_louisiana.png %%DATADIR%%/flags/usa_maine.png %%DATADIR%%/flags/usa_maryland.png %%DATADIR%%/flags/usa_massachusetts.png %%DATADIR%%/flags/usa_michigan.png %%DATADIR%%/flags/usa_minnesota.png %%DATADIR%%/flags/usa_mississippi.png %%DATADIR%%/flags/usa_missouri.png %%DATADIR%%/flags/usa_montana.png %%DATADIR%%/flags/usa_nebraska.png %%DATADIR%%/flags/usa_nevada.png %%DATADIR%%/flags/usa_new_hampshire.png %%DATADIR%%/flags/usa_new_jersey.png %%DATADIR%%/flags/usa_new_mexico.png %%DATADIR%%/flags/usa_new_york.png %%DATADIR%%/flags/usa_north_carolina.png %%DATADIR%%/flags/usa_north_dakota.png %%DATADIR%%/flags/usa_ohio.png %%DATADIR%%/flags/usa_oklahoma.png %%DATADIR%%/flags/usa_oregon.png %%DATADIR%%/flags/usa_pennsylvania.png %%DATADIR%%/flags/usa_rhode_island.png %%DATADIR%%/flags/usa_south_carolina.png %%DATADIR%%/flags/usa_south_dakota.png %%DATADIR%%/flags/usa_tennessee.png %%DATADIR%%/flags/usa_texas.png %%DATADIR%%/flags/usa_utah.png %%DATADIR%%/flags/usa_vermont.png %%DATADIR%%/flags/usa_virginia.png %%DATADIR%%/flags/usa_washington.png %%DATADIR%%/flags/usa_west_virginia.png %%DATADIR%%/flags/usa_wisconsin.png %%DATADIR%%/flags/usa_wyoming.png %%DATADIR%%/flags/uzbekistan.png %%DATADIR%%/flags/vanuatu.png %%DATADIR%%/flags/venezuela.png %%DATADIR%%/flags/vietnam.png %%DATADIR%%/flags/wallis_and_futuna.png %%DATADIR%%/flags/western_sahara.png %%DATADIR%%/flags/yemen.png %%DATADIR%%/flags/zambia.png %%DATADIR%%/flags/zimbabwe.png %%DATADIR%%/france.kgm %%DATADIR%%/france.png %%DATADIR%%/france_regions.kgm %%DATADIR%%/france_regions.png %%DATADIR%%/georgia.kgm %%DATADIR%%/georgia.png %%DATADIR%%/germany.kgm %%DATADIR%%/germany.png %%DATADIR%%/ghana.kgm %%DATADIR%%/ghana.png %%DATADIR%%/goa.kgm %%DATADIR%%/goa.png %%DATADIR%%/great-britain_counties.kgm %%DATADIR%%/great-britain_counties.png %%DATADIR%%/greece.kgm %%DATADIR%%/greece.png %%DATADIR%%/greece_peripheries.kgm %%DATADIR%%/greece_peripheries.png %%DATADIR%%/greece_prefectures.kgm %%DATADIR%%/greece_prefectures.png %%DATADIR%%/guatemala.kgm %%DATADIR%%/guatemala.png %%DATADIR%%/gujarat.kgm %%DATADIR%%/gujarat.png %%DATADIR%%/guyana.kgm %%DATADIR%%/guyana.png %%DATADIR%%/haiti.kgm %%DATADIR%%/haiti.png %%DATADIR%%/haryana.kgm %%DATADIR%%/haryana.png %%DATADIR%%/himachal_pradesh.kgm %%DATADIR%%/himachal_pradesh.png %%DATADIR%%/honduras.kgm %%DATADIR%%/honduras.png %%DATADIR%%/hungary.kgm %%DATADIR%%/hungary.png %%DATADIR%%/hungary_regions.kgm %%DATADIR%%/hungary_regions.png %%DATADIR%%/iceland_regions.kgm %%DATADIR%%/iceland_regions.png %%DATADIR%%/india.kgm %%DATADIR%%/india.png %%DATADIR%%/indonesia.kgm %%DATADIR%%/indonesia.png %%DATADIR%%/iran.kgm %%DATADIR%%/iran.png %%DATADIR%%/iraq.kgm %%DATADIR%%/iraq.png %%DATADIR%%/ireland_provinces.kgm %%DATADIR%%/ireland_provinces.png %%DATADIR%%/israel.kgm %%DATADIR%%/israel.png %%DATADIR%%/italy.kgm %%DATADIR%%/italy.png %%DATADIR%%/italyprovince.kgm %%DATADIR%%/italyprovince.png %%DATADIR%%/jamaica.kgm %%DATADIR%%/jamaica.png %%DATADIR%%/japan.kgm %%DATADIR%%/japan.png %%DATADIR%%/jharkhand-map.png %%DATADIR%%/jharkhand.kgm %%DATADIR%%/kazakhstan.kgm %%DATADIR%%/kazakhstan.png %%DATADIR%%/kyrgyzstan.kgm %%DATADIR%%/kyrgyzstan.png %%DATADIR%%/latvia.kgm %%DATADIR%%/latvia.png %%DATADIR%%/liechtenstein.kgm %%DATADIR%%/liechtenstein.png %%DATADIR%%/lithuania_municipalities.kgm %%DATADIR%%/lithuania_municipalities.png %%DATADIR%%/luxembourg_cantons.kgm %%DATADIR%%/luxembourg_cantons.png %%DATADIR%%/malaysia.kgm %%DATADIR%%/malaysia.png %%DATADIR%%/manipur.kgm %%DATADIR%%/manipur.png %%DATADIR%%/mexico_states.kgm %%DATADIR%%/mexico_states.png %%DATADIR%%/mongolia.kgm %%DATADIR%%/mongolia.png %%DATADIR%%/ncamerica.kgm %%DATADIR%%/ncamerica.png %%DATADIR%%/nepal_zones.kgm %%DATADIR%%/nepal_zones.png %%DATADIR%%/netherlands.kgm %%DATADIR%%/netherlands.png %%DATADIR%%/new-zealand.kgm %%DATADIR%%/new-zealand.png %%DATADIR%%/nicaragua.kgm %%DATADIR%%/nicaragua.png %%DATADIR%%/north_korea.kgm %%DATADIR%%/north_korea.png %%DATADIR%%/norway.kgm %%DATADIR%%/norway.png %%DATADIR%%/oceania.kgm %%DATADIR%%/oceania.png %%DATADIR%%/oman.kgm %%DATADIR%%/oman.png %%DATADIR%%/pakistan.kgm %%DATADIR%%/pakistan.png %%DATADIR%%/panama.kgm %%DATADIR%%/panama.png %%DATADIR%%/paraguay.kgm %%DATADIR%%/paraguay.png %%DATADIR%%/peru.kgm %%DATADIR%%/peru.png %%DATADIR%%/philippines.kgm %%DATADIR%%/philippines.png %%DATADIR%%/poland.kgm %%DATADIR%%/poland.png %%DATADIR%%/portugal_districts.kgm %%DATADIR%%/portugal_districts.png %%DATADIR%%/portugal_provinces.kgm %%DATADIR%%/portugal_provinces.png %%DATADIR%%/portugal_regions.kgm %%DATADIR%%/portugal_regions.png %%DATADIR%%/puertorico.kgm %%DATADIR%%/puertorico.png %%DATADIR%%/republic_of_ireland.kgm %%DATADIR%%/republic_of_ireland.png %%DATADIR%%/romania.kgm %%DATADIR%%/romania.png %%DATADIR%%/russia_districts.kgm %%DATADIR%%/russia_districts.png %%DATADIR%%/russia_subjects.kgm %%DATADIR%%/russia_subjects.png %%DATADIR%%/san-marino.kgm %%DATADIR%%/san-marino.png %%DATADIR%%/saudi_arabia.kgm %%DATADIR%%/saudi_arabia.png %%DATADIR%%/sikkim.kgm %%DATADIR%%/sikkim.png %%DATADIR%%/slovakia.kgm %%DATADIR%%/slovakia.png %%DATADIR%%/slovenia_traditional.kgm %%DATADIR%%/slovenia_traditional.png %%DATADIR%%/south_africa.kgm %%DATADIR%%/south_africa.png %%DATADIR%%/southamerica.kgm %%DATADIR%%/southamerica.png %%DATADIR%%/southkorea.kgm %%DATADIR%%/southkorea.png %%DATADIR%%/spain.kgm %%DATADIR%%/spain.png %%DATADIR%%/spain_provinces.kgm %%DATADIR%%/spain_provinces.png %%DATADIR%%/sri-lanka.kgm %%DATADIR%%/sri-lanka.png %%DATADIR%%/sudan.kgm %%DATADIR%%/sudan.png %%DATADIR%%/suriname.kgm %%DATADIR%%/suriname.png %%DATADIR%%/sweden.kgm %%DATADIR%%/sweden.png %%DATADIR%%/switzerland.kgm %%DATADIR%%/switzerland.png %%DATADIR%%/tajikistan.kgm %%DATADIR%%/tajikistan.png %%DATADIR%%/tamilnadu.kgm %%DATADIR%%/tamilnadu.png %%DATADIR%%/thailand.kgm %%DATADIR%%/thailand.png %%DATADIR%%/tripura.kgm %%DATADIR%%/tripura.png %%DATADIR%%/turkey.kgm %%DATADIR%%/turkey.png %%DATADIR%%/turkmenistan.kgm %%DATADIR%%/turkmenistan.png %%DATADIR%%/ukraine.kgm %%DATADIR%%/ukraine.png %%DATADIR%%/uruguay.kgm %%DATADIR%%/uruguay.png %%DATADIR%%/usa.kgm %%DATADIR%%/usa.png %%DATADIR%%/uzbekistan.kgm %%DATADIR%%/uzbekistan.png %%DATADIR%%/venezuela.kgm %%DATADIR%%/venezuela.png %%DATADIR%%/vietnam.kgm %%DATADIR%%/vietnam.png %%DATADIR%%/waters_world-class.kgm %%DATADIR%%/waters_world-class.png %%DATADIR%%/westbengal.kgm %%DATADIR%%/westbengal.png %%DATADIR%%/world.kgm %%DATADIR%%/world.png %%DATADIR%%/world_continents.kgm %%DATADIR%%/world_continents.png %%DATADIR%%/yemen.kgm %%DATADIR%%/yemen.png %%DATADIR%%/zaire2006.kgm %%DATADIR%%/zaire2006.png %%DATADIR%%/zambia_districts.kgm %%DATADIR%%/zambia_districts.png %%DATADIR%%/zambia_provinces.kgm %%DATADIR%%/zambia_provinces.png %%DATADIR%%/zimbabwe.kgm %%DATADIR%%/zimbabwe.png %%DATADIR%%/zimbabwe_districts.kgm %%DATADIR%%/zimbabwe_districts.png share/kxmlgui5/kgeography/kgeographyui.rc share/locale/ar/LC_MESSAGES/kgeography.mo +share/locale/be/LC_MESSAGES/kgeography.mo share/locale/bg/LC_MESSAGES/kgeography.mo share/locale/bs/LC_MESSAGES/kgeography.mo share/locale/ca/LC_MESSAGES/kgeography.mo share/locale/ca@valencia/LC_MESSAGES/kgeography.mo share/locale/cs/LC_MESSAGES/kgeography.mo share/locale/da/LC_MESSAGES/kgeography.mo share/locale/de/LC_MESSAGES/kgeography.mo share/locale/el/LC_MESSAGES/kgeography.mo share/locale/en_GB/LC_MESSAGES/kgeography.mo share/locale/eo/LC_MESSAGES/kgeography.mo share/locale/es/LC_MESSAGES/kgeography.mo share/locale/et/LC_MESSAGES/kgeography.mo share/locale/eu/LC_MESSAGES/kgeography.mo share/locale/fa/LC_MESSAGES/kgeography.mo share/locale/fi/LC_MESSAGES/kgeography.mo share/locale/fi/LC_SCRIPTS/kgeography/kgeography.js share/locale/fi/LC_SCRIPTS/kgeography/kgeography.pmap share/locale/fi/LC_SCRIPTS/kgeography/kgeography.pmapc share/locale/fr/LC_MESSAGES/kgeography.mo share/locale/fr/LC_SCRIPTS/kgeography/kgeography.js share/locale/ga/LC_MESSAGES/kgeography.mo share/locale/gl/LC_MESSAGES/kgeography.mo share/locale/he/LC_MESSAGES/kgeography.mo share/locale/hi/LC_MESSAGES/kgeography.mo share/locale/hr/LC_MESSAGES/kgeography.mo share/locale/hu/LC_MESSAGES/kgeography.mo share/locale/is/LC_MESSAGES/kgeography.mo share/locale/it/LC_MESSAGES/kgeography.mo share/locale/ja/LC_MESSAGES/kgeography.mo share/locale/ja/LC_SCRIPTS/kgeography/kgeography.js share/locale/kk/LC_MESSAGES/kgeography.mo share/locale/km/LC_MESSAGES/kgeography.mo share/locale/ko/LC_MESSAGES/kgeography.mo share/locale/lt/LC_MESSAGES/kgeography.mo share/locale/lv/LC_MESSAGES/kgeography.mo share/locale/ml/LC_MESSAGES/kgeography.mo share/locale/ml/LC_SCRIPTS/kgeography/kgeography.js share/locale/mr/LC_MESSAGES/kgeography.mo share/locale/nb/LC_MESSAGES/kgeography.mo share/locale/nds/LC_MESSAGES/kgeography.mo share/locale/nl/LC_MESSAGES/kgeography.mo share/locale/nn/LC_MESSAGES/kgeography.mo share/locale/pa/LC_MESSAGES/kgeography.mo share/locale/pl/LC_MESSAGES/kgeography.mo share/locale/pl/LC_SCRIPTS/kgeography/general.pmap share/locale/pl/LC_SCRIPTS/kgeography/general.pmapc share/locale/pl/LC_SCRIPTS/kgeography/kgeography.js share/locale/pt/LC_MESSAGES/kgeography.mo share/locale/pt_BR/LC_MESSAGES/kgeography.mo share/locale/ro/LC_MESSAGES/kgeography.mo share/locale/ru/LC_MESSAGES/kgeography.mo +share/locale/se/LC_MESSAGES/kgeography.mo share/locale/sk/LC_MESSAGES/kgeography.mo share/locale/sl/LC_MESSAGES/kgeography.mo +share/locale/sq/LC_MESSAGES/kgeography.mo share/locale/sv/LC_MESSAGES/kgeography.mo +share/locale/ta/LC_MESSAGES/kgeography.mo +share/locale/tg/LC_MESSAGES/kgeography.mo share/locale/tr/LC_MESSAGES/kgeography.mo share/locale/ug/LC_MESSAGES/kgeography.mo share/locale/uk/LC_MESSAGES/kgeography.mo share/locale/uk/LC_SCRIPTS/kgeography/general.pmap share/locale/uk/LC_SCRIPTS/kgeography/general.pmapc share/locale/uk/LC_SCRIPTS/kgeography/kgeography.js share/locale/zh_CN/LC_MESSAGES/kgeography.mo share/locale/zh_TW/LC_MESSAGES/kgeography.mo share/metainfo/org.kde.kgeography.appdata.xml diff --git a/misc/klettres/distinfo b/misc/klettres/distinfo index 7375d06d682e..c1e369aca173 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741508 -SHA256 (KDE/release-service/21.04.1/klettres-21.04.1.tar.xz) = 91cefd4b9d4bf78ecf60cd1e009209e4856b802198aaa842d9738e2764ca93f2 -SIZE (KDE/release-service/21.04.1/klettres-21.04.1.tar.xz) = 47130312 +TIMESTAMP = 1623520932 +SHA256 (KDE/release-service/21.04.2/klettres-21.04.2.tar.xz) = 7fa3b9da1231865b1ee2c6b1add67bce044c3c73a85f4d8fc708434d296a71e0 +SIZE (KDE/release-service/21.04.2/klettres-21.04.2.tar.xz) = 47136704 diff --git a/misc/klettres/pkg-plist b/misc/klettres/pkg-plist index e5a3bc768e35..ce4a2b76faab 100644 --- a/misc/klettres/pkg-plist +++ b/misc/klettres/pkg-plist @@ -1,2021 +1,2027 @@ bin/klettres share/applications/org.kde.klettres.desktop share/config.kcfg/klettres.kcfg share/icons/hicolor/128x128/apps/klettres.png 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 %%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-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-2.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-3.ogg %%DATADIR%%/cs/alpha/a-30.ogg %%DATADIR%%/cs/alpha/a-31.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/sounds.xml %%DATADIR%%/cs/syllab/ad-0.ogg %%DATADIR%%/cs/syllab/ad-1.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%%/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%%/da.txt %%DATADIR%%/da/alpha/a-0.ogg %%DATADIR%%/da/alpha/a-1.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-2.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/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/sounds.xml %%DATADIR%%/da/syllab/ad-0.ogg %%DATADIR%%/da/syllab/ad-1.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-2.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%%/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%%/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-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-2.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/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/sounds.xml %%DATADIR%%/fr/syllab/ad-0.ogg %%DATADIR%%/fr/syllab/ad-1.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-2.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%%/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%%/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/128x128/actions/klettres_desert.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_grownup.png %%DATADIR%%/icons/hicolor/128x128/actions/klettres_kids.png %%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%%/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/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/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-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-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%%/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 1b032c41bec7..7a240b0254d3 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741509 -SHA256 (KDE/release-service/21.04.1/ktouch-21.04.1.tar.xz) = 2286f88caa668512322d5d72f2211c6c474c909089c238113c866b73f08ed8d5 -SIZE (KDE/release-service/21.04.1/ktouch-21.04.1.tar.xz) = 4945700 +TIMESTAMP = 1623520934 +SHA256 (KDE/release-service/21.04.2/ktouch-21.04.2.tar.xz) = 4f72d8d1591bf9287addcc511c8662b38ec5ada5c7b95520b7cf272d68240fa0 +SIZE (KDE/release-service/21.04.2/ktouch-21.04.2.tar.xz) = 4961916 diff --git a/misc/ktouch/pkg-plist b/misc/ktouch/pkg-plist index e8fb3e8bb41e..f339ce56b640 100644 --- a/misc/ktouch/pkg-plist +++ b/misc/ktouch/pkg-plist @@ -1,169 +1,175 @@ bin/ktouch man/ca/man1/ktouch.1.gz man/de/man1/ktouch.1.gz man/es/man1/ktouch.1.gz man/et/man1/ktouch.1.gz man/fr/man1/ktouch.1.gz man/gl/man1/ktouch.1.gz man/it/man1/ktouch.1.gz man/man1/ktouch.1.gz man/nl/man1/ktouch.1.gz man/pl/man1/ktouch.1.gz man/pt/man1/ktouch.1.gz man/pt_BR/man1/ktouch.1.gz man/sv/man1/ktouch.1.gz man/uk/man1/ktouch.1.gz share/applications/org.kde.ktouch.desktop share/config.kcfg/ktouch.kcfg share/icons/hicolor/128x128/apps/ktouch.png share/icons/hicolor/16x16/apps/ktouch.png share/icons/hicolor/22x22/apps/ktouch.png share/icons/hicolor/32x32/apps/ktouch.png share/icons/hicolor/48x48/apps/ktouch.png share/icons/hicolor/scalable/apps/ktouch.svgz %%DATADIR%%/courses/ara.xml %%DATADIR%%/courses/bg1.xml %%DATADIR%%/courses/bg2.xml %%DATADIR%%/courses/br.xml %%DATADIR%%/courses/cat.xml %%DATADIR%%/courses/ch1.xml %%DATADIR%%/courses/ch2.xml %%DATADIR%%/courses/cz.xml %%DATADIR%%/courses/de.dvorak.xml %%DATADIR%%/courses/de.neo.xml %%DATADIR%%/courses/de1.xml %%DATADIR%%/courses/de2.xml %%DATADIR%%/courses/dk1.xml %%DATADIR%%/courses/es.dvorak.xml %%DATADIR%%/courses/es1.xml %%DATADIR%%/courses/es2.xml %%DATADIR%%/courses/es3.xml %%DATADIR%%/courses/es4.xml %%DATADIR%%/courses/fi.xml %%DATADIR%%/courses/fr.bepo.xml %%DATADIR%%/courses/fr.dvarok.xml %%DATADIR%%/courses/fr.xml %%DATADIR%%/courses/gb.xml %%DATADIR%%/courses/gr.xml %%DATADIR%%/courses/ir.xml %%DATADIR%%/courses/it.xml %%DATADIR%%/courses/it2.xml %%DATADIR%%/courses/lt.std.xml %%DATADIR%%/courses/nl1.xml %%DATADIR%%/courses/nl2.xml %%DATADIR%%/courses/no.xml %%DATADIR%%/courses/pl.xml %%DATADIR%%/courses/ru.legacy.xml %%DATADIR%%/courses/ru1.xml %%DATADIR%%/courses/ru2.xml %%DATADIR%%/courses/si.xml %%DATADIR%%/courses/sk.xml %%DATADIR%%/courses/tr.xml %%DATADIR%%/courses/ua.xml %%DATADIR%%/courses/us.colemak.xml %%DATADIR%%/courses/us.dvorak1.xml %%DATADIR%%/courses/us.dvorak2.xml %%DATADIR%%/courses/us.workman.xml %%DATADIR%%/courses/us.xml %%DATADIR%%/data.xml %%DATADIR%%/keyboardlayouts/ara.xml %%DATADIR%%/keyboardlayouts/be.xml %%DATADIR%%/keyboardlayouts/bg.xml %%DATADIR%%/keyboardlayouts/br.xml %%DATADIR%%/keyboardlayouts/ch.fr.xml %%DATADIR%%/keyboardlayouts/ch.xml %%DATADIR%%/keyboardlayouts/cz.qwerty.xml %%DATADIR%%/keyboardlayouts/cz.xml %%DATADIR%%/keyboardlayouts/de.dvorak.xml %%DATADIR%%/keyboardlayouts/de.neo2.xml %%DATADIR%%/keyboardlayouts/de.xml %%DATADIR%%/keyboardlayouts/dk.xml %%DATADIR%%/keyboardlayouts/ee.xml %%DATADIR%%/keyboardlayouts/es.dvorak.xml %%DATADIR%%/keyboardlayouts/es.xml %%DATADIR%%/keyboardlayouts/fi.xml %%DATADIR%%/keyboardlayouts/fr.bepo.xml %%DATADIR%%/keyboardlayouts/fr.dvorak.xml %%DATADIR%%/keyboardlayouts/fr.xml %%DATADIR%%/keyboardlayouts/gb.dvorak.xml %%DATADIR%%/keyboardlayouts/gb.xml %%DATADIR%%/keyboardlayouts/hu.xml %%DATADIR%%/keyboardlayouts/il.xml %%DATADIR%%/keyboardlayouts/in.kan.xml %%DATADIR%%/keyboardlayouts/in.tam_unicode.xml %%DATADIR%%/keyboardlayouts/ir.xml %%DATADIR%%/keyboardlayouts/it.xml %%DATADIR%%/keyboardlayouts/jp.xml %%DATADIR%%/keyboardlayouts/latam.xml %%DATADIR%%/keyboardlayouts/lt.std.xml %%DATADIR%%/keyboardlayouts/mn.xml %%DATADIR%%/keyboardlayouts/nl.xml %%DATADIR%%/keyboardlayouts/no.xml %%DATADIR%%/keyboardlayouts/pt.xml %%DATADIR%%/keyboardlayouts/ru.legacy.xml %%DATADIR%%/keyboardlayouts/ru.xml %%DATADIR%%/keyboardlayouts/se.xml %%DATADIR%%/keyboardlayouts/si.xml %%DATADIR%%/keyboardlayouts/sk.qwerty.xml %%DATADIR%%/keyboardlayouts/sk.xml %%DATADIR%%/keyboardlayouts/tr.f.xml %%DATADIR%%/keyboardlayouts/tr.xml %%DATADIR%%/keyboardlayouts/ua.xml %%DATADIR%%/keyboardlayouts/us.colemak.xml %%DATADIR%%/keyboardlayouts/us.dvorak.xml %%DATADIR%%/keyboardlayouts/us.workman.xml %%DATADIR%%/keyboardlayouts/us.xml %%DATADIR%%/schemata/course.xsd %%DATADIR%%/schemata/data.xsd %%DATADIR%%/schemata/keyboardlayout.xsd share/locale/ar/LC_MESSAGES/ktouch.mo share/locale/bg/LC_MESSAGES/ktouch.mo share/locale/bs/LC_MESSAGES/ktouch.mo share/locale/ca/LC_MESSAGES/ktouch.mo +share/locale/be/LC_MESSAGES/ktouch.mo share/locale/ca@valencia/LC_MESSAGES/ktouch.mo share/locale/cs/LC_MESSAGES/ktouch.mo share/locale/da/LC_MESSAGES/ktouch.mo share/locale/de/LC_MESSAGES/ktouch.mo share/locale/el/LC_MESSAGES/ktouch.mo share/locale/en_GB/LC_MESSAGES/ktouch.mo share/locale/eo/LC_MESSAGES/ktouch.mo share/locale/es/LC_MESSAGES/ktouch.mo share/locale/et/LC_MESSAGES/ktouch.mo share/locale/eu/LC_MESSAGES/ktouch.mo share/locale/fa/LC_MESSAGES/ktouch.mo share/locale/fi/LC_MESSAGES/ktouch.mo share/locale/fr/LC_MESSAGES/ktouch.mo share/locale/ga/LC_MESSAGES/ktouch.mo share/locale/gl/LC_MESSAGES/ktouch.mo share/locale/he/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktouch.mo share/locale/hr/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktouch.mo share/locale/is/LC_MESSAGES/ktouch.mo share/locale/it/LC_MESSAGES/ktouch.mo share/locale/ja/LC_MESSAGES/ktouch.mo share/locale/kk/LC_MESSAGES/ktouch.mo share/locale/km/LC_MESSAGES/ktouch.mo +share/locale/ko/LC_MESSAGES/ktouch.mo share/locale/lt/LC_MESSAGES/ktouch.mo share/locale/lv/LC_MESSAGES/ktouch.mo share/locale/ml/LC_MESSAGES/ktouch.mo share/locale/mr/LC_MESSAGES/ktouch.mo share/locale/nb/LC_MESSAGES/ktouch.mo share/locale/nds/LC_MESSAGES/ktouch.mo share/locale/nl/LC_MESSAGES/ktouch.mo share/locale/nn/LC_MESSAGES/ktouch.mo share/locale/pa/LC_MESSAGES/ktouch.mo share/locale/pl/LC_MESSAGES/ktouch.mo share/locale/pt/LC_MESSAGES/ktouch.mo share/locale/pt_BR/LC_MESSAGES/ktouch.mo share/locale/ro/LC_MESSAGES/ktouch.mo share/locale/ru/LC_MESSAGES/ktouch.mo +share/locale/se/LC_MESSAGES/ktouch.mo share/locale/sk/LC_MESSAGES/ktouch.mo share/locale/sl/LC_MESSAGES/ktouch.mo +share/locale/sq/LC_MESSAGES/ktouch.mo share/locale/sv/LC_MESSAGES/ktouch.mo +share/locale/ta/LC_MESSAGES/ktouch.mo +share/locale/tg/LC_MESSAGES/ktouch.mo share/locale/tr/LC_MESSAGES/ktouch.mo share/locale/ug/LC_MESSAGES/ktouch.mo share/locale/uk/LC_MESSAGES/ktouch.mo share/locale/zh_CN/LC_MESSAGES/ktouch.mo share/locale/zh_TW/LC_MESSAGES/ktouch.mo share/metainfo/org.kde.ktouch.appdata.xml diff --git a/misc/kwordquiz/distinfo b/misc/kwordquiz/distinfo index 04d3d5bcc0cb..e8fdb4286f55 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741510 -SHA256 (KDE/release-service/21.04.1/kwordquiz-21.04.1.tar.xz) = 7b38afdcaf5ff0e42a67c019e231e7a840d50ce47cf36ebf30300cd4d8b281aa -SIZE (KDE/release-service/21.04.1/kwordquiz-21.04.1.tar.xz) = 4189588 +TIMESTAMP = 1623520936 +SHA256 (KDE/release-service/21.04.2/kwordquiz-21.04.2.tar.xz) = 04716a2f7f211d5244d050f3f56993088f9be15ecb0f8fc389bb19150e259c75 +SIZE (KDE/release-service/21.04.2/kwordquiz-21.04.2.tar.xz) = 4208080 diff --git a/misc/kwordquiz/pkg-plist b/misc/kwordquiz/pkg-plist index e2a63d744d29..52c7ee77978e 100644 --- a/misc/kwordquiz/pkg-plist +++ b/misc/kwordquiz/pkg-plist @@ -1,220 +1,225 @@ bin/kwordquiz share/applications/org.kde.kwordquiz.desktop share/config.kcfg/kwordquiz.kcfg share/icons/hicolor/128x128/apps/kwordquiz.png share/icons/hicolor/128x128/mimetypes/application-x-kwordquiz.png share/icons/hicolor/16x16/apps/kwordquiz.png share/icons/hicolor/16x16/mimetypes/application-x-kwordquiz.png share/icons/hicolor/22x22/apps/kwordquiz.png share/icons/hicolor/22x22/mimetypes/application-x-kwordquiz.png share/icons/hicolor/32x32/apps/kwordquiz.png share/icons/hicolor/32x32/mimetypes/application-x-kwordquiz.png share/icons/hicolor/48x48/apps/kwordquiz.png share/icons/hicolor/48x48/mimetypes/application-x-kwordquiz.png share/icons/hicolor/64x64/apps/kwordquiz.png share/knotifications5/kwordquiz.notifyrc share/knsrcfiles/kwordquiz.knsrc %%DATADIR%%/examples/example.kvtml %%DATADIR%%/examples/fill_in_the_blank.kvtml %%DATADIR%%/examples/french_verbs.kvtml %%DATADIR%%/examples/us_states_and_capitals.kvtml %%DATADIR%%/icons/hicolor/128x128/actions/answer-correct.png %%DATADIR%%/icons/hicolor/128x128/actions/answer.png %%DATADIR%%/icons/hicolor/128x128/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/editor.png %%DATADIR%%/icons/hicolor/128x128/actions/error.png %%DATADIR%%/icons/hicolor/128x128/actions/flash.png %%DATADIR%%/icons/hicolor/128x128/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/128x128/actions/languages.png %%DATADIR%%/icons/hicolor/128x128/actions/mode1.png %%DATADIR%%/icons/hicolor/128x128/actions/mode2.png %%DATADIR%%/icons/hicolor/128x128/actions/mode3.png %%DATADIR%%/icons/hicolor/128x128/actions/mode4.png %%DATADIR%%/icons/hicolor/128x128/actions/mode5.png %%DATADIR%%/icons/hicolor/128x128/actions/multiple.png %%DATADIR%%/icons/hicolor/128x128/actions/qa.png %%DATADIR%%/icons/hicolor/128x128/actions/question.png %%DATADIR%%/icons/hicolor/128x128/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/answer-correct.png %%DATADIR%%/icons/hicolor/16x16/actions/answer.png %%DATADIR%%/icons/hicolor/16x16/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/dontknow.png %%DATADIR%%/icons/hicolor/16x16/actions/editor.png %%DATADIR%%/icons/hicolor/16x16/actions/error.png %%DATADIR%%/icons/hicolor/16x16/actions/flash.png %%DATADIR%%/icons/hicolor/16x16/actions/hint.png %%DATADIR%%/icons/hicolor/16x16/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/16x16/actions/know.png %%DATADIR%%/icons/hicolor/16x16/actions/languages.png %%DATADIR%%/icons/hicolor/16x16/actions/markasblank.png %%DATADIR%%/icons/hicolor/16x16/actions/mode1.png %%DATADIR%%/icons/hicolor/16x16/actions/mode2.png %%DATADIR%%/icons/hicolor/16x16/actions/mode3.png %%DATADIR%%/icons/hicolor/16x16/actions/mode4.png %%DATADIR%%/icons/hicolor/16x16/actions/mode5.png %%DATADIR%%/icons/hicolor/16x16/actions/multiple.png %%DATADIR%%/icons/hicolor/16x16/actions/qa.png %%DATADIR%%/icons/hicolor/16x16/actions/question.png %%DATADIR%%/icons/hicolor/16x16/actions/repeat.png %%DATADIR%%/icons/hicolor/16x16/actions/rowcol.png %%DATADIR%%/icons/hicolor/16x16/actions/shuffle.png %%DATADIR%%/icons/hicolor/16x16/actions/sort_incr.png %%DATADIR%%/icons/hicolor/16x16/actions/start-over.png %%DATADIR%%/icons/hicolor/16x16/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/answer-correct.png %%DATADIR%%/icons/hicolor/22x22/actions/answer.png %%DATADIR%%/icons/hicolor/22x22/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/dontknow.png %%DATADIR%%/icons/hicolor/22x22/actions/editor.png %%DATADIR%%/icons/hicolor/22x22/actions/error.png %%DATADIR%%/icons/hicolor/22x22/actions/flash.png %%DATADIR%%/icons/hicolor/22x22/actions/hint.png %%DATADIR%%/icons/hicolor/22x22/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/22x22/actions/know.png %%DATADIR%%/icons/hicolor/22x22/actions/languages.png %%DATADIR%%/icons/hicolor/22x22/actions/markasblank.png %%DATADIR%%/icons/hicolor/22x22/actions/mode1.png %%DATADIR%%/icons/hicolor/22x22/actions/mode2.png %%DATADIR%%/icons/hicolor/22x22/actions/mode3.png %%DATADIR%%/icons/hicolor/22x22/actions/mode4.png %%DATADIR%%/icons/hicolor/22x22/actions/mode5.png %%DATADIR%%/icons/hicolor/22x22/actions/multiple.png %%DATADIR%%/icons/hicolor/22x22/actions/qa.png %%DATADIR%%/icons/hicolor/22x22/actions/question.png %%DATADIR%%/icons/hicolor/22x22/actions/repeat.png %%DATADIR%%/icons/hicolor/22x22/actions/rowcol.png %%DATADIR%%/icons/hicolor/22x22/actions/shuffle.png %%DATADIR%%/icons/hicolor/22x22/actions/sort_incr.png %%DATADIR%%/icons/hicolor/22x22/actions/start-over.png %%DATADIR%%/icons/hicolor/22x22/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/answer-correct.png %%DATADIR%%/icons/hicolor/32x32/actions/answer.png %%DATADIR%%/icons/hicolor/32x32/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/dontknow.png %%DATADIR%%/icons/hicolor/32x32/actions/editor.png %%DATADIR%%/icons/hicolor/32x32/actions/error.png %%DATADIR%%/icons/hicolor/32x32/actions/flash.png %%DATADIR%%/icons/hicolor/32x32/actions/hint.png %%DATADIR%%/icons/hicolor/32x32/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/32x32/actions/know.png %%DATADIR%%/icons/hicolor/32x32/actions/languages.png %%DATADIR%%/icons/hicolor/32x32/actions/markasblank.png %%DATADIR%%/icons/hicolor/32x32/actions/mode1.png %%DATADIR%%/icons/hicolor/32x32/actions/mode2.png %%DATADIR%%/icons/hicolor/32x32/actions/mode3.png %%DATADIR%%/icons/hicolor/32x32/actions/mode4.png %%DATADIR%%/icons/hicolor/32x32/actions/mode5.png %%DATADIR%%/icons/hicolor/32x32/actions/multiple.png %%DATADIR%%/icons/hicolor/32x32/actions/qa.png %%DATADIR%%/icons/hicolor/32x32/actions/question.png %%DATADIR%%/icons/hicolor/32x32/actions/question_mark.png %%DATADIR%%/icons/hicolor/32x32/actions/repeat.png %%DATADIR%%/icons/hicolor/32x32/actions/rowcol.png %%DATADIR%%/icons/hicolor/32x32/actions/shuffle.png %%DATADIR%%/icons/hicolor/32x32/actions/sort_incr.png %%DATADIR%%/icons/hicolor/32x32/actions/start-over.png %%DATADIR%%/icons/hicolor/32x32/actions/unmarkasblank.png %%DATADIR%%/icons/hicolor/48x48/actions/answer-correct.png %%DATADIR%%/icons/hicolor/48x48/actions/answer.png %%DATADIR%%/icons/hicolor/48x48/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/editor.png %%DATADIR%%/icons/hicolor/48x48/actions/error.png %%DATADIR%%/icons/hicolor/48x48/actions/flash.png %%DATADIR%%/icons/hicolor/48x48/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/48x48/actions/languages.png %%DATADIR%%/icons/hicolor/48x48/actions/mode1.png %%DATADIR%%/icons/hicolor/48x48/actions/mode2.png %%DATADIR%%/icons/hicolor/48x48/actions/mode3.png %%DATADIR%%/icons/hicolor/48x48/actions/mode4.png %%DATADIR%%/icons/hicolor/48x48/actions/mode5.png %%DATADIR%%/icons/hicolor/48x48/actions/multiple.png %%DATADIR%%/icons/hicolor/48x48/actions/qa.png %%DATADIR%%/icons/hicolor/48x48/actions/question.png %%DATADIR%%/icons/hicolor/48x48/actions/rowcol.png %%DATADIR%%/icons/hicolor/64x64/actions/answer-correct.png %%DATADIR%%/icons/hicolor/64x64/actions/answer.png %%DATADIR%%/icons/hicolor/64x64/actions/delete-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/editor.png %%DATADIR%%/icons/hicolor/64x64/actions/error.png %%DATADIR%%/icons/hicolor/64x64/actions/flash.png %%DATADIR%%/icons/hicolor/64x64/actions/insert-table-row.png %%DATADIR%%/icons/hicolor/64x64/actions/languages.png %%DATADIR%%/icons/hicolor/64x64/actions/mode1.png %%DATADIR%%/icons/hicolor/64x64/actions/mode2.png %%DATADIR%%/icons/hicolor/64x64/actions/mode3.png %%DATADIR%%/icons/hicolor/64x64/actions/mode4.png %%DATADIR%%/icons/hicolor/64x64/actions/mode5.png %%DATADIR%%/icons/hicolor/64x64/actions/multiple.png %%DATADIR%%/icons/hicolor/64x64/actions/qa.png %%DATADIR%%/icons/hicolor/64x64/actions/question.png %%DATADIR%%/icons/hicolor/64x64/actions/rowcol.png %%DATADIR%%/icons/hicolor/scalable/actions/answer-correct.svgz %%DATADIR%%/icons/hicolor/scalable/actions/answer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/delete-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/editor.svgz %%DATADIR%%/icons/hicolor/scalable/actions/error.svgz %%DATADIR%%/icons/hicolor/scalable/actions/flash.svgz %%DATADIR%%/icons/hicolor/scalable/actions/insert-table-row.svgz %%DATADIR%%/icons/hicolor/scalable/actions/languages.svgz %%DATADIR%%/icons/hicolor/scalable/actions/markasblank.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode1.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode2.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode3.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode4.svgz %%DATADIR%%/icons/hicolor/scalable/actions/mode5.svgz %%DATADIR%%/icons/hicolor/scalable/actions/multiple.svgz %%DATADIR%%/icons/hicolor/scalable/actions/qa.svgz %%DATADIR%%/icons/hicolor/scalable/actions/question.svgz %%DATADIR%%/icons/hicolor/scalable/actions/unmarkasblank.svgz share/kxmlgui5/kwordquiz/kwordquizui.rc share/locale/ar/LC_MESSAGES/kwordquiz.mo +share/locale/be/LC_MESSAGES/kwordquiz.mo share/locale/bg/LC_MESSAGES/kwordquiz.mo share/locale/bs/LC_MESSAGES/kwordquiz.mo share/locale/ca/LC_MESSAGES/kwordquiz.mo share/locale/ca@valencia/LC_MESSAGES/kwordquiz.mo share/locale/cs/LC_MESSAGES/kwordquiz.mo share/locale/da/LC_MESSAGES/kwordquiz.mo share/locale/de/LC_MESSAGES/kwordquiz.mo share/locale/el/LC_MESSAGES/kwordquiz.mo share/locale/en_GB/LC_MESSAGES/kwordquiz.mo share/locale/eo/LC_MESSAGES/kwordquiz.mo share/locale/es/LC_MESSAGES/kwordquiz.mo share/locale/et/LC_MESSAGES/kwordquiz.mo share/locale/eu/LC_MESSAGES/kwordquiz.mo share/locale/fa/LC_MESSAGES/kwordquiz.mo share/locale/fi/LC_MESSAGES/kwordquiz.mo share/locale/fr/LC_MESSAGES/kwordquiz.mo share/locale/ga/LC_MESSAGES/kwordquiz.mo share/locale/gl/LC_MESSAGES/kwordquiz.mo share/locale/hi/LC_MESSAGES/kwordquiz.mo share/locale/hr/LC_MESSAGES/kwordquiz.mo share/locale/hu/LC_MESSAGES/kwordquiz.mo share/locale/ia/LC_MESSAGES/kwordquiz.mo share/locale/it/LC_MESSAGES/kwordquiz.mo share/locale/ja/LC_MESSAGES/kwordquiz.mo share/locale/kk/LC_MESSAGES/kwordquiz.mo share/locale/km/LC_MESSAGES/kwordquiz.mo share/locale/ko/LC_MESSAGES/kwordquiz.mo share/locale/lt/LC_MESSAGES/kwordquiz.mo share/locale/lv/LC_MESSAGES/kwordquiz.mo share/locale/ml/LC_MESSAGES/kwordquiz.mo share/locale/mr/LC_MESSAGES/kwordquiz.mo share/locale/nb/LC_MESSAGES/kwordquiz.mo share/locale/nds/LC_MESSAGES/kwordquiz.mo share/locale/nl/LC_MESSAGES/kwordquiz.mo share/locale/nn/LC_MESSAGES/kwordquiz.mo share/locale/pa/LC_MESSAGES/kwordquiz.mo share/locale/pl/LC_MESSAGES/kwordquiz.mo share/locale/pt/LC_MESSAGES/kwordquiz.mo share/locale/pt_BR/LC_MESSAGES/kwordquiz.mo share/locale/ro/LC_MESSAGES/kwordquiz.mo share/locale/ru/LC_MESSAGES/kwordquiz.mo +share/locale/se/LC_MESSAGES/kwordquiz.mo share/locale/sk/LC_MESSAGES/kwordquiz.mo share/locale/sl/LC_MESSAGES/kwordquiz.mo +share/locale/sq/LC_MESSAGES/kwordquiz.mo share/locale/sv/LC_MESSAGES/kwordquiz.mo +share/locale/ta/LC_MESSAGES/kwordquiz.mo +share/locale/tg/LC_MESSAGES/kwordquiz.mo share/locale/tr/LC_MESSAGES/kwordquiz.mo share/locale/ug/LC_MESSAGES/kwordquiz.mo share/locale/uk/LC_MESSAGES/kwordquiz.mo share/locale/zh_CN/LC_MESSAGES/kwordquiz.mo share/locale/zh_TW/LC_MESSAGES/kwordquiz.mo share/metainfo/org.kde.kwordquiz.appdata.xml diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 9faa045734bb..ff5c05fac1e6 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741510 -SHA256 (KDE/release-service/21.04.1/libkeduvocdocument-21.04.1.tar.xz) = 5bb7318dbea9783cb14fa0c9c85c6034da4efa9ebdb6cd0a20c159ba56f31034 -SIZE (KDE/release-service/21.04.1/libkeduvocdocument-21.04.1.tar.xz) = 211336 +TIMESTAMP = 1623520938 +SHA256 (KDE/release-service/21.04.2/libkeduvocdocument-21.04.2.tar.xz) = 3f1334e11c9546a4ec15f80c9903e0b2cde0f8b28004dfb1111dc6e61ec51c09 +SIZE (KDE/release-service/21.04.2/libkeduvocdocument-21.04.2.tar.xz) = 217396 diff --git a/misc/libkeduvocdocument/pkg-plist b/misc/libkeduvocdocument/pkg-plist index 5b93d31d3c16..857d49ee3bce 100644 --- a/misc/libkeduvocdocument/pkg-plist +++ b/misc/libkeduvocdocument/pkg-plist @@ -1,91 +1,98 @@ include/libkeduvocdocument/KEduVocArticle include/libkeduvocdocument/KEduVocConjugation include/libkeduvocdocument/KEduVocContainer include/libkeduvocdocument/KEduVocDeclension include/libkeduvocdocument/KEduVocDocument include/libkeduvocdocument/KEduVocExpression include/libkeduvocdocument/KEduVocIdentifier include/libkeduvocdocument/KEduVocKVTML2Writer include/libkeduvocdocument/KEduVocLeitnerBox include/libkeduvocdocument/KEduVocLesson include/libkeduvocdocument/KEduVocMultipleChoice include/libkeduvocdocument/KEduVocPersonalPronoun include/libkeduvocdocument/KEduVocText include/libkeduvocdocument/KEduVocTranslation include/libkeduvocdocument/KEduVocWordFlags include/libkeduvocdocument/KEduVocWordtype include/libkeduvocdocument/SharedKVTMLFiles include/libkeduvocdocument/keduvocarticle.h include/libkeduvocdocument/keduvocconjugation.h include/libkeduvocdocument/keduvoccontainer.h include/libkeduvocdocument/keduvocdeclension.h include/libkeduvocdocument/keduvocdocument.h include/libkeduvocdocument/keduvocdocument_export.h include/libkeduvocdocument/keduvocexpression.h include/libkeduvocdocument/keduvocidentifier.h include/libkeduvocdocument/keduvockvtml2writer.h include/libkeduvocdocument/keduvocleitnerbox.h include/libkeduvocdocument/keduvoclesson.h include/libkeduvocdocument/keduvocmultiplechoice.h include/libkeduvocdocument/keduvocpersonalpronoun.h include/libkeduvocdocument/keduvoctext.h include/libkeduvocdocument/keduvoctranslation.h include/libkeduvocdocument/keduvocwordflags.h include/libkeduvocdocument/keduvocwordtype.h include/libkeduvocdocument/sharedkvtmlfiles.h lib/cmake/libkeduvocdocument/LibKEduVocDocumentConfig.cmake lib/cmake/libkeduvocdocument/LibKEduVocDocumentTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/libkeduvocdocument/LibKEduVocDocumentTargets.cmake lib/libKEduVocDocument.so lib/libKEduVocDocument.so.5 lib/libKEduVocDocument.so.5.0.0 share/locale/ar/LC_MESSAGES/libkeduvocdocument.mo +share/locale/az/LC_MESSAGES/libkeduvocdocument.mo +share/locale/be/LC_MESSAGES/libkeduvocdocument.mo share/locale/bg/LC_MESSAGES/libkeduvocdocument.mo share/locale/bs/LC_MESSAGES/libkeduvocdocument.mo share/locale/ca/LC_MESSAGES/libkeduvocdocument.mo share/locale/ca@valencia/LC_MESSAGES/libkeduvocdocument.mo share/locale/cs/LC_MESSAGES/libkeduvocdocument.mo share/locale/da/LC_MESSAGES/libkeduvocdocument.mo share/locale/de/LC_MESSAGES/libkeduvocdocument.mo share/locale/el/LC_MESSAGES/libkeduvocdocument.mo share/locale/en_GB/LC_MESSAGES/libkeduvocdocument.mo share/locale/eo/LC_MESSAGES/libkeduvocdocument.mo share/locale/es/LC_MESSAGES/libkeduvocdocument.mo share/locale/et/LC_MESSAGES/libkeduvocdocument.mo share/locale/eu/LC_MESSAGES/libkeduvocdocument.mo share/locale/fa/LC_MESSAGES/libkeduvocdocument.mo share/locale/fi/LC_MESSAGES/libkeduvocdocument.mo share/locale/fr/LC_MESSAGES/libkeduvocdocument.mo share/locale/ga/LC_MESSAGES/libkeduvocdocument.mo share/locale/gl/LC_MESSAGES/libkeduvocdocument.mo share/locale/he/LC_MESSAGES/libkeduvocdocument.mo share/locale/hi/LC_MESSAGES/libkeduvocdocument.mo share/locale/hr/LC_MESSAGES/libkeduvocdocument.mo share/locale/hu/LC_MESSAGES/libkeduvocdocument.mo share/locale/is/LC_MESSAGES/libkeduvocdocument.mo share/locale/it/LC_MESSAGES/libkeduvocdocument.mo share/locale/ja/LC_MESSAGES/libkeduvocdocument.mo share/locale/kk/LC_MESSAGES/libkeduvocdocument.mo share/locale/km/LC_MESSAGES/libkeduvocdocument.mo +share/locale/ko/LC_MESSAGES/libkeduvocdocument.mo share/locale/lt/LC_MESSAGES/libkeduvocdocument.mo share/locale/lv/LC_MESSAGES/libkeduvocdocument.mo share/locale/ml/LC_MESSAGES/libkeduvocdocument.mo share/locale/mr/LC_MESSAGES/libkeduvocdocument.mo share/locale/nb/LC_MESSAGES/libkeduvocdocument.mo share/locale/nds/LC_MESSAGES/libkeduvocdocument.mo share/locale/nl/LC_MESSAGES/libkeduvocdocument.mo share/locale/nn/LC_MESSAGES/libkeduvocdocument.mo share/locale/pa/LC_MESSAGES/libkeduvocdocument.mo share/locale/pl/LC_MESSAGES/libkeduvocdocument.mo share/locale/pt/LC_MESSAGES/libkeduvocdocument.mo share/locale/pt_BR/LC_MESSAGES/libkeduvocdocument.mo share/locale/ro/LC_MESSAGES/libkeduvocdocument.mo share/locale/ru/LC_MESSAGES/libkeduvocdocument.mo +share/locale/se/LC_MESSAGES/libkeduvocdocument.mo share/locale/sk/LC_MESSAGES/libkeduvocdocument.mo share/locale/sl/LC_MESSAGES/libkeduvocdocument.mo +share/locale/sq/LC_MESSAGES/libkeduvocdocument.mo share/locale/sv/LC_MESSAGES/libkeduvocdocument.mo +share/locale/tg/LC_MESSAGES/libkeduvocdocument.mo share/locale/tr/LC_MESSAGES/libkeduvocdocument.mo share/locale/ug/LC_MESSAGES/libkeduvocdocument.mo share/locale/uk/LC_MESSAGES/libkeduvocdocument.mo +share/locale/vi/LC_MESSAGES/libkeduvocdocument.mo share/locale/zh_CN/LC_MESSAGES/libkeduvocdocument.mo share/locale/zh_TW/LC_MESSAGES/libkeduvocdocument.mo diff --git a/misc/parley/distinfo b/misc/parley/distinfo index c43f35cbbda5..1ad80dcb2a8e 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741511 -SHA256 (KDE/release-service/21.04.1/parley-21.04.1.tar.xz) = e6f234d4ad3c4265626f423fa14c8bc4522241065ccbcd8b9d31dc35e4d847d9 -SIZE (KDE/release-service/21.04.1/parley-21.04.1.tar.xz) = 8844176 +TIMESTAMP = 1623520939 +SHA256 (KDE/release-service/21.04.2/parley-21.04.2.tar.xz) = 811fbbe326b45ed7faed29100377c9b0f77bb5e26cb96cfcb74123fac041930a +SIZE (KDE/release-service/21.04.2/parley-21.04.2.tar.xz) = 8890288 diff --git a/misc/parley/pkg-plist b/misc/parley/pkg-plist index a9cf4369d2fb..a7b2b6f80807 100644 --- a/misc/parley/pkg-plist +++ b/misc/parley/pkg-plist @@ -1,191 +1,196 @@ bin/parley share/applications/org.kde.parley.desktop share/config.kcfg/documentsettings.kcfg share/config.kcfg/languagesettings.kcfg share/config.kcfg/parley.kcfg share/icons/hicolor/128x128/apps/parley.png share/icons/hicolor/16x16/apps/parley.png share/icons/hicolor/32x32/apps/parley.png share/icons/hicolor/48x48/apps/parley.png share/icons/hicolor/64x64/apps/parley.png share/icons/hicolor/scalable/apps/parley-parley.svgz share/icons/hicolor/scalable/apps/parley-simple.svgz share/icons/hicolor/scalable/apps/parley.svgz share/icons/oxygen/16x16/actions/cards-block.png share/icons/oxygen/16x16/actions/edit-entry.png share/icons/oxygen/16x16/actions/edit-table-row.png share/icons/oxygen/16x16/actions/lesson-add.png share/icons/oxygen/16x16/actions/lesson-remove.png share/icons/oxygen/16x16/actions/list-add-card.png share/icons/oxygen/16x16/actions/list-remove-card.png share/icons/oxygen/16x16/actions/multiple-choice.png share/icons/oxygen/16x16/actions/practice-setup.png share/icons/oxygen/16x16/actions/practice-start.png share/icons/oxygen/16x16/actions/practice-stop.png share/icons/oxygen/16x16/actions/remove-duplicates.png share/icons/oxygen/16x16/actions/set-language.png share/icons/oxygen/16x16/actions/specific-setup.png share/icons/oxygen/22x22/actions/cards-block.png share/icons/oxygen/22x22/actions/edit-entry.png share/icons/oxygen/22x22/actions/edit-table-row.png share/icons/oxygen/22x22/actions/lesson-add.png share/icons/oxygen/22x22/actions/lesson-remove.png share/icons/oxygen/22x22/actions/list-add-card.png share/icons/oxygen/22x22/actions/list-remove-card.png share/icons/oxygen/22x22/actions/multiple-choice.png share/icons/oxygen/22x22/actions/practice-setup.png share/icons/oxygen/22x22/actions/practice-start.png share/icons/oxygen/22x22/actions/practice-stop.png share/icons/oxygen/22x22/actions/remove-duplicates.png share/icons/oxygen/22x22/actions/set-language.png share/icons/oxygen/22x22/actions/specific-setup.png share/icons/oxygen/32x32/actions/cards-block.png share/icons/oxygen/32x32/actions/edit-entry.png share/icons/oxygen/32x32/actions/edit-table-row.png share/icons/oxygen/32x32/actions/lesson-add.png share/icons/oxygen/32x32/actions/lesson-remove.png share/icons/oxygen/32x32/actions/list-add-card.png share/icons/oxygen/32x32/actions/list-remove-card.png share/icons/oxygen/32x32/actions/multiple-choice.png share/icons/oxygen/32x32/actions/practice-setup.png share/icons/oxygen/32x32/actions/practice-start.png share/icons/oxygen/32x32/actions/practice-stop.png share/icons/oxygen/32x32/actions/remove-duplicates.png share/icons/oxygen/32x32/actions/set-language.png share/icons/oxygen/32x32/actions/specific-setup.png share/icons/oxygen/48x48/actions/cards-block.png share/icons/oxygen/48x48/actions/edit-entry.png share/icons/oxygen/48x48/actions/edit-table-row.png share/icons/oxygen/48x48/actions/lesson-add.png share/icons/oxygen/48x48/actions/lesson-remove.png share/icons/oxygen/48x48/actions/list-add-card.png share/icons/oxygen/48x48/actions/list-remove-card.png share/icons/oxygen/48x48/actions/multiple-choice.png share/icons/oxygen/48x48/actions/practice-setup.png share/icons/oxygen/48x48/actions/practice-start.png share/icons/oxygen/48x48/actions/practice-stop.png share/icons/oxygen/48x48/actions/remove-duplicates.png share/icons/oxygen/48x48/actions/set-language.png share/icons/oxygen/48x48/actions/specific-setup.png share/icons/oxygen/scalable/actions/cards-block.svgz share/icons/oxygen/scalable/actions/edit-entry.svgz share/icons/oxygen/scalable/actions/edit-table-row.svgz share/icons/oxygen/scalable/actions/lesson-add.svgz share/icons/oxygen/scalable/actions/lesson-remove.svgz share/icons/oxygen/scalable/actions/list-add-card.svgz share/icons/oxygen/scalable/actions/list-remove-card.svgz share/icons/oxygen/scalable/actions/practice-setup.svgz share/icons/oxygen/scalable/actions/practice-start.svgz share/icons/oxygen/scalable/actions/remove-duplicates.svgz share/icons/oxygen/scalable/actions/set-language.svgz share/icons/oxygen/scalable/actions/specific-setup.svgz share/knsrcfiles/parley-themes.knsrc share/knsrcfiles/parley.knsrc share/kxmlgui5/parley/dashboardui.rc share/kxmlgui5/parley/editorui.rc share/kxmlgui5/parley/parleyui.rc share/kxmlgui5/parley/practicesummaryui.rc share/kxmlgui5/parley/practiceui.rc share/kxmlgui5/parley/statisticsui.rc share/kxmlgui5/parley/themes/bees_theme.desktop share/kxmlgui5/parley/themes/bees_theme.svgz share/kxmlgui5/parley/themes/bees_theme_preview.jpg share/kxmlgui5/parley/themes/theme_reference.desktop share/kxmlgui5/parley/themes/theme_reference.svgz share/kxmlgui5/parley/themes/theme_reference_preview.jpg share/locale/ar/LC_MESSAGES/parley.mo +share/locale/be/LC_MESSAGES/parley.mo share/locale/bg/LC_MESSAGES/parley.mo share/locale/bs/LC_MESSAGES/parley.mo share/locale/ca/LC_MESSAGES/parley.mo share/locale/ca@valencia/LC_MESSAGES/parley.mo share/locale/cs/LC_MESSAGES/parley.mo share/locale/da/LC_MESSAGES/parley.mo share/locale/de/LC_MESSAGES/parley.mo share/locale/el/LC_MESSAGES/parley.mo share/locale/en_GB/LC_MESSAGES/parley.mo share/locale/eo/LC_MESSAGES/parley.mo share/locale/es/LC_MESSAGES/parley.mo share/locale/et/LC_MESSAGES/parley.mo share/locale/eu/LC_MESSAGES/parley.mo share/locale/fa/LC_MESSAGES/parley.mo share/locale/fi/LC_MESSAGES/parley.mo share/locale/fr/LC_MESSAGES/parley.mo share/locale/ga/LC_MESSAGES/parley.mo share/locale/gl/LC_MESSAGES/parley.mo share/locale/he/LC_MESSAGES/parley.mo share/locale/hi/LC_MESSAGES/parley.mo share/locale/hr/LC_MESSAGES/parley.mo share/locale/hu/LC_MESSAGES/parley.mo share/locale/ia/LC_MESSAGES/parley.mo share/locale/is/LC_MESSAGES/parley.mo share/locale/it/LC_MESSAGES/parley.mo share/locale/ja/LC_MESSAGES/parley.mo share/locale/kk/LC_MESSAGES/parley.mo share/locale/km/LC_MESSAGES/parley.mo share/locale/lt/LC_MESSAGES/parley.mo share/locale/lv/LC_MESSAGES/parley.mo share/locale/ml/LC_MESSAGES/parley.mo share/locale/mr/LC_MESSAGES/parley.mo share/locale/nb/LC_MESSAGES/parley.mo share/locale/nds/LC_MESSAGES/parley.mo share/locale/nl/LC_MESSAGES/parley.mo share/locale/nn/LC_MESSAGES/parley.mo share/locale/pa/LC_MESSAGES/parley.mo share/locale/pl/LC_MESSAGES/parley.mo share/locale/pt/LC_MESSAGES/parley.mo share/locale/pt_BR/LC_MESSAGES/parley.mo share/locale/ro/LC_MESSAGES/parley.mo share/locale/ru/LC_MESSAGES/parley.mo +share/locale/se/LC_MESSAGES/parley.mo share/locale/sk/LC_MESSAGES/parley.mo share/locale/sl/LC_MESSAGES/parley.mo +share/locale/sq/LC_MESSAGES/parley.mo share/locale/sv/LC_MESSAGES/parley.mo +share/locale/ta/LC_MESSAGES/parley.mo +share/locale/tg/LC_MESSAGES/parley.mo share/locale/tr/LC_MESSAGES/parley.mo share/locale/ug/LC_MESSAGES/parley.mo share/locale/uk/LC_MESSAGES/parley.mo share/locale/zh_CN/LC_MESSAGES/parley.mo share/locale/zh_TW/LC_MESSAGES/parley.mo share/metainfo/org.kde.parley.appdata.xml %%DATADIR%%/plugins/example.desktop %%DATADIR%%/plugins/example.py %%DATADIR%%/plugins/google_dictionary.desktop %%DATADIR%%/plugins/google_dictionary.py %%DATADIR%%/plugins/leo-dict.desktop %%DATADIR%%/plugins/leo-dict.py %%DATADIR%%/plugins/mwclient/LICENSE.md %%DATADIR%%/plugins/mwclient/README.rst %%DATADIR%%/plugins/mwclient/__init__.py %%DATADIR%%/plugins/mwclient/client.py %%DATADIR%%/plugins/mwclient/errors.py %%DATADIR%%/plugins/mwclient/ex.py %%DATADIR%%/plugins/mwclient/image.py %%DATADIR%%/plugins/mwclient/listing.py %%DATADIR%%/plugins/mwclient/page.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/__init__.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/__init__.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/douban.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/facebook.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/fitbit.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/linkedin.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/mailchimp.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/slack.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/compliance_fixes/weibo.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth1_auth.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth1_session.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth2_auth.py %%DATADIR%%/plugins/mwclient/requests_oauthlib/oauth2_session.py %%DATADIR%%/plugins/mwclient/six.LICENSE %%DATADIR%%/plugins/mwclient/six.README %%DATADIR%%/plugins/mwclient/six.py %%DATADIR%%/plugins/mwclient/sleep.py %%DATADIR%%/plugins/mwclient/util.py %%DATADIR%%/plugins/wiktionary_sound.desktop %%DATADIR%%/plugins/wiktionary_sound.py %%DATADIR%%/themes/bees_theme.desktop %%DATADIR%%/themes/bees_theme.svgz %%DATADIR%%/themes/bees_theme_preview.jpg %%DATADIR%%/themes/theme_reference.desktop %%DATADIR%%/themes/theme_reference.svgz %%DATADIR%%/themes/theme_reference_preview.jpg %%DATADIR%%/tips %%DATADIR%%/xslt/flashcards.xsl %%DATADIR%%/xslt/table.xsl diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index 0da65b2b27f7..adf21f08f4fa 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741512 -SHA256 (KDE/release-service/21.04.1/dragon-21.04.1.tar.xz) = e58435c57bfd85459100013e4a3b42834f39fc9b089383b31f7aa7c39b615cc6 -SIZE (KDE/release-service/21.04.1/dragon-21.04.1.tar.xz) = 1664144 +TIMESTAMP = 1623520941 +SHA256 (KDE/release-service/21.04.2/dragon-21.04.2.tar.xz) = 9c561dd2c835a764304793c5da897a9c6d631684786072ff2ba58f32db5e01e9 +SIZE (KDE/release-service/21.04.2/dragon-21.04.2.tar.xz) = 1665828 diff --git a/multimedia/dragon/pkg-plist b/multimedia/dragon/pkg-plist index 075c0475be4b..d97207e71053 100644 --- a/multimedia/dragon/pkg-plist +++ b/multimedia/dragon/pkg-plist @@ -1,87 +1,89 @@ bin/dragon etc/xdg/dragonplayerrc %%QT_PLUGINDIR%%/kf5/parts/dragonpart.so man/ca/man1/dragon.1.gz man/de/man1/dragon.1.gz man/es/man1/dragon.1.gz man/et/man1/dragon.1.gz man/fr/man1/dragon.1.gz man/it/man1/dragon.1.gz man/man1/dragon.1.gz man/nl/man1/dragon.1.gz man/pt/man1/dragon.1.gz man/pt_BR/man1/dragon.1.gz man/sr/man1/dragon.1.gz man/sv/man1/dragon.1.gz man/tr/man1/dragon.1.gz man/uk/man1/dragon.1.gz share/applications/org.kde.dragonplayer.desktop share/icons/hicolor/128x128/apps/dragonplayer.png share/icons/hicolor/16x16/apps/dragonplayer.png share/icons/hicolor/22x22/apps/dragonplayer.png share/icons/hicolor/32x32/apps/dragonplayer.png share/icons/hicolor/48x48/apps/dragonplayer.png share/icons/hicolor/64x64/apps/dragonplayer.png share/icons/hicolor/scalable/apps/dragonplayer.svgz share/icons/oxygen/16x16/actions/player-volume-muted.png share/icons/oxygen/22x22/actions/player-volume-muted.png share/icons/oxygen/32x32/actions/player-volume-muted.png share/icons/oxygen/48x48/actions/player-volume-muted.png share/icons/oxygen/scalable/actions/player-volume-muted.svgz share/kservices5/ServiceMenus/dragonplayer_play_dvd.desktop share/kservices5/dragonplayer_part.desktop share/locale/ar/LC_MESSAGES/dragonplayer.mo +share/locale/be/LC_MESSAGES/dragonplayer.mo share/locale/bg/LC_MESSAGES/dragonplayer.mo share/locale/bs/LC_MESSAGES/dragonplayer.mo share/locale/ca/LC_MESSAGES/dragonplayer.mo share/locale/ca@valencia/LC_MESSAGES/dragonplayer.mo share/locale/cs/LC_MESSAGES/dragonplayer.mo share/locale/da/LC_MESSAGES/dragonplayer.mo share/locale/de/LC_MESSAGES/dragonplayer.mo share/locale/el/LC_MESSAGES/dragonplayer.mo share/locale/en_GB/LC_MESSAGES/dragonplayer.mo share/locale/eo/LC_MESSAGES/dragonplayer.mo share/locale/es/LC_MESSAGES/dragonplayer.mo share/locale/et/LC_MESSAGES/dragonplayer.mo share/locale/eu/LC_MESSAGES/dragonplayer.mo share/locale/fi/LC_MESSAGES/dragonplayer.mo share/locale/fr/LC_MESSAGES/dragonplayer.mo share/locale/ga/LC_MESSAGES/dragonplayer.mo share/locale/gl/LC_MESSAGES/dragonplayer.mo share/locale/he/LC_MESSAGES/dragonplayer.mo share/locale/hr/LC_MESSAGES/dragonplayer.mo share/locale/hu/LC_MESSAGES/dragonplayer.mo share/locale/ia/LC_MESSAGES/dragonplayer.mo share/locale/id/LC_MESSAGES/dragonplayer.mo share/locale/is/LC_MESSAGES/dragonplayer.mo share/locale/it/LC_MESSAGES/dragonplayer.mo share/locale/ja/LC_MESSAGES/dragonplayer.mo share/locale/kk/LC_MESSAGES/dragonplayer.mo share/locale/km/LC_MESSAGES/dragonplayer.mo share/locale/ko/LC_MESSAGES/dragonplayer.mo share/locale/lt/LC_MESSAGES/dragonplayer.mo share/locale/lv/LC_MESSAGES/dragonplayer.mo share/locale/mr/LC_MESSAGES/dragonplayer.mo share/locale/nb/LC_MESSAGES/dragonplayer.mo share/locale/nds/LC_MESSAGES/dragonplayer.mo share/locale/nl/LC_MESSAGES/dragonplayer.mo share/locale/nn/LC_MESSAGES/dragonplayer.mo share/locale/pa/LC_MESSAGES/dragonplayer.mo share/locale/pl/LC_MESSAGES/dragonplayer.mo share/locale/pt/LC_MESSAGES/dragonplayer.mo share/locale/pt_BR/LC_MESSAGES/dragonplayer.mo share/locale/ro/LC_MESSAGES/dragonplayer.mo share/locale/ru/LC_MESSAGES/dragonplayer.mo share/locale/sk/LC_MESSAGES/dragonplayer.mo share/locale/sl/LC_MESSAGES/dragonplayer.mo +share/locale/sq/LC_MESSAGES/dragonplayer.mo share/locale/sr/LC_MESSAGES/dragonplayer.mo share/locale/sv/LC_MESSAGES/dragonplayer.mo share/locale/tr/LC_MESSAGES/dragonplayer.mo share/locale/ug/LC_MESSAGES/dragonplayer.mo share/locale/uk/LC_MESSAGES/dragonplayer.mo share/locale/wa/LC_MESSAGES/dragonplayer.mo share/locale/zh_CN/LC_MESSAGES/dragonplayer.mo share/locale/zh_TW/LC_MESSAGES/dragonplayer.mo share/metainfo/org.kde.dragonplayer.appdata.xml share/solid/actions/dragonplayer-openaudiocd.desktop share/solid/actions/dragonplayer-opendvd.desktop diff --git a/multimedia/kamoso/distinfo b/multimedia/kamoso/distinfo index 4805e59be0f0..726f47d1c1e4 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741512 -SHA256 (KDE/release-service/21.04.1/kamoso-21.04.1.tar.xz) = 8e29cd82a72bec44bd3a20578f134314534ff9a0fc58ed6b7951cd78691e030c -SIZE (KDE/release-service/21.04.1/kamoso-21.04.1.tar.xz) = 212140 +TIMESTAMP = 1623520943 +SHA256 (KDE/release-service/21.04.2/kamoso-21.04.2.tar.xz) = 882ee2b63be39e862afa88795a56657f19921c8746ff661be7acca0132c01bf1 +SIZE (KDE/release-service/21.04.2/kamoso-21.04.2.tar.xz) = 212056 diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 657c742436c1..932d839a53d7 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741513 -SHA256 (KDE/release-service/21.04.1/ffmpegthumbs-21.04.1.tar.xz) = 992b5baf3bc4945b2a229efe56e125b777773fd89cbe2cd2b7e9acc07247a8d7 -SIZE (KDE/release-service/21.04.1/ffmpegthumbs-21.04.1.tar.xz) = 33616 +TIMESTAMP = 1623520944 +SHA256 (KDE/release-service/21.04.2/ffmpegthumbs-21.04.2.tar.xz) = 1f9979f5ee5d2e652d201cd5dd4dff72a2063b7b94de8907ed381a7f56987bfc +SIZE (KDE/release-service/21.04.2/ffmpegthumbs-21.04.2.tar.xz) = 33640 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 19191890252c..e95cb5a3302a 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741514 -SHA256 (KDE/release-service/21.04.1/kdenlive-21.04.1.tar.xz) = 9c2d0bc76b86fdf83cae1ac8c40b7630afbce4b92f9fd095bcfba1186851ef41 -SIZE (KDE/release-service/21.04.1/kdenlive-21.04.1.tar.xz) = 11723048 +TIMESTAMP = 1623520947 +SHA256 (KDE/release-service/21.04.2/kdenlive-21.04.2.tar.xz) = 5510106b6bdda3f2048702b23d90f7438d4ec4d2ddb932e53df716e6d4afdd4f +SIZE (KDE/release-service/21.04.2/kdenlive-21.04.2.tar.xz) = 11772924 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index e10575bea567..3853c9583002 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,508 +1,511 @@ bin/kdenlive bin/kdenlive_render %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/COPYING %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/actions/kdenlive-select-all.png share/icons/hicolor/128x128/apps/kdenlive.png share/icons/hicolor/128x128/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/16x16/actions/add-subtitle.svg share/icons/hicolor/16x16/actions/kdenlive-add-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-color-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-slide-clip.png share/icons/hicolor/16x16/actions/kdenlive-add-text-clip.png share/icons/hicolor/16x16/actions/kdenlive-custom-effect.png share/icons/hicolor/16x16/actions/kdenlive-deleffect.png share/icons/hicolor/16x16/actions/kdenlive-down.png share/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/icons/hicolor/16x16/actions/kdenlive-insert-edit.png share/icons/hicolor/16x16/actions/kdenlive-insert-rect.png share/icons/hicolor/16x16/actions/kdenlive-insert-unicode.png share/icons/hicolor/16x16/actions/kdenlive-lock.png share/icons/hicolor/16x16/actions/kdenlive-menu.png share/icons/hicolor/16x16/actions/kdenlive-normal-edit.png share/icons/hicolor/16x16/actions/kdenlive-object-height.png share/icons/hicolor/16x16/actions/kdenlive-object-width.png share/icons/hicolor/16x16/actions/kdenlive-overwrite-edit.png share/icons/hicolor/16x16/actions/kdenlive-select-all.png share/icons/hicolor/16x16/actions/kdenlive-select-images.png share/icons/hicolor/16x16/actions/kdenlive-select-rects.png share/icons/hicolor/16x16/actions/kdenlive-select-texts.png share/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/icons/hicolor/16x16/actions/kdenlive-show-video.png share/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/icons/hicolor/16x16/actions/kdenlive-snap.png share/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png share/icons/hicolor/16x16/actions/kdenlive-split-audio.png share/icons/hicolor/16x16/actions/kdenlive-track_has_effect.png share/icons/hicolor/16x16/actions/kdenlive-unlock.png share/icons/hicolor/16x16/actions/kdenlive-unselect-all.png share/icons/hicolor/16x16/actions/kdenlive-up.png share/icons/hicolor/16x16/actions/kdenlive-zindex-up.png share/icons/hicolor/16x16/actions/kdenlive-zone-end.png share/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/icons/hicolor/16x16/actions/keyframe-add.svg share/icons/hicolor/16x16/actions/keyframe-disable.svg share/icons/hicolor/16x16/actions/keyframe-duplicate.svg share/icons/hicolor/16x16/actions/keyframe-next.svg share/icons/hicolor/16x16/actions/keyframe-previous.svg share/icons/hicolor/16x16/actions/keyframe-record.svg share/icons/hicolor/16x16/actions/keyframe-remove.svg share/icons/hicolor/16x16/actions/keyframe.svg share/icons/hicolor/16x16/apps/kdenlive.png share/icons/hicolor/22x22/actions/kdenlive-select-all.png share/icons/hicolor/22x22/actions/kdenlive-spacer-tool.png share/icons/hicolor/22x22/actions/keyframe-add.svg share/icons/hicolor/22x22/actions/keyframe-disable.svg share/icons/hicolor/22x22/actions/keyframe-duplicate.svg share/icons/hicolor/22x22/actions/keyframe-next.svg share/icons/hicolor/22x22/actions/keyframe-previous.svg share/icons/hicolor/22x22/actions/keyframe-record.svg share/icons/hicolor/22x22/actions/keyframe-remove.svg share/icons/hicolor/22x22/actions/keyframe.svg share/icons/hicolor/22x22/apps/kdenlive.png share/icons/hicolor/256x256/apps/kdenlive.png share/icons/hicolor/32x32/actions/kdenlive-select-all.png share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/actions/kdenlive-select-all.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/actions/kdenlive-select-all.png share/icons/hicolor/64x64/apps/kdenlive.png share/icons/hicolor/64x64/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/scalable/actions/add-subtitle.svg share/icons/hicolor/scalable/actions/kdenlive-align-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-align-hor.svgz share/icons/hicolor/scalable/actions/kdenlive-align-left.svgz share/icons/hicolor/scalable/actions/kdenlive-align-none.svgz share/icons/hicolor/scalable/actions/kdenlive-align-right.svgz share/icons/hicolor/scalable/actions/kdenlive-align-top.svgz share/icons/hicolor/scalable/actions/kdenlive-align-vert.svgz share/icons/hicolor/scalable/actions/kdenlive-hide-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-hide-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-insert-rect.svgz share/icons/hicolor/scalable/actions/kdenlive-insert-unicode.svgz share/icons/hicolor/scalable/actions/kdenlive-object-height.svgz share/icons/hicolor/scalable/actions/kdenlive-object-width.svgz share/icons/hicolor/scalable/actions/kdenlive-select-all.svgz share/icons/hicolor/scalable/actions/kdenlive-select-images.svgz share/icons/hicolor/scalable/actions/kdenlive-select-rects.svgz share/icons/hicolor/scalable/actions/kdenlive-select-texts.svgz share/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-show-all-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-audio-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-gpu-effects.svg share/icons/hicolor/scalable/actions/kdenlive-show-video-effects.svg share/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/icons/hicolor/scalable/actions/kdenlive-unselect-all.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-bottom.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-down.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-top.svgz share/icons/hicolor/scalable/actions/kdenlive-zindex-up.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-large.svgz share/icons/hicolor/scalable/actions/kdenlive-zoom-small.svgz share/icons/hicolor/scalable/apps/kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlive.svgz share/icons/hicolor/scalable/mimetypes/application-x-kdenlivetitle.svgz share/icons/hicolor/scalable/mimetypes/video-mlt-playlist.svgz share/knsrcfiles/kdenlive_luts.knsrc %%DATADIR%%/banner.png %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/automask.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_prewitt.xml %%DATADIR%%/effects/avfilter_random.xml %%DATADIR%%/effects/avfilter_removegrain.xml %%DATADIR%%/effects/avfilter_rgbashift.xml %%DATADIR%%/effects/avfilter_roberts.xml %%DATADIR%%/effects/avfilter_sab.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml +%%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml +%%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/subtitles.xml %%DATADIR%%/effects/swapchannels.xml %%DATADIR%%/effects/tcolor.xml %%DATADIR%%/effects/threshold.xml %%DATADIR%%/effects/tracker.xml %%DATADIR%%/effects/typewriter.xml %%DATADIR%%/effects/update/frei0r.balanc0r.js %%DATADIR%%/effects/update/frei0r.cartoon.js %%DATADIR%%/effects/update/frei0r.curves.js %%DATADIR%%/effects/update/frei0r.levels.js %%DATADIR%%/effects/update/frei0r.lightgraffiti.js %%DATADIR%%/effects/update/frei0r.select0r.js %%DATADIR%%/effects/update/frei0r.sopsat.js %%DATADIR%%/effects/update/frei0r.vertigo.js %%DATADIR%%/effects/vidstab.xml %%DATADIR%%/effects/vignette.xml %%DATADIR%%/effects/volume.xml %%DATADIR%%/effects/wave.xml %%DATADIR%%/encodingprofiles.rc %%DATADIR%%/export/profiles.xml %%DATADIR%%/externalproxies.rc %%DATADIR%%/generators/count.xml %%DATADIR%%/generators/frei0r_test_pat_b.xml %%DATADIR%%/generators/noise.xml %%DATADIR%%/kdenlivedefaultlayouts.rc %%DATADIR%%/kdenliveeffectscategory.rc %%DATADIR%%/kdenlivetranscodingrc %%DATADIR%%/lumas/HD/bi-linear_x.pgm %%DATADIR%%/lumas/HD/bi-linear_y.pgm %%DATADIR%%/lumas/HD/burst.pgm %%DATADIR%%/lumas/HD/checkerboard_small.pgm %%DATADIR%%/lumas/HD/clock.pgm %%DATADIR%%/lumas/HD/cloud.pgm %%DATADIR%%/lumas/HD/curtain.pgm %%DATADIR%%/lumas/HD/horizontal_blinds.pgm %%DATADIR%%/lumas/HD/linear_x.pgm %%DATADIR%%/lumas/HD/linear_y.pgm %%DATADIR%%/lumas/HD/radial-bars.pgm %%DATADIR%%/lumas/HD/radial.pgm %%DATADIR%%/lumas/HD/spiral.pgm %%DATADIR%%/lumas/HD/spiral2.pgm %%DATADIR%%/lumas/HD/square.pgm %%DATADIR%%/lumas/HD/square2-bars.pgm %%DATADIR%%/lumas/HD/square2.pgm %%DATADIR%%/lumas/HD/symmetric_clock.pgm %%DATADIR%%/lumas/PAL/bi-linear_x.pgm %%DATADIR%%/lumas/PAL/bi-linear_y.pgm %%DATADIR%%/lumas/PAL/burst.pgm %%DATADIR%%/lumas/PAL/checkerboard_small.pgm %%DATADIR%%/lumas/PAL/clock.pgm %%DATADIR%%/lumas/PAL/cloud.pgm %%DATADIR%%/lumas/PAL/curtain.pgm %%DATADIR%%/lumas/PAL/horizontal_blinds.pgm %%DATADIR%%/lumas/PAL/linear_x.pgm %%DATADIR%%/lumas/PAL/linear_y.pgm %%DATADIR%%/lumas/PAL/radial-bars.pgm %%DATADIR%%/lumas/PAL/radial.pgm %%DATADIR%%/lumas/PAL/spiral.pgm %%DATADIR%%/lumas/PAL/spiral2.pgm %%DATADIR%%/lumas/PAL/square.pgm %%DATADIR%%/lumas/PAL/square2-bars.pgm %%DATADIR%%/lumas/PAL/square2.pgm %%DATADIR%%/lumas/PAL/symmetric_clock.pgm %%DATADIR%%/meta_ffmpeg.png %%DATADIR%%/meta_libav.png %%DATADIR%%/meta_magiclantern.png %%DATADIR%%/profiles/dci_2160p_2398 %%DATADIR%%/profiles/dci_2160p_24 %%DATADIR%%/profiles/dci_2160p_25 %%DATADIR%%/profiles/dci_2160p_2997 %%DATADIR%%/profiles/dci_2160p_30 %%DATADIR%%/profiles/dci_2160p_50 %%DATADIR%%/profiles/dci_2160p_5994 %%DATADIR%%/profiles/dci_2160p_60 %%DATADIR%%/resourceproviders/archiveorg.json %%DATADIR%%/resourceproviders/freesound.json %%DATADIR%%/resourceproviders/pexels_photo.json %%DATADIR%%/resourceproviders/pexels_video.json %%DATADIR%%/resourceproviders/pixabay_photo.json %%DATADIR%%/scripts/checkvosk.py %%DATADIR%%/scripts/speech.py %%DATADIR%%/scripts/speechtotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/timeline_athumbs.png %%DATADIR%%/timeline_avthumbs.png %%DATADIR%%/timeline_nothumbs.png %%DATADIR%%/timeline_vthumbs.png %%DATADIR%%/titles/simple-scroll.kdenlivetitle %%DATADIR%%/titles/simple-with-date.kdenlivetitle %%DATADIR%%/titles/simple.kdenlivetitle %%DATADIR%%/transitions/affine.xml %%DATADIR%%/transitions/composite.xml %%DATADIR%%/transitions/dissolve.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml %%DATADIR%%/transitions/luma.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_renderprofiles.knsrc share/knsrcfiles/kdenlive_titles.knsrc share/knsrcfiles/kdenlive_wipes.knsrc share/kservices5/mltpreview.desktop share/kxmlgui5/kdenlive/kdenliveui.rc share/locale/ar/LC_MESSAGES/kdenlive.mo share/locale/ast/LC_MESSAGES/kdenlive.mo +share/locale/az/LC_MESSAGES/kdenlive.mo share/locale/bs/LC_MESSAGES/kdenlive.mo share/locale/ca/LC_MESSAGES/kdenlive.mo share/locale/ca@valencia/LC_MESSAGES/kdenlive.mo share/locale/cs/LC_MESSAGES/kdenlive.mo share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/el/LC_MESSAGES/kdenlive.mo share/locale/en_GB/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo share/locale/et/LC_MESSAGES/kdenlive.mo share/locale/eu/LC_MESSAGES/kdenlive.mo share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo share/locale/ga/LC_MESSAGES/kdenlive.mo share/locale/gl/LC_MESSAGES/kdenlive.mo share/locale/he/LC_MESSAGES/kdenlive.mo share/locale/hr/LC_MESSAGES/kdenlive.mo share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/id/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/ja/LC_MESSAGES/kdenlive.mo share/locale/ko/LC_MESSAGES/kdenlive.mo share/locale/lt/LC_MESSAGES/kdenlive.mo share/locale/mr/LC_MESSAGES/kdenlive.mo share/locale/nb/LC_MESSAGES/kdenlive.mo share/locale/nds/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo share/locale/pl/LC_MESSAGES/kdenlive.mo share/locale/pt/LC_MESSAGES/kdenlive.mo share/locale/pt_BR/LC_MESSAGES/kdenlive.mo share/locale/ro/LC_MESSAGES/kdenlive.mo share/locale/ru/LC_MESSAGES/kdenlive.mo share/locale/sk/LC_MESSAGES/kdenlive.mo share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/sv/LC_MESSAGES/kdenlive.mo share/locale/tr/LC_MESSAGES/kdenlive.mo share/locale/ug/LC_MESSAGES/kdenlive.mo share/locale/uk/LC_MESSAGES/kdenlive.mo share/locale/zh_CN/LC_MESSAGES/kdenlive.mo share/locale/zh_TW/LC_MESSAGES/kdenlive.mo share/metainfo/org.kde.kdenlive.appdata.xml share/mime/packages/org.kde.kdenlive.xml share/mime/packages/westley.xml share/qlogging-categories5/kdenlive.categories diff --git a/net-im/kaccounts-integration/distinfo b/net-im/kaccounts-integration/distinfo index 952ca07e9a64..f35f45f12c54 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741514 -SHA256 (KDE/release-service/21.04.1/kaccounts-integration-21.04.1.tar.xz) = bd4ad3e878a33ad7637a28ecb0de558445f07cb8677df679a241bb6a18b096a1 -SIZE (KDE/release-service/21.04.1/kaccounts-integration-21.04.1.tar.xz) = 84512 +TIMESTAMP = 1623520948 +SHA256 (KDE/release-service/21.04.2/kaccounts-integration-21.04.2.tar.xz) = b9aa30a6f159987490c2a13f282875c6d35f953361abb5477bce52032bcc782f +SIZE (KDE/release-service/21.04.2/kaccounts-integration-21.04.2.tar.xz) = 85216 diff --git a/net-im/kaccounts-integration/pkg-plist b/net-im/kaccounts-integration/pkg-plist index 72c1d0085613..f630d59a5e7a 100644 --- a/net-im/kaccounts-integration/pkg-plist +++ b/net-im/kaccounts-integration/pkg-plist @@ -1,84 +1,85 @@ include/KAccounts/AccountServiceToggleJob include/KAccounts/AccountsModel include/KAccounts/ChangeAccountDisplayNameJob include/KAccounts/Core include/KAccounts/CreateAccountJob include/KAccounts/GetCredentialsJob include/KAccounts/KAccountsDPlugin include/KAccounts/KAccountsUiPlugin include/KAccounts/ProvidersModel include/KAccounts/RemoveAccountJob include/KAccounts/ServicesModel include/KAccounts/accountservicetogglejob.h include/KAccounts/accountsmodel.h include/KAccounts/changeaccountdisplaynamejob.h include/KAccounts/core.h include/KAccounts/createaccountjob.h include/KAccounts/getcredentialsjob.h include/KAccounts/kaccounts_export.h include/KAccounts/kaccounts_version.h include/KAccounts/kaccountsdplugin.h include/KAccounts/kaccountsuiplugin.h include/KAccounts/providersmodel.h include/KAccounts/removeaccountjob.h include/KAccounts/servicesmodel.h lib/cmake/KAccounts/KAccountsConfig.cmake lib/cmake/KAccounts/KAccountsConfigVersion.cmake lib/cmake/KAccounts/KAccountsMacros.cmake lib/cmake/KAccounts/KAccountsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KAccounts/KAccountsTargets.cmake lib/libkaccounts.so lib/libkaccounts.so.2 lib/libkaccounts.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kaccounts/daemonplugins/kaccounts_kio_webdav_plugin.so %%QT_PLUGINDIR%%/kcms/kcm_kaccounts.so %%QT_PLUGINDIR%%/kf5/kded/kded_accounts.so %%QT_QMLDIR%%/org/kde/kaccounts/libkaccountsdeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kaccounts/qmldir share/kpackage/kcms/kcm_kaccounts/contents/ui/AccountDetails.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/Accounts.qml +share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/MessageBoxSheet.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RemoveAccountDialog.qml share/kpackage/kcms/kcm_kaccounts/contents/ui/RenameAccountDialog.qml -share/locale/hu/LC_MESSAGES/kaccounts-integration.mo -share/kpackage/kcms/kcm_kaccounts/contents/ui/AvailableAccounts.qml share/kpackage/kcms/kcm_kaccounts/metadata.desktop share/kpackage/kcms/kcm_kaccounts/metadata.json share/kservices5/kcm_kaccounts.desktop share/locale/ar/LC_MESSAGES/kaccounts-integration.mo share/locale/ast/LC_MESSAGES/kaccounts-integration.mo +share/locale/az/LC_MESSAGES/kaccounts-integration.mo share/locale/bs/LC_MESSAGES/kaccounts-integration.mo share/locale/ca/LC_MESSAGES/kaccounts-integration.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-integration.mo share/locale/cs/LC_MESSAGES/kaccounts-integration.mo share/locale/da/LC_MESSAGES/kaccounts-integration.mo share/locale/de/LC_MESSAGES/kaccounts-integration.mo share/locale/el/LC_MESSAGES/kaccounts-integration.mo share/locale/en_GB/LC_MESSAGES/kaccounts-integration.mo share/locale/es/LC_MESSAGES/kaccounts-integration.mo share/locale/et/LC_MESSAGES/kaccounts-integration.mo share/locale/eu/LC_MESSAGES/kaccounts-integration.mo share/locale/fi/LC_MESSAGES/kaccounts-integration.mo share/locale/fr/LC_MESSAGES/kaccounts-integration.mo share/locale/gl/LC_MESSAGES/kaccounts-integration.mo +share/locale/hu/LC_MESSAGES/kaccounts-integration.mo share/locale/ia/LC_MESSAGES/kaccounts-integration.mo share/locale/it/LC_MESSAGES/kaccounts-integration.mo share/locale/ja/LC_MESSAGES/kaccounts-integration.mo share/locale/ko/LC_MESSAGES/kaccounts-integration.mo share/locale/lt/LC_MESSAGES/kaccounts-integration.mo share/locale/nl/LC_MESSAGES/kaccounts-integration.mo share/locale/nn/LC_MESSAGES/kaccounts-integration.mo share/locale/pa/LC_MESSAGES/kaccounts-integration.mo share/locale/pl/LC_MESSAGES/kaccounts-integration.mo share/locale/pt/LC_MESSAGES/kaccounts-integration.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-integration.mo share/locale/ro/LC_MESSAGES/kaccounts-integration.mo share/locale/ru/LC_MESSAGES/kaccounts-integration.mo share/locale/sk/LC_MESSAGES/kaccounts-integration.mo share/locale/sl/LC_MESSAGES/kaccounts-integration.mo share/locale/sr/LC_MESSAGES/kaccounts-integration.mo share/locale/sv/LC_MESSAGES/kaccounts-integration.mo share/locale/tr/LC_MESSAGES/kaccounts-integration.mo share/locale/uk/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-integration.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-integration.mo diff --git a/net-im/kaccounts-providers/distinfo b/net-im/kaccounts-providers/distinfo index dfaf089ce6fb..e8f0d533183b 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741515 -SHA256 (KDE/release-service/21.04.1/kaccounts-providers-21.04.1.tar.xz) = 5a6647ab78a3f8d6443986dfd95ffde3853540eb25a0af4d1be8d5c33691f472 -SIZE (KDE/release-service/21.04.1/kaccounts-providers-21.04.1.tar.xz) = 62336 +TIMESTAMP = 1623520950 +SHA256 (KDE/release-service/21.04.2/kaccounts-providers-21.04.2.tar.xz) = ff818bfdaeeba9cc931008af85ba4721a59c1d7c83b31eeea56ff6361bfa68a1 +SIZE (KDE/release-service/21.04.2/kaccounts-providers-21.04.2.tar.xz) = 62908 diff --git a/net-im/kaccounts-providers/pkg-plist b/net-im/kaccounts-providers/pkg-plist index fb9b0a6a0b40..f3cc4a73ed58 100644 --- a/net-im/kaccounts-providers/pkg-plist +++ b/net-im/kaccounts-providers/pkg-plist @@ -1,64 +1,65 @@ etc/signon-ui/webkit-options.d/accounts.google.com.conf etc/signon-ui/webkit-options.d/api.twitter.com.conf etc/signon-ui/webkit-options.d/identi.ca.conf etc/signon-ui/webkit-options.d/www.facebook.com.conf %%QT_PLUGINDIR%%/kaccounts/ui/owncloud_plugin_kaccounts.so %%QT_PLUGINDIR%%/kaccounts/ui/nextcloud_plugin_kaccounts.so share/accounts/providers/kde/google.provider share/accounts/providers/kde/nextcloud.provider share/accounts/providers/kde/owncloud.provider share/accounts/services/kde/nextcloud-contacts.service share/accounts/services/kde/nextcloud-storage.service share/accounts/services/kde/owncloud-storage.service share/icons/hicolor/256x256/apps/kaccounts-owncloud.png share/icons/hicolor/scalable/apps/kaccounts-nextcloud.svg share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/Server.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/WebLogin.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.nextcloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.nextcloud/metadata.json share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Server.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/Services.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/contents/ui/main.qml share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.desktop share/kpackage/genericqml/org.kde.kaccounts.owncloud/metadata.json share/locale/ar/LC_MESSAGES/kaccounts-providers.mo share/locale/ast/LC_MESSAGES/kaccounts-providers.mo +share/locale/az/LC_MESSAGES/kaccounts-providers.mo share/locale/bs/LC_MESSAGES/kaccounts-providers.mo share/locale/ca/LC_MESSAGES/kaccounts-providers.mo share/locale/ca@valencia/LC_MESSAGES/kaccounts-providers.mo share/locale/cs/LC_MESSAGES/kaccounts-providers.mo share/locale/da/LC_MESSAGES/kaccounts-providers.mo share/locale/de/LC_MESSAGES/kaccounts-providers.mo share/locale/el/LC_MESSAGES/kaccounts-providers.mo share/locale/en_GB/LC_MESSAGES/kaccounts-providers.mo share/locale/es/LC_MESSAGES/kaccounts-providers.mo share/locale/et/LC_MESSAGES/kaccounts-providers.mo share/locale/eu/LC_MESSAGES/kaccounts-providers.mo share/locale/fi/LC_MESSAGES/kaccounts-providers.mo share/locale/fr/LC_MESSAGES/kaccounts-providers.mo share/locale/gl/LC_MESSAGES/kaccounts-providers.mo share/locale/hu/LC_MESSAGES/kaccounts-providers.mo share/locale/ia/LC_MESSAGES/kaccounts-providers.mo share/locale/it/LC_MESSAGES/kaccounts-providers.mo share/locale/ja/LC_MESSAGES/kaccounts-providers.mo share/locale/ko/LC_MESSAGES/kaccounts-providers.mo share/locale/lt/LC_MESSAGES/kaccounts-providers.mo share/locale/nl/LC_MESSAGES/kaccounts-providers.mo share/locale/nn/LC_MESSAGES/kaccounts-providers.mo share/locale/pl/LC_MESSAGES/kaccounts-providers.mo share/locale/pt/LC_MESSAGES/kaccounts-providers.mo share/locale/pt_BR/LC_MESSAGES/kaccounts-providers.mo share/locale/ro/LC_MESSAGES/kaccounts-providers.mo share/locale/ru/LC_MESSAGES/kaccounts-providers.mo share/locale/sk/LC_MESSAGES/kaccounts-providers.mo share/locale/sl/LC_MESSAGES/kaccounts-providers.mo share/locale/sr/LC_MESSAGES/kaccounts-providers.mo share/locale/sv/LC_MESSAGES/kaccounts-providers.mo share/locale/tr/LC_MESSAGES/kaccounts-providers.mo share/locale/uk/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_CN/LC_MESSAGES/kaccounts-providers.mo share/locale/zh_TW/LC_MESSAGES/kaccounts-providers.mo share/metainfo/org.kde.kaccounts.nextcloud.appdata.xml share/metainfo/org.kde.kaccounts.owncloud.appdata.xml diff --git a/net-im/kopete/distinfo b/net-im/kopete/distinfo index 6794c9c03f6c..adc262d5056c 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741516 -SHA256 (KDE/release-service/21.04.1/kopete-21.04.1.tar.xz) = 6ddd55497906339ba2a4e9b3c0448dac2dfb8e0c2d1c3bbf9b44372c1df422a5 -SIZE (KDE/release-service/21.04.1/kopete-21.04.1.tar.xz) = 9414644 +TIMESTAMP = 1623520952 +SHA256 (KDE/release-service/21.04.2/kopete-21.04.2.tar.xz) = 4f8bee02837254a2abf0723c4a6c853edfc333492058a84d813387771bc9e764 +SIZE (KDE/release-service/21.04.2/kopete-21.04.2.tar.xz) = 9664248 diff --git a/net-im/kopete/pkg-plist b/net-im/kopete/pkg-plist index 489785e80d58..816949980f8f 100644 --- a/net-im/kopete/pkg-plist +++ b/net-im/kopete/pkg-plist @@ -1,721 +1,731 @@ bin/kopete bin/winpopup-install bin/winpopup-send share/qlogging-categories5/kopete.categories etc/xdg/kopeterc include/kopete/kabcpersistence.h include/kopete/kopeteaccount.h include/kopete/kopeteaccountmanager.h include/kopete/kopeteaddedinfoevent.h include/kopete/kopeteappearancesettings.h include/kopete/kopeteavatarmanager.h include/kopete/kopetebehaviorsettings.h include/kopete/kopeteblacklister.h include/kopete/kopetechatsession.h include/kopete/kopetechatsessionmanager.h include/kopete/kopetecommand.h include/kopete/kopetecommandhandler.h include/kopete/kopetecontact.h include/kopete/kopetecontactlist.h include/kopete/kopetecontactlistelement.h include/kopete/kopetecontacttaskbase.h include/kopete/kopetedeletecontacttask.h include/kopete/kopeteemoticons.h include/kopete/kopeteglobal.h include/kopete/kopetegroup.h include/kopete/kopeteidentity.h include/kopete/kopeteidentitymanager.h include/kopete/kopeteinfoevent.h include/kopete/kopetemessage.h include/kopete/kopetemessageevent.h include/kopete/kopetemessagehandler.h include/kopete/kopetemessagehandlerchain.h include/kopete/kopetemetacontact.h include/kopete/kopetemimetypehandler.h include/kopete/kopeteonlinestatus.h include/kopete/kopeteonlinestatusmanager.h include/kopete/kopetepassword.h include/kopete/kopetepasswordedaccount.h include/kopete/kopetepicture.h include/kopete/kopeteplugin.h include/kopete/kopetepluginmanager.h include/kopete/kopeteproperty.h include/kopete/kopetepropertycontainer.h include/kopete/kopeteprotocol.h include/kopete/kopetesimplemessagehandler.h include/kopete/kopetestatusmanager.h include/kopete/kopetestatusmessage.h include/kopete/kopetestatussettings.h include/kopete/kopetetask.h include/kopete/kopetetransfermanager.h include/kopete/kopeteuiglobal.h include/kopete/kopeteutils.h include/kopete/kopeteversion.h include/kopete/libkopete_export.h include/kopete/ui/accountselector.h include/kopete/ui/addcontactpage.h include/kopete/ui/addressbookselectordialog.h include/kopete/ui/addressbookselectorwidget.h include/kopete/ui/avatardialog.h include/kopete/ui/avatarselectorwidget.h include/kopete/ui/contactaddednotifydialog.h include/kopete/ui/editaccountwidget.h include/kopete/ui/kopetecontactaction.h include/kopete/ui/kopeteinfodialog.h include/kopete/ui/kopetelistview.h include/kopete/ui/kopetelistviewitem.h include/kopete/ui/kopetelistviewsearchline.h include/kopete/ui/kopetepasswordwidget.h include/kopete/ui/kopetestdaction.h include/kopete/ui/kopeteview.h include/kopete/ui/kopeteviewplugin.h include/kopete/ui/ui_kopeteawaydialogbase.h include/kopete/ui/ui_kopetepasswordwidgetbase.h lib/libkopete.so lib/libkopete.so.1 lib/libkopete.so.1.0.0 lib/libkopete_oscar.so lib/libkopete_oscar.so.1 lib/libkopete_oscar.so.1.0.0 lib/libkopete_otr_shared.so lib/libkopete_otr_shared.so.1 lib/libkopete_otr_shared.so.1.0.0 lib/libkopete_videodevice.so lib/libkopete_videodevice.so.1 lib/libkopete_videodevice.so.1.0.0 lib/libkopeteaddaccountwizard.so lib/libkopeteaddaccountwizard.so.1 lib/libkopeteaddaccountwizard.so.1.0.0 lib/libkopetechatwindow_shared.so lib/libkopetechatwindow_shared.so.1 lib/libkopetechatwindow_shared.so.1.0.0 lib/libkopetecontactlist.so lib/libkopetecontactlist.so.1 lib/libkopetecontactlist.so.1.0.0 lib/libkopeteidentity.so lib/libkopeteidentity.so.1 lib/libkopeteidentity.so.1.0.0 lib/libkopeteprivacy.so lib/libkopeteprivacy.so.1 lib/libkopeteprivacy.so.1.0.0 lib/libkopetestatusmenu.so lib/libkopetestatusmenu.so.1 lib/libkopetestatusmenu.so.1.0.0 lib/liboscar.so lib/liboscar.so.1 lib/liboscar.so.1.0.0 lib/libqgroupwise.so %%QT_PLUGINDIR%%/accessible/chatwindowaccessiblewidgetfactory.so %%QT_PLUGINDIR%%/chattexteditpart.so %%QT_PLUGINDIR%%/kcm_kopete_accountconfig.so %%QT_PLUGINDIR%%/kcm_kopete_addbookmarks.so %%QT_PLUGINDIR%%/kcm_kopete_appearanceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_autoreplace.so %%QT_PLUGINDIR%%/kcm_kopete_avdeviceconfig.so %%QT_PLUGINDIR%%/kcm_kopete_behaviorconfig.so %%QT_PLUGINDIR%%/kcm_kopete_chatwindowconfig.so %%QT_PLUGINDIR%%/kcm_kopete_highlight.so %%QT_PLUGINDIR%%/kcm_kopete_history.so %%QT_PLUGINDIR%%/kcm_kopete_otr.so %%QT_PLUGINDIR%%/kcm_kopete_pluginconfig.so %%QT_PLUGINDIR%%/kcm_kopete_privacy.so %%QT_PLUGINDIR%%/kcm_kopete_statusconfig.so %%QT_PLUGINDIR%%/kcm_kopete_texteffect.so %%QT_PLUGINDIR%%/kcm_kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kcm_kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_addbookmarks.so %%QT_PLUGINDIR%%/kopete_aim.so %%QT_PLUGINDIR%%/kopete_autoreplace.so %%QT_PLUGINDIR%%/kopete_bonjour.so %%QT_PLUGINDIR%%/kopete_chatwindow.so %%QT_PLUGINDIR%%/kopete_contactnotes.so %%QT_PLUGINDIR%%/kopete_emailwindow.so %%QT_PLUGINDIR%%/kopete_groupwise.so %%QT_PLUGINDIR%%/kopete_highlight.so %%QT_PLUGINDIR%%/kopete_history.so %%QT_PLUGINDIR%%/kopete_icq.so %%QT_PLUGINDIR%%/kopete_jabber.so %%QT_PLUGINDIR%%/kopete_otr.so %%QT_PLUGINDIR%%/kopete_privacy.so %%QT_PLUGINDIR%%/kopete_qq.so %%QT_PLUGINDIR%%/kopete_statistics.so %%QT_PLUGINDIR%%/kopete_testbed.so %%QT_PLUGINDIR%%/kopete_texteffect.so %%QT_PLUGINDIR%%/kopete_urlpicpreview.so %%QT_PLUGINDIR%%/kopete_webpresence.so %%QT_PLUGINDIR%%/kopete_wp.so share/applications/org.kde.kopete.desktop share/config.kcfg/historyconfig.kcfg share/config.kcfg/kopete_otr.kcfg share/config.kcfg/kopeteappearancesettings.kcfg share/config.kcfg/kopetebehaviorsettings.kcfg share/config.kcfg/kopetestatussettings.kcfg share/config.kcfg/urlpicpreview.kcfg share/config.kcfg/webpresenceconfig.kcfg share/dbus-1/interfaces/org.kde.Kopete.xml share/dbus-1/interfaces/org.kde.kopete.Client.xml share/dbus-1/interfaces/org.kde.kopete.Statistics.xml share/icons/hicolor/128x128/apps/kopete-offline.png share/icons/hicolor/128x128/apps/kopete.png share/icons/hicolor/16x16/apps/kopete-offline.png share/icons/hicolor/16x16/apps/kopete.png share/icons/hicolor/22x22/apps/kopete-offline.png share/icons/hicolor/22x22/apps/kopete.png share/icons/hicolor/32x32/apps/kopete-offline.png share/icons/hicolor/32x32/apps/kopete.png share/icons/hicolor/48x48/apps/kopete-offline.png share/icons/hicolor/48x48/apps/kopete.png share/icons/hicolor/64x64/apps/kopete-offline.png share/icons/hicolor/64x64/apps/kopete.png share/icons/hicolor/scalable/apps/kopete-offline.svgz share/icons/hicolor/scalable/apps/kopete.svgz share/icons/oxygen/128x128/actions/voicecall.png share/icons/oxygen/128x128/actions/webcamreceive.png share/icons/oxygen/128x128/actions/webcamsend.png share/icons/oxygen/128x128/apps/kopete_avdevice.png share/icons/oxygen/16x16/actions/account_offline_overlay.png share/icons/oxygen/16x16/actions/contact_away_overlay.png share/icons/oxygen/16x16/actions/contact_busy_overlay.png share/icons/oxygen/16x16/actions/contact_food_overlay.png share/icons/oxygen/16x16/actions/contact_freeforchat_overlay.png share/icons/oxygen/16x16/actions/contact_invisible_overlay.png share/icons/oxygen/16x16/actions/contact_phone_overlay.png share/icons/oxygen/16x16/actions/contact_xa_overlay.png share/icons/oxygen/16x16/actions/emoticon.png share/icons/oxygen/16x16/actions/im-status-message-edit.png share/icons/oxygen/16x16/actions/metacontact_unknown.png share/icons/oxygen/16x16/actions/status_unknown.png share/icons/oxygen/16x16/actions/status_unknown_overlay.png share/icons/oxygen/16x16/actions/view-user-offline-kopete.png share/icons/oxygen/16x16/actions/voicecall.png share/icons/oxygen/16x16/actions/webcamreceive.png share/icons/oxygen/16x16/actions/webcamsend.png share/icons/oxygen/22x22/actions/account_offline_overlay.png share/icons/oxygen/22x22/actions/im-status-message-edit.png share/icons/oxygen/22x22/actions/view-user-offline-kopete.png share/icons/oxygen/22x22/actions/voicecall.png share/icons/oxygen/22x22/actions/webcamreceive.png share/icons/oxygen/22x22/actions/webcamsend.png share/icons/oxygen/22x22/apps/kopete_avdevice.png share/icons/oxygen/22x22/status/object-locked-finished.png share/icons/oxygen/22x22/status/object-locked-unverified.png share/icons/oxygen/22x22/status/object-locked-verified.png share/icons/oxygen/32x32/actions/account_offline_overlay.png share/icons/oxygen/32x32/actions/im-status-message-edit.png share/icons/oxygen/32x32/actions/metacontact_unknown.png share/icons/oxygen/32x32/actions/view-user-offline-kopete.png share/icons/oxygen/32x32/actions/voicecall.png share/icons/oxygen/32x32/actions/webcamreceive.png share/icons/oxygen/32x32/actions/webcamsend.png share/icons/oxygen/32x32/apps/kopete_avdevice.png share/icons/oxygen/48x48/actions/im-status-message-edit.png share/icons/oxygen/48x48/actions/mail-encrypt.png share/icons/oxygen/48x48/actions/view-user-offline-kopete.png share/icons/oxygen/48x48/actions/voicecall.png share/icons/oxygen/48x48/actions/webcamreceive.png share/icons/oxygen/48x48/actions/webcamsend.png share/icons/oxygen/64x64/actions/voicecall.png share/icons/oxygen/64x64/actions/webcamreceive.png share/icons/oxygen/64x64/actions/webcamsend.png share/icons/oxygen/64x64/apps/kopete_avdevice.png share/icons/oxygen/scalable/actions/account_offline_overlay.svgz share/icons/oxygen/scalable/actions/im-status-message-edit.svgz share/icons/oxygen/scalable/actions/view-user-offline-kopete.svgz share/icons/oxygen/scalable/actions/voicecall.svgz share/icons/oxygen/scalable/actions/webcamreceive.svgz share/icons/oxygen/scalable/actions/webcamsend.svgz share/kconf_update/kopete-account-0.10.pl share/kconf_update/kopete-account-kconf_update.sh share/kconf_update/kopete-account-kconf_update.upd share/kconf_update/kopete-gaim_to_pidgin_style.pl share/kconf_update/kopete-gaim_to_pidgin_style.upd share/kconf_update/kopete-initialstatus.pl share/kconf_update/kopete-initialstatus.upd share/kconf_update/kopete-jabberpriorityaddition-kconf_update.sh share/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd share/kconf_update/kopete-jabberproxytype-kconf_update.sh share/kconf_update/kopete-jabberproxytype-kconf_update.upd share/kconf_update/kopete-nameTracking.upd share/kconf_update/kopete-pluginloader.pl share/kconf_update/kopete-pluginloader.upd share/kconf_update/kopete-pluginloader2.sh share/kconf_update/kopete-pluginloader2.upd share/kconf_update/kopete-update_icq_server.pl share/kconf_update/kopete-update_icq_server.upd share/kconf_update/kopete-update_icq_ssl.pl share/kconf_update/kopete-update_icq_ssl.upd share/knotifications5/kopete.notifyrc %%DATADIR%%/CompactContactListLayouts.xml %%DATADIR%%/DefaultContactListLayouts.xml %%DATADIR%%/icons/hicolor/128x128/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/128x128/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_away.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/aim_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/aim_online.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_away.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_busy.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/groupwise_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_away.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/icq_dnd.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_ffc.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_na.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_occupied.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_online.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus0.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus1.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus10.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus11.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus12.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus13.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus14.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus15.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus16.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus17.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus18.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus19.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus2.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus20.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus21.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus22.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus23.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus24.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus25.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus26.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus27.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus28.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus29.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus3.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus30.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus31.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus4.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus5.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus6.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus7.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus8.png %%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus9.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_away.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_chatty.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/jabber_group.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_invisible.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_na.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_offline.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_online.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_original.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_raw.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_off.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_serv_on.png %%DATADIR%%/icons/hicolor/16x16/actions/jabber_xa.png %%DATADIR%%/icons/hicolor/16x16/actions/logging.png %%DATADIR%%/icons/hicolor/16x16/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/16x16/actions/wp_away.png %%DATADIR%%/icons/hicolor/16x16/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_aim.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_gadu.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_http-ws.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_icq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_irc.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_msn.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_qq.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_sms.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_smtp.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_tlen.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_gateway_yahoo.png %%DATADIR%%/icons/hicolor/16x16/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/16x16/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/22x22/actions/logging.png %%DATADIR%%/icons/hicolor/22x22/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/22x22/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/22x22/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/actions/logging.png %%DATADIR%%/icons/hicolor/32x32/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/32x32/apps/aim_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/icq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-plugin-text-effect-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-autocorrection-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/preferences-text-highlighting-kopete.png %%DATADIR%%/icons/hicolor/32x32/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/32x32/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/48x48/actions/logging.png %%DATADIR%%/icons/hicolor/48x48/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/48x48/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/48x48/apps/wp_protocol.png %%DATADIR%%/icons/hicolor/64x64/actions/logging.png %%DATADIR%%/icons/hicolor/64x64/actions/qq_connecting.mng %%DATADIR%%/icons/hicolor/64x64/apps/bonjour_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/groupwise_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/jabber_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/qq_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/testbed_protocol.png %%DATADIR%%/icons/hicolor/64x64/apps/wp_protocol.png %%DATADIR%%/styles/Clean/Contents/Resources/Footer.html %%DATADIR%%/styles/Clean/Contents/Resources/Header.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clean/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clean/Contents/Resources/Status.html %%DATADIR%%/styles/Clean/Contents/Resources/images/action.png %%DATADIR%%/styles/Clean/Contents/Resources/images/important.png %%DATADIR%%/styles/Clean/Contents/Resources/images/internal.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clean/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clean/Contents/Resources/main.css %%DATADIR%%/styles/Clear/Contents/Resources/Footer.html %%DATADIR%%/styles/Clear/Contents/Resources/Header.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Clear/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Clear/Contents/Resources/Status.html %%DATADIR%%/styles/Clear/Contents/Resources/Variants/No_avatars.css %%DATADIR%%/styles/Clear/Contents/Resources/images/body-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-arrow.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-avatar.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/body-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/footer-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-inbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-background.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-left.png %%DATADIR%%/styles/Clear/Contents/Resources/images/header-outbound-right.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-action.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-highlighted.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-internal.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-me.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-time.png %%DATADIR%%/styles/Clear/Contents/Resources/images/icon-you.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Clear/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Clear/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/COPYRIGHT %%DATADIR%%/styles/Hacker/Contents/Info.plist %%DATADIR%%/styles/Hacker/Contents/Resources/Footer.html %%DATADIR%%/styles/Hacker/Contents/Resources/Header.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/Context.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/NextContext.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Hacker/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Hacker/Contents/Resources/Status.html %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2.css %%DATADIR%%/styles/Hacker/Contents/Resources/images/background.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/background2.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/kopete.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending-white.gif %%DATADIR%%/styles/Hacker/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Hacker/Contents/Resources/main.css %%DATADIR%%/styles/Hacker/README %%DATADIR%%/styles/Hacker/gpl.txt %%DATADIR%%/styles/Konqi/Contents/Resources/Footer.html %%DATADIR%%/styles/Konqi/Contents/Resources/Header.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Konqi/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Konqi/Contents/Resources/Status.html %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_moon_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_blue_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_trans.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/Side_green_without_transparency.css %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre1.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre2.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre3.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre4.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre5.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/cadre6.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-blue.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-green.png %%DATADIR%%/styles/Konqi/Contents/Resources/Variants/konqui/konqui-moon.jpg %%DATADIR%%/styles/Konqi/Contents/Resources/main.css %%DATADIR%%/styles/Konqi/Contents/Resources/puce.png %%DATADIR%%/styles/Kopete/Contents/Resources/Footer.html %%DATADIR%%/styles/Kopete/Contents/Resources/Header.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Incoming/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Kopete/Contents/Resources/Outgoing/buddy_icon.png %%DATADIR%%/styles/Kopete/Contents/Resources/Status.html %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Big_pictures.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_.css %%DATADIR%%/styles/Kopete/Contents/Resources/Variants/_compact_Contact_color.css %%DATADIR%%/styles/Kopete/Contents/Resources/images/action.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/important.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Kopete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Kopete/Contents/Resources/images/system.png %%DATADIR%%/styles/Kopete/Contents/Resources/main.css %%DATADIR%%/styles/Pidgin/Contents/Info.plist %%DATADIR%%/styles/Pidgin/Contents/Resources/Footer.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Header.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Status.html %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Contact-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Name-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/No-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/Variants/Status-Colors.css %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Pidgin/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Pidgin/Contents/Resources/main.css %%DATADIR%%/styles/Retropete/Contents/Resources/Footer.html %%DATADIR%%/styles/Retropete/Contents/Resources/Header.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Incoming/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Action.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/Content.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/NextContent.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateError.html %%DATADIR%%/styles/Retropete/Contents/Resources/Outgoing/StateSending.html %%DATADIR%%/styles/Retropete/Contents/Resources/Status.html %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-error.png %%DATADIR%%/styles/Retropete/Contents/Resources/images/state-sending.gif %%DATADIR%%/styles/Retropete/Contents/Resources/main.css %%DATADIR%%/webpresence/webpresence_html.xsl %%DATADIR%%/webpresence/webpresence_html_images.xsl %%DATADIR%%/webpresence/webpresence_xhtml.xsl %%DATADIR%%/webpresence/webpresence_xhtml_images.xsl %%DATADIR%%_history/historychatui.rc %%DATADIR%%_history/historyui.rc share/kservices5/aim.protocol share/kservices5/chatwindow.desktop share/kservices5/emailwindow.desktop share/kservices5/kconfiguredialog/kopete_addbookmarks_config.desktop share/kservices5/kconfiguredialog/kopete_autoreplace_config.desktop share/kservices5/kconfiguredialog/kopete_highlight_config.desktop share/kservices5/kconfiguredialog/kopete_history_config.desktop share/kservices5/kconfiguredialog/kopete_otr_config.desktop share/kservices5/kconfiguredialog/kopete_privacy_config.desktop share/kservices5/kconfiguredialog/kopete_texteffect_config.desktop share/kservices5/kconfiguredialog/kopete_urlpicpreview_config.desktop share/kservices5/kconfiguredialog/kopete_webpresence_config.desktop share/kservices5/kopete_accountconfig.desktop share/kservices5/kopete_addbookmarks.desktop share/kservices5/kopete_aim.desktop share/kservices5/kopete_appearanceconfig.desktop share/kservices5/kopete_autoreplace.desktop share/kservices5/kopete_avdeviceconfig.desktop share/kservices5/kopete_behaviorconfig.desktop share/kservices5/kopete_bonjour.desktop share/kservices5/kopete_chatwindowconfig.desktop share/kservices5/kopete_contactnotes.desktop share/kservices5/kopete_groupwise.desktop share/kservices5/kopete_highlight.desktop share/kservices5/kopete_history.desktop share/kservices5/kopete_icq.desktop share/kservices5/kopete_jabber.desktop share/kservices5/kopete_otr.desktop share/kservices5/kopete_pluginconfig.desktop share/kservices5/kopete_privacy.desktop share/kservices5/kopete_qq.desktop share/kservices5/kopete_statistics.desktop share/kservices5/kopete_statusconfig.desktop share/kservices5/kopete_testbed.desktop share/kservices5/kopete_texteffect.desktop share/kservices5/kopete_urlpicpreview.desktop share/kservices5/kopete_webpresence.desktop share/kservices5/kopete_wp.desktop share/kservices5/xmpp.protocol share/kservicetypes5/kopeteplugin.desktop share/kservicetypes5/kopeteprotocol.desktop share/kservicetypes5/kopeteui.desktop share/kxmlgui5/kopete/kopetechatwindow.rc share/kxmlgui5/kopete/kopeteemailwindow.rc share/kxmlgui5/kopete/kopeteui.rc share/kxmlgui5/kopete/privacychatui.rc share/kxmlgui5/kopete/privacyui.rc share/kxmlgui5/kopete_groupwise/gwchatui.rc share/kxmlgui5/kopete_otr/otrchatui.rc share/kxmlgui5/kopete_otr/otrui.rc share/locale/ar/LC_MESSAGES/kio_jabberdisco.mo share/locale/ar/LC_MESSAGES/kopete.mo +share/locale/be/LC_MESSAGES/kio_jabberdisco.mo +share/locale/be/LC_MESSAGES/kopete.mo share/locale/bg/LC_MESSAGES/kio_jabberdisco.mo share/locale/bg/LC_MESSAGES/kopete.mo share/locale/bs/LC_MESSAGES/kio_jabberdisco.mo share/locale/bs/LC_MESSAGES/kopete.mo share/locale/ca/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca/LC_MESSAGES/kopete.mo share/locale/ca@valencia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ca@valencia/LC_MESSAGES/kopete.mo share/locale/cs/LC_MESSAGES/kio_jabberdisco.mo share/locale/cs/LC_MESSAGES/kopete.mo share/locale/da/LC_MESSAGES/kio_jabberdisco.mo share/locale/da/LC_MESSAGES/kopete.mo share/locale/de/LC_MESSAGES/kio_jabberdisco.mo share/locale/de/LC_MESSAGES/kopete.mo share/locale/el/LC_MESSAGES/kio_jabberdisco.mo share/locale/el/LC_MESSAGES/kopete.mo share/locale/en_GB/LC_MESSAGES/kio_jabberdisco.mo share/locale/en_GB/LC_MESSAGES/kopete.mo share/locale/eo/LC_MESSAGES/kio_jabberdisco.mo share/locale/eo/LC_MESSAGES/kopete.mo share/locale/es/LC_MESSAGES/kio_jabberdisco.mo share/locale/es/LC_MESSAGES/kopete.mo share/locale/et/LC_MESSAGES/kio_jabberdisco.mo share/locale/et/LC_MESSAGES/kopete.mo share/locale/eu/LC_MESSAGES/kio_jabberdisco.mo share/locale/eu/LC_MESSAGES/kopete.mo share/locale/fa/LC_MESSAGES/kio_jabberdisco.mo share/locale/fa/LC_MESSAGES/kopete.mo share/locale/fi/LC_MESSAGES/kio_jabberdisco.mo share/locale/fi/LC_MESSAGES/kopete.mo share/locale/fr/LC_MESSAGES/kio_jabberdisco.mo share/locale/fr/LC_MESSAGES/kopete.mo share/locale/ga/LC_MESSAGES/kio_jabberdisco.mo share/locale/ga/LC_MESSAGES/kopete.mo share/locale/gl/LC_MESSAGES/kio_jabberdisco.mo share/locale/gl/LC_MESSAGES/kopete.mo share/locale/he/LC_MESSAGES/kopete.mo share/locale/hi/LC_MESSAGES/kio_jabberdisco.mo share/locale/hi/LC_MESSAGES/kopete.mo share/locale/hr/LC_MESSAGES/kio_jabberdisco.mo share/locale/hr/LC_MESSAGES/kopete.mo share/locale/hu/LC_MESSAGES/kio_jabberdisco.mo share/locale/hu/LC_MESSAGES/kopete.mo share/locale/ia/LC_MESSAGES/kio_jabberdisco.mo share/locale/ia/LC_MESSAGES/kopete.mo share/locale/is/LC_MESSAGES/kio_jabberdisco.mo share/locale/is/LC_MESSAGES/kopete.mo share/locale/it/LC_MESSAGES/kio_jabberdisco.mo share/locale/it/LC_MESSAGES/kopete.mo share/locale/ja/LC_MESSAGES/kio_jabberdisco.mo share/locale/ja/LC_MESSAGES/kopete.mo share/locale/kk/LC_MESSAGES/kio_jabberdisco.mo share/locale/kk/LC_MESSAGES/kopete.mo share/locale/km/LC_MESSAGES/kio_jabberdisco.mo share/locale/km/LC_MESSAGES/kopete.mo share/locale/ko/LC_MESSAGES/kio_jabberdisco.mo share/locale/ko/LC_MESSAGES/kopete.mo share/locale/lt/LC_MESSAGES/kio_jabberdisco.mo share/locale/lt/LC_MESSAGES/kopete.mo share/locale/lv/LC_MESSAGES/kio_jabberdisco.mo share/locale/lv/LC_MESSAGES/kopete.mo share/locale/ml/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kio_jabberdisco.mo share/locale/mr/LC_MESSAGES/kopete.mo share/locale/nb/LC_MESSAGES/kio_jabberdisco.mo share/locale/nb/LC_MESSAGES/kopete.mo share/locale/nds/LC_MESSAGES/kio_jabberdisco.mo share/locale/nds/LC_MESSAGES/kopete.mo share/locale/nl/LC_MESSAGES/kio_jabberdisco.mo share/locale/nl/LC_MESSAGES/kopete.mo share/locale/nn/LC_MESSAGES/kio_jabberdisco.mo share/locale/nn/LC_MESSAGES/kopete.mo share/locale/pa/LC_MESSAGES/kio_jabberdisco.mo share/locale/pa/LC_MESSAGES/kopete.mo share/locale/pl/LC_MESSAGES/kio_jabberdisco.mo share/locale/pl/LC_MESSAGES/kopete.mo share/locale/pt/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt/LC_MESSAGES/kopete.mo share/locale/pt_BR/LC_MESSAGES/kio_jabberdisco.mo share/locale/pt_BR/LC_MESSAGES/kopete.mo share/locale/ro/LC_MESSAGES/kio_jabberdisco.mo share/locale/ro/LC_MESSAGES/kopete.mo share/locale/ru/LC_MESSAGES/kio_jabberdisco.mo share/locale/ru/LC_MESSAGES/kopete.mo +share/locale/se/LC_MESSAGES/kio_jabberdisco.mo +share/locale/se/LC_MESSAGES/kopete.mo share/locale/sk/LC_MESSAGES/kio_jabberdisco.mo share/locale/sk/LC_MESSAGES/kopete.mo share/locale/sl/LC_MESSAGES/kio_jabberdisco.mo share/locale/sl/LC_MESSAGES/kopete.mo +share/locale/sq/LC_MESSAGES/kio_jabberdisco.mo +share/locale/sq/LC_MESSAGES/kopete.mo share/locale/sr/LC_MESSAGES/kio_jabberdisco.mo share/locale/sr/LC_MESSAGES/kopete.mo share/locale/sv/LC_MESSAGES/kio_jabberdisco.mo share/locale/sv/LC_MESSAGES/kopete.mo +share/locale/ta/LC_MESSAGES/kopete.mo +share/locale/tg/LC_MESSAGES/kopete.mo share/locale/tr/LC_MESSAGES/kio_jabberdisco.mo share/locale/tr/LC_MESSAGES/kopete.mo share/locale/ug/LC_MESSAGES/kio_jabberdisco.mo share/locale/ug/LC_MESSAGES/kopete.mo share/locale/uk/LC_MESSAGES/kio_jabberdisco.mo share/locale/uk/LC_MESSAGES/kopete.mo +share/locale/vi/LC_MESSAGES/kio_jabberdisco.mo +share/locale/vi/LC_MESSAGES/kopete.mo share/locale/wa/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kopete.mo share/locale/zh_TW/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_TW/LC_MESSAGES/kopete.mo share/metainfo/org.kde.kopete.appdata.xml share/sounds/Kopete_Event.ogg share/sounds/Kopete_Received.ogg share/sounds/Kopete_Sent.ogg share/sounds/Kopete_User_is_Online.ogg diff --git a/net-im/ktp-accounts-kcm/distinfo b/net-im/ktp-accounts-kcm/distinfo index 613a5f2662ff..9336c10cdff7 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741517 -SHA256 (KDE/release-service/21.04.1/ktp-accounts-kcm-21.04.1.tar.xz) = e48dbcbe53189b62280496ce9be93d5b839db66212abd3376c0e41c5a2f15686 -SIZE (KDE/release-service/21.04.1/ktp-accounts-kcm-21.04.1.tar.xz) = 263972 +TIMESTAMP = 1623520954 +SHA256 (KDE/release-service/21.04.2/ktp-accounts-kcm-21.04.2.tar.xz) = bd3af02338de6af522a1fc1ae531bfef7cca23f41998a212e2921ac366db5e19 +SIZE (KDE/release-service/21.04.2/ktp-accounts-kcm-21.04.2.tar.xz) = 266036 diff --git a/net-im/ktp-accounts-kcm/pkg-plist b/net-im/ktp-accounts-kcm/pkg-plist index 4cc5bfc3f3c3..d0075fd8599d 100644 --- a/net-im/ktp-accounts-kcm/pkg-plist +++ b/net-im/ktp-accounts-kcm/pkg-plist @@ -1,520 +1,527 @@ %%QT_PLUGINDIR%%/kaccounts/ui/ktpaccountskcm_plugin_kaccounts.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_gabble.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_haze.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_idle.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_morse.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_salut.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_sipe.so %%QT_PLUGINDIR%%/ktpaccountskcm_plugin_sunshine.so lib/libktpaccountskcminternal.so.%%KDE_APPLICATIONS_VERSION%% lib/libktpaccountskcminternal.so.9 share/accounts/providers/kde/ktp-gadugadu.provider share/accounts/providers/kde/ktp-generic.provider share/accounts/providers/kde/ktp-haze-aim.provider share/accounts/providers/kde/ktp-haze-icq.provider share/accounts/providers/kde/ktp-haze-sametime.provider share/accounts/providers/kde/ktp-haze-skypeweb.provider share/accounts/providers/kde/ktp-haze-yahoo.provider share/accounts/providers/kde/ktp-jabber.provider share/accounts/providers/kde/ktp-kde-talk.provider share/accounts/providers/kde/ktp-morse-telegram.provider share/accounts/providers/kde/ktp-salut.provider share/accounts/providers/kde/ktp-sipe-haze.provider share/accounts/providers/kde/ktp-sipe.provider share/accounts/services/kde/google-im.service share/accounts/services/kde/ktp-generic-im.service share/accounts/services/kde/ktp-haze-aim-im.service share/accounts/services/kde/ktp-haze-gadugadu-im.service share/accounts/services/kde/ktp-haze-icq-im.service share/accounts/services/kde/ktp-haze-sametime-im.service share/accounts/services/kde/ktp-haze-skypeweb-im.service share/accounts/services/kde/ktp-haze-yahoo-im.service share/accounts/services/kde/ktp-jabber-im.service share/accounts/services/kde/ktp-kde-talk-im.service share/accounts/services/kde/ktp-morse-telegram-im.service share/accounts/services/kde/ktp-salut-im.service share/accounts/services/kde/ktp-sipe-haze-im.service share/accounts/services/kde/ktp-sipe-im.service share/kservices5/ktpaccountskcm_plugin_gabble.desktop share/kservices5/ktpaccountskcm_plugin_haze.desktop share/kservices5/ktpaccountskcm_plugin_idle.desktop share/kservices5/ktpaccountskcm_plugin_morse.desktop share/kservices5/ktpaccountskcm_plugin_salut.desktop share/kservices5/ktpaccountskcm_plugin_sipe.desktop share/kservices5/ktpaccountskcm_plugin_sunshine.desktop share/kservicetypes5/ktpaccountskcminternal-accountuiplugin.desktop share/locale/ar/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ar/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/bs/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/bs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ca/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ca/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ca@valencia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/cs/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/cs/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/da/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/da/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/de/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/de/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/el/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/el/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/en_GB/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/eo/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/es/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/es/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/et/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/et/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/eu/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/eu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/fi/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/fi/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/fr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/fr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ga/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ga/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/gl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/gl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/hu/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/hu/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ia/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ia/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/it/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/it/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ja/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ja/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/kk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/kk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/km/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/km/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ko/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ko/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/lt/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/lt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/mr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/mr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nb/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nb/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nds/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nds/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/nn/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/nn/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pa/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pa/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pt/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pt/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/pt_BR/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ro/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ro/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ru/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/ru/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sl/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sl/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/sv/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/sv/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/tr/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/tr/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/ug/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/ug/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/uk/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/uk/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo +share/locale/vi/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/wa/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/zh_CN/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_accounts.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo share/locale/zh_TW/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo share/telepathy/profiles/bigbrownchunx-skype-dbus.profile share/telepathy/profiles/facebook.profile share/telepathy/profiles/gadugadu.profile share/telepathy/profiles/google-talk.profile share/telepathy/profiles/irc.profile share/telepathy/profiles/jabber.profile share/telepathy/profiles/kde-talk.profile share/telepathy/profiles/local-xmpp.profile share/telepathy/profiles/msn-xmpp.profile share/telepathy/profiles/msn.profile share/telepathy/profiles/sipe-haze.profile share/telepathy/profiles/sms.profile share/telepathy/profiles/sofiasip-sip.profile share/telepathy/profiles/steam.profile diff --git a/net-im/ktp-approver/distinfo b/net-im/ktp-approver/distinfo index a9f73469fd32..5377e0f06948 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741518 -SHA256 (KDE/release-service/21.04.1/ktp-approver-21.04.1.tar.xz) = 6d67f5f87f2d0320de09654c629057c2df922d0690e362c1c33b3f2f260a623c -SIZE (KDE/release-service/21.04.1/ktp-approver-21.04.1.tar.xz) = 37468 +TIMESTAMP = 1623520956 +SHA256 (KDE/release-service/21.04.2/ktp-approver-21.04.2.tar.xz) = fea5c0bcc465f136ac465935a376f34552e95984b2f6bdb945328360654b4173 +SIZE (KDE/release-service/21.04.2/ktp-approver-21.04.2.tar.xz) = 37476 diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 95832df3a592..7327e5c7daa3 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741518 -SHA256 (KDE/release-service/21.04.1/ktp-auth-handler-21.04.1.tar.xz) = 2a70125c02d7e2188805ce800b5bf08be361243e0a77529d20afef9ba34009f6 -SIZE (KDE/release-service/21.04.1/ktp-auth-handler-21.04.1.tar.xz) = 46720 +TIMESTAMP = 1623520958 +SHA256 (KDE/release-service/21.04.2/ktp-auth-handler-21.04.2.tar.xz) = 50b6a8edea46d0897715d3ab5daaf26ab5074cda3a0c7a04737a4f585c101b90 +SIZE (KDE/release-service/21.04.2/ktp-auth-handler-21.04.2.tar.xz) = 47232 diff --git a/net-im/ktp-auth-handler/pkg-plist b/net-im/ktp-auth-handler/pkg-plist index c6875aba5f8c..19f6e6560c7a 100644 --- a/net-im/ktp-auth-handler/pkg-plist +++ b/net-im/ktp-auth-handler/pkg-plist @@ -1,50 +1,51 @@ lib/libexec/ktp-auth-handler share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.ConfAuthObserver.service share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.SASLHandler.service share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.TLSHandler.service share/locale/ar/LC_MESSAGES/ktp-auth-handler.mo share/locale/bs/LC_MESSAGES/ktp-auth-handler.mo share/locale/ca/LC_MESSAGES/ktp-auth-handler.mo share/locale/ca@valencia/LC_MESSAGES/ktp-auth-handler.mo share/locale/cs/LC_MESSAGES/ktp-auth-handler.mo share/locale/da/LC_MESSAGES/ktp-auth-handler.mo share/locale/de/LC_MESSAGES/ktp-auth-handler.mo share/locale/el/LC_MESSAGES/ktp-auth-handler.mo share/locale/en_GB/LC_MESSAGES/ktp-auth-handler.mo share/locale/es/LC_MESSAGES/ktp-auth-handler.mo share/locale/et/LC_MESSAGES/ktp-auth-handler.mo share/locale/eu/LC_MESSAGES/ktp-auth-handler.mo share/locale/fi/LC_MESSAGES/ktp-auth-handler.mo share/locale/fr/LC_MESSAGES/ktp-auth-handler.mo share/locale/ga/LC_MESSAGES/ktp-auth-handler.mo share/locale/gl/LC_MESSAGES/ktp-auth-handler.mo share/locale/hu/LC_MESSAGES/ktp-auth-handler.mo share/locale/ia/LC_MESSAGES/ktp-auth-handler.mo share/locale/it/LC_MESSAGES/ktp-auth-handler.mo share/locale/ja/LC_MESSAGES/ktp-auth-handler.mo share/locale/kk/LC_MESSAGES/ktp-auth-handler.mo share/locale/km/LC_MESSAGES/ktp-auth-handler.mo share/locale/ko/LC_MESSAGES/ktp-auth-handler.mo share/locale/lt/LC_MESSAGES/ktp-auth-handler.mo share/locale/mr/LC_MESSAGES/ktp-auth-handler.mo share/locale/nb/LC_MESSAGES/ktp-auth-handler.mo share/locale/nds/LC_MESSAGES/ktp-auth-handler.mo share/locale/nl/LC_MESSAGES/ktp-auth-handler.mo share/locale/nn/LC_MESSAGES/ktp-auth-handler.mo share/locale/pl/LC_MESSAGES/ktp-auth-handler.mo share/locale/pt/LC_MESSAGES/ktp-auth-handler.mo share/locale/pt_BR/LC_MESSAGES/ktp-auth-handler.mo share/locale/ro/LC_MESSAGES/ktp-auth-handler.mo share/locale/ru/LC_MESSAGES/ktp-auth-handler.mo share/locale/sk/LC_MESSAGES/ktp-auth-handler.mo share/locale/sl/LC_MESSAGES/ktp-auth-handler.mo share/locale/sr/LC_MESSAGES/ktp-auth-handler.mo share/locale/sv/LC_MESSAGES/ktp-auth-handler.mo share/locale/tr/LC_MESSAGES/ktp-auth-handler.mo share/locale/ug/LC_MESSAGES/ktp-auth-handler.mo share/locale/uk/LC_MESSAGES/ktp-auth-handler.mo +share/locale/vi/LC_MESSAGES/ktp-auth-handler.mo share/locale/zh_CN/LC_MESSAGES/ktp-auth-handler.mo share/locale/zh_TW/LC_MESSAGES/ktp-auth-handler.mo share/telepathy/clients/KTp.ConfAuthObserver.client share/telepathy/clients/KTp.SASLHandler.client share/telepathy/clients/KTp.TLSHandler.client diff --git a/net-im/ktp-call-ui/distinfo b/net-im/ktp-call-ui/distinfo index 7d0a1ef33bdb..2f50f319ee44 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741519 -SHA256 (KDE/release-service/21.04.1/ktp-call-ui-21.04.1.tar.xz) = f6c3b5fffcec13f2d8298dde8e2ca50785c01a0d0231c93516882dece09beb17 -SIZE (KDE/release-service/21.04.1/ktp-call-ui-21.04.1.tar.xz) = 97504 +TIMESTAMP = 1623520960 +SHA256 (KDE/release-service/21.04.2/ktp-call-ui-21.04.2.tar.xz) = c304426166f13dd7c9edf9c4cb06b2f1572c22d10bf13203004a777764d68da0 +SIZE (KDE/release-service/21.04.2/ktp-call-ui-21.04.2.tar.xz) = 98532 diff --git a/net-im/ktp-call-ui/pkg-plist b/net-im/ktp-call-ui/pkg-plist index f74d5d3fa38f..dda54a64bb21 100644 --- a/net-im/ktp-call-ui/pkg-plist +++ b/net-im/ktp-call-ui/pkg-plist @@ -1,59 +1,60 @@ bin/ktp-dialout-ui lib/libexec/ktp-call-ui share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.CallUi.service %%DATADIR%%/Main.qml %%DATADIR%%/core/Button.qml %%DATADIR%%/core/Dtmf.qml %%DATADIR%%/core/DtmfButton.qml %%DATADIR%%/core/Label.qml %%DATADIR%%/core/Separator.qml %%DATADIR%%/core/ToggleButton.qml %%DATADIR%%/core/Toolbar.qml %%DATADIR%%/core/Tooltip.qml share/kxmlgui5/ktp-call-ui/callwindowui.rc share/locale/bg/LC_MESSAGES/ktp-call-ui.mo share/locale/bs/LC_MESSAGES/ktp-call-ui.mo share/locale/ca/LC_MESSAGES/ktp-call-ui.mo share/locale/ca@valencia/LC_MESSAGES/ktp-call-ui.mo share/locale/cs/LC_MESSAGES/ktp-call-ui.mo share/locale/da/LC_MESSAGES/ktp-call-ui.mo share/locale/de/LC_MESSAGES/ktp-call-ui.mo share/locale/el/LC_MESSAGES/ktp-call-ui.mo share/locale/en_GB/LC_MESSAGES/ktp-call-ui.mo share/locale/eo/LC_MESSAGES/ktp-call-ui.mo share/locale/es/LC_MESSAGES/ktp-call-ui.mo share/locale/et/LC_MESSAGES/ktp-call-ui.mo share/locale/fi/LC_MESSAGES/ktp-call-ui.mo share/locale/fr/LC_MESSAGES/ktp-call-ui.mo share/locale/ga/LC_MESSAGES/ktp-call-ui.mo share/locale/gl/LC_MESSAGES/ktp-call-ui.mo share/locale/hu/LC_MESSAGES/ktp-call-ui.mo share/locale/ia/LC_MESSAGES/ktp-call-ui.mo share/locale/it/LC_MESSAGES/ktp-call-ui.mo share/locale/ja/LC_MESSAGES/ktp-call-ui.mo share/locale/kk/LC_MESSAGES/ktp-call-ui.mo share/locale/km/LC_MESSAGES/ktp-call-ui.mo share/locale/ko/LC_MESSAGES/ktp-call-ui.mo share/locale/lt/LC_MESSAGES/ktp-call-ui.mo share/locale/eu/LC_MESSAGES/ktp-call-ui.mo share/locale/mr/LC_MESSAGES/ktp-call-ui.mo share/locale/nb/LC_MESSAGES/ktp-call-ui.mo share/locale/nds/LC_MESSAGES/ktp-call-ui.mo share/locale/nl/LC_MESSAGES/ktp-call-ui.mo share/locale/nn/LC_MESSAGES/ktp-call-ui.mo share/locale/pa/LC_MESSAGES/ktp-call-ui.mo share/locale/pl/LC_MESSAGES/ktp-call-ui.mo share/locale/pt/LC_MESSAGES/ktp-call-ui.mo share/locale/pt_BR/LC_MESSAGES/ktp-call-ui.mo share/locale/ro/LC_MESSAGES/ktp-call-ui.mo share/locale/ru/LC_MESSAGES/ktp-call-ui.mo share/locale/sk/LC_MESSAGES/ktp-call-ui.mo share/locale/sl/LC_MESSAGES/ktp-call-ui.mo share/locale/sr/LC_MESSAGES/ktp-call-ui.mo share/locale/sv/LC_MESSAGES/ktp-call-ui.mo share/locale/tr/LC_MESSAGES/ktp-call-ui.mo share/locale/ug/LC_MESSAGES/ktp-call-ui.mo share/locale/uk/LC_MESSAGES/ktp-call-ui.mo +share/locale/vi/LC_MESSAGES/ktp-call-ui.mo share/locale/zh_CN/LC_MESSAGES/ktp-call-ui.mo share/locale/zh_TW/LC_MESSAGES/ktp-call-ui.mo share/telepathy/clients/KTp.CallUi.client diff --git a/net-im/ktp-common-internals/distinfo b/net-im/ktp-common-internals/distinfo index 4246e64d99a2..fdbd0e941c68 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741520 -SHA256 (KDE/release-service/21.04.1/ktp-common-internals-21.04.1.tar.xz) = eec6f6215738e380cf29668e404519eb4a7d6db51f97179aa8ea6af81383b711 -SIZE (KDE/release-service/21.04.1/ktp-common-internals-21.04.1.tar.xz) = 450696 +TIMESTAMP = 1623520962 +SHA256 (KDE/release-service/21.04.2/ktp-common-internals-21.04.2.tar.xz) = 6a11998c623955dd9a3f84657f7ae8bc514bdc221fbd3cf0e8b36b23e2eeb111 +SIZE (KDE/release-service/21.04.2/ktp-common-internals-21.04.2.tar.xz) = 450636 diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index ea456c2af8ab..1ec1485b917b 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741521 -SHA256 (KDE/release-service/21.04.1/ktp-contact-list-21.04.1.tar.xz) = 2f57043e5677a318c9ea7abca65243fffbfcc6ea8b01bd9ed6db07a26c31076b -SIZE (KDE/release-service/21.04.1/ktp-contact-list-21.04.1.tar.xz) = 151196 +TIMESTAMP = 1623520964 +SHA256 (KDE/release-service/21.04.2/ktp-contact-list-21.04.2.tar.xz) = be45f3a4858dcd354a464a935e2f3cae049c1a0f2fe1d744e8c6f3681946de3d +SIZE (KDE/release-service/21.04.2/ktp-contact-list-21.04.2.tar.xz) = 153092 diff --git a/net-im/ktp-contact-list/pkg-plist b/net-im/ktp-contact-list/pkg-plist index 653b663b0073..aaed19cf0765 100644 --- a/net-im/ktp-contact-list/pkg-plist +++ b/net-im/ktp-contact-list/pkg-plist @@ -1,47 +1,48 @@ bin/ktp-contactlist share/applications/org.kde.ktpcontactlist.desktop share/dbus-1/services/org.kde.ktpcontactlist.service share/locale/ar/LC_MESSAGES/ktp-contactlist.mo share/locale/bs/LC_MESSAGES/ktp-contactlist.mo share/locale/ca/LC_MESSAGES/ktp-contactlist.mo share/locale/ca@valencia/LC_MESSAGES/ktp-contactlist.mo share/locale/cs/LC_MESSAGES/ktp-contactlist.mo share/locale/da/LC_MESSAGES/ktp-contactlist.mo share/locale/de/LC_MESSAGES/ktp-contactlist.mo share/locale/el/LC_MESSAGES/ktp-contactlist.mo share/locale/en_GB/LC_MESSAGES/ktp-contactlist.mo share/locale/es/LC_MESSAGES/ktp-contactlist.mo share/locale/et/LC_MESSAGES/ktp-contactlist.mo share/locale/eu/LC_MESSAGES/ktp-contactlist.mo share/locale/fi/LC_MESSAGES/ktp-contactlist.mo share/locale/fr/LC_MESSAGES/ktp-contactlist.mo share/locale/ga/LC_MESSAGES/ktp-contactlist.mo share/locale/gl/LC_MESSAGES/ktp-contactlist.mo share/locale/hu/LC_MESSAGES/ktp-contactlist.mo share/locale/ia/LC_MESSAGES/ktp-contactlist.mo share/locale/it/LC_MESSAGES/ktp-contactlist.mo share/locale/ja/LC_MESSAGES/ktp-contactlist.mo share/locale/kk/LC_MESSAGES/ktp-contactlist.mo share/locale/km/LC_MESSAGES/ktp-contactlist.mo share/locale/ko/LC_MESSAGES/ktp-contactlist.mo share/locale/lt/LC_MESSAGES/ktp-contactlist.mo share/locale/mr/LC_MESSAGES/ktp-contactlist.mo share/locale/nb/LC_MESSAGES/ktp-contactlist.mo share/locale/nds/LC_MESSAGES/ktp-contactlist.mo share/locale/nl/LC_MESSAGES/ktp-contactlist.mo share/locale/nn/LC_MESSAGES/ktp-contactlist.mo share/locale/pa/LC_MESSAGES/ktp-contactlist.mo share/locale/pl/LC_MESSAGES/ktp-contactlist.mo share/locale/pt/LC_MESSAGES/ktp-contactlist.mo share/locale/pt_BR/LC_MESSAGES/ktp-contactlist.mo share/locale/ro/LC_MESSAGES/ktp-contactlist.mo share/locale/ru/LC_MESSAGES/ktp-contactlist.mo share/locale/sk/LC_MESSAGES/ktp-contactlist.mo share/locale/sl/LC_MESSAGES/ktp-contactlist.mo share/locale/sr/LC_MESSAGES/ktp-contactlist.mo share/locale/sv/LC_MESSAGES/ktp-contactlist.mo share/locale/tr/LC_MESSAGES/ktp-contactlist.mo share/locale/ug/LC_MESSAGES/ktp-contactlist.mo share/locale/uk/LC_MESSAGES/ktp-contactlist.mo +share/locale/vi/LC_MESSAGES/ktp-contactlist.mo share/locale/zh_CN/LC_MESSAGES/ktp-contactlist.mo share/locale/zh_TW/LC_MESSAGES/ktp-contactlist.mo diff --git a/net-im/ktp-contact-runner/distinfo b/net-im/ktp-contact-runner/distinfo index 9f5572637e25..be31315f7fa2 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741521 -SHA256 (KDE/release-service/21.04.1/ktp-contact-runner-21.04.1.tar.xz) = 5798fe46dd613fdf3d0a7510acc4d4379b141390cd3e2c4f17f025cb4f29b378 -SIZE (KDE/release-service/21.04.1/ktp-contact-runner-21.04.1.tar.xz) = 43228 +TIMESTAMP = 1623520965 +SHA256 (KDE/release-service/21.04.2/ktp-contact-runner-21.04.2.tar.xz) = 0e5d4c6a2184b2f8edad4373b0b73e615c7c10bff6327f01a2268d2df272a97d +SIZE (KDE/release-service/21.04.2/ktp-contact-runner-21.04.2.tar.xz) = 43860 diff --git a/net-im/ktp-contact-runner/pkg-plist b/net-im/ktp-contact-runner/pkg-plist index a37bd0c13c42..89a02675f07f 100644 --- a/net-im/ktp-contact-runner/pkg-plist +++ b/net-im/ktp-contact-runner/pkg-plist @@ -1,44 +1,45 @@ %%QT_PLUGINDIR%%/kf5/krunner/krunner_ktp_contacts.so share/locale/bs/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ca/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/cs/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/da/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/de/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/el/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/es/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/et/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/eu/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/fi/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/fr/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ga/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/gl/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/hu/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ia/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/it/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ja/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/kk/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/km/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ko/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/lt/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/mr/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/nb/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/nds/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/nl/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/nn/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/pa/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/pl/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/pt/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ro/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ru/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/sk/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/sl/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/sr/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/sv/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/tr/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/ug/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/uk/LC_MESSAGES/plasma_runner_ktp_contacts.mo +share/locale/vi/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_ktp_contacts.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_ktp_contacts.mo diff --git a/net-im/ktp-desktop-applets/distinfo b/net-im/ktp-desktop-applets/distinfo index 704de2343a9a..ba4eaeb26893 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741522 -SHA256 (KDE/release-service/21.04.1/ktp-desktop-applets-21.04.1.tar.xz) = 251da9bb083e3fbed328cf7d6ea4c07b64c42bd517d91dbb2d58c9ff64d872c7 -SIZE (KDE/release-service/21.04.1/ktp-desktop-applets-21.04.1.tar.xz) = 43724 +TIMESTAMP = 1623520967 +SHA256 (KDE/release-service/21.04.2/ktp-desktop-applets-21.04.2.tar.xz) = fd96f8d16747f2f2835073649de31f9bc9aa52995d32b773593e45f29da869cc +SIZE (KDE/release-service/21.04.2/ktp-desktop-applets-21.04.2.tar.xz) = 43648 diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index 6e605f5b8398..b6e385205c78 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741523 -SHA256 (KDE/release-service/21.04.1/ktp-filetransfer-handler-21.04.1.tar.xz) = 0259f20057c1e2fc683b4d7dabb89ee62c275ddd8c97db40ca0d4b4ea533033f -SIZE (KDE/release-service/21.04.1/ktp-filetransfer-handler-21.04.1.tar.xz) = 46420 +TIMESTAMP = 1623520969 +SHA256 (KDE/release-service/21.04.2/ktp-filetransfer-handler-21.04.2.tar.xz) = b45a56c35d47e7f12473071203c132714bdd7dcd5ba483fd67cb8eaf5e538f82 +SIZE (KDE/release-service/21.04.2/ktp-filetransfer-handler-21.04.2.tar.xz) = 46420 diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 0b067fce76fc..67e732a34599 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741523 -SHA256 (KDE/release-service/21.04.1/ktp-kded-module-21.04.1.tar.xz) = dfa56fcdfd31f0260ccfed8a9eed23cf4f5f32d588e17f9bac65f1cef692dc2f -SIZE (KDE/release-service/21.04.1/ktp-kded-module-21.04.1.tar.xz) = 98908 +TIMESTAMP = 1623520970 +SHA256 (KDE/release-service/21.04.2/ktp-kded-module-21.04.2.tar.xz) = 696879cd6c909a3e24b95783fc3b16cd46d713f98a1992dbd3a2a04f487bd80a +SIZE (KDE/release-service/21.04.2/ktp-kded-module-21.04.2.tar.xz) = 99168 diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index 9aff9a4379e0..353e46cdea75 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741524 -SHA256 (KDE/release-service/21.04.1/ktp-send-file-21.04.1.tar.xz) = c7e33581124d970c22f94aeb2e3fd04909488e844138ebfbf2bfcfdacedeace9 -SIZE (KDE/release-service/21.04.1/ktp-send-file-21.04.1.tar.xz) = 27912 +TIMESTAMP = 1623520972 +SHA256 (KDE/release-service/21.04.2/ktp-send-file-21.04.2.tar.xz) = c15fea3fb89200fa4352db53af4ec0bba4be2b9b012bacf663d39a63b7572e07 +SIZE (KDE/release-service/21.04.2/ktp-send-file-21.04.2.tar.xz) = 28256 diff --git a/net-im/ktp-send-file/pkg-plist b/net-im/ktp-send-file/pkg-plist index b7c530636669..5df3721a05bc 100644 --- a/net-im/ktp-send-file/pkg-plist +++ b/net-im/ktp-send-file/pkg-plist @@ -1,45 +1,46 @@ bin/ktp-send-file share/locale/ar/LC_MESSAGES/ktp-send-file.mo share/locale/bs/LC_MESSAGES/ktp-send-file.mo share/locale/ca/LC_MESSAGES/ktp-send-file.mo share/locale/ca@valencia/LC_MESSAGES/ktp-send-file.mo share/locale/cs/LC_MESSAGES/ktp-send-file.mo share/locale/da/LC_MESSAGES/ktp-send-file.mo share/locale/de/LC_MESSAGES/ktp-send-file.mo share/locale/el/LC_MESSAGES/ktp-send-file.mo share/locale/en_GB/LC_MESSAGES/ktp-send-file.mo share/locale/es/LC_MESSAGES/ktp-send-file.mo share/locale/et/LC_MESSAGES/ktp-send-file.mo share/locale/eu/LC_MESSAGES/ktp-send-file.mo share/locale/fi/LC_MESSAGES/ktp-send-file.mo share/locale/fr/LC_MESSAGES/ktp-send-file.mo share/locale/ga/LC_MESSAGES/ktp-send-file.mo share/locale/gl/LC_MESSAGES/ktp-send-file.mo share/locale/hu/LC_MESSAGES/ktp-send-file.mo share/locale/ia/LC_MESSAGES/ktp-send-file.mo share/locale/it/LC_MESSAGES/ktp-send-file.mo share/locale/ja/LC_MESSAGES/ktp-send-file.mo share/locale/kk/LC_MESSAGES/ktp-send-file.mo share/locale/km/LC_MESSAGES/ktp-send-file.mo share/locale/ko/LC_MESSAGES/ktp-send-file.mo share/locale/lt/LC_MESSAGES/ktp-send-file.mo share/locale/mr/LC_MESSAGES/ktp-send-file.mo share/locale/nb/LC_MESSAGES/ktp-send-file.mo share/locale/nds/LC_MESSAGES/ktp-send-file.mo share/locale/nl/LC_MESSAGES/ktp-send-file.mo share/locale/nn/LC_MESSAGES/ktp-send-file.mo share/locale/pa/LC_MESSAGES/ktp-send-file.mo share/locale/pl/LC_MESSAGES/ktp-send-file.mo share/locale/pt/LC_MESSAGES/ktp-send-file.mo share/locale/pt_BR/LC_MESSAGES/ktp-send-file.mo share/locale/ro/LC_MESSAGES/ktp-send-file.mo share/locale/ru/LC_MESSAGES/ktp-send-file.mo share/locale/sk/LC_MESSAGES/ktp-send-file.mo share/locale/sl/LC_MESSAGES/ktp-send-file.mo share/locale/sr/LC_MESSAGES/ktp-send-file.mo share/locale/sv/LC_MESSAGES/ktp-send-file.mo share/locale/tr/LC_MESSAGES/ktp-send-file.mo share/locale/ug/LC_MESSAGES/ktp-send-file.mo share/locale/uk/LC_MESSAGES/ktp-send-file.mo +share/locale/vi/LC_MESSAGES/ktp-send-file.mo share/locale/zh_CN/LC_MESSAGES/ktp-send-file.mo share/locale/zh_TW/LC_MESSAGES/ktp-send-file.mo diff --git a/net-im/ktp-text-ui/distinfo b/net-im/ktp-text-ui/distinfo index 395783a5cc9b..c1da0f519064 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741525 -SHA256 (KDE/release-service/21.04.1/ktp-text-ui-21.04.1.tar.xz) = 559674b9d09102ad832795a16943354479051e0a52eee266ecc5ebc1726b1805 -SIZE (KDE/release-service/21.04.1/ktp-text-ui-21.04.1.tar.xz) = 473148 +TIMESTAMP = 1623520974 +SHA256 (KDE/release-service/21.04.2/ktp-text-ui-21.04.2.tar.xz) = 64c52b5287315c0fac3dd534a0dddc1d315daeacc3b6928d780f97b526bd312a +SIZE (KDE/release-service/21.04.2/ktp-text-ui-21.04.2.tar.xz) = 474732 diff --git a/net-im/ktp-text-ui/pkg-plist b/net-im/ktp-text-ui/pkg-plist index 0ecee4e1a224..8d5e689eb1e8 100644 --- a/net-im/ktp-text-ui/pkg-plist +++ b/net-im/ktp-text-ui/pkg-plist @@ -1,605 +1,607 @@ bin/ktp-log-viewer lib/libexec/ktp-adiumxtra-protocol-handler lib/libexec/ktp-text-ui lib/libktpchat.so lib/libktpimagesharer.so %%QT_PLUGINDIR%%/kcm_ktp_chat_appearance.so %%QT_PLUGINDIR%%/kcm_ktp_chat_behavior.so %%QT_PLUGINDIR%%/kcm_ktp_chat_messages.so %%QT_PLUGINDIR%%/kcm_ktp_chat_otr.so %%QT_PLUGINDIR%%/kcm_ktp_logviewer_behavior.so %%QT_PLUGINDIR%%/kcm_ktptextui_message_filter_emoticons.so %%QT_PLUGINDIR%%/kcm_ktptextui_message_filter_latex.so %%QT_PLUGINDIR%%/ktptextui_message_filter_bugzilla.so %%QT_PLUGINDIR%%/ktptextui_message_filter_emoticons.so %%QT_PLUGINDIR%%/ktptextui_message_filter_formatting.so %%QT_PLUGINDIR%%/ktptextui_message_filter_geopoint.so %%QT_PLUGINDIR%%/ktptextui_message_filter_highlight.so %%QT_PLUGINDIR%%/ktptextui_message_filter_images.so %%QT_PLUGINDIR%%/ktptextui_message_filter_latex.so %%QT_PLUGINDIR%%/ktptextui_message_filter_otr.so %%QT_PLUGINDIR%%/ktptextui_message_filter_searchexpansion.so %%QT_PLUGINDIR%%/ktptextui_message_filter_tts.so %%QT_PLUGINDIR%%/ktptextui_message_filter_urlexpansion.so %%QT_PLUGINDIR%%/ktptextui_message_filter_youtube.so share/applications/org.kde.ktplogviewer.desktop share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.TextUi.service share/kservices5/adiumxtra.protocol share/kservices5/kcm_ktp_chat_appearance.desktop share/kservices5/kcm_ktp_chat_behavior.desktop share/kservices5/kcm_ktp_chat_messages.desktop share/kservices5/kcm_ktp_chat_otr.desktop share/kservices5/kcm_ktp_logviewer_behavior.desktop share/kservices5/kcm_ktptextui_message_filter_emoticons.desktop share/kservices5/kcm_ktptextui_message_filter_latex.desktop share/kservices5/ktptextui_message_filter_bugzilla.desktop share/kservices5/ktptextui_message_filter_emoticons.desktop share/kservices5/ktptextui_message_filter_formatting.desktop share/kservices5/ktptextui_message_filter_geopoint.desktop share/kservices5/ktptextui_message_filter_highlight.desktop share/kservices5/ktptextui_message_filter_images.desktop share/kservices5/ktptextui_message_filter_latex.desktop share/kservices5/ktptextui_message_filter_otr.desktop share/kservices5/ktptextui_message_filter_searchexpansion.desktop share/kservices5/ktptextui_message_filter_tts.desktop share/kservices5/ktptextui_message_filter_urlexpansion.desktop share/kservices5/ktptextui_message_filter_youtube.desktop share/kservicetypes5/ktptxtui_message_filter.desktop share/ktelepathy/Template.html share/ktelepathy/longurl.js share/ktelepathy/longurlServices.json share/ktelepathy/showBugzillaInfo.js share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Incoming/SenderColors.txt share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/SimKete.AdiumMessageStyle/Contents/Resources/main.css share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Styles/Header.css share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Template.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/Topic.html share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/img/sidebar_header_bg.png share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/jquery.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/livepipe.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/lib/scrollbar.js share/ktelepathy/styles/WoshiChat.AdiumMessageStyle/Contents/Resources/main.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Info.plist share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/In Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/In Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/In Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/In Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/In Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/Out Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/Out Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/Out Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/Out Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Colors/Out Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Demo.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Footer.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Header.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/Content.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/Context.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/NextContent.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/NextContext.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Incoming/buddy_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/Content.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/Context.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/NextContent.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/NextContext.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Outgoing/buddy_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Status.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/Header.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/Topic.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/main.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Styles/noname.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Topic.html share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Blue on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Green on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Red on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Steel on Yellow.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Blue.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Green.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Red.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel Alternating.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel No Names Alt.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel No Names.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/Variants/Yellow on Steel.css share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/DummyContact.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/alert.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/blueIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/greenIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/redIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/silverBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/silverCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelHeading.jpg share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/steelIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/typing-left.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/typing-right.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowBackground.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowBackground.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowCurves.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowCurves.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowHeading.jpg share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicator2.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowIndicatorAlt.gif share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowTL.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/images/yellowTR.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/incoming_icon.png share/ktelepathy/styles/renkoo.AdiumMessageStyle/Contents/Resources/outgoing_icon.png share/ktp-log-viewer/log-viewer.rc share/kxmlgui5/ktp-text-ui/chatwindow.rc share/locale/ar/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ar/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ar/LC_MESSAGES/ktp-filters.mo share/locale/ar/LC_MESSAGES/ktp-log-viewer.mo share/locale/ar/LC_MESSAGES/ktpchat.mo share/locale/bs/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/bs/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/bs/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/bs/LC_MESSAGES/ktp-filters.mo share/locale/bs/LC_MESSAGES/ktp-log-viewer.mo share/locale/bs/LC_MESSAGES/ktp-text-ui.mo share/locale/bs/LC_MESSAGES/ktpchat.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ca/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ca/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ca/LC_MESSAGES/ktp-filters.mo share/locale/ca/LC_MESSAGES/ktp-log-viewer.mo share/locale/ca/LC_MESSAGES/ktp-text-ui.mo share/locale/ca/LC_MESSAGES/ktpchat.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ca@valencia/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ca@valencia/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ca@valencia/LC_MESSAGES/ktp-filters.mo share/locale/ca@valencia/LC_MESSAGES/ktp-log-viewer.mo share/locale/ca@valencia/LC_MESSAGES/ktp-text-ui.mo share/locale/ca@valencia/LC_MESSAGES/ktpchat.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/cs/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/cs/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/cs/LC_MESSAGES/ktp-filters.mo share/locale/cs/LC_MESSAGES/ktp-log-viewer.mo share/locale/cs/LC_MESSAGES/ktp-text-ui.mo share/locale/cs/LC_MESSAGES/ktpchat.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/da/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/da/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/da/LC_MESSAGES/ktp-filters.mo share/locale/da/LC_MESSAGES/ktp-log-viewer.mo share/locale/da/LC_MESSAGES/ktp-text-ui.mo share/locale/da/LC_MESSAGES/ktpchat.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/de/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/de/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/de/LC_MESSAGES/ktp-filters.mo share/locale/de/LC_MESSAGES/ktp-log-viewer.mo share/locale/de/LC_MESSAGES/ktp-text-ui.mo share/locale/de/LC_MESSAGES/ktpchat.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/el/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/el/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/el/LC_MESSAGES/ktp-filters.mo share/locale/el/LC_MESSAGES/ktp-log-viewer.mo share/locale/el/LC_MESSAGES/ktp-text-ui.mo share/locale/el/LC_MESSAGES/ktpchat.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/en_GB/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/en_GB/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/en_GB/LC_MESSAGES/ktp-filters.mo share/locale/en_GB/LC_MESSAGES/ktp-log-viewer.mo share/locale/en_GB/LC_MESSAGES/ktp-text-ui.mo share/locale/en_GB/LC_MESSAGES/ktpchat.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/es/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/es/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/es/LC_MESSAGES/ktp-filters.mo share/locale/es/LC_MESSAGES/ktp-log-viewer.mo share/locale/es/LC_MESSAGES/ktp-text-ui.mo share/locale/es/LC_MESSAGES/ktpchat.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/et/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/et/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/et/LC_MESSAGES/ktp-filters.mo share/locale/et/LC_MESSAGES/ktp-log-viewer.mo share/locale/et/LC_MESSAGES/ktp-text-ui.mo share/locale/et/LC_MESSAGES/ktpchat.mo share/locale/eu/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/eu/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/eu/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/eu/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/eu/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/eu/LC_MESSAGES/ktp-filters.mo share/locale/eu/LC_MESSAGES/ktp-log-viewer.mo share/locale/eu/LC_MESSAGES/ktp-text-ui.mo share/locale/eu/LC_MESSAGES/ktpchat.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/fi/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/fi/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/fi/LC_MESSAGES/ktp-filters.mo share/locale/fi/LC_MESSAGES/ktp-log-viewer.mo share/locale/fi/LC_MESSAGES/ktp-text-ui.mo share/locale/fi/LC_MESSAGES/ktpchat.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/fr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/fr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/fr/LC_MESSAGES/ktp-filters.mo share/locale/fr/LC_MESSAGES/ktp-log-viewer.mo share/locale/fr/LC_MESSAGES/ktp-text-ui.mo share/locale/fr/LC_MESSAGES/ktpchat.mo share/locale/ga/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ga/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ga/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ga/LC_MESSAGES/ktp-text-ui.mo share/locale/ga/LC_MESSAGES/ktpchat.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/gl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/gl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/gl/LC_MESSAGES/ktp-filters.mo share/locale/gl/LC_MESSAGES/ktp-log-viewer.mo share/locale/gl/LC_MESSAGES/ktp-text-ui.mo share/locale/gl/LC_MESSAGES/ktpchat.mo share/locale/hu/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/hu/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/hu/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/hu/LC_MESSAGES/ktp-filters.mo share/locale/hu/LC_MESSAGES/ktp-text-ui.mo share/locale/hu/LC_MESSAGES/ktpchat.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ia/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ia/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ia/LC_MESSAGES/ktp-filters.mo share/locale/ia/LC_MESSAGES/ktp-log-viewer.mo share/locale/ia/LC_MESSAGES/ktp-text-ui.mo share/locale/ia/LC_MESSAGES/ktpchat.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/it/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/it/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/it/LC_MESSAGES/ktp-filters.mo share/locale/it/LC_MESSAGES/ktp-log-viewer.mo share/locale/it/LC_MESSAGES/ktp-text-ui.mo share/locale/it/LC_MESSAGES/ktpchat.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ja/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ja/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ja/LC_MESSAGES/ktp-filters.mo share/locale/ja/LC_MESSAGES/ktp-log-viewer.mo share/locale/ja/LC_MESSAGES/ktp-text-ui.mo share/locale/ja/LC_MESSAGES/ktpchat.mo share/locale/kk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/kk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/kk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/kk/LC_MESSAGES/ktp-filters.mo share/locale/kk/LC_MESSAGES/ktp-text-ui.mo share/locale/kk/LC_MESSAGES/ktpchat.mo share/locale/km/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/km/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/km/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/km/LC_MESSAGES/ktp-text-ui.mo share/locale/km/LC_MESSAGES/ktpchat.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ko/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ko/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ko/LC_MESSAGES/ktp-filters.mo share/locale/ko/LC_MESSAGES/ktp-log-viewer.mo share/locale/ko/LC_MESSAGES/ktp-text-ui.mo share/locale/ko/LC_MESSAGES/ktpchat.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/lt/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/lt/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/lt/LC_MESSAGES/ktp-filters.mo share/locale/lt/LC_MESSAGES/ktp-log-viewer.mo share/locale/lt/LC_MESSAGES/ktp-text-ui.mo share/locale/lt/LC_MESSAGES/ktpchat.mo share/locale/mr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/mr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/mr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/mr/LC_MESSAGES/ktp-filters.mo share/locale/mr/LC_MESSAGES/ktp-text-ui.mo share/locale/mr/LC_MESSAGES/ktpchat.mo share/locale/nb/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nb/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nb/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nb/LC_MESSAGES/ktp-filters.mo share/locale/nb/LC_MESSAGES/ktp-log-viewer.mo share/locale/nb/LC_MESSAGES/ktp-text-ui.mo share/locale/nb/LC_MESSAGES/ktpchat.mo share/locale/nds/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nds/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nds/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nds/LC_MESSAGES/ktp-filters.mo share/locale/nds/LC_MESSAGES/ktp-log-viewer.mo share/locale/nds/LC_MESSAGES/ktp-text-ui.mo share/locale/nds/LC_MESSAGES/ktpchat.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/nl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/nl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nl/LC_MESSAGES/ktp-filters.mo share/locale/nl/LC_MESSAGES/ktp-log-viewer.mo share/locale/nl/LC_MESSAGES/ktp-text-ui.mo share/locale/nl/LC_MESSAGES/ktpchat.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/nn/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/nn/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/nn/LC_MESSAGES/ktp-filters.mo share/locale/nn/LC_MESSAGES/ktp-log-viewer.mo share/locale/nn/LC_MESSAGES/ktp-text-ui.mo share/locale/nn/LC_MESSAGES/ktpchat.mo share/locale/pa/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pa/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pa/LC_MESSAGES/ktp-filters.mo share/locale/pa/LC_MESSAGES/ktp-text-ui.mo share/locale/pa/LC_MESSAGES/ktpchat.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pl/LC_MESSAGES/ktp-filters.mo share/locale/pl/LC_MESSAGES/ktp-log-viewer.mo share/locale/pl/LC_MESSAGES/ktp-text-ui.mo share/locale/pl/LC_MESSAGES/ktpchat.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pt/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pt/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pt/LC_MESSAGES/ktp-filters.mo share/locale/pt/LC_MESSAGES/ktp-log-viewer.mo share/locale/pt/LC_MESSAGES/ktp-text-ui.mo share/locale/pt/LC_MESSAGES/ktpchat.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/pt_BR/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/pt_BR/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/pt_BR/LC_MESSAGES/ktp-filters.mo share/locale/pt_BR/LC_MESSAGES/ktp-log-viewer.mo share/locale/pt_BR/LC_MESSAGES/ktp-text-ui.mo share/locale/pt_BR/LC_MESSAGES/ktpchat.mo share/locale/ro/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ro/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ro/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ro/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ro/LC_MESSAGES/ktp-filters.mo share/locale/ro/LC_MESSAGES/ktp-log-viewer.mo share/locale/ro/LC_MESSAGES/ktp-text-ui.mo share/locale/ro/LC_MESSAGES/ktpchat.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/ru/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/ru/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ru/LC_MESSAGES/ktp-filters.mo share/locale/ru/LC_MESSAGES/ktp-log-viewer.mo share/locale/ru/LC_MESSAGES/ktp-text-ui.mo share/locale/ru/LC_MESSAGES/ktpchat.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sk/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sk/LC_MESSAGES/ktp-filters.mo share/locale/sk/LC_MESSAGES/ktp-log-viewer.mo share/locale/sk/LC_MESSAGES/ktp-text-ui.mo share/locale/sk/LC_MESSAGES/ktpchat.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sl/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sl/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sl/LC_MESSAGES/ktp-filters.mo share/locale/sl/LC_MESSAGES/ktp-log-viewer.mo share/locale/sl/LC_MESSAGES/ktp-text-ui.mo share/locale/sl/LC_MESSAGES/ktpchat.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sr/LC_MESSAGES/ktp-filters.mo share/locale/sr/LC_MESSAGES/ktp-log-viewer.mo share/locale/sr/LC_MESSAGES/ktp-text-ui.mo share/locale/sr/LC_MESSAGES/ktpchat.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/sv/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/sv/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/sv/LC_MESSAGES/ktp-filters.mo share/locale/sv/LC_MESSAGES/ktp-log-viewer.mo share/locale/sv/LC_MESSAGES/ktp-text-ui.mo share/locale/sv/LC_MESSAGES/ktpchat.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/tr/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/tr/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/tr/LC_MESSAGES/ktp-filters.mo share/locale/tr/LC_MESSAGES/ktp-log-viewer.mo share/locale/tr/LC_MESSAGES/ktp-text-ui.mo share/locale/tr/LC_MESSAGES/ktpchat.mo share/locale/ug/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/ug/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/ug/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/ug/LC_MESSAGES/ktp-filters.mo share/locale/ug/LC_MESSAGES/ktp-text-ui.mo share/locale/ug/LC_MESSAGES/ktpchat.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/uk/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/uk/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/uk/LC_MESSAGES/ktp-filters.mo share/locale/uk/LC_MESSAGES/ktp-log-viewer.mo share/locale/uk/LC_MESSAGES/ktp-text-ui.mo share/locale/uk/LC_MESSAGES/ktpchat.mo +share/locale/vi/LC_MESSAGES/ktp-text-ui.mo +share/locale/vi/LC_MESSAGES/ktpchat.mo share/locale/wa/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/zh_CN/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/zh_CN/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/zh_CN/LC_MESSAGES/ktp-filters.mo share/locale/zh_CN/LC_MESSAGES/ktp-log-viewer.mo share/locale/zh_CN/LC_MESSAGES/ktp-text-ui.mo share/locale/zh_CN/LC_MESSAGES/ktpchat.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_appearance.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_behavior.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_messages.mo share/locale/zh_TW/LC_MESSAGES/kcm_ktp_chat_otr.mo share/locale/zh_TW/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo share/locale/zh_TW/LC_MESSAGES/ktp-filters.mo share/locale/zh_TW/LC_MESSAGES/ktp-log-viewer.mo share/locale/zh_TW/LC_MESSAGES/ktp-text-ui.mo share/locale/zh_TW/LC_MESSAGES/ktpchat.mo share/telepathy/clients/KTp.TextUi.client diff --git a/net-p2p/ktorrent/distinfo b/net-p2p/ktorrent/distinfo index 5909412f0c63..e2a3c814ad1d 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741526 -SHA256 (KDE/release-service/21.04.1/ktorrent-21.04.1.tar.xz) = 17a2118d1f41025af743f8f9de88188388724f69fe657416ec2158d98ef5b53a -SIZE (KDE/release-service/21.04.1/ktorrent-21.04.1.tar.xz) = 2072140 +TIMESTAMP = 1623520976 +SHA256 (KDE/release-service/21.04.2/ktorrent-21.04.2.tar.xz) = 6659b62ae86e16fda50c0fdbc06aa953f98e43262419f260817928bb0a97274e +SIZE (KDE/release-service/21.04.2/ktorrent-21.04.2.tar.xz) = 2091444 diff --git a/net-p2p/ktorrent/pkg-plist b/net-p2p/ktorrent/pkg-plist index b7de12b3454f..ba7a0f90f22a 100644 --- a/net-p2p/ktorrent/pkg-plist +++ b/net-p2p/ktorrent/pkg-plist @@ -1,188 +1,191 @@ bin/ktmagnetdownloader bin/ktorrent bin/ktupnptest lib/libktcore.so.16 lib/libktcore.so.16.0.0 %%QT_PLUGINDIR%%/ktorrent/ktorrent_bwscheduler.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_downloadorder.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_infowidget.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_ipfilter.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_logviewer.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_magnetgenerator.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_mediaplayer.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scanfolder.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scanforlostfiles.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_scripting.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_search.so %%WORKSPACE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_shutdown.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_stats.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent/ktorrent_syndication.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_upnp.so %%QT_PLUGINDIR%%/ktorrent/ktorrent_zeroconf.so share/applications/org.kde.ktorrent.desktop share/icons/hicolor/128x128/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-add-filters.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/16x16/actions/kt-remove-filters.png share/icons/hicolor/16x16/actions/kt-stop-all.png share/icons/hicolor/16x16/actions/kt-stop.png share/icons/hicolor/16x16/actions/kt-upnp.png share/icons/hicolor/16x16/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-add-filters.png share/icons/hicolor/22x22/actions/kt-magnet.png share/icons/hicolor/22x22/actions/kt-pause.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/22x22/actions/kt-remove-filters.png share/icons/hicolor/22x22/actions/kt-remove.png share/icons/hicolor/22x22/actions/kt-set-max-download-speed.png share/icons/hicolor/22x22/actions/kt-set-max-upload-speed.png share/icons/hicolor/22x22/actions/kt-speed-limits.png share/icons/hicolor/22x22/actions/kt-start-all.png share/icons/hicolor/22x22/actions/kt-start.png share/icons/hicolor/22x22/actions/kt-stop-all.png share/icons/hicolor/22x22/actions/kt-stop.png share/icons/hicolor/22x22/apps/ktorrent.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-add-feeds.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-add-filters.png share/icons/hicolor/32x32/actions/kt-info-widget.png share/icons/hicolor/32x32/actions/kt-magnet.png share/icons/hicolor/32x32/actions/kt-pause.png share/icons/hicolor/32x32/actions/kt-queue-manager.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-remove-feeds.png %%WEBENGINE%%share/icons/hicolor/32x32/actions/kt-remove-filters.png share/icons/hicolor/32x32/actions/kt-remove.png share/icons/hicolor/32x32/actions/kt-set-max-download-speed.png share/icons/hicolor/32x32/actions/kt-set-max-upload-speed.png share/icons/hicolor/32x32/actions/kt-speed-limits.png share/icons/hicolor/32x32/actions/kt-start-all.png share/icons/hicolor/32x32/actions/kt-start.png share/icons/hicolor/32x32/actions/kt-stop-all.png share/icons/hicolor/32x32/actions/kt-stop.png share/icons/hicolor/32x32/actions/kt-upnp.png share/icons/hicolor/32x32/apps/ktorrent.png share/icons/hicolor/48x48/actions/kt-bandwidth-scheduler.png share/icons/hicolor/48x48/actions/kt-change-tracker.png share/icons/hicolor/48x48/actions/kt-check-data.png share/icons/hicolor/48x48/actions/kt-chunks.png share/icons/hicolor/48x48/actions/kt-info-widget.png share/icons/hicolor/48x48/actions/kt-magnet.png share/icons/hicolor/48x48/actions/kt-pause.png share/icons/hicolor/48x48/actions/kt-plugins.png share/icons/hicolor/48x48/actions/kt-queue-manager.png share/icons/hicolor/48x48/actions/kt-remove.png share/icons/hicolor/48x48/actions/kt-restore-defaults.png share/icons/hicolor/48x48/actions/kt-set-max-download-speed.png share/icons/hicolor/48x48/actions/kt-set-max-upload-speed.png share/icons/hicolor/48x48/actions/kt-show-hide.png share/icons/hicolor/48x48/actions/kt-show-statusbar.png share/icons/hicolor/48x48/actions/kt-speed-limits.png share/icons/hicolor/48x48/actions/kt-start-all.png share/icons/hicolor/48x48/actions/kt-start.png share/icons/hicolor/48x48/actions/kt-stop-all.png share/icons/hicolor/48x48/actions/kt-stop.png share/icons/hicolor/48x48/actions/kt-upnp.png share/icons/hicolor/48x48/apps/ktorrent.png share/icons/hicolor/64x64/actions/kt-magnet.png share/icons/hicolor/64x64/apps/ktorrent.png share/icons/hicolor/scalable/actions/kt-magnet.svgz share/icons/hicolor/scalable/actions/kt-set-max-download-speed.svgz share/icons/hicolor/scalable/actions/kt-set-max-upload-speed.svgz share/icons/hicolor/scalable/actions/kt-speed-limits.svgz share/knotifications5/ktorrent.notifyrc %%WEBENGINE%%%%DATADIR%%/opensearch/btdb.in/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/btdb.in/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/btdig.com/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/btdig.com/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/duckduckgo.com/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/duckduckgo.com/opensearch.xml %%WEBENGINE%%%%DATADIR%%/opensearch/torrentproject.se/favicon.ico %%WEBENGINE%%%%DATADIR%%/opensearch/torrentproject.se/opensearch.xml %%DATADIR%%/scripts/auto_remove/auto_remove.desktop %%DATADIR%%/scripts/auto_remove/auto_remove.py %%DATADIR%%/scripts/auto_remove/auto_remove.ui %%DATADIR%%/scripts/auto_resume/auto_resume.desktop %%DATADIR%%/scripts/auto_resume/auto_resume.py %%DATADIR%%/scripts/auto_resume/auto_resume.ui %%DATADIR%%/scripts/email_notifications/email_notifications.desktop %%DATADIR%%/scripts/email_notifications/email_notifications.py %%DATADIR%%/scripts/email_notifications/emailconfig.ui %%DATADIR%%/scripts/tracker_groups/tracker_groups.desktop %%DATADIR%%/scripts/tracker_groups/tracker_groups.py %%WEBENGINE%%%%DATADIR%%/search/home/body-background.jpg %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-middle.png %%WEBENGINE%%%%DATADIR%%/search/home/box-bottom-right.png %%WEBENGINE%%%%DATADIR%%/search/home/box-center.png %%WEBENGINE%%%%DATADIR%%/search/home/box-middle-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-middle-right.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-left.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-middle.png %%WEBENGINE%%%%DATADIR%%/search/home/box-top-right.png %%WEBENGINE%%%%DATADIR%%/search/home/home.css %%WEBENGINE%%%%DATADIR%%/search/home/home.html %%WEBENGINE%%%%DATADIR%%/search/home/ktorrent-icon.png %%WEBENGINE%%%%DATADIR%%/search/home/ktorrent_infopage.css share/kxmlgui5/ktorrent/ktorrent_bwschedulerui.rc share/kxmlgui5/ktorrent/ktorrent_downloadorderui.rc share/kxmlgui5/ktorrent/ktorrent_magnetgeneratorui.rc share/kxmlgui5/ktorrent/ktorrent_mediaplayerui.rc share/kxmlgui5/ktorrent/ktorrent_scriptingui.rc %%WEBENGINE%%share/kxmlgui5/ktorrent/ktorrent_searchui.rc %%WORKSPACE%%share/kxmlgui5/ktorrent/ktorrent_shutdownui.rc %%WEBENGINE%%share/kxmlgui5/ktorrent/ktorrent_syndicationui.rc share/kxmlgui5/ktorrent/ktorrentui.rc share/kxmlgui5/ktorrent/kttorrentactivityui.rc share/locale/ar/LC_MESSAGES/ktorrent.mo share/locale/ast/LC_MESSAGES/ktorrent.mo +share/locale/be/LC_MESSAGES/ktorrent.mo share/locale/bg/LC_MESSAGES/ktorrent.mo share/locale/bs/LC_MESSAGES/ktorrent.mo share/locale/ca/LC_MESSAGES/ktorrent.mo share/locale/ca@valencia/LC_MESSAGES/ktorrent.mo share/locale/cs/LC_MESSAGES/ktorrent.mo share/locale/da/LC_MESSAGES/ktorrent.mo share/locale/de/LC_MESSAGES/ktorrent.mo share/locale/el/LC_MESSAGES/ktorrent.mo share/locale/en_GB/LC_MESSAGES/ktorrent.mo share/locale/eo/LC_MESSAGES/ktorrent.mo share/locale/es/LC_MESSAGES/ktorrent.mo share/locale/et/LC_MESSAGES/ktorrent.mo share/locale/eu/LC_MESSAGES/ktorrent.mo share/locale/fi/LC_MESSAGES/ktorrent.mo share/locale/fr/LC_MESSAGES/ktorrent.mo share/locale/ga/LC_MESSAGES/ktorrent.mo share/locale/gl/LC_MESSAGES/ktorrent.mo share/locale/he/LC_MESSAGES/ktorrent.mo share/locale/hi/LC_MESSAGES/ktorrent.mo share/locale/hr/LC_MESSAGES/ktorrent.mo share/locale/hu/LC_MESSAGES/ktorrent.mo share/locale/ia/LC_MESSAGES/ktorrent.mo share/locale/is/LC_MESSAGES/ktorrent.mo share/locale/it/LC_MESSAGES/ktorrent.mo share/locale/ja/LC_MESSAGES/ktorrent.mo share/locale/kk/LC_MESSAGES/ktorrent.mo share/locale/km/LC_MESSAGES/ktorrent.mo share/locale/ko/LC_MESSAGES/ktorrent.mo share/locale/lt/LC_MESSAGES/ktorrent.mo share/locale/lv/LC_MESSAGES/ktorrent.mo share/locale/mr/LC_MESSAGES/ktorrent.mo share/locale/nb/LC_MESSAGES/ktorrent.mo share/locale/nds/LC_MESSAGES/ktorrent.mo share/locale/nl/LC_MESSAGES/ktorrent.mo share/locale/nn/LC_MESSAGES/ktorrent.mo share/locale/pl/LC_MESSAGES/ktorrent.mo share/locale/pt/LC_MESSAGES/ktorrent.mo share/locale/pt_BR/LC_MESSAGES/ktorrent.mo share/locale/ro/LC_MESSAGES/ktorrent.mo share/locale/ru/LC_MESSAGES/ktorrent.mo +share/locale/se/LC_MESSAGES/ktorrent.mo share/locale/sk/LC_MESSAGES/ktorrent.mo share/locale/sl/LC_MESSAGES/ktorrent.mo +share/locale/sq/LC_MESSAGES/ktorrent.mo share/locale/sr/LC_MESSAGES/ktorrent.mo share/locale/sv/LC_MESSAGES/ktorrent.mo share/locale/tr/LC_MESSAGES/ktorrent.mo share/locale/ug/LC_MESSAGES/ktorrent.mo share/locale/uk/LC_MESSAGES/ktorrent.mo share/locale/zh_CN/LC_MESSAGES/ktorrent.mo share/locale/zh_TW/LC_MESSAGES/ktorrent.mo share/metainfo/org.kde.ktorrent.appdata.xml diff --git a/net-p2p/libktorrent/distinfo b/net-p2p/libktorrent/distinfo index 2dc73d5e349d..e6ef1f7363eb 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741526 -SHA256 (KDE/release-service/21.04.1/libktorrent-21.04.1.tar.xz) = f6ee742ca5e3f64bc56e94cd65dd8b69ecbb9b2a901262f6274be69b22793e9c -SIZE (KDE/release-service/21.04.1/libktorrent-21.04.1.tar.xz) = 603656 +TIMESTAMP = 1623520978 +SHA256 (KDE/release-service/21.04.2/libktorrent-21.04.2.tar.xz) = 33a5b63fd09a082f78f7d54254ef06d40e837b4135eeea40231d00dae8a4c05e +SIZE (KDE/release-service/21.04.2/libktorrent-21.04.2.tar.xz) = 607488 diff --git a/net-p2p/libktorrent/pkg-plist b/net-p2p/libktorrent/pkg-plist index ab334fc2df53..cbb2713df914 100644 --- a/net-p2p/libktorrent/pkg-plist +++ b/net-p2p/libktorrent/pkg-plist @@ -1,240 +1,242 @@ include/KF5/libktorrent/bcodec/bdecoder.h include/KF5/libktorrent/bcodec/bencoder.h include/KF5/libktorrent/bcodec/bnode.h include/KF5/libktorrent/bcodec/value.h include/KF5/libktorrent/datachecker/datachecker.h include/KF5/libktorrent/datachecker/datacheckerjob.h include/KF5/libktorrent/datachecker/datacheckerthread.h include/KF5/libktorrent/datachecker/multidatachecker.h include/KF5/libktorrent/datachecker/singledatachecker.h include/KF5/libktorrent/dht/announcereq.h include/KF5/libktorrent/dht/announcersp.h include/KF5/libktorrent/dht/announcetask.h include/KF5/libktorrent/dht/database.h include/KF5/libktorrent/dht/dht.h include/KF5/libktorrent/dht/dhtbase.h include/KF5/libktorrent/dht/dhtpeersource.h include/KF5/libktorrent/dht/findnodereq.h include/KF5/libktorrent/dht/findnodersp.h include/KF5/libktorrent/dht/getpeersreq.h include/KF5/libktorrent/dht/getpeersrsp.h include/KF5/libktorrent/dht/kbucket.h include/KF5/libktorrent/dht/kbucketentry.h include/KF5/libktorrent/dht/kbuckettable.h include/KF5/libktorrent/dht/kclosestnodessearch.h include/KF5/libktorrent/dht/key.h include/KF5/libktorrent/dht/node.h include/KF5/libktorrent/dht/nodelookup.h include/KF5/libktorrent/dht/pack.h include/KF5/libktorrent/dht/pingreq.h include/KF5/libktorrent/dht/pingrsp.h include/KF5/libktorrent/dht/rpccall.h include/KF5/libktorrent/dht/rpcmsg.h include/KF5/libktorrent/dht/rpcmsgfactory.h include/KF5/libktorrent/dht/rpcserver.h include/KF5/libktorrent/dht/rpcserverinterface.h include/KF5/libktorrent/dht/task.h include/KF5/libktorrent/dht/taskmanager.h include/KF5/libktorrent/diskio/cache.h include/KF5/libktorrent/diskio/cachefile.h include/KF5/libktorrent/diskio/chunk.h include/KF5/libktorrent/diskio/chunkmanager.h include/KF5/libktorrent/diskio/deletedatafilesjob.h include/KF5/libktorrent/diskio/dndfile.h include/KF5/libktorrent/diskio/movedatafilesjob.h include/KF5/libktorrent/diskio/multifilecache.h include/KF5/libktorrent/diskio/piecedata.h include/KF5/libktorrent/diskio/preallocationjob.h include/KF5/libktorrent/diskio/preallocationthread.h include/KF5/libktorrent/diskio/singlefilecache.h include/KF5/libktorrent/download/chunkdownload.h include/KF5/libktorrent/download/chunkselector.h include/KF5/libktorrent/download/downloader.h include/KF5/libktorrent/download/packet.h include/KF5/libktorrent/download/piece.h include/KF5/libktorrent/download/request.h include/KF5/libktorrent/download/webseed.h include/KF5/libktorrent/interfaces/blocklistinterface.h include/KF5/libktorrent/interfaces/cachefactory.h include/KF5/libktorrent/interfaces/chunkdownloadinterface.h include/KF5/libktorrent/interfaces/chunkselectorinterface.h include/KF5/libktorrent/interfaces/exitoperation.h include/KF5/libktorrent/interfaces/logmonitorinterface.h include/KF5/libktorrent/interfaces/monitorinterface.h include/KF5/libktorrent/interfaces/peerinterface.h include/KF5/libktorrent/interfaces/peersource.h include/KF5/libktorrent/interfaces/piecedownloader.h include/KF5/libktorrent/interfaces/queuemanagerinterface.h include/KF5/libktorrent/interfaces/serverinterface.h include/KF5/libktorrent/interfaces/torrentfileinterface.h include/KF5/libktorrent/interfaces/torrentinterface.h include/KF5/libktorrent/interfaces/trackerinterface.h include/KF5/libktorrent/interfaces/trackerslist.h include/KF5/libktorrent/interfaces/webseedinterface.h include/KF5/libktorrent/ktorrent_export.h include/KF5/libktorrent/libktorrent_version.h include/KF5/libktorrent/magnet/magnetdownloader.h include/KF5/libktorrent/magnet/magnetlink.h include/KF5/libktorrent/magnet/metadatadownload.h include/KF5/libktorrent/mse/bigint.h include/KF5/libktorrent/mse/encryptedauthenticate.h include/KF5/libktorrent/mse/encryptedpacketsocket.h include/KF5/libktorrent/mse/encryptedserverauthenticate.h include/KF5/libktorrent/mse/functions.h include/KF5/libktorrent/mse/rc4encryptor.h include/KF5/libktorrent/net/address.h include/KF5/libktorrent/net/addressresolver.h include/KF5/libktorrent/net/downloadthread.h include/KF5/libktorrent/net/networkthread.h include/KF5/libktorrent/net/packetsocket.h include/KF5/libktorrent/net/poll.h include/KF5/libktorrent/net/portlist.h include/KF5/libktorrent/net/reverseresolver.h include/KF5/libktorrent/net/serversocket.h include/KF5/libktorrent/net/socket.h include/KF5/libktorrent/net/socketdevice.h include/KF5/libktorrent/net/socketgroup.h include/KF5/libktorrent/net/socketmonitor.h include/KF5/libktorrent/net/socks.h include/KF5/libktorrent/net/speed.h include/KF5/libktorrent/net/streamsocket.h include/KF5/libktorrent/net/trafficshapedsocket.h include/KF5/libktorrent/net/uploadthread.h include/KF5/libktorrent/net/wakeuppipe.h include/KF5/libktorrent/peer/accessmanager.h include/KF5/libktorrent/peer/authenticate.h include/KF5/libktorrent/peer/authenticatebase.h include/KF5/libktorrent/peer/authenticationmonitor.h include/KF5/libktorrent/peer/chunkcounter.h include/KF5/libktorrent/peer/connectionlimit.h include/KF5/libktorrent/peer/packetreader.h include/KF5/libktorrent/peer/peer.h include/KF5/libktorrent/peer/peerconnector.h include/KF5/libktorrent/peer/peerdownloader.h include/KF5/libktorrent/peer/peerid.h include/KF5/libktorrent/peer/peermanager.h include/KF5/libktorrent/peer/peerprotocolextension.h include/KF5/libktorrent/peer/peeruploader.h include/KF5/libktorrent/peer/serverauthenticate.h include/KF5/libktorrent/peer/superseeder.h include/KF5/libktorrent/peer/utmetadata.h include/KF5/libktorrent/peer/utpex.h include/KF5/libktorrent/torrent/advancedchokealgorithm.h include/KF5/libktorrent/torrent/choker.h include/KF5/libktorrent/torrent/globals.h include/KF5/libktorrent/torrent/job.h include/KF5/libktorrent/torrent/jobqueue.h include/KF5/libktorrent/torrent/peersourcemanager.h include/KF5/libktorrent/torrent/server.h include/KF5/libktorrent/torrent/statsfile.h include/KF5/libktorrent/torrent/timeestimator.h include/KF5/libktorrent/torrent/torrent.h include/KF5/libktorrent/torrent/torrentcontrol.h include/KF5/libktorrent/torrent/torrentcreator.h include/KF5/libktorrent/torrent/torrentfile.h include/KF5/libktorrent/torrent/torrentfilestream.h include/KF5/libktorrent/torrent/torrentstats.h include/KF5/libktorrent/torrent/uploader.h include/KF5/libktorrent/tracker/httptracker.h include/KF5/libktorrent/tracker/kioannouncejob.h include/KF5/libktorrent/tracker/tracker.h include/KF5/libktorrent/tracker/trackermanager.h include/KF5/libktorrent/tracker/udptracker.h include/KF5/libktorrent/tracker/udptrackersocket.h include/KF5/libktorrent/upnp/upnpmcastsocket.h include/KF5/libktorrent/upnp/upnprouter.h include/KF5/libktorrent/util/array.h include/KF5/libktorrent/util/autorotatelogjob.h include/KF5/libktorrent/util/bitset.h include/KF5/libktorrent/util/bufferpool.h include/KF5/libktorrent/util/circularbuffer.h include/KF5/libktorrent/util/compressfilejob.h include/KF5/libktorrent/util/constants.h include/KF5/libktorrent/util/decompressfilejob.h include/KF5/libktorrent/util/error.h include/KF5/libktorrent/util/extractfilejob.h include/KF5/libktorrent/util/file.h include/KF5/libktorrent/util/fileops.h include/KF5/libktorrent/util/functions.h include/KF5/libktorrent/util/log.h include/KF5/libktorrent/util/logsystemmanager.h include/KF5/libktorrent/util/pipe.h include/KF5/libktorrent/util/ptrmap.h include/KF5/libktorrent/util/resourcemanager.h include/KF5/libktorrent/util/sha1hash.h include/KF5/libktorrent/util/sha1hashgen.h include/KF5/libktorrent/util/signalcatcher.h include/KF5/libktorrent/util/timer.h include/KF5/libktorrent/util/urlencoder.h include/KF5/libktorrent/util/waitjob.h include/KF5/libktorrent/util/win32.h include/KF5/libktorrent/utp/connection.h include/KF5/libktorrent/utp/delaywindow.h include/KF5/libktorrent/utp/localwindow.h include/KF5/libktorrent/utp/packetbuffer.h include/KF5/libktorrent/utp/pollpipe.h include/KF5/libktorrent/utp/remotewindow.h include/KF5/libktorrent/utp/timevalue.h include/KF5/libktorrent/utp/utpprotocol.h include/KF5/libktorrent/utp/utpserver.h include/KF5/libktorrent/utp/utpserverthread.h include/KF5/libktorrent/utp/utpsocket.h include/KF5/libktorrent/version.h lib/cmake/KF5Torrent/FindLibGMP.cmake lib/cmake/KF5Torrent/FindLibGcrypt.cmake lib/cmake/KF5Torrent/KF5TorrentConfig.cmake lib/cmake/KF5Torrent/KF5TorrentConfigVersion.cmake lib/cmake/KF5Torrent/KF5TorrentTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Torrent/KF5TorrentTargets.cmake lib/libKF5Torrent.so lib/libKF5Torrent.so.%%KDE_APPLICATIONS_VERSION%% lib/libKF5Torrent.so.6 share/locale/ar/LC_MESSAGES/libktorrent5.mo +share/locale/be/LC_MESSAGES/libktorrent5.mo share/locale/bg/LC_MESSAGES/libktorrent5.mo share/locale/bs/LC_MESSAGES/libktorrent5.mo share/locale/ca/LC_MESSAGES/libktorrent5.mo share/locale/ca@valencia/LC_MESSAGES/libktorrent5.mo share/locale/cs/LC_MESSAGES/libktorrent5.mo share/locale/da/LC_MESSAGES/libktorrent5.mo share/locale/de/LC_MESSAGES/libktorrent5.mo share/locale/el/LC_MESSAGES/libktorrent5.mo share/locale/en_GB/LC_MESSAGES/libktorrent5.mo share/locale/eo/LC_MESSAGES/libktorrent5.mo share/locale/es/LC_MESSAGES/libktorrent5.mo share/locale/et/LC_MESSAGES/libktorrent5.mo share/locale/eu/LC_MESSAGES/libktorrent5.mo share/locale/fi/LC_MESSAGES/libktorrent5.mo share/locale/fr/LC_MESSAGES/libktorrent5.mo share/locale/ga/LC_MESSAGES/libktorrent5.mo share/locale/gl/LC_MESSAGES/libktorrent5.mo share/locale/hi/LC_MESSAGES/libktorrent5.mo share/locale/hr/LC_MESSAGES/libktorrent5.mo share/locale/hu/LC_MESSAGES/libktorrent5.mo share/locale/ia/LC_MESSAGES/libktorrent5.mo share/locale/is/LC_MESSAGES/libktorrent5.mo share/locale/it/LC_MESSAGES/libktorrent5.mo share/locale/ja/LC_MESSAGES/libktorrent5.mo share/locale/kk/LC_MESSAGES/libktorrent5.mo share/locale/km/LC_MESSAGES/libktorrent5.mo share/locale/ko/LC_MESSAGES/libktorrent5.mo share/locale/lt/LC_MESSAGES/libktorrent5.mo share/locale/lv/LC_MESSAGES/libktorrent5.mo share/locale/mr/LC_MESSAGES/libktorrent5.mo share/locale/nb/LC_MESSAGES/libktorrent5.mo share/locale/nds/LC_MESSAGES/libktorrent5.mo share/locale/nl/LC_MESSAGES/libktorrent5.mo share/locale/nn/LC_MESSAGES/libktorrent5.mo share/locale/pl/LC_MESSAGES/libktorrent5.mo share/locale/pt/LC_MESSAGES/libktorrent5.mo share/locale/pt_BR/LC_MESSAGES/libktorrent5.mo share/locale/ro/LC_MESSAGES/libktorrent5.mo share/locale/ru/LC_MESSAGES/libktorrent5.mo +share/locale/se/LC_MESSAGES/libktorrent5.mo share/locale/sk/LC_MESSAGES/libktorrent5.mo share/locale/sl/LC_MESSAGES/libktorrent5.mo share/locale/sr/LC_MESSAGES/libktorrent5.mo share/locale/sv/LC_MESSAGES/libktorrent5.mo share/locale/tr/LC_MESSAGES/libktorrent5.mo share/locale/ug/LC_MESSAGES/libktorrent5.mo share/locale/uk/LC_MESSAGES/libktorrent5.mo share/locale/zh_CN/LC_MESSAGES/libktorrent5.mo share/locale/zh_TW/LC_MESSAGES/libktorrent5.mo diff --git a/net/akonadi-calendar/distinfo b/net/akonadi-calendar/distinfo index fd0354903185..cce32f143796 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741527 -SHA256 (KDE/release-service/21.04.1/akonadi-calendar-21.04.1.tar.xz) = 2b90a9d37051bccbee29255f2ecbc92fc0344c7894cf08df4b9657c2772d38cc -SIZE (KDE/release-service/21.04.1/akonadi-calendar-21.04.1.tar.xz) = 348024 +TIMESTAMP = 1623520980 +SHA256 (KDE/release-service/21.04.2/akonadi-calendar-21.04.2.tar.xz) = b937a3cb18f57c159c0bd879c838e6f7aa937c676d62318cf6ac260902475ef3 +SIZE (KDE/release-service/21.04.2/akonadi-calendar-21.04.2.tar.xz) = 353680 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index f5fe1f3a5e8a..c2888abe712f 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,129 +1,131 @@ share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories include/KF5/Akonadi/Calendar/BlockAlarmsAttribute include/KF5/Akonadi/Calendar/CalendarBase include/KF5/Akonadi/Calendar/CalendarClipboard include/KF5/Akonadi/Calendar/ETMCalendar include/KF5/Akonadi/Calendar/FetchJobCalendar include/KF5/Akonadi/Calendar/FreeBusyManager include/KF5/Akonadi/Calendar/FreeBusyProviderBase include/KF5/Akonadi/Calendar/History include/KF5/Akonadi/Calendar/ICalImporter include/KF5/Akonadi/Calendar/ITIPHandler include/KF5/Akonadi/Calendar/IncidenceChanger include/KF5/Akonadi/Calendar/PublishDialog include/KF5/Akonadi/Calendar/StandardCalendarActionManager include/KF5/Akonadi/Calendar/TodoPurger include/KF5/akonadi-calendar_version.h include/KF5/akonadi/calendar/akonadi-calendar_export.h include/KF5/akonadi/calendar/blockalarmsattribute.h include/KF5/akonadi/calendar/calendarbase.h include/KF5/akonadi/calendar/calendarclipboard.h include/KF5/akonadi/calendar/calendarsettings.h include/KF5/akonadi/calendar/etmcalendar.h include/KF5/akonadi/calendar/fetchjobcalendar.h include/KF5/akonadi/calendar/freebusymanager.h include/KF5/akonadi/calendar/freebusyproviderbase.h include/KF5/akonadi/calendar/history.h include/KF5/akonadi/calendar/icalimporter.h include/KF5/akonadi/calendar/incidencechanger.h include/KF5/akonadi/calendar/itiphandler.h include/KF5/akonadi/calendar/publishdialog.h include/KF5/akonadi/calendar/standardcalendaractionmanager.h include/KF5/akonadi/calendar/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/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/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.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/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/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.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/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.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/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.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/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/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/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/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/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.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/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/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.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 diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index ded5d5b63b66..e7d2dca26f1b 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741528 -SHA256 (KDE/release-service/21.04.1/akonadi-contacts-21.04.1.tar.xz) = 07753b84b634ebd348c6d1a00cc82ebfff8e88c1fa5bbc584c40bc6b46803633 -SIZE (KDE/release-service/21.04.1/akonadi-contacts-21.04.1.tar.xz) = 419220 +TIMESTAMP = 1623520982 +SHA256 (KDE/release-service/21.04.2/akonadi-contacts-21.04.2.tar.xz) = 753c8d462caa573e68b32e8fd58356e5a6e65303cad09c281920d4ca433f0e5c +SIZE (KDE/release-service/21.04.2/akonadi-contacts-21.04.2.tar.xz) = 424008 diff --git a/net/akonadi-contacts/pkg-plist b/net/akonadi-contacts/pkg-plist index 165042f4288e..38bbc9118afb 100644 --- a/net/akonadi-contacts/pkg-plist +++ b/net/akonadi-contacts/pkg-plist @@ -1,248 +1,251 @@ include/KF5/Akonadi/Contact/AbstractContactFormatter include/KF5/Akonadi/Contact/AbstractContactGroupFormatter include/KF5/Akonadi/Contact/AbstractEmailAddressSelectionDialog include/KF5/Akonadi/Contact/AddContactJob include/KF5/Akonadi/Contact/AddEmailAddressJob include/KF5/Akonadi/Contact/AddEmailDisplayJob include/KF5/Akonadi/Contact/ContactDefaultActions include/KF5/Akonadi/Contact/ContactEditor include/KF5/Akonadi/Contact/ContactEditorDialog include/KF5/Akonadi/Contact/ContactGrantleeWrapper include/KF5/Akonadi/Contact/ContactGroupEditor include/KF5/Akonadi/Contact/ContactGroupEditorDialog include/KF5/Akonadi/Contact/ContactGroupExpandJob include/KF5/Akonadi/Contact/ContactGroupSearchJob include/KF5/Akonadi/Contact/ContactGroupViewer include/KF5/Akonadi/Contact/ContactGroupViewerDialog include/KF5/Akonadi/Contact/ContactParts include/KF5/Akonadi/Contact/ContactSearchJob include/KF5/Akonadi/Contact/ContactViewer include/KF5/Akonadi/Contact/ContactViewerDialog include/KF5/Akonadi/Contact/ContactsFilterProxyModel include/KF5/Akonadi/Contact/ContactsTreeModel include/KF5/Akonadi/Contact/EmailAddressRequester include/KF5/Akonadi/Contact/EmailAddressSelection include/KF5/Akonadi/Contact/EmailAddressSelectionDialog include/KF5/Akonadi/Contact/EmailAddressSelectionModel include/KF5/Akonadi/Contact/EmailAddressSelectionWidget include/KF5/Akonadi/Contact/GrantleeContactFormatter include/KF5/Akonadi/Contact/GrantleeContactGroupFormatter include/KF5/Akonadi/Contact/GrantleeContactViewer include/KF5/Akonadi/Contact/GrantleePrint include/KF5/Akonadi/Contact/OpenEmailAddressJob include/KF5/Akonadi/Contact/RecipientsEditorManager include/KF5/Akonadi/Contact/RecipientsPickerWidget include/KF5/Akonadi/Contact/SelectAddressBookDialog include/KF5/Akonadi/Contact/StandardContactActionManager include/KF5/Akonadi/Contact/StandardContactFormatter include/KF5/Akonadi/Contact/StandardContactGroupFormatter include/KF5/ContactEditor/CategoriesEditAbstractWidget include/KF5/ContactEditor/ContactEditorPagePlugin include/KF5/akonadi/contact/abstractcontactformatter.h include/KF5/akonadi/contact/abstractcontactgroupformatter.h include/KF5/akonadi/contact/abstractemailaddressselectiondialog.h include/KF5/akonadi/contact/addcontactjob.h include/KF5/akonadi/contact/addemailaddressjob.h include/KF5/akonadi/contact/addemaildisplayjob.h include/KF5/akonadi/contact/akonadi-contact_export.h include/KF5/akonadi/contact/contactdefaultactions.h include/KF5/akonadi/contact/contacteditor.h include/KF5/akonadi/contact/contacteditordialog.h include/KF5/akonadi/contact/contactgrantleewrapper.h include/KF5/akonadi/contact/contactgroupeditor.h include/KF5/akonadi/contact/contactgroupeditordialog.h include/KF5/akonadi/contact/contactgroupexpandjob.h include/KF5/akonadi/contact/contactgroupsearchjob.h include/KF5/akonadi/contact/contactgroupviewer.h include/KF5/akonadi/contact/contactgroupviewerdialog.h include/KF5/akonadi/contact/contactparts.h include/KF5/akonadi/contact/contactsearchjob.h include/KF5/akonadi/contact/contactsfilterproxymodel.h include/KF5/akonadi/contact/contactstreemodel.h include/KF5/akonadi/contact/contactviewer.h include/KF5/akonadi/contact/contactviewerdialog.h include/KF5/akonadi/contact/emailaddressrequester.h include/KF5/akonadi/contact/emailaddressselection.h include/KF5/akonadi/contact/emailaddressselectiondialog.h include/KF5/akonadi/contact/emailaddressselectionmodel.h include/KF5/akonadi/contact/emailaddressselectionwidget.h include/KF5/akonadi/contact/grantleecontactformatter.h include/KF5/akonadi/contact/grantleecontactgroupformatter.h include/KF5/akonadi/contact/grantleecontactviewer.h include/KF5/akonadi/contact/grantleeprint.h include/KF5/akonadi/contact/openemailaddressjob.h include/KF5/akonadi/contact/recipientseditormanager.h include/KF5/akonadi/contact/recipientspickerwidget.h include/KF5/akonadi/contact/selectaddressbookdialog.h include/KF5/akonadi/contact/standardcontactactionmanager.h include/KF5/akonadi/contact/standardcontactformatter.h include/KF5/akonadi/contact/standardcontactgroupformatter.h include/KF5/contacteditor/categorieseditabstractwidget.h include/KF5/contacteditor/contacteditor_export.h include/KF5/contacteditor/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%%/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/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 7109597283c1..8f6c685af883 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741528 -SHA256 (KDE/release-service/21.04.1/akonadi-mime-21.04.1.tar.xz) = 7e9a2a4bba6c39c0d6e24d8479199988e8726a229d6ff66853c943cc4dbe2d33 -SIZE (KDE/release-service/21.04.1/akonadi-mime-21.04.1.tar.xz) = 140556 +TIMESTAMP = 1623520984 +SHA256 (KDE/release-service/21.04.2/akonadi-mime-21.04.2.tar.xz) = 9842086ea1f0bd4c31bd7ca9917e2658077cb9b89da90ec20847641b1f73cc3c +SIZE (KDE/release-service/21.04.2/akonadi-mime-21.04.2.tar.xz) = 142248 diff --git a/net/akonadi-mime/pkg-plist b/net/akonadi-mime/pkg-plist index 132273c81b37..ae32d1aa0507 100644 --- a/net/akonadi-mime/pkg-plist +++ b/net/akonadi-mime/pkg-plist @@ -1,90 +1,91 @@ share/qlogging-categories5/akonadi-mime.categories include/KF5/Akonadi/KMime/AddressAttribute include/KF5/Akonadi/KMime/CommandBase include/KF5/Akonadi/KMime/MarkAsCommand include/KF5/Akonadi/KMime/MessageFlags include/KF5/Akonadi/KMime/MessageFolderAttribute include/KF5/Akonadi/KMime/MessageModel include/KF5/Akonadi/KMime/MessageParts include/KF5/Akonadi/KMime/MessageStatus include/KF5/Akonadi/KMime/MoveCommand include/KF5/Akonadi/KMime/NewMailNotifierAttribute include/KF5/Akonadi/KMime/Pop3ResourceAttribute include/KF5/Akonadi/KMime/RemoveDuplicatesJob include/KF5/Akonadi/KMime/SpecialMailCollections include/KF5/Akonadi/KMime/SpecialMailCollectionsDiscoveryJob include/KF5/Akonadi/KMime/SpecialMailCollectionsRequestJob include/KF5/Akonadi/KMime/StandardMailActionManager include/KF5/akonadi-mime_version.h include/KF5/akonadi/kmime/addressattribute.h include/KF5/akonadi/kmime/akonadi-mime_export.h include/KF5/akonadi/kmime/commandbase.h include/KF5/akonadi/kmime/markascommand.h include/KF5/akonadi/kmime/messageflags.h include/KF5/akonadi/kmime/messagefolderattribute.h include/KF5/akonadi/kmime/messagemodel.h include/KF5/akonadi/kmime/messageparts.h include/KF5/akonadi/kmime/messagestatus.h include/KF5/akonadi/kmime/movecommand.h include/KF5/akonadi/kmime/newmailnotifierattribute.h include/KF5/akonadi/kmime/pop3resourceattribute.h include/KF5/akonadi/kmime/removeduplicatesjob.h include/KF5/akonadi/kmime/specialmailcollections.h include/KF5/akonadi/kmime/specialmailcollectionsdiscoveryjob.h include/KF5/akonadi/kmime/specialmailcollectionsrequestjob.h include/KF5/akonadi/kmime/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_PLUGINDIR%%/akonadi_serializer_mail.so %%QT_MKSPECDIR%%/modules/qt_AkonadiMime.pri 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/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 diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 7be508438b0b..bc57910320cf 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741529 -SHA256 (KDE/release-service/21.04.1/akonadi-notes-21.04.1.tar.xz) = 7e67facd7829397040a9c291b7ba983e1485782711df219555a8facab73a21af -SIZE (KDE/release-service/21.04.1/akonadi-notes-21.04.1.tar.xz) = 26788 +TIMESTAMP = 1623520985 +SHA256 (KDE/release-service/21.04.2/akonadi-notes-21.04.2.tar.xz) = dbdfd48ca65cf5c64a51babb6338b2397f27912f4ffcb85ce2bdb1af4a6183e6 +SIZE (KDE/release-service/21.04.2/akonadi-notes-21.04.2.tar.xz) = 27016 diff --git a/net/akonadi-notes/pkg-plist b/net/akonadi-notes/pkg-plist index 0b763fd9e2b7..8d297c9ac571 100644 --- a/net/akonadi-notes/pkg-plist +++ b/net/akonadi-notes/pkg-plist @@ -1,60 +1,62 @@ include/KF5/Akonadi/Notes/NoteUtils include/KF5/akonadi-notes_version.h include/KF5/akonadi/notes/NoteUtils include/KF5/akonadi/notes/akonadi-notes_export.h include/KF5/akonadi/notes/noteutils.h lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfig.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesConfigVersion.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiNotes/KF5AkonadiNotesTargets.cmake lib/libKF5AkonadiNotes.so lib/libKF5AkonadiNotes.so.5 lib/libKF5AkonadiNotes.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiNotes.pri share/locale/ar/LC_MESSAGES/akonadinotes5.mo share/locale/ast/LC_MESSAGES/akonadinotes5.mo +share/locale/az/LC_MESSAGES/akonadinotes5.mo share/locale/bg/LC_MESSAGES/akonadinotes5.mo share/locale/bs/LC_MESSAGES/akonadinotes5.mo share/locale/ca/LC_MESSAGES/akonadinotes5.mo share/locale/ca@valencia/LC_MESSAGES/akonadinotes5.mo share/locale/cs/LC_MESSAGES/akonadinotes5.mo share/locale/da/LC_MESSAGES/akonadinotes5.mo share/locale/de/LC_MESSAGES/akonadinotes5.mo share/locale/el/LC_MESSAGES/akonadinotes5.mo share/locale/en_GB/LC_MESSAGES/akonadinotes5.mo share/locale/es/LC_MESSAGES/akonadinotes5.mo share/locale/et/LC_MESSAGES/akonadinotes5.mo share/locale/eu/LC_MESSAGES/akonadinotes5.mo share/locale/fi/LC_MESSAGES/akonadinotes5.mo share/locale/fr/LC_MESSAGES/akonadinotes5.mo share/locale/ga/LC_MESSAGES/akonadinotes5.mo share/locale/gl/LC_MESSAGES/akonadinotes5.mo share/locale/he/LC_MESSAGES/akonadinotes5.mo share/locale/hi/LC_MESSAGES/akonadinotes5.mo share/locale/hu/LC_MESSAGES/akonadinotes5.mo share/locale/ia/LC_MESSAGES/akonadinotes5.mo share/locale/it/LC_MESSAGES/akonadinotes5.mo share/locale/ja/LC_MESSAGES/akonadinotes5.mo share/locale/kk/LC_MESSAGES/akonadinotes5.mo share/locale/km/LC_MESSAGES/akonadinotes5.mo share/locale/ko/LC_MESSAGES/akonadinotes5.mo share/locale/lt/LC_MESSAGES/akonadinotes5.mo share/locale/mr/LC_MESSAGES/akonadinotes5.mo share/locale/nb/LC_MESSAGES/akonadinotes5.mo share/locale/nds/LC_MESSAGES/akonadinotes5.mo share/locale/nl/LC_MESSAGES/akonadinotes5.mo share/locale/nn/LC_MESSAGES/akonadinotes5.mo share/locale/pl/LC_MESSAGES/akonadinotes5.mo share/locale/pt/LC_MESSAGES/akonadinotes5.mo share/locale/pt_BR/LC_MESSAGES/akonadinotes5.mo share/locale/ro/LC_MESSAGES/akonadinotes5.mo share/locale/ru/LC_MESSAGES/akonadinotes5.mo share/locale/sk/LC_MESSAGES/akonadinotes5.mo share/locale/sl/LC_MESSAGES/akonadinotes5.mo share/locale/sr/LC_MESSAGES/akonadinotes5.mo share/locale/sv/LC_MESSAGES/akonadinotes5.mo +share/locale/tg/LC_MESSAGES/akonadinotes5.mo share/locale/tr/LC_MESSAGES/akonadinotes5.mo share/locale/ug/LC_MESSAGES/akonadinotes5.mo share/locale/uk/LC_MESSAGES/akonadinotes5.mo share/locale/zh_CN/LC_MESSAGES/akonadinotes5.mo share/locale/zh_TW/LC_MESSAGES/akonadinotes5.mo diff --git a/net/akonadi-search/distinfo b/net/akonadi-search/distinfo index 2368d8a232d5..544075b6929e 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741530 -SHA256 (KDE/release-service/21.04.1/akonadi-search-21.04.1.tar.xz) = b94548c6265a0bb797a47a96bda1d4f5b891226f8f920ecc1b97c7b81065fc99 -SIZE (KDE/release-service/21.04.1/akonadi-search-21.04.1.tar.xz) = 97904 +TIMESTAMP = 1623520987 +SHA256 (KDE/release-service/21.04.2/akonadi-search-21.04.2.tar.xz) = e5e9d2241a3397fa445bc55fbdc8f080c4a3c79d380b834ad9c3d3d311d9735f +SIZE (KDE/release-service/21.04.2/akonadi-search-21.04.2.tar.xz) = 98184 diff --git a/net/akonadi-search/pkg-plist b/net/akonadi-search/pkg-plist index 85f7236524cb..db2825e0734a 100644 --- a/net/akonadi-search/pkg-plist +++ b/net/akonadi-search/pkg-plist @@ -1,88 +1,89 @@ bin/akonadi_indexing_agent share/qlogging-categories5/akonadi-search.categories share/qlogging-categories5/akonadi-search.renamecategories include/KF5/AkonadiSearch/Core/query.h include/KF5/AkonadiSearch/Core/resultiterator.h include/KF5/AkonadiSearch/Core/search_core_export.h include/KF5/AkonadiSearch/Core/searchstore.h include/KF5/AkonadiSearch/Core/term.h 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/akonadi_search_version.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%%/kcm_krunner_pimcontacts.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_pimcontacts.so share/akonadi/agents/akonadiindexingagent.desktop share/kservices5/plasma-krunner-pimcontacts_config.desktop share/locale/ar/LC_MESSAGES/akonadi_search.mo +share/locale/az/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/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 diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 9fb2a0f6b46d..7ed9bd4f23a9 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741530 -SHA256 (KDE/release-service/21.04.1/calendarsupport-21.04.1.tar.xz) = bdff263d1b4d07ec54817f0ad4529481a9554d3cba86813069880e02f7697fe9 -SIZE (KDE/release-service/21.04.1/calendarsupport-21.04.1.tar.xz) = 670976 +TIMESTAMP = 1623520989 +SHA256 (KDE/release-service/21.04.2/calendarsupport-21.04.2.tar.xz) = 54a7c6895844886e1f3c5d496aa6008ea278eb88510187398848b819b7d2be88 +SIZE (KDE/release-service/21.04.2/calendarsupport-21.04.2.tar.xz) = 755412 diff --git a/net/calendarsupport/pkg-plist b/net/calendarsupport/pkg-plist index a7dd519d2223..b3eec33955c5 100644 --- a/net/calendarsupport/pkg-plist +++ b/net/calendarsupport/pkg-plist @@ -1,120 +1,126 @@ share/qlogging-categories5/calendarsupport.categories share/qlogging-categories5/calendarsupport.renamecategories include/KF5/CalendarSupport/ArchiveDialog include/KF5/CalendarSupport/CalPrintDefaultPlugins include/KF5/CalendarSupport/CalPrintPluginBase include/KF5/CalendarSupport/CalPrinter include/KF5/CalendarSupport/CalendarSingleton include/KF5/CalendarSupport/CategoryConfig include/KF5/CalendarSupport/CategoryHierarchyReader include/KF5/CalendarSupport/CellItem include/KF5/CalendarSupport/CollectionSelection include/KF5/CalendarSupport/EventArchiver include/KF5/CalendarSupport/FreeBusyCalendar include/KF5/CalendarSupport/FreeBusyItem include/KF5/CalendarSupport/FreeBusyItemModel include/KF5/CalendarSupport/FreePeriodModel include/KF5/CalendarSupport/IdentityManager include/KF5/CalendarSupport/IncidenceViewer include/KF5/CalendarSupport/KCalPrefs include/KF5/CalendarSupport/KDatePickerPopup include/KF5/CalendarSupport/MessageWidget include/KF5/CalendarSupport/NoteEditDialog include/KF5/CalendarSupport/Plugin include/KF5/CalendarSupport/PrintPlugin include/KF5/CalendarSupport/UriHandler include/KF5/CalendarSupport/Utils include/KF5/calendarsupport/archivedialog.h include/KF5/calendarsupport/calendarsingleton.h include/KF5/calendarsupport/calendarsupport_export.h include/KF5/calendarsupport/calprintdefaultplugins.h include/KF5/calendarsupport/calprinter.h include/KF5/calendarsupport/calprintpluginbase.h include/KF5/calendarsupport/categoryconfig.h include/KF5/calendarsupport/categoryhierarchyreader.h include/KF5/calendarsupport/cellitem.h include/KF5/calendarsupport/collectionselection.h include/KF5/calendarsupport/eventarchiver.h include/KF5/calendarsupport/freebusycalendar.h include/KF5/calendarsupport/freebusyitem.h include/KF5/calendarsupport/freebusyitemmodel.h include/KF5/calendarsupport/freeperiodmodel.h include/KF5/calendarsupport/identitymanager.h include/KF5/calendarsupport/incidenceviewer.h include/KF5/calendarsupport/kcalprefs.h include/KF5/calendarsupport/kcalprefs_base.h include/KF5/calendarsupport/kdatepickerpopup.h include/KF5/calendarsupport/messagewidget.h include/KF5/calendarsupport/noteeditdialog.h include/KF5/calendarsupport/plugin.h include/KF5/calendarsupport/printplugin.h include/KF5/calendarsupport/ui_calprintdayconfig_base.h include/KF5/calendarsupport/ui_calprintincidenceconfig_base.h include/KF5/calendarsupport/ui_calprintmonthconfig_base.h include/KF5/calendarsupport/ui_calprinttodoconfig_base.h include/KF5/calendarsupport/ui_calprintweekconfig_base.h include/KF5/calendarsupport/urihandler.h include/KF5/calendarsupport/utils.h include/KF5/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/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 diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index 1fce6420bf6d..0fc5d89d3d42 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741531 -SHA256 (KDE/release-service/21.04.1/eventviews-21.04.1.tar.xz) = 9035a353f4191992e96e1646feb20dbe5b47303f8e6e9045e8b38ba6311fa1e0 -SIZE (KDE/release-service/21.04.1/eventviews-21.04.1.tar.xz) = 447204 +TIMESTAMP = 1623520991 +SHA256 (KDE/release-service/21.04.2/eventviews-21.04.2.tar.xz) = 31fb8c948e10f2ef2d87eb6fca4dd514b3b3d0f27689c8d9bbef7634d37a4801 +SIZE (KDE/release-service/21.04.2/eventviews-21.04.2.tar.xz) = 447368 diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 9d7b14acb1e2..887d06fd5c6d 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741532 -SHA256 (KDE/release-service/21.04.1/incidenceeditor-21.04.1.tar.xz) = fed1e59c7a1e47eab46947874e856d36f1becf8e4160dd48ae79521e6fa31c7e -SIZE (KDE/release-service/21.04.1/incidenceeditor-21.04.1.tar.xz) = 539912 +TIMESTAMP = 1623520992 +SHA256 (KDE/release-service/21.04.2/incidenceeditor-21.04.2.tar.xz) = 387146acf149c86670e9ab035b39f054f4509714df40204c33e715da1af2cb2a +SIZE (KDE/release-service/21.04.2/incidenceeditor-21.04.2.tar.xz) = 539832 diff --git a/net/kalarmcal/distinfo b/net/kalarmcal/distinfo index cd7f162a1d2e..cb4bae7020b6 100644 --- a/net/kalarmcal/distinfo +++ b/net/kalarmcal/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741533 -SHA256 (KDE/release-service/21.04.1/kalarmcal-21.04.1.tar.xz) = 8c349ed7934981b998c2012d6b54bc838634249b10064107252cd831dea1ac78 -SIZE (KDE/release-service/21.04.1/kalarmcal-21.04.1.tar.xz) = 579940 +TIMESTAMP = 1623520994 +SHA256 (KDE/release-service/21.04.2/kalarmcal-21.04.2.tar.xz) = 95ff7c2b4dce435b5a214f1f126faaf1c6bb064624f8ad7596b1981e5a390dfe +SIZE (KDE/release-service/21.04.2/kalarmcal-21.04.2.tar.xz) = 629196 diff --git a/net/kalarmcal/pkg-plist b/net/kalarmcal/pkg-plist index 9266b2d0dbaf..7421c35a3c88 100644 --- a/net/kalarmcal/pkg-plist +++ b/net/kalarmcal/pkg-plist @@ -1,137 +1,142 @@ include/KF5/KAlarmCal/KAlarmCal/Akonadi include/KF5/KAlarmCal/KAlarmCal/AlarmText include/KF5/KAlarmCal/KAlarmCal/CollectionAttribute include/KF5/KAlarmCal/KAlarmCal/CompatibilityAttribute include/KF5/KAlarmCal/KAlarmCal/DateTime include/KF5/KAlarmCal/KAlarmCal/EventAttribute include/KF5/KAlarmCal/KAlarmCal/Identities include/KF5/KAlarmCal/KAlarmCal/KACalendar include/KF5/KAlarmCal/KAlarmCal/KADateTime include/KF5/KAlarmCal/KAlarmCal/KAEvent include/KF5/KAlarmCal/KAlarmCal/KARecurrence include/KF5/KAlarmCal/KAlarmCal/Repetition include/KF5/KAlarmCal/KAlarmCal/Version include/KF5/KAlarmCal/kalarmcal/akonadi.h include/KF5/KAlarmCal/kalarmcal/alarmtext.h include/KF5/KAlarmCal/kalarmcal/collectionattribute.h include/KF5/KAlarmCal/kalarmcal/compatibilityattribute.h include/KF5/KAlarmCal/kalarmcal/datetime.h include/KF5/KAlarmCal/kalarmcal/eventattribute.h include/KF5/KAlarmCal/kalarmcal/identities.h include/KF5/KAlarmCal/kalarmcal/kacalendar.h include/KF5/KAlarmCal/kalarmcal/kadatetime.h include/KF5/KAlarmCal/kalarmcal/kaevent.h include/KF5/KAlarmCal/kalarmcal/kalarmcal_export.h include/KF5/KAlarmCal/kalarmcal/karecurrence.h include/KF5/KAlarmCal/kalarmcal/repetition.h include/KF5/KAlarmCal/kalarmcal/version.h include/KF5/kalarmcal_version.h lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarConfig.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarConfigVersion.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AlarmCalendar/KF5AlarmCalendarTargets.cmake lib/libKF5AlarmCalendar.so lib/libKF5AlarmCalendar.so.5 lib/libKF5AlarmCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KAlarmCal.pri %%QT_PLUGINDIR%%/akonadi_serializer_kalarm.so share/akonadi/plugins/serializer/akonadi_serializer_kalarm.desktop share/locale/ar/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ar/LC_MESSAGES/libkalarmcal5.mo +share/locale/be/LC_MESSAGES/libkalarmcal5.mo share/locale/bg/LC_MESSAGES/libkalarmcal5.mo share/locale/bs/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/bs/LC_MESSAGES/libkalarmcal5.mo share/locale/ca/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ca/LC_MESSAGES/libkalarmcal5.mo share/locale/ca@valencia/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libkalarmcal5.mo share/locale/cs/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/cs/LC_MESSAGES/libkalarmcal5.mo share/locale/da/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/da/LC_MESSAGES/libkalarmcal5.mo share/locale/de/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/de/LC_MESSAGES/libkalarmcal5.mo share/locale/el/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/el/LC_MESSAGES/libkalarmcal5.mo share/locale/en_GB/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/en_GB/LC_MESSAGES/libkalarmcal5.mo share/locale/eo/LC_MESSAGES/libkalarmcal5.mo share/locale/es/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/es/LC_MESSAGES/libkalarmcal5.mo share/locale/et/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/et/LC_MESSAGES/libkalarmcal5.mo share/locale/eu/LC_MESSAGES/libkalarmcal5.mo share/locale/fa/LC_MESSAGES/libkalarmcal5.mo share/locale/fi/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/fi/LC_MESSAGES/libkalarmcal5.mo share/locale/fr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/fr/LC_MESSAGES/libkalarmcal5.mo share/locale/ga/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ga/LC_MESSAGES/libkalarmcal5.mo share/locale/gl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/gl/LC_MESSAGES/libkalarmcal5.mo share/locale/he/LC_MESSAGES/libkalarmcal5.mo share/locale/hi/LC_MESSAGES/libkalarmcal5.mo share/locale/hr/LC_MESSAGES/libkalarmcal5.mo share/locale/hu/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/hu/LC_MESSAGES/libkalarmcal5.mo share/locale/ia/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ia/LC_MESSAGES/libkalarmcal5.mo share/locale/is/LC_MESSAGES/libkalarmcal5.mo share/locale/it/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/it/LC_MESSAGES/libkalarmcal5.mo share/locale/ja/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ja/LC_MESSAGES/libkalarmcal5.mo share/locale/kk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/kk/LC_MESSAGES/libkalarmcal5.mo share/locale/km/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/km/LC_MESSAGES/libkalarmcal5.mo share/locale/ko/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ko/LC_MESSAGES/libkalarmcal5.mo share/locale/lt/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/lt/LC_MESSAGES/libkalarmcal5.mo share/locale/lv/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/lv/LC_MESSAGES/libkalarmcal5.mo share/locale/mr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/mr/LC_MESSAGES/libkalarmcal5.mo share/locale/nb/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nb/LC_MESSAGES/libkalarmcal5.mo share/locale/nds/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nds/LC_MESSAGES/libkalarmcal5.mo share/locale/nl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nl/LC_MESSAGES/libkalarmcal5.mo share/locale/nn/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/nn/LC_MESSAGES/libkalarmcal5.mo share/locale/pa/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pa/LC_MESSAGES/libkalarmcal5.mo share/locale/pl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pl/LC_MESSAGES/libkalarmcal5.mo share/locale/pt/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pt/LC_MESSAGES/libkalarmcal5.mo share/locale/pt_BR/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libkalarmcal5.mo share/locale/ro/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ro/LC_MESSAGES/libkalarmcal5.mo share/locale/ru/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ru/LC_MESSAGES/libkalarmcal5.mo +share/locale/se/LC_MESSAGES/libkalarmcal5.mo share/locale/sk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sk/LC_MESSAGES/libkalarmcal5.mo share/locale/sl/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sl/LC_MESSAGES/libkalarmcal5.mo +share/locale/sq/LC_MESSAGES/libkalarmcal5.mo share/locale/sr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sr/LC_MESSAGES/libkalarmcal5.mo share/locale/sv/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/sv/LC_MESSAGES/libkalarmcal5.mo +share/locale/ta/LC_MESSAGES/libkalarmcal5.mo +share/locale/tg/LC_MESSAGES/libkalarmcal5.mo share/locale/tr/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/tr/LC_MESSAGES/libkalarmcal5.mo share/locale/ug/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/ug/LC_MESSAGES/libkalarmcal5.mo share/locale/uk/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/uk/LC_MESSAGES/libkalarmcal5.mo share/locale/wa/LC_MESSAGES/libkalarmcal5.mo share/locale/zh_CN/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libkalarmcal5.mo share/locale/zh_TW/LC_MESSAGES/libkalarmcal5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libkalarmcal5.mo share/qlogging-categories5/kalarmcal.categories share/qlogging-categories5/kalarmcal.renamecategories diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 1dfc3225caf5..eddbf830eca6 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741533 -SHA256 (KDE/release-service/21.04.1/kcalutils-21.04.1.tar.xz) = 2cd64365c620d7ca83d9c6a1488da8641d4cc2b97987eb09d7482130d8109b90 -SIZE (KDE/release-service/21.04.1/kcalutils-21.04.1.tar.xz) = 333740 +TIMESTAMP = 1623520995 +SHA256 (KDE/release-service/21.04.2/kcalutils-21.04.2.tar.xz) = 561d35a501c95a5b79bda7a1fbbdbe0e66e178cdd7d7fa57c6a1617426e72d25 +SIZE (KDE/release-service/21.04.2/kcalutils-21.04.2.tar.xz) = 334164 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index 33d24de6b67f..da543e4ad191 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,74 +1,75 @@ share/qlogging-categories5/kcalutils.categories share/qlogging-categories5/kcalutils.renamecategories include/KF5/KCalUtils/KCalUtils/DndFactory 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/HTMLExportSettings 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_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/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 diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index fc5ae103e844..4365e5033242 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741534 -SHA256 (KDE/release-service/21.04.1/kdenetwork-filesharing-21.04.1.tar.xz) = 894828a5fa14d05d6ea8f9d59954fb5e71b1412074305dfbb9d7477550c2c5ff -SIZE (KDE/release-service/21.04.1/kdenetwork-filesharing-21.04.1.tar.xz) = 354664 +TIMESTAMP = 1623520997 +SHA256 (KDE/release-service/21.04.2/kdenetwork-filesharing-21.04.2.tar.xz) = 8c4b2c74675404f9136c0225c00719794ed0871d18192a9e7aa559e1f0a4d7da +SIZE (KDE/release-service/21.04.2/kdenetwork-filesharing-21.04.2.tar.xz) = 376784 diff --git a/net/kdenetwork-filesharing/pkg-plist b/net/kdenetwork-filesharing/pkg-plist index 3eab75ac19bb..dc6c4bec6fe1 100644 --- a/net/kdenetwork-filesharing/pkg-plist +++ b/net/kdenetwork-filesharing/pkg-plist @@ -1,59 +1,66 @@ lib/libexec/kauth/authhelper share/dbus-1/system-services/org.kde.filesharing.samba.service share/dbus-1/system.d/org.kde.filesharing.samba.conf share/polkit-1/actions/org.kde.filesharing.samba.policy %%QT_PLUGINDIR%%/kf5/propertiesdialog/sambausershareplugin.so -share/locale/ast/LC_MESSAGES/kfileshare.mo share/locale/ar/LC_MESSAGES/kfileshare.mo +share/locale/ast/LC_MESSAGES/kfileshare.mo +share/locale/az/LC_MESSAGES/kfileshare.mo +share/locale/be/LC_MESSAGES/kfileshare.mo share/locale/bg/LC_MESSAGES/kfileshare.mo share/locale/bs/LC_MESSAGES/kfileshare.mo share/locale/ca/LC_MESSAGES/kfileshare.mo share/locale/ca@valencia/LC_MESSAGES/kfileshare.mo share/locale/cs/LC_MESSAGES/kfileshare.mo share/locale/da/LC_MESSAGES/kfileshare.mo share/locale/de/LC_MESSAGES/kfileshare.mo share/locale/el/LC_MESSAGES/kfileshare.mo share/locale/en_GB/LC_MESSAGES/kfileshare.mo share/locale/eo/LC_MESSAGES/kfileshare.mo share/locale/es/LC_MESSAGES/kfileshare.mo share/locale/et/LC_MESSAGES/kfileshare.mo share/locale/eu/LC_MESSAGES/kfileshare.mo share/locale/fa/LC_MESSAGES/kfileshare.mo share/locale/fi/LC_MESSAGES/kfileshare.mo share/locale/fr/LC_MESSAGES/kfileshare.mo share/locale/ga/LC_MESSAGES/kfileshare.mo share/locale/gl/LC_MESSAGES/kfileshare.mo share/locale/he/LC_MESSAGES/kfileshare.mo share/locale/hi/LC_MESSAGES/kfileshare.mo share/locale/hr/LC_MESSAGES/kfileshare.mo share/locale/hu/LC_MESSAGES/kfileshare.mo share/locale/ia/LC_MESSAGES/kfileshare.mo share/locale/is/LC_MESSAGES/kfileshare.mo share/locale/it/LC_MESSAGES/kfileshare.mo share/locale/ja/LC_MESSAGES/kfileshare.mo share/locale/kk/LC_MESSAGES/kfileshare.mo share/locale/km/LC_MESSAGES/kfileshare.mo share/locale/ko/LC_MESSAGES/kfileshare.mo share/locale/lt/LC_MESSAGES/kfileshare.mo share/locale/lv/LC_MESSAGES/kfileshare.mo share/locale/mr/LC_MESSAGES/kfileshare.mo share/locale/nb/LC_MESSAGES/kfileshare.mo share/locale/nds/LC_MESSAGES/kfileshare.mo share/locale/nl/LC_MESSAGES/kfileshare.mo share/locale/nn/LC_MESSAGES/kfileshare.mo share/locale/pa/LC_MESSAGES/kfileshare.mo share/locale/pl/LC_MESSAGES/kfileshare.mo share/locale/pt/LC_MESSAGES/kfileshare.mo share/locale/pt_BR/LC_MESSAGES/kfileshare.mo share/locale/ro/LC_MESSAGES/kfileshare.mo share/locale/ru/LC_MESSAGES/kfileshare.mo +share/locale/se/LC_MESSAGES/kfileshare.mo share/locale/sk/LC_MESSAGES/kfileshare.mo share/locale/sl/LC_MESSAGES/kfileshare.mo +share/locale/sq/LC_MESSAGES/kfileshare.mo share/locale/sr/LC_MESSAGES/kfileshare.mo share/locale/sv/LC_MESSAGES/kfileshare.mo +share/locale/ta/LC_MESSAGES/kfileshare.mo +share/locale/tg/LC_MESSAGES/kfileshare.mo share/locale/tr/LC_MESSAGES/kfileshare.mo share/locale/ug/LC_MESSAGES/kfileshare.mo share/locale/uk/LC_MESSAGES/kfileshare.mo +share/locale/vi/LC_MESSAGES/kfileshare.mo share/locale/zh_CN/LC_MESSAGES/kfileshare.mo share/locale/zh_TW/LC_MESSAGES/kfileshare.mo share/metainfo/org.kde.kdenetwork-filesharing.metainfo.xml diff --git a/net/kget/distinfo b/net/kget/distinfo index 65e3e51d7e76..723cca0a7902 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741535 -SHA256 (KDE/release-service/21.04.1/kget-21.04.1.tar.xz) = 3c590d73774a444340ee106fdbc22a91045c827e610b2c2b527d252ddb587d28 -SIZE (KDE/release-service/21.04.1/kget-21.04.1.tar.xz) = 5589968 +TIMESTAMP = 1623520999 +SHA256 (KDE/release-service/21.04.2/kget-21.04.2.tar.xz) = c660fdc869654af5d73d40aca215b8377d65b6238ec46cd3d54de9296d010dee +SIZE (KDE/release-service/21.04.2/kget-21.04.2.tar.xz) = 5636068 diff --git a/net/kget/pkg-plist b/net/kget/pkg-plist index a4c808321953..5afcaff784bf 100644 --- a/net/kget/pkg-plist +++ b/net/kget/pkg-plist @@ -1,256 +1,271 @@ bin/kget share/qlogging-categories5/kget.categories lib/libkgetcore.so lib/libkgetcore.so.5 lib/libkgetcore.so.5.0.0 %%QT_PLUGINDIR%%/kcm_kget_bittorrentfactory.so %%QT_PLUGINDIR%%/kcm_kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kcm_kget_metalinkfactory.so %%QT_PLUGINDIR%%/kcm_kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kcm_kget_multisegkiofactory.so %%QT_PLUGINDIR%%/kget/kget_bittorrent.so %%QT_PLUGINDIR%%/kget/kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_kio.so %%QT_PLUGINDIR%%/kget/kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget/kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget/kget_multisegkiofactory.so %%QT_PLUGINDIR%%/kget_browser_integration.so share/applications/org.kde.kget.desktop share/config.kcfg/kget.kcfg share/config.kcfg/kget_checksumsearchfactory.kcfg share/config.kcfg/kget_mirrorsearchfactory.kcfg share/config.kcfg/kget_multisegkiofactory.kcfg share/dbus-1/services/org.kde.kget.service share/dolphinpart/kpartplugins/kget_plug_in.desktop share/dolphinpart/kpartplugins/kget_plug_in.rc share/icons/hicolor/128x128/apps/kget.png share/icons/hicolor/16x16/apps/kget.png share/icons/hicolor/22x22/apps/kget.png share/icons/hicolor/32x32/apps/kget.png share/icons/hicolor/48x48/apps/kget.png share/icons/hicolor/64x64/apps/kget.png share/kconf_update/kget.upd share/kconf_update/kget_limitdownloads.pl share/kconf_update/kget_sensitive.pl %%DATADIR%%/pics/kget_splash.png share/khtml/kpartplugins/kget_plug_in.desktop share/khtml/kpartplugins/kget_plug_in.rc share/knotifications5/kget.notifyrc share/kservices5/ServiceMenus/kget_download.desktop share/kservices5/kget_bittorrentfactory_config.desktop share/kservices5/kget_checksumsearchfactory_config.desktop share/kservices5/kget_metalinkfactory_config.desktop share/kservices5/kget_mirrorsearchfactory_config.desktop share/kservices5/kget_multisegkiofactory_config.desktop share/kservicetypes5/kget_plugin.desktop share/kwebkitpart/kpartplugins/kget_plug_in.desktop share/kwebkitpart/kpartplugins/kget_plug_in.rc share/kxmlgui5/kget/kgetui.rc share/locale/ar/LC_MESSAGES/kget.mo share/locale/ar/LC_MESSAGES/kgetplugin.mo share/locale/ar/LC_MESSAGES/plasma_applet_kget.mo +share/locale/be/LC_MESSAGES/kget.mo +share/locale/be/LC_MESSAGES/kgetplugin.mo +share/locale/be/LC_MESSAGES/plasma_applet_kget.mo share/locale/bg/LC_MESSAGES/kget.mo share/locale/bg/LC_MESSAGES/kgetplugin.mo share/locale/bg/LC_MESSAGES/plasma_applet_kget.mo share/locale/bg/LC_MESSAGES/plasma_runner_kget.mo share/locale/bs/LC_MESSAGES/kget.mo share/locale/bs/LC_MESSAGES/kgetplugin.mo share/locale/bs/LC_MESSAGES/plasma_applet_kget.mo share/locale/bs/LC_MESSAGES/plasma_runner_kget.mo share/locale/ca/LC_MESSAGES/kget.mo share/locale/ca/LC_MESSAGES/kgetplugin.mo share/locale/ca/LC_MESSAGES/plasma_applet_kget.mo share/locale/ca/LC_MESSAGES/plasma_runner_kget.mo share/locale/ca@valencia/LC_MESSAGES/kget.mo share/locale/ca@valencia/LC_MESSAGES/kgetplugin.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kget.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kget.mo share/locale/cs/LC_MESSAGES/kget.mo share/locale/cs/LC_MESSAGES/kgetplugin.mo share/locale/cs/LC_MESSAGES/plasma_applet_kget.mo share/locale/cs/LC_MESSAGES/plasma_runner_kget.mo share/locale/da/LC_MESSAGES/kget.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/plasma_applet_kget.mo share/locale/da/LC_MESSAGES/plasma_runner_kget.mo share/locale/de/LC_MESSAGES/kget.mo share/locale/de/LC_MESSAGES/kgetplugin.mo share/locale/de/LC_MESSAGES/plasma_applet_kget.mo share/locale/de/LC_MESSAGES/plasma_runner_kget.mo share/locale/el/LC_MESSAGES/kget.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/plasma_applet_kget.mo share/locale/el/LC_MESSAGES/plasma_runner_kget.mo share/locale/en_GB/LC_MESSAGES/kget.mo share/locale/en_GB/LC_MESSAGES/kgetplugin.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kget.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kget.mo share/locale/eo/LC_MESSAGES/kget.mo share/locale/eo/LC_MESSAGES/kgetplugin.mo share/locale/eo/LC_MESSAGES/plasma_applet_kget.mo share/locale/eo/LC_MESSAGES/plasma_runner_kget.mo share/locale/es/LC_MESSAGES/kget.mo share/locale/es/LC_MESSAGES/kgetplugin.mo share/locale/es/LC_MESSAGES/plasma_applet_kget.mo share/locale/es/LC_MESSAGES/plasma_runner_kget.mo share/locale/et/LC_MESSAGES/kget.mo share/locale/et/LC_MESSAGES/kgetplugin.mo share/locale/et/LC_MESSAGES/plasma_applet_kget.mo share/locale/et/LC_MESSAGES/plasma_runner_kget.mo share/locale/eu/LC_MESSAGES/kget.mo share/locale/eu/LC_MESSAGES/kgetplugin.mo share/locale/eu/LC_MESSAGES/plasma_applet_kget.mo share/locale/eu/LC_MESSAGES/plasma_runner_kget.mo share/locale/fa/LC_MESSAGES/kget.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/kget.mo share/locale/fi/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/plasma_applet_kget.mo share/locale/fi/LC_MESSAGES/plasma_runner_kget.mo share/locale/fr/LC_MESSAGES/kget.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/plasma_applet_kget.mo share/locale/fr/LC_MESSAGES/plasma_runner_kget.mo share/locale/ga/LC_MESSAGES/kget.mo share/locale/ga/LC_MESSAGES/kgetplugin.mo share/locale/ga/LC_MESSAGES/plasma_applet_kget.mo share/locale/ga/LC_MESSAGES/plasma_runner_kget.mo share/locale/gl/LC_MESSAGES/kget.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/plasma_applet_kget.mo share/locale/gl/LC_MESSAGES/plasma_runner_kget.mo share/locale/he/LC_MESSAGES/kget.mo share/locale/he/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/kget.mo share/locale/hi/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/plasma_applet_kget.mo share/locale/hr/LC_MESSAGES/kget.mo share/locale/hr/LC_MESSAGES/kgetplugin.mo share/locale/hr/LC_MESSAGES/plasma_applet_kget.mo share/locale/hr/LC_MESSAGES/plasma_runner_kget.mo share/locale/hu/LC_MESSAGES/kget.mo share/locale/hu/LC_MESSAGES/kgetplugin.mo share/locale/hu/LC_MESSAGES/plasma_applet_kget.mo share/locale/hu/LC_MESSAGES/plasma_runner_kget.mo share/locale/ia/LC_MESSAGES/kget.mo share/locale/ia/LC_MESSAGES/kgetplugin.mo share/locale/ia/LC_MESSAGES/plasma_applet_kget.mo share/locale/ia/LC_MESSAGES/plasma_runner_kget.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/plasma_applet_kget.mo share/locale/id/LC_MESSAGES/plasma_runner_kget.mo share/locale/is/LC_MESSAGES/kget.mo share/locale/is/LC_MESSAGES/kgetplugin.mo share/locale/is/LC_MESSAGES/plasma_applet_kget.mo share/locale/it/LC_MESSAGES/kget.mo share/locale/it/LC_MESSAGES/kgetplugin.mo share/locale/it/LC_MESSAGES/plasma_applet_kget.mo share/locale/it/LC_MESSAGES/plasma_runner_kget.mo share/locale/ja/LC_MESSAGES/kget.mo share/locale/ja/LC_MESSAGES/kgetplugin.mo share/locale/ja/LC_MESSAGES/plasma_applet_kget.mo share/locale/ja/LC_MESSAGES/plasma_runner_kget.mo share/locale/kk/LC_MESSAGES/kget.mo share/locale/kk/LC_MESSAGES/kgetplugin.mo share/locale/kk/LC_MESSAGES/plasma_applet_kget.mo share/locale/kk/LC_MESSAGES/plasma_runner_kget.mo share/locale/km/LC_MESSAGES/kget.mo share/locale/km/LC_MESSAGES/kgetplugin.mo share/locale/km/LC_MESSAGES/plasma_applet_kget.mo share/locale/km/LC_MESSAGES/plasma_runner_kget.mo share/locale/ko/LC_MESSAGES/kget.mo share/locale/ko/LC_MESSAGES/kgetplugin.mo share/locale/ko/LC_MESSAGES/plasma_applet_kget.mo share/locale/ko/LC_MESSAGES/plasma_runner_kget.mo share/locale/lt/LC_MESSAGES/kget.mo share/locale/lt/LC_MESSAGES/kgetplugin.mo share/locale/lt/LC_MESSAGES/plasma_applet_kget.mo share/locale/lt/LC_MESSAGES/plasma_runner_kget.mo share/locale/lv/LC_MESSAGES/kget.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/plasma_applet_kget.mo share/locale/lv/LC_MESSAGES/plasma_runner_kget.mo share/locale/mr/LC_MESSAGES/kget.mo share/locale/mr/LC_MESSAGES/kgetplugin.mo share/locale/mr/LC_MESSAGES/plasma_applet_kget.mo share/locale/mr/LC_MESSAGES/plasma_runner_kget.mo share/locale/nb/LC_MESSAGES/kget.mo share/locale/nb/LC_MESSAGES/kgetplugin.mo share/locale/nb/LC_MESSAGES/plasma_applet_kget.mo share/locale/nb/LC_MESSAGES/plasma_runner_kget.mo share/locale/nds/LC_MESSAGES/kget.mo share/locale/nds/LC_MESSAGES/kgetplugin.mo share/locale/nds/LC_MESSAGES/plasma_applet_kget.mo share/locale/nds/LC_MESSAGES/plasma_runner_kget.mo share/locale/nl/LC_MESSAGES/kget.mo share/locale/nl/LC_MESSAGES/kgetplugin.mo share/locale/nl/LC_MESSAGES/plasma_applet_kget.mo share/locale/nl/LC_MESSAGES/plasma_runner_kget.mo share/locale/nn/LC_MESSAGES/kget.mo share/locale/nn/LC_MESSAGES/kgetplugin.mo share/locale/nn/LC_MESSAGES/plasma_applet_kget.mo share/locale/nn/LC_MESSAGES/plasma_runner_kget.mo share/locale/pa/LC_MESSAGES/kget.mo share/locale/pa/LC_MESSAGES/kgetplugin.mo share/locale/pa/LC_MESSAGES/plasma_applet_kget.mo share/locale/pa/LC_MESSAGES/plasma_runner_kget.mo share/locale/pl/LC_MESSAGES/kget.mo share/locale/pl/LC_MESSAGES/kgetplugin.mo share/locale/pl/LC_MESSAGES/plasma_applet_kget.mo share/locale/pl/LC_MESSAGES/plasma_runner_kget.mo share/locale/pt/LC_MESSAGES/kget.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/plasma_applet_kget.mo share/locale/pt/LC_MESSAGES/plasma_runner_kget.mo share/locale/pt_BR/LC_MESSAGES/kget.mo share/locale/pt_BR/LC_MESSAGES/kgetplugin.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kget.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kget.mo share/locale/ro/LC_MESSAGES/kget.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/plasma_applet_kget.mo share/locale/ro/LC_MESSAGES/plasma_runner_kget.mo share/locale/ru/LC_MESSAGES/kget.mo share/locale/ru/LC_MESSAGES/kgetplugin.mo share/locale/ru/LC_MESSAGES/plasma_applet_kget.mo share/locale/ru/LC_MESSAGES/plasma_runner_kget.mo +share/locale/se/LC_MESSAGES/kget.mo +share/locale/se/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/kget.mo share/locale/sk/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/plasma_applet_kget.mo share/locale/sk/LC_MESSAGES/plasma_runner_kget.mo share/locale/sl/LC_MESSAGES/kget.mo share/locale/sl/LC_MESSAGES/kgetplugin.mo share/locale/sl/LC_MESSAGES/plasma_applet_kget.mo share/locale/sl/LC_MESSAGES/plasma_runner_kget.mo +share/locale/sq/LC_MESSAGES/kget.mo +share/locale/sq/LC_MESSAGES/plasma_applet_kget.mo share/locale/sr/LC_MESSAGES/kget.mo share/locale/sr/LC_MESSAGES/kgetplugin.mo share/locale/sr/LC_MESSAGES/plasma_applet_kget.mo share/locale/sr/LC_MESSAGES/plasma_runner_kget.mo share/locale/sv/LC_MESSAGES/kget.mo share/locale/sv/LC_MESSAGES/kgetplugin.mo share/locale/sv/LC_MESSAGES/plasma_applet_kget.mo share/locale/sv/LC_MESSAGES/plasma_runner_kget.mo +share/locale/ta/LC_MESSAGES/kget.mo +share/locale/ta/LC_MESSAGES/kgetplugin.mo +share/locale/tg/LC_MESSAGES/kget.mo +share/locale/tg/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/kget.mo share/locale/tr/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/plasma_applet_kget.mo share/locale/tr/LC_MESSAGES/plasma_runner_kget.mo share/locale/ug/LC_MESSAGES/kget.mo share/locale/ug/LC_MESSAGES/kgetplugin.mo share/locale/ug/LC_MESSAGES/plasma_applet_kget.mo share/locale/ug/LC_MESSAGES/plasma_runner_kget.mo share/locale/uk/LC_MESSAGES/kget.mo share/locale/uk/LC_MESSAGES/kgetplugin.mo share/locale/uk/LC_MESSAGES/plasma_applet_kget.mo share/locale/uk/LC_MESSAGES/plasma_runner_kget.mo +share/locale/vi/LC_MESSAGES/kget.mo +share/locale/vi/LC_MESSAGES/kgetplugin.mo +share/locale/vi/LC_MESSAGES/plasma_applet_kget.mo +share/locale/vi/LC_MESSAGES/plasma_runner_kget.mo share/locale/wa/LC_MESSAGES/kget.mo share/locale/wa/LC_MESSAGES/kgetplugin.mo share/locale/wa/LC_MESSAGES/plasma_applet_kget.mo share/locale/zh_CN/LC_MESSAGES/kget.mo share/locale/zh_CN/LC_MESSAGES/kgetplugin.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kget.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kget.mo share/locale/zh_TW/LC_MESSAGES/kget.mo share/locale/zh_TW/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kget.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kget.mo share/metainfo/org.kde.kget.appdata.xml diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 66e49993aae1..6c7db8d27156 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741536 -SHA256 (KDE/release-service/21.04.1/kidentitymanagement-21.04.1.tar.xz) = d78abe162b52fea7571e49af5281ca354be82697ae2a93b923b34531d1943d4e -SIZE (KDE/release-service/21.04.1/kidentitymanagement-21.04.1.tar.xz) = 155808 +TIMESTAMP = 1623521000 +SHA256 (KDE/release-service/21.04.2/kidentitymanagement-21.04.2.tar.xz) = 89b4d8e74703908454ef5f1551653ba6dbd8623898c87ce853d0ad0d2f203b60 +SIZE (KDE/release-service/21.04.2/kidentitymanagement-21.04.2.tar.xz) = 156452 diff --git a/net/kidentitymanagement/pkg-plist b/net/kidentitymanagement/pkg-plist index 17b15d6aae47..5d19b98dec91 100644 --- a/net/kidentitymanagement/pkg-plist +++ b/net/kidentitymanagement/pkg-plist @@ -1,72 +1,75 @@ share/qlogging-categories5/kidentitymanagement.categories share/qlogging-categories5/kidentitymanagement.renamecategories include/KF5/KIdentityManagement/KIdentityManagement/Identity include/KF5/KIdentityManagement/KIdentityManagement/IdentityCombo include/KF5/KIdentityManagement/KIdentityManagement/IdentityManager include/KF5/KIdentityManagement/KIdentityManagement/Signature include/KF5/KIdentityManagement/KIdentityManagement/SignatureConfigurator include/KF5/KIdentityManagement/KIdentityManagement/Utils include/KF5/KIdentityManagement/kidentitymanagement/identity.h include/KF5/KIdentityManagement/kidentitymanagement/identitycombo.h include/KF5/KIdentityManagement/kidentitymanagement/identitymanager.h include/KF5/KIdentityManagement/kidentitymanagement/kidentitymanagement_export.h include/KF5/KIdentityManagement/kidentitymanagement/signature.h include/KF5/KIdentityManagement/kidentitymanagement/signatureconfigurator.h include/KF5/KIdentityManagement/kidentitymanagement/utils.h include/KF5/kidentitymanagement_version.h lib/cmake/KF5IdentityManagement/KF5IdentityManagementConfig.cmake lib/cmake/KF5IdentityManagement/KF5IdentityManagementConfigVersion.cmake lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IdentityManagement/KF5IdentityManagementTargets.cmake lib/libKF5IdentityManagement.so lib/libKF5IdentityManagement.so.5 lib/libKF5IdentityManagement.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIdentityManagement.pri share/dbus-1/interfaces/kf5_org.kde.pim.IdentityManager.xml share/locale/ar/LC_MESSAGES/libkpimidentities5.mo +share/locale/be/LC_MESSAGES/libkpimidentities5.mo share/locale/bs/LC_MESSAGES/libkpimidentities5.mo share/locale/ca/LC_MESSAGES/libkpimidentities5.mo share/locale/ca@valencia/LC_MESSAGES/libkpimidentities5.mo share/locale/cs/LC_MESSAGES/libkpimidentities5.mo share/locale/da/LC_MESSAGES/libkpimidentities5.mo share/locale/de/LC_MESSAGES/libkpimidentities5.mo share/locale/el/LC_MESSAGES/libkpimidentities5.mo share/locale/en_GB/LC_MESSAGES/libkpimidentities5.mo share/locale/eo/LC_MESSAGES/libkpimidentities5.mo share/locale/es/LC_MESSAGES/libkpimidentities5.mo share/locale/et/LC_MESSAGES/libkpimidentities5.mo share/locale/eu/LC_MESSAGES/libkpimidentities5.mo share/locale/fi/LC_MESSAGES/libkpimidentities5.mo share/locale/fr/LC_MESSAGES/libkpimidentities5.mo share/locale/ga/LC_MESSAGES/libkpimidentities5.mo share/locale/gl/LC_MESSAGES/libkpimidentities5.mo share/locale/hi/LC_MESSAGES/libkpimidentities5.mo share/locale/hu/LC_MESSAGES/libkpimidentities5.mo share/locale/ia/LC_MESSAGES/libkpimidentities5.mo share/locale/it/LC_MESSAGES/libkpimidentities5.mo share/locale/ja/LC_MESSAGES/libkpimidentities5.mo share/locale/kk/LC_MESSAGES/libkpimidentities5.mo share/locale/km/LC_MESSAGES/libkpimidentities5.mo share/locale/ko/LC_MESSAGES/libkpimidentities5.mo share/locale/lt/LC_MESSAGES/libkpimidentities5.mo share/locale/lv/LC_MESSAGES/libkpimidentities5.mo share/locale/mr/LC_MESSAGES/libkpimidentities5.mo share/locale/nb/LC_MESSAGES/libkpimidentities5.mo share/locale/nds/LC_MESSAGES/libkpimidentities5.mo share/locale/nl/LC_MESSAGES/libkpimidentities5.mo share/locale/nn/LC_MESSAGES/libkpimidentities5.mo share/locale/pa/LC_MESSAGES/libkpimidentities5.mo share/locale/pl/LC_MESSAGES/libkpimidentities5.mo share/locale/pt/LC_MESSAGES/libkpimidentities5.mo share/locale/pt_BR/LC_MESSAGES/libkpimidentities5.mo share/locale/ro/LC_MESSAGES/libkpimidentities5.mo share/locale/ru/LC_MESSAGES/libkpimidentities5.mo +share/locale/se/LC_MESSAGES/libkpimidentities5.mo share/locale/sk/LC_MESSAGES/libkpimidentities5.mo share/locale/sl/LC_MESSAGES/libkpimidentities5.mo +share/locale/sq/LC_MESSAGES/libkpimidentities5.mo share/locale/sr/LC_MESSAGES/libkpimidentities5.mo share/locale/sv/LC_MESSAGES/libkpimidentities5.mo share/locale/tr/LC_MESSAGES/libkpimidentities5.mo share/locale/ug/LC_MESSAGES/libkpimidentities5.mo share/locale/uk/LC_MESSAGES/libkpimidentities5.mo share/locale/zh_CN/LC_MESSAGES/libkpimidentities5.mo share/locale/zh_TW/LC_MESSAGES/libkpimidentities5.mo diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 382ddd69b59a..cafa6e2d1478 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741536 -SHA256 (KDE/release-service/21.04.1/kimap-21.04.1.tar.xz) = 5935203e5fc4ecd66af141b751ca08ebc061469116a879d10dc11476085dd281 -SIZE (KDE/release-service/21.04.1/kimap-21.04.1.tar.xz) = 128248 +TIMESTAMP = 1623521001 +SHA256 (KDE/release-service/21.04.2/kimap-21.04.2.tar.xz) = 653aa04d1730c393eccc2267451a83e1559f05e26360caadc587b3e240210da6 +SIZE (KDE/release-service/21.04.2/kimap-21.04.2.tar.xz) = 128572 diff --git a/net/kimap/pkg-plist b/net/kimap/pkg-plist index b2ca3c1677e7..6dbb6454e736 100644 --- a/net/kimap/pkg-plist +++ b/net/kimap/pkg-plist @@ -1,182 +1,183 @@ share/qlogging-categories5/kimap.categories share/qlogging-categories5/kimap.renamecategories include/KF5/KIMAP/KIMAP/Acl include/KF5/KIMAP/KIMAP/AclJobBase include/KF5/KIMAP/KIMAP/AppendJob include/KF5/KIMAP/KIMAP/CapabilitiesJob include/KF5/KIMAP/KIMAP/CloseJob include/KF5/KIMAP/KIMAP/CopyJob include/KF5/KIMAP/KIMAP/CreateJob include/KF5/KIMAP/KIMAP/DeleteAclJob include/KF5/KIMAP/KIMAP/DeleteJob include/KF5/KIMAP/KIMAP/EnableJob include/KF5/KIMAP/KIMAP/ExpungeJob include/KF5/KIMAP/KIMAP/FetchJob include/KF5/KIMAP/KIMAP/GetAclJob include/KF5/KIMAP/KIMAP/GetMetaDataJob include/KF5/KIMAP/KIMAP/GetQuotaJob include/KF5/KIMAP/KIMAP/GetQuotaRootJob include/KF5/KIMAP/KIMAP/IdJob include/KF5/KIMAP/KIMAP/IdleJob include/KF5/KIMAP/KIMAP/ImapSet include/KF5/KIMAP/KIMAP/Job include/KF5/KIMAP/KIMAP/ListJob include/KF5/KIMAP/KIMAP/ListRightsJob include/KF5/KIMAP/KIMAP/LoginJob include/KF5/KIMAP/KIMAP/LogoutJob include/KF5/KIMAP/KIMAP/MetaDataJobBase include/KF5/KIMAP/KIMAP/MoveJob include/KF5/KIMAP/KIMAP/MyRightsJob include/KF5/KIMAP/KIMAP/NamespaceJob include/KF5/KIMAP/KIMAP/QuotaJobBase include/KF5/KIMAP/KIMAP/RFCCodecs include/KF5/KIMAP/KIMAP/RenameJob include/KF5/KIMAP/KIMAP/SearchJob include/KF5/KIMAP/KIMAP/SelectJob include/KF5/KIMAP/KIMAP/Session include/KF5/KIMAP/KIMAP/SessionUiProxy include/KF5/KIMAP/KIMAP/SetAclJob include/KF5/KIMAP/KIMAP/SetMetaDataJob include/KF5/KIMAP/KIMAP/SetQuotaJob include/KF5/KIMAP/KIMAP/StatusJob include/KF5/KIMAP/KIMAP/StoreJob include/KF5/KIMAP/KIMAP/SubscribeJob include/KF5/KIMAP/KIMAP/UnsubscribeJob include/KF5/KIMAP/kimap/Acl include/KF5/KIMAP/kimap/AclJobBase include/KF5/KIMAP/kimap/AppendJob include/KF5/KIMAP/kimap/CapabilitiesJob include/KF5/KIMAP/kimap/CloseJob include/KF5/KIMAP/kimap/CopyJob include/KF5/KIMAP/kimap/CreateJob include/KF5/KIMAP/kimap/DeleteAclJob include/KF5/KIMAP/kimap/DeleteJob include/KF5/KIMAP/kimap/EnableJob include/KF5/KIMAP/kimap/ExpungeJob include/KF5/KIMAP/kimap/FetchJob include/KF5/KIMAP/kimap/GetAclJob include/KF5/KIMAP/kimap/GetMetaDataJob include/KF5/KIMAP/kimap/GetQuotaJob include/KF5/KIMAP/kimap/GetQuotaRootJob include/KF5/KIMAP/kimap/IdJob include/KF5/KIMAP/kimap/IdleJob include/KF5/KIMAP/kimap/ImapSet include/KF5/KIMAP/kimap/Job include/KF5/KIMAP/kimap/ListJob include/KF5/KIMAP/kimap/ListRightsJob include/KF5/KIMAP/kimap/LoginJob include/KF5/KIMAP/kimap/LogoutJob include/KF5/KIMAP/kimap/MetaDataJobBase include/KF5/KIMAP/kimap/MoveJob include/KF5/KIMAP/kimap/MyRightsJob include/KF5/KIMAP/kimap/NamespaceJob include/KF5/KIMAP/kimap/QuotaJobBase include/KF5/KIMAP/kimap/RFCCodecs include/KF5/KIMAP/kimap/RenameJob include/KF5/KIMAP/kimap/SearchJob include/KF5/KIMAP/kimap/SelectJob include/KF5/KIMAP/kimap/Session include/KF5/KIMAP/kimap/SessionUiProxy include/KF5/KIMAP/kimap/SetAclJob include/KF5/KIMAP/kimap/SetMetaDataJob include/KF5/KIMAP/kimap/SetQuotaJob include/KF5/KIMAP/kimap/StatusJob include/KF5/KIMAP/kimap/StoreJob include/KF5/KIMAP/kimap/SubscribeJob include/KF5/KIMAP/kimap/UnsubscribeJob include/KF5/KIMAP/kimap/acl.h include/KF5/KIMAP/kimap/acljobbase.h include/KF5/KIMAP/kimap/appendjob.h include/KF5/KIMAP/kimap/capabilitiesjob.h include/KF5/KIMAP/kimap/closejob.h include/KF5/KIMAP/kimap/copyjob.h include/KF5/KIMAP/kimap/createjob.h include/KF5/KIMAP/kimap/deleteacljob.h include/KF5/KIMAP/kimap/deletejob.h include/KF5/KIMAP/kimap/enablejob.h include/KF5/KIMAP/kimap/expungejob.h include/KF5/KIMAP/kimap/fetchjob.h include/KF5/KIMAP/kimap/getacljob.h include/KF5/KIMAP/kimap/getmetadatajob.h include/KF5/KIMAP/kimap/getquotajob.h include/KF5/KIMAP/kimap/getquotarootjob.h include/KF5/KIMAP/kimap/idjob.h include/KF5/KIMAP/kimap/idlejob.h include/KF5/KIMAP/kimap/imapset.h include/KF5/KIMAP/kimap/job.h include/KF5/KIMAP/kimap/kimap_export.h include/KF5/KIMAP/kimap/listjob.h include/KF5/KIMAP/kimap/listrightsjob.h include/KF5/KIMAP/kimap/loginjob.h include/KF5/KIMAP/kimap/logoutjob.h include/KF5/KIMAP/kimap/metadatajobbase.h include/KF5/KIMAP/kimap/movejob.h include/KF5/KIMAP/kimap/myrightsjob.h include/KF5/KIMAP/kimap/namespacejob.h include/KF5/KIMAP/kimap/quotajobbase.h include/KF5/KIMAP/kimap/renamejob.h include/KF5/KIMAP/kimap/rfccodecs.h include/KF5/KIMAP/kimap/searchjob.h include/KF5/KIMAP/kimap/selectjob.h include/KF5/KIMAP/kimap/session.h include/KF5/KIMAP/kimap/sessionuiproxy.h include/KF5/KIMAP/kimap/setacljob.h include/KF5/KIMAP/kimap/setmetadatajob.h include/KF5/KIMAP/kimap/setquotajob.h include/KF5/KIMAP/kimap/statusjob.h include/KF5/KIMAP/kimap/storejob.h include/KF5/KIMAP/kimap/subscribejob.h include/KF5/KIMAP/kimap/unsubscribejob.h include/KF5/kimap_version.h lib/cmake/KF5IMAP/KF5IMAPConfig.cmake lib/cmake/KF5IMAP/KF5IMAPConfigVersion.cmake lib/cmake/KF5IMAP/KF5IMAPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IMAP/KF5IMAPTargets.cmake lib/libKF5IMAP.so lib/libKF5IMAP.so.5 lib/libKF5IMAP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIMAP.pri share/locale/bs/LC_MESSAGES/libkimap5.mo share/locale/ca/LC_MESSAGES/libkimap5.mo share/locale/ca@valencia/LC_MESSAGES/libkimap5.mo share/locale/cs/LC_MESSAGES/libkimap5.mo share/locale/da/LC_MESSAGES/libkimap5.mo share/locale/de/LC_MESSAGES/libkimap5.mo share/locale/el/LC_MESSAGES/libkimap5.mo share/locale/en_GB/LC_MESSAGES/libkimap5.mo share/locale/eo/LC_MESSAGES/libkimap5.mo share/locale/es/LC_MESSAGES/libkimap5.mo share/locale/et/LC_MESSAGES/libkimap5.mo share/locale/fi/LC_MESSAGES/libkimap5.mo share/locale/fr/LC_MESSAGES/libkimap5.mo share/locale/ga/LC_MESSAGES/libkimap5.mo share/locale/gl/LC_MESSAGES/libkimap5.mo share/locale/hu/LC_MESSAGES/libkimap5.mo share/locale/ia/LC_MESSAGES/libkimap5.mo share/locale/it/LC_MESSAGES/libkimap5.mo share/locale/ja/LC_MESSAGES/libkimap5.mo share/locale/kk/LC_MESSAGES/libkimap5.mo share/locale/km/LC_MESSAGES/libkimap5.mo share/locale/ko/LC_MESSAGES/libkimap5.mo share/locale/lt/LC_MESSAGES/libkimap5.mo share/locale/lv/LC_MESSAGES/libkimap5.mo share/locale/mr/LC_MESSAGES/libkimap5.mo share/locale/nb/LC_MESSAGES/libkimap5.mo share/locale/nds/LC_MESSAGES/libkimap5.mo share/locale/nl/LC_MESSAGES/libkimap5.mo share/locale/nn/LC_MESSAGES/libkimap5.mo share/locale/pa/LC_MESSAGES/libkimap5.mo share/locale/pl/LC_MESSAGES/libkimap5.mo share/locale/pt/LC_MESSAGES/libkimap5.mo share/locale/pt_BR/LC_MESSAGES/libkimap5.mo share/locale/ro/LC_MESSAGES/libkimap5.mo share/locale/ru/LC_MESSAGES/libkimap5.mo share/locale/sk/LC_MESSAGES/libkimap5.mo share/locale/sl/LC_MESSAGES/libkimap5.mo +share/locale/sq/LC_MESSAGES/libkimap5.mo share/locale/sr/LC_MESSAGES/libkimap5.mo share/locale/sv/LC_MESSAGES/libkimap5.mo share/locale/tr/LC_MESSAGES/libkimap5.mo share/locale/ug/LC_MESSAGES/libkimap5.mo share/locale/uk/LC_MESSAGES/libkimap5.mo share/locale/zh_CN/LC_MESSAGES/libkimap5.mo share/locale/zh_TW/LC_MESSAGES/libkimap5.mo diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index a2b5bfef7831..9f50c41b5292 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741537 -SHA256 (KDE/release-service/21.04.1/kio-gdrive-21.04.1.tar.xz) = b97897fca895ccf3b024886f39f1ffe8f729cc2b911f50815cd417e2983e334c -SIZE (KDE/release-service/21.04.1/kio-gdrive-21.04.1.tar.xz) = 68076 +TIMESTAMP = 1623521002 +SHA256 (KDE/release-service/21.04.2/kio-gdrive-21.04.2.tar.xz) = f8645ade66ff647d88c894bb948a4234e3fe0bb5bb462c961375518b47c34e12 +SIZE (KDE/release-service/21.04.2/kio-gdrive-21.04.2.tar.xz) = 68164 diff --git a/net/kitinerary/Makefile b/net/kitinerary/Makefile index f34e3dccdb94..da6a60ef7d97 100644 --- a/net/kitinerary/Makefile +++ b/net/kitinerary/Makefile @@ -1,28 +1,27 @@ PORTNAME= kitinerary DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Data Model and Extraction System for Travel Reservation information LICENSE= LGPL21 LIB_DEPENDS= libphonenumber.so:devel/libphonenumber \ libpoppler.so:graphics/poppler \ libZXing.so:textproc/zxing-cpp USES= compiler:c++11-lang cmake gettext gnome kde:5 pkgconfig qt:5 tar:xz USE_GNOME= libxml2 USE_KDE= coreaddons ecm i18n # Pim components USE_KDE+= calendarcore contacts kpkpass mime USE_QT= core declarative gui network \ buildtools_build qmake_build USE_LDCONFIG= yes DESCR= ${.CURDIR:H:H}/deskutils/kdepim/pkg-descr OPTIONS_DEFINE= DOCS .include diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index c89f448d2bd6..1aa3090aab4f 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741538 -SHA256 (KDE/release-service/21.04.1/kitinerary-21.04.1.tar.xz) = ef2f3b024e078060ecad137f57a45586b812b57de58200f90ed097d60a432785 -SIZE (KDE/release-service/21.04.1/kitinerary-21.04.1.tar.xz) = 1821620 +TIMESTAMP = 1623521004 +SHA256 (KDE/release-service/21.04.2/kitinerary-21.04.2.tar.xz) = bbb84ff7e1e57b7847acb64293160e1e02f85b474c9c3e992df88de584c9cb3e +SIZE (KDE/release-service/21.04.2/kitinerary-21.04.2.tar.xz) = 1823552 diff --git a/net/kldap/distinfo b/net/kldap/distinfo index e63d0e3fe4c9..1a990111acaa 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741539 -SHA256 (KDE/release-service/21.04.1/kldap-21.04.1.tar.xz) = e0c462d2b954c30935180bed906ae05c5c7a054a9f0c29ec04ed14b8fdff983b -SIZE (KDE/release-service/21.04.1/kldap-21.04.1.tar.xz) = 170728 +TIMESTAMP = 1623521005 +SHA256 (KDE/release-service/21.04.2/kldap-21.04.2.tar.xz) = 447efa62357909659d085d93e8b2aa52f893ac4873c67769b8512a58ce1bb5b9 +SIZE (KDE/release-service/21.04.2/kldap-21.04.2.tar.xz) = 172952 diff --git a/net/kldap/pkg-plist b/net/kldap/pkg-plist index c2d9d8a4061a..e042e1d3b0cd 100644 --- a/net/kldap/pkg-plist +++ b/net/kldap/pkg-plist @@ -1,152 +1,159 @@ 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_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/kservices5/ldap.protocol share/kservices5/ldaps.protocol 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/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 b6656caabe73..77ca467b580f 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741539 -SHA256 (KDE/release-service/21.04.1/kmailtransport-21.04.1.tar.xz) = 8610610b615631e2b6cc24032cdcbb54a8a1afa680f459554df80bacd63fe50d -SIZE (KDE/release-service/21.04.1/kmailtransport-21.04.1.tar.xz) = 172152 +TIMESTAMP = 1623521007 +SHA256 (KDE/release-service/21.04.2/kmailtransport-21.04.2.tar.xz) = d470b5a695e39e00064801321e2e99d5a61d1ddbef7a515e5d27befe5b67f1d3 +SIZE (KDE/release-service/21.04.2/kmailtransport-21.04.2.tar.xz) = 174076 diff --git a/net/kmailtransport/pkg-plist b/net/kmailtransport/pkg-plist index 0725da840bfb..b7b197eb82df 100644 --- a/net/kmailtransport/pkg-plist +++ b/net/kmailtransport/pkg-plist @@ -1,109 +1,111 @@ share/qlogging-categories5/kmailtransport.categories share/qlogging-categories5/kmailtransport.renamecategories include/KF5/MailTransport/PrecommandJob include/KF5/MailTransport/ServerTest include/KF5/MailTransport/Transport include/KF5/MailTransport/TransportAbstractPlugin include/KF5/MailTransport/TransportComboBox include/KF5/MailTransport/TransportConfigWidget include/KF5/MailTransport/TransportJob include/KF5/MailTransport/TransportManagementWidget include/KF5/MailTransport/TransportManager include/KF5/MailTransport/TransportType include/KF5/MailTransportAkonadi/DispatchModeAttribute include/KF5/MailTransportAkonadi/DispatcherInterface include/KF5/MailTransportAkonadi/ErrorAttribute include/KF5/MailTransportAkonadi/MessageQueueJob include/KF5/MailTransportAkonadi/SentActionAttribute include/KF5/MailTransportAkonadi/SentBehaviourAttribute include/KF5/MailTransportAkonadi/TransportAttribute include/KF5/mailtransport/mailtransport_export.h include/KF5/mailtransport/precommandjob.h include/KF5/mailtransport/private/transportconfigwidget_p.h include/KF5/mailtransport/servertest.h include/KF5/mailtransport/transport.h include/KF5/mailtransport/transportabstractplugin.h include/KF5/mailtransport/transportbase.h include/KF5/mailtransport/transportcombobox.h include/KF5/mailtransport/transportconfigwidget.h include/KF5/mailtransport/transportjob.h include/KF5/mailtransport/transportmanagementwidget.h include/KF5/mailtransport/transportmanager.h include/KF5/mailtransport/transporttype.h include/KF5/mailtransport_version.h include/KF5/mailtransportakonadi/dispatcherinterface.h include/KF5/mailtransportakonadi/dispatchmodeattribute.h include/KF5/mailtransportakonadi/errorattribute.h include/KF5/mailtransportakonadi/mailtransportakonadi_export.h include/KF5/mailtransportakonadi/messagequeuejob.h include/KF5/mailtransportakonadi/sentactionattribute.h include/KF5/mailtransportakonadi/sentbehaviourattribute.h include/KF5/mailtransportakonadi/transportattribute.h include/KF5/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_PLUGINDIR%%/mailtransport/mailtransport_akonadiplugin.so %%QT_PLUGINDIR%%/mailtransport/mailtransport_smtpplugin.so %%QT_MKSPECDIR%%/modules/qt_KMailTransport.pri %%QT_MKSPECDIR%%/modules/qt_KMailTransportAkonadi.pri %%QT_PLUGINDIR%%/kcm_mailtransport.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/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 diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index 1a58cef67baa..28a649533bdd 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741540 -SHA256 (KDE/release-service/21.04.1/kmbox-21.04.1.tar.xz) = 3d1b2d1bc5bf986c2c2f03fa5ac51a6bcfbc602bc48de56e32c5671484e1288b -SIZE (KDE/release-service/21.04.1/kmbox-21.04.1.tar.xz) = 28456 +TIMESTAMP = 1623521008 +SHA256 (KDE/release-service/21.04.2/kmbox-21.04.2.tar.xz) = d2a9d6c390f6d9bf609a0981a2a11cd1567379de1541a0408d64cb0bccdee3d0 +SIZE (KDE/release-service/21.04.2/kmbox-21.04.2.tar.xz) = 28472 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index dd5ccf12615a..3929cdf22df5 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741541 -SHA256 (KDE/release-service/21.04.1/kmime-21.04.1.tar.xz) = d368a8270833910d0fadf84424a547abee46263ec2bf8dbc245d6fc7222546f8 -SIZE (KDE/release-service/21.04.1/kmime-21.04.1.tar.xz) = 153712 +TIMESTAMP = 1623521010 +SHA256 (KDE/release-service/21.04.2/kmime-21.04.2.tar.xz) = 597a931e5de433d5df43f2d195e8ee5536986ea13359cb45d837a690cc604e5b +SIZE (KDE/release-service/21.04.2/kmime-21.04.2.tar.xz) = 154852 diff --git a/net/kmime/pkg-plist b/net/kmime/pkg-plist index 41c4cd34db3e..39d9ed178fea 100644 --- a/net/kmime/pkg-plist +++ b/net/kmime/pkg-plist @@ -1,82 +1,86 @@ include/KF5/KMime/KMime/Content include/KF5/KMime/KMime/ContentIndex include/KF5/KMime/KMime/DateFormatter include/KF5/KMime/KMime/HeaderParsing include/KF5/KMime/KMime/Headers include/KF5/KMime/KMime/KMimeMessage include/KF5/KMime/KMime/MDN include/KF5/KMime/KMime/Message include/KF5/KMime/KMime/NewsArticle include/KF5/KMime/KMime/Types include/KF5/KMime/KMime/Util include/KF5/KMime/kmime/kmime_content.h include/KF5/KMime/kmime/kmime_contentindex.h include/KF5/KMime/kmime/kmime_dateformatter.h include/KF5/KMime/kmime/kmime_export.h include/KF5/KMime/kmime/kmime_header_parsing.h include/KF5/KMime/kmime/kmime_headers.h include/KF5/KMime/kmime/kmime_mdn.h include/KF5/KMime/kmime/kmime_message.h include/KF5/KMime/kmime/kmime_newsarticle.h include/KF5/KMime/kmime/kmime_types.h include/KF5/KMime/kmime/kmime_util.h include/KF5/kmime_version.h lib/cmake/KF5Mime/KF5MimeConfig.cmake lib/cmake/KF5Mime/KF5MimeConfigVersion.cmake lib/cmake/KF5Mime/KF5MimeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Mime/KF5MimeTargets.cmake lib/libKF5Mime.so lib/libKF5Mime.so.5 lib/libKF5Mime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMime.pri share/locale/ar/LC_MESSAGES/libkmime5.mo +share/locale/be/LC_MESSAGES/libkmime5.mo share/locale/bg/LC_MESSAGES/libkmime5.mo share/locale/bs/LC_MESSAGES/libkmime5.mo share/locale/ca/LC_MESSAGES/libkmime5.mo share/locale/ca@valencia/LC_MESSAGES/libkmime5.mo share/locale/cs/LC_MESSAGES/libkmime5.mo share/locale/da/LC_MESSAGES/libkmime5.mo share/locale/de/LC_MESSAGES/libkmime5.mo share/locale/el/LC_MESSAGES/libkmime5.mo share/locale/en_GB/LC_MESSAGES/libkmime5.mo share/locale/eo/LC_MESSAGES/libkmime5.mo share/locale/es/LC_MESSAGES/libkmime5.mo share/locale/et/LC_MESSAGES/libkmime5.mo share/locale/eu/LC_MESSAGES/libkmime5.mo share/locale/fa/LC_MESSAGES/libkmime5.mo share/locale/fi/LC_MESSAGES/libkmime5.mo share/locale/fr/LC_MESSAGES/libkmime5.mo share/locale/ga/LC_MESSAGES/libkmime5.mo share/locale/gl/LC_MESSAGES/libkmime5.mo share/locale/hi/LC_MESSAGES/libkmime5.mo share/locale/hu/LC_MESSAGES/libkmime5.mo share/locale/ia/LC_MESSAGES/libkmime5.mo share/locale/it/LC_MESSAGES/libkmime5.mo share/locale/ja/LC_MESSAGES/libkmime5.mo share/locale/kk/LC_MESSAGES/libkmime5.mo share/locale/km/LC_MESSAGES/libkmime5.mo share/locale/ko/LC_MESSAGES/libkmime5.mo share/locale/lt/LC_MESSAGES/libkmime5.mo share/locale/lv/LC_MESSAGES/libkmime5.mo share/locale/mr/LC_MESSAGES/libkmime5.mo share/locale/nb/LC_MESSAGES/libkmime5.mo share/locale/nds/LC_MESSAGES/libkmime5.mo share/locale/nl/LC_MESSAGES/libkmime5.mo share/locale/nn/LC_MESSAGES/libkmime5.mo share/locale/pa/LC_MESSAGES/libkmime5.mo share/locale/pl/LC_MESSAGES/libkmime5.mo share/locale/pt/LC_MESSAGES/libkmime5.mo share/locale/pt_BR/LC_MESSAGES/libkmime5.mo share/locale/ro/LC_MESSAGES/libkmime5.mo share/locale/ru/LC_MESSAGES/libkmime5.mo +share/locale/se/LC_MESSAGES/libkmime5.mo share/locale/sk/LC_MESSAGES/libkmime5.mo share/locale/sl/LC_MESSAGES/libkmime5.mo +share/locale/sq/LC_MESSAGES/libkmime5.mo share/locale/sr/LC_MESSAGES/libkmime5.mo share/locale/sv/LC_MESSAGES/libkmime5.mo +share/locale/ta/LC_MESSAGES/libkmime5.mo share/locale/tr/LC_MESSAGES/libkmime5.mo share/locale/ug/LC_MESSAGES/libkmime5.mo share/locale/uk/LC_MESSAGES/libkmime5.mo share/locale/wa/LC_MESSAGES/libkmime5.mo share/locale/zh_CN/LC_MESSAGES/libkmime5.mo share/locale/zh_TW/LC_MESSAGES/libkmime5.mo share/qlogging-categories5/kmime.categories diff --git a/net/kontactinterface/distinfo b/net/kontactinterface/distinfo index 6d8640ebb816..8a4c8da7cd44 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741541 -SHA256 (KDE/release-service/21.04.1/kontactinterface-21.04.1.tar.xz) = c9c9aee47286f26675a6cc67c987acc6970bc070ce843bddd5cc6e12a3c75899 -SIZE (KDE/release-service/21.04.1/kontactinterface-21.04.1.tar.xz) = 39956 +TIMESTAMP = 1623521011 +SHA256 (KDE/release-service/21.04.2/kontactinterface-21.04.2.tar.xz) = 6485b673f730d78e45290566ed91aa137e214addc3a3a7e4bab4cb2042102b01 +SIZE (KDE/release-service/21.04.2/kontactinterface-21.04.2.tar.xz) = 40140 diff --git a/net/kontactinterface/pkg-plist b/net/kontactinterface/pkg-plist index 008ce264e1c5..536d9f28a9c6 100644 --- a/net/kontactinterface/pkg-plist +++ b/net/kontactinterface/pkg-plist @@ -1,74 +1,76 @@ share/qlogging-categories5/kontactinterface.categories share/qlogging-categories5/kontactinterface.renamecategories include/KF5/KontactInterface/KontactInterface/Core include/KF5/KontactInterface/KontactInterface/PimUniqueApplication include/KF5/KontactInterface/KontactInterface/Plugin include/KF5/KontactInterface/KontactInterface/Processes include/KF5/KontactInterface/KontactInterface/Summary include/KF5/KontactInterface/KontactInterface/UniqueAppHandler include/KF5/KontactInterface/kontactinterface/core.h include/KF5/KontactInterface/kontactinterface/kontactinterface_export.h include/KF5/KontactInterface/kontactinterface/pimuniqueapplication.h include/KF5/KontactInterface/kontactinterface/plugin.h include/KF5/KontactInterface/kontactinterface/processes.h include/KF5/KontactInterface/kontactinterface/summary.h include/KF5/KontactInterface/kontactinterface/uniqueapphandler.h include/KF5/kontactinterface_version.h lib/cmake/KF5KontactInterface/KF5KontactInterfaceConfig.cmake lib/cmake/KF5KontactInterface/KF5KontactInterfaceConfigVersion.cmake lib/cmake/KF5KontactInterface/KF5KontactInterfaceTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KontactInterface/KF5KontactInterfaceTargets.cmake lib/libKF5KontactInterface.so lib/libKF5KontactInterface.so.5 lib/libKF5KontactInterface.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KontactInterface.pri share/kservicetypes5/kontactplugin.desktop share/locale/ar/LC_MESSAGES/kontactinterfaces5.mo +share/locale/az/LC_MESSAGES/kontactinterfaces5.mo share/locale/bg/LC_MESSAGES/kontactinterfaces5.mo share/locale/bs/LC_MESSAGES/kontactinterfaces5.mo share/locale/ca/LC_MESSAGES/kontactinterfaces5.mo share/locale/ca@valencia/LC_MESSAGES/kontactinterfaces5.mo share/locale/cs/LC_MESSAGES/kontactinterfaces5.mo share/locale/da/LC_MESSAGES/kontactinterfaces5.mo share/locale/de/LC_MESSAGES/kontactinterfaces5.mo share/locale/el/LC_MESSAGES/kontactinterfaces5.mo share/locale/en_GB/LC_MESSAGES/kontactinterfaces5.mo share/locale/eo/LC_MESSAGES/kontactinterfaces5.mo share/locale/es/LC_MESSAGES/kontactinterfaces5.mo share/locale/et/LC_MESSAGES/kontactinterfaces5.mo share/locale/fi/LC_MESSAGES/kontactinterfaces5.mo share/locale/fr/LC_MESSAGES/kontactinterfaces5.mo share/locale/ga/LC_MESSAGES/kontactinterfaces5.mo share/locale/gl/LC_MESSAGES/kontactinterfaces5.mo share/locale/he/LC_MESSAGES/kontactinterfaces5.mo share/locale/hi/LC_MESSAGES/kontactinterfaces5.mo share/locale/hu/LC_MESSAGES/kontactinterfaces5.mo share/locale/ia/LC_MESSAGES/kontactinterfaces5.mo share/locale/it/LC_MESSAGES/kontactinterfaces5.mo share/locale/ja/LC_MESSAGES/kontactinterfaces5.mo share/locale/kk/LC_MESSAGES/kontactinterfaces5.mo share/locale/km/LC_MESSAGES/kontactinterfaces5.mo share/locale/ko/LC_MESSAGES/kontactinterfaces5.mo share/locale/lt/LC_MESSAGES/kontactinterfaces5.mo share/locale/lv/LC_MESSAGES/kontactinterfaces5.mo share/locale/mr/LC_MESSAGES/kontactinterfaces5.mo share/locale/nb/LC_MESSAGES/kontactinterfaces5.mo share/locale/nds/LC_MESSAGES/kontactinterfaces5.mo share/locale/nl/LC_MESSAGES/kontactinterfaces5.mo share/locale/nn/LC_MESSAGES/kontactinterfaces5.mo share/locale/pa/LC_MESSAGES/kontactinterfaces5.mo share/locale/pl/LC_MESSAGES/kontactinterfaces5.mo share/locale/pt/LC_MESSAGES/kontactinterfaces5.mo share/locale/pt_BR/LC_MESSAGES/kontactinterfaces5.mo share/locale/ro/LC_MESSAGES/kontactinterfaces5.mo share/locale/ru/LC_MESSAGES/kontactinterfaces5.mo share/locale/sk/LC_MESSAGES/kontactinterfaces5.mo share/locale/sl/LC_MESSAGES/kontactinterfaces5.mo +share/locale/sq/LC_MESSAGES/kontactinterfaces5.mo share/locale/sr/LC_MESSAGES/kontactinterfaces5.mo share/locale/sv/LC_MESSAGES/kontactinterfaces5.mo share/locale/tr/LC_MESSAGES/kontactinterfaces5.mo share/locale/ug/LC_MESSAGES/kontactinterfaces5.mo share/locale/uk/LC_MESSAGES/kontactinterfaces5.mo share/locale/wa/LC_MESSAGES/kontactinterfaces5.mo share/locale/zh_CN/LC_MESSAGES/kontactinterfaces5.mo share/locale/zh_TW/LC_MESSAGES/kontactinterfaces5.mo diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index f852c6463d73..25bd0e45db8e 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741542 -SHA256 (KDE/release-service/21.04.1/kpimtextedit-21.04.1.tar.xz) = 231cb4d59475dcd681513eb9976808c70bcad461fd8521478fe4f89a73d386b8 -SIZE (KDE/release-service/21.04.1/kpimtextedit-21.04.1.tar.xz) = 205092 +TIMESTAMP = 1623521013 +SHA256 (KDE/release-service/21.04.2/kpimtextedit-21.04.2.tar.xz) = 82692e4942955a1c4f083d5970d93ba55591d18838702224a2aa104318fa7fa5 +SIZE (KDE/release-service/21.04.2/kpimtextedit-21.04.2.tar.xz) = 206064 diff --git a/net/kpimtextedit/pkg-plist b/net/kpimtextedit/pkg-plist index c641afa8e8e3..db4a04906aad 100644 --- a/net/kpimtextedit/pkg-plist +++ b/net/kpimtextedit/pkg-plist @@ -1,119 +1,120 @@ include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractMarkupBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/AbstractTextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/EditorUtil include/KF5/KPIMTextEdit/KPIMTextEdit/EmoticonUnicodeTab include/KF5/KPIMTextEdit/KPIMTextEdit/MarkupDirector include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextMarkupBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/PlainTextSyntaxSpellCheckingHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposer include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerActions include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerControler include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerEmailQuoteHighlighter include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerImages include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextComposerWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditFindBar include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditor include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextEditorWidget include/KF5/KPIMTextEdit/KPIMTextEdit/RichTextExternalComposer include/KF5/KPIMTextEdit/KPIMTextEdit/SelectSpecialCharDialog include/KF5/KPIMTextEdit/KPIMTextEdit/SlideContainer include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditFindBarBase include/KF5/KPIMTextEdit/KPIMTextEdit/TextEditorCompleter include/KF5/KPIMTextEdit/KPIMTextEdit/TextGotoLineWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextHTMLBuilder include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeech include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechActions include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechInterface include/KF5/KPIMTextEdit/KPIMTextEdit/TextToSpeechWidget include/KF5/KPIMTextEdit/KPIMTextEdit/TextUtils include/KF5/KPIMTextEdit/kpimtextedit/abstractmarkupbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/abstracttexttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/editorutil.h include/KF5/KPIMTextEdit/kpimtextedit/emoticonunicodetab.h include/KF5/KPIMTextEdit/kpimtextedit/kpimtextedit_export.h include/KF5/KPIMTextEdit/kpimtextedit/markupdirector.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/plaintexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextmarkupbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/plaintextsyntaxspellcheckinghighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeractions.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposercontroler.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposeremailquotehighlighter.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerimages.h include/KF5/KPIMTextEdit/kpimtextedit/richtextcomposerwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditfindbar.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditor.h include/KF5/KPIMTextEdit/kpimtextedit/richtexteditorwidget.h include/KF5/KPIMTextEdit/kpimtextedit/richtextexternalcomposer.h include/KF5/KPIMTextEdit/kpimtextedit/selectspecialchardialog.h include/KF5/KPIMTextEdit/kpimtextedit/slidecontainer.h include/KF5/KPIMTextEdit/kpimtextedit/texteditfindbarbase.h include/KF5/KPIMTextEdit/kpimtextedit/texteditorcompleter.h include/KF5/KPIMTextEdit/kpimtextedit/textgotolinewidget.h include/KF5/KPIMTextEdit/kpimtextedit/texthtmlbuilder.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeech.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechactions.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechinterface.h include/KF5/KPIMTextEdit/kpimtextedit/texttospeechwidget.h include/KF5/KPIMTextEdit/kpimtextedit/textutils.h include/KF5/kpimtextedit_version.h lib/cmake/KF5PimTextEdit/KF5PimTextEditConfig.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditConfigVersion.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimTextEdit/KF5PimTextEditTargets.cmake lib/libKF5PimTextEdit.so lib/libKF5PimTextEdit.so.5 lib/libKF5PimTextEdit.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KPIMTextEdit.pri %%QT_PLUGINDIR%%/designer/kpimtexteditwidgets.so share/locale/ar/LC_MESSAGES/libkpimtextedit.mo share/locale/bs/LC_MESSAGES/libkpimtextedit.mo share/locale/ca/LC_MESSAGES/libkpimtextedit.mo share/locale/ca@valencia/LC_MESSAGES/libkpimtextedit.mo share/locale/cs/LC_MESSAGES/libkpimtextedit.mo share/locale/da/LC_MESSAGES/libkpimtextedit.mo share/locale/de/LC_MESSAGES/libkpimtextedit.mo share/locale/el/LC_MESSAGES/libkpimtextedit.mo share/locale/en_GB/LC_MESSAGES/libkpimtextedit.mo share/locale/eo/LC_MESSAGES/libkpimtextedit.mo share/locale/es/LC_MESSAGES/libkpimtextedit.mo share/locale/et/LC_MESSAGES/libkpimtextedit.mo share/locale/fi/LC_MESSAGES/libkpimtextedit.mo share/locale/fr/LC_MESSAGES/libkpimtextedit.mo share/locale/ga/LC_MESSAGES/libkpimtextedit.mo share/locale/gl/LC_MESSAGES/libkpimtextedit.mo share/locale/hu/LC_MESSAGES/libkpimtextedit.mo share/locale/ia/LC_MESSAGES/libkpimtextedit.mo share/locale/it/LC_MESSAGES/libkpimtextedit.mo share/locale/ja/LC_MESSAGES/libkpimtextedit.mo share/locale/kk/LC_MESSAGES/libkpimtextedit.mo share/locale/km/LC_MESSAGES/libkpimtextedit.mo share/locale/ko/LC_MESSAGES/libkpimtextedit.mo share/locale/lt/LC_MESSAGES/libkpimtextedit.mo share/locale/lv/LC_MESSAGES/libkpimtextedit.mo share/locale/mr/LC_MESSAGES/libkpimtextedit.mo share/locale/nb/LC_MESSAGES/libkpimtextedit.mo share/locale/nds/LC_MESSAGES/libkpimtextedit.mo share/locale/nl/LC_MESSAGES/libkpimtextedit.mo share/locale/nn/LC_MESSAGES/libkpimtextedit.mo share/locale/pa/LC_MESSAGES/libkpimtextedit.mo share/locale/pl/LC_MESSAGES/libkpimtextedit.mo share/locale/pt/LC_MESSAGES/libkpimtextedit.mo share/locale/pt_BR/LC_MESSAGES/libkpimtextedit.mo share/locale/ro/LC_MESSAGES/libkpimtextedit.mo share/locale/ru/LC_MESSAGES/libkpimtextedit.mo share/locale/sk/LC_MESSAGES/libkpimtextedit.mo share/locale/sl/LC_MESSAGES/libkpimtextedit.mo +share/locale/sq/LC_MESSAGES/libkpimtextedit.mo share/locale/sr/LC_MESSAGES/libkpimtextedit.mo share/locale/sv/LC_MESSAGES/libkpimtextedit.mo share/locale/tr/LC_MESSAGES/libkpimtextedit.mo share/locale/ug/LC_MESSAGES/libkpimtextedit.mo share/locale/uk/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_CN/LC_MESSAGES/libkpimtextedit.mo share/locale/zh_TW/LC_MESSAGES/libkpimtextedit.mo share/qlogging-categories5/kpimtextedit.categories diff --git a/net/krdc/distinfo b/net/krdc/distinfo index 6b751622b787..5dfaad824cbd 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741543 -SHA256 (KDE/release-service/21.04.1/krdc-21.04.1.tar.xz) = 7ad822a90758d2109c6cc7b8a7055edeaf7c24567eba94f26cc911e40939adfd -SIZE (KDE/release-service/21.04.1/krdc-21.04.1.tar.xz) = 1568468 +TIMESTAMP = 1623521014 +SHA256 (KDE/release-service/21.04.2/krdc-21.04.2.tar.xz) = 2fe2acf07b5ceffb49b2065a15afb47c50c7f1a98820085bf8c8421f5707f6d2 +SIZE (KDE/release-service/21.04.2/krdc-21.04.2.tar.xz) = 1584720 diff --git a/net/krdc/pkg-plist b/net/krdc/pkg-plist index cfcbc21b06b8..cf9c43c81113 100644 --- a/net/krdc/pkg-plist +++ b/net/krdc/pkg-plist @@ -1,74 +1,80 @@ bin/krdc include/krdc/hostpreferences.h include/krdc/remoteview.h include/krdc/remoteviewfactory.h include/krdccore_export.h lib/libkrdccore.so lib/libkrdccore.so.%%KDE_APPLICATIONS_VERSION%% lib/libkrdccore.so.5 %%FREERDP%%%%QT_PLUGINDIR%%/krdc/kcms/libkcm_krdc_rdpplugin.so %%QT_PLUGINDIR%%/krdc/kcms/libkcm_krdc_vncplugin.so %%FREERDP%%%%QT_PLUGINDIR%%/krdc/libkrdc_rdpplugin.so %%QT_PLUGINDIR%%/krdc/libkrdc_testplugin.so %%QT_PLUGINDIR%%/krdc/libkrdc_vncplugin.so share/applications/org.kde.krdc.desktop share/config.kcfg/krdc.kcfg %%FREERDP%%share/kservices5/ServiceMenus/smb2rdc.desktop %%FREERDP%%share/kservices5/krdc_rdp_config.desktop share/kservices5/krdc_vnc_config.desktop %%FREERDP%%share/kservices5/rdp.protocol share/kservices5/vnc.protocol share/kxmlgui5/krdc/krdcui.rc share/locale/ar/LC_MESSAGES/krdc.mo +share/locale/be/LC_MESSAGES/krdc.mo share/locale/bg/LC_MESSAGES/krdc.mo share/locale/bs/LC_MESSAGES/krdc.mo share/locale/ca/LC_MESSAGES/krdc.mo share/locale/ca@valencia/LC_MESSAGES/krdc.mo share/locale/cs/LC_MESSAGES/krdc.mo share/locale/da/LC_MESSAGES/krdc.mo share/locale/de/LC_MESSAGES/krdc.mo share/locale/el/LC_MESSAGES/krdc.mo share/locale/en_GB/LC_MESSAGES/krdc.mo share/locale/eo/LC_MESSAGES/krdc.mo share/locale/es/LC_MESSAGES/krdc.mo share/locale/et/LC_MESSAGES/krdc.mo share/locale/eu/LC_MESSAGES/krdc.mo share/locale/fa/LC_MESSAGES/krdc.mo share/locale/fi/LC_MESSAGES/krdc.mo share/locale/fr/LC_MESSAGES/krdc.mo share/locale/ga/LC_MESSAGES/krdc.mo share/locale/gl/LC_MESSAGES/krdc.mo share/locale/he/LC_MESSAGES/krdc.mo share/locale/hi/LC_MESSAGES/krdc.mo share/locale/hr/LC_MESSAGES/krdc.mo share/locale/hu/LC_MESSAGES/krdc.mo share/locale/ia/LC_MESSAGES/krdc.mo share/locale/is/LC_MESSAGES/krdc.mo share/locale/it/LC_MESSAGES/krdc.mo share/locale/ja/LC_MESSAGES/krdc.mo share/locale/kk/LC_MESSAGES/krdc.mo share/locale/km/LC_MESSAGES/krdc.mo share/locale/ko/LC_MESSAGES/krdc.mo share/locale/lt/LC_MESSAGES/krdc.mo share/locale/lv/LC_MESSAGES/krdc.mo share/locale/mr/LC_MESSAGES/krdc.mo share/locale/nb/LC_MESSAGES/krdc.mo share/locale/nds/LC_MESSAGES/krdc.mo share/locale/nl/LC_MESSAGES/krdc.mo share/locale/nn/LC_MESSAGES/krdc.mo share/locale/pa/LC_MESSAGES/krdc.mo share/locale/pl/LC_MESSAGES/krdc.mo share/locale/pt/LC_MESSAGES/krdc.mo share/locale/pt_BR/LC_MESSAGES/krdc.mo share/locale/ro/LC_MESSAGES/krdc.mo share/locale/ru/LC_MESSAGES/krdc.mo +share/locale/se/LC_MESSAGES/krdc.mo share/locale/sk/LC_MESSAGES/krdc.mo share/locale/sl/LC_MESSAGES/krdc.mo +share/locale/sq/LC_MESSAGES/krdc.mo share/locale/sr/LC_MESSAGES/krdc.mo share/locale/sv/LC_MESSAGES/krdc.mo +share/locale/ta/LC_MESSAGES/krdc.mo +share/locale/tg/LC_MESSAGES/krdc.mo share/locale/tr/LC_MESSAGES/krdc.mo share/locale/ug/LC_MESSAGES/krdc.mo share/locale/uk/LC_MESSAGES/krdc.mo +share/locale/vi/LC_MESSAGES/krdc.mo share/locale/zh_CN/LC_MESSAGES/krdc.mo share/locale/zh_TW/LC_MESSAGES/krdc.mo share/metainfo/org.kde.krdc.appdata.xml diff --git a/net/krfb/distinfo b/net/krfb/distinfo index db6df479dc0b..718656aab2f7 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741544 -SHA256 (KDE/release-service/21.04.1/krfb-21.04.1.tar.xz) = 25784b487aded807a85d6ebd1f71f662e189855e6f59f7de7bf0c6b9bf5412de -SIZE (KDE/release-service/21.04.1/krfb-21.04.1.tar.xz) = 1283292 +TIMESTAMP = 1623521015 +SHA256 (KDE/release-service/21.04.2/krfb-21.04.2.tar.xz) = 8e879fa2f6d7c9367c687e850c8c2c0defad43e7e69548f5441108cd0a134a00 +SIZE (KDE/release-service/21.04.2/krfb-21.04.2.tar.xz) = 1293092 diff --git a/net/krfb/pkg-plist b/net/krfb/pkg-plist index 6b46de4cf513..224982626439 100644 --- a/net/krfb/pkg-plist +++ b/net/krfb/pkg-plist @@ -1,68 +1,74 @@ bin/krfb lib/libkrfbprivate.so.5 lib/libkrfbprivate.so.5.0 %%QT_PLUGINDIR%%/krfb/krfb_framebuffer_qt.so %%QT_PLUGINDIR%%/krfb/krfb_framebuffer_xcb.so %%QT_PLUGINDIR%%/krfb/krfb_events_x11.so share/applications/org.kde.krfb.desktop %%DATADIR%%/krfb.notifyrc share/icons/hicolor/48x48/apps/krfb.png share/icons/hicolor/scalable/apps/krfb.svgz share/kservicetypes5/krfb-framebuffer.desktop share/kservicetypes5/krfb-events.desktop share/locale/ar/LC_MESSAGES/krfb.mo +share/locale/be/LC_MESSAGES/krfb.mo share/locale/bg/LC_MESSAGES/krfb.mo share/locale/bs/LC_MESSAGES/krfb.mo share/locale/ca/LC_MESSAGES/krfb.mo share/locale/ca@valencia/LC_MESSAGES/krfb.mo share/locale/cs/LC_MESSAGES/krfb.mo share/locale/da/LC_MESSAGES/krfb.mo share/locale/de/LC_MESSAGES/krfb.mo share/locale/el/LC_MESSAGES/krfb.mo share/locale/en_GB/LC_MESSAGES/krfb.mo share/locale/eo/LC_MESSAGES/krfb.mo share/locale/es/LC_MESSAGES/krfb.mo share/locale/et/LC_MESSAGES/krfb.mo share/locale/eu/LC_MESSAGES/krfb.mo share/locale/fa/LC_MESSAGES/krfb.mo share/locale/fi/LC_MESSAGES/krfb.mo share/locale/fr/LC_MESSAGES/krfb.mo share/locale/ga/LC_MESSAGES/krfb.mo share/locale/gl/LC_MESSAGES/krfb.mo share/locale/he/LC_MESSAGES/krfb.mo share/locale/hi/LC_MESSAGES/krfb.mo share/locale/hr/LC_MESSAGES/krfb.mo share/locale/hu/LC_MESSAGES/krfb.mo share/locale/ia/LC_MESSAGES/krfb.mo share/locale/id/LC_MESSAGES/krfb.mo share/locale/is/LC_MESSAGES/krfb.mo share/locale/it/LC_MESSAGES/krfb.mo share/locale/ja/LC_MESSAGES/krfb.mo share/locale/kk/LC_MESSAGES/krfb.mo share/locale/km/LC_MESSAGES/krfb.mo share/locale/ko/LC_MESSAGES/krfb.mo share/locale/lt/LC_MESSAGES/krfb.mo share/locale/lv/LC_MESSAGES/krfb.mo share/locale/ml/LC_MESSAGES/krfb.mo share/locale/mr/LC_MESSAGES/krfb.mo share/locale/nb/LC_MESSAGES/krfb.mo share/locale/nds/LC_MESSAGES/krfb.mo share/locale/nl/LC_MESSAGES/krfb.mo share/locale/nn/LC_MESSAGES/krfb.mo share/locale/pa/LC_MESSAGES/krfb.mo share/locale/pl/LC_MESSAGES/krfb.mo share/locale/pt/LC_MESSAGES/krfb.mo share/locale/pt_BR/LC_MESSAGES/krfb.mo share/locale/ro/LC_MESSAGES/krfb.mo share/locale/ru/LC_MESSAGES/krfb.mo +share/locale/se/LC_MESSAGES/krfb.mo share/locale/sk/LC_MESSAGES/krfb.mo share/locale/sl/LC_MESSAGES/krfb.mo +share/locale/sq/LC_MESSAGES/krfb.mo share/locale/sr/LC_MESSAGES/krfb.mo share/locale/sv/LC_MESSAGES/krfb.mo +share/locale/ta/LC_MESSAGES/krfb.mo +share/locale/tg/LC_MESSAGES/krfb.mo share/locale/tr/LC_MESSAGES/krfb.mo share/locale/ug/LC_MESSAGES/krfb.mo share/locale/uk/LC_MESSAGES/krfb.mo +share/locale/vi/LC_MESSAGES/krfb.mo share/locale/zh_CN/LC_MESSAGES/krfb.mo share/locale/zh_TW/LC_MESSAGES/krfb.mo share/metainfo/org.kde.krfb.appdata.xml share/qlogging-categories5/krfb.categories diff --git a/net/ksmtp/distinfo b/net/ksmtp/distinfo index 8ce931f68f22..a16eff571aa3 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741544 -SHA256 (KDE/release-service/21.04.1/ksmtp-21.04.1.tar.xz) = 4c1dd2f39263195e8ad32d6b43bf3200fff1c1f93575e918e1b69906ccef4ad8 -SIZE (KDE/release-service/21.04.1/ksmtp-21.04.1.tar.xz) = 47104 +TIMESTAMP = 1623521017 +SHA256 (KDE/release-service/21.04.2/ksmtp-21.04.2.tar.xz) = f6534aab0a4ca69b9b5e4e90de020c1b8ec27a5311e99d458779942dd834df81 +SIZE (KDE/release-service/21.04.2/ksmtp-21.04.2.tar.xz) = 47092 diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index f7d9fa048b2d..f782f4db22bf 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741545 -SHA256 (KDE/release-service/21.04.1/ktnef-21.04.1.tar.xz) = 2e122470ec8c879d2faaf31ddbf60d82732d5f34304e305a3e97dfe91f80418b -SIZE (KDE/release-service/21.04.1/ktnef-21.04.1.tar.xz) = 303712 +TIMESTAMP = 1623521018 +SHA256 (KDE/release-service/21.04.2/ktnef-21.04.2.tar.xz) = 8bd56b36db10d5da118daa0f875465c0547c9db81a3b82f6c5c34f458c184fa3 +SIZE (KDE/release-service/21.04.2/ktnef-21.04.2.tar.xz) = 306360 diff --git a/net/ktnef/pkg-plist b/net/ktnef/pkg-plist index c4ef3e51dd36..124801d9f36c 100644 --- a/net/ktnef/pkg-plist +++ b/net/ktnef/pkg-plist @@ -1,74 +1,77 @@ share/qlogging-categories5/ktnef.categories share/qlogging-categories5/ktnef.renamecategories include/KF5/KTNEF/KTNEF/Formatter include/KF5/KTNEF/KTNEF/KTNEFAttach include/KF5/KTNEF/KTNEF/KTNEFDefs include/KF5/KTNEF/KTNEF/KTNEFMessage include/KF5/KTNEF/KTNEF/KTNEFParser include/KF5/KTNEF/KTNEF/KTNEFProperty include/KF5/KTNEF/KTNEF/KTNEFPropertySet include/KF5/KTNEF/KTNEF/KTNEFWriter include/KF5/KTNEF/ktnef/formatter.h include/KF5/KTNEF/ktnef/ktnef_export.h include/KF5/KTNEF/ktnef/ktnefattach.h include/KF5/KTNEF/ktnef/ktnefdefs.h include/KF5/KTNEF/ktnef/ktnefmessage.h include/KF5/KTNEF/ktnef/ktnefparser.h include/KF5/KTNEF/ktnef/ktnefproperty.h include/KF5/KTNEF/ktnef/ktnefpropertyset.h include/KF5/KTNEF/ktnef/ktnefwriter.h include/KF5/ktnef_version.h lib/cmake/KF5Tnef/KF5TnefConfig.cmake lib/cmake/KF5Tnef/KF5TnefConfigVersion.cmake lib/cmake/KF5Tnef/KF5TnefTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Tnef/KF5TnefTargets.cmake lib/libKF5Tnef.so lib/libKF5Tnef.so.5 lib/libKF5Tnef.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KTNef.pri share/locale/ar/LC_MESSAGES/libktnef5.mo +share/locale/be/LC_MESSAGES/libktnef5.mo share/locale/bs/LC_MESSAGES/libktnef5.mo share/locale/ca/LC_MESSAGES/libktnef5.mo share/locale/ca@valencia/LC_MESSAGES/libktnef5.mo share/locale/cs/LC_MESSAGES/libktnef5.mo share/locale/da/LC_MESSAGES/libktnef5.mo share/locale/de/LC_MESSAGES/libktnef5.mo share/locale/el/LC_MESSAGES/libktnef5.mo share/locale/en_GB/LC_MESSAGES/libktnef5.mo share/locale/eo/LC_MESSAGES/libktnef5.mo share/locale/es/LC_MESSAGES/libktnef5.mo share/locale/et/LC_MESSAGES/libktnef5.mo share/locale/fi/LC_MESSAGES/libktnef5.mo share/locale/fr/LC_MESSAGES/libktnef5.mo share/locale/ga/LC_MESSAGES/libktnef5.mo share/locale/gl/LC_MESSAGES/libktnef5.mo share/locale/hi/LC_MESSAGES/libktnef5.mo share/locale/hu/LC_MESSAGES/libktnef5.mo share/locale/ia/LC_MESSAGES/libktnef5.mo share/locale/it/LC_MESSAGES/libktnef5.mo share/locale/ja/LC_MESSAGES/libktnef5.mo share/locale/kk/LC_MESSAGES/libktnef5.mo share/locale/km/LC_MESSAGES/libktnef5.mo share/locale/ko/LC_MESSAGES/libktnef5.mo share/locale/lt/LC_MESSAGES/libktnef5.mo share/locale/lv/LC_MESSAGES/libktnef5.mo share/locale/mr/LC_MESSAGES/libktnef5.mo share/locale/nb/LC_MESSAGES/libktnef5.mo share/locale/nds/LC_MESSAGES/libktnef5.mo share/locale/nl/LC_MESSAGES/libktnef5.mo share/locale/nn/LC_MESSAGES/libktnef5.mo share/locale/pa/LC_MESSAGES/libktnef5.mo share/locale/pl/LC_MESSAGES/libktnef5.mo share/locale/pt/LC_MESSAGES/libktnef5.mo share/locale/pt_BR/LC_MESSAGES/libktnef5.mo share/locale/ro/LC_MESSAGES/libktnef5.mo share/locale/ru/LC_MESSAGES/libktnef5.mo +share/locale/se/LC_MESSAGES/libktnef5.mo share/locale/sk/LC_MESSAGES/libktnef5.mo share/locale/sl/LC_MESSAGES/libktnef5.mo +share/locale/sq/LC_MESSAGES/libktnef5.mo share/locale/sr/LC_MESSAGES/libktnef5.mo share/locale/sv/LC_MESSAGES/libktnef5.mo share/locale/tr/LC_MESSAGES/libktnef5.mo share/locale/ug/LC_MESSAGES/libktnef5.mo share/locale/uk/LC_MESSAGES/libktnef5.mo share/locale/zh_CN/LC_MESSAGES/libktnef5.mo share/locale/zh_TW/LC_MESSAGES/libktnef5.mo diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 1692b9099061..941c804ba2dd 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741546 -SHA256 (KDE/release-service/21.04.1/libgravatar-21.04.1.tar.xz) = 58f89ddcf3ff95f7402596826dfbc0810f3fe91e1a8ec7bcd5a08b2544f7e01e -SIZE (KDE/release-service/21.04.1/libgravatar-21.04.1.tar.xz) = 35324 +TIMESTAMP = 1623521020 +SHA256 (KDE/release-service/21.04.2/libgravatar-21.04.2.tar.xz) = 39c6454c6dd17f58d3dcd68fcc4d8e6a9e88b324979e99e4181b9a9fd303b9f7 +SIZE (KDE/release-service/21.04.2/libgravatar-21.04.2.tar.xz) = 35312 diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index a034a5c60a80..abf97221f053 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741546 -SHA256 (KDE/release-service/21.04.1/libkgapi-21.04.1.tar.xz) = 1dd464db972d037fda66af2eb6445c0d72e5d148f3d7b6ddcaaa5a048f33bb33 -SIZE (KDE/release-service/21.04.1/libkgapi-21.04.1.tar.xz) = 249592 +TIMESTAMP = 1623521021 +SHA256 (KDE/release-service/21.04.2/libkgapi-21.04.2.tar.xz) = 493385657f3d68fc62f03a7b5332d533198e0e09f82c75d42a73c6af6623ca86 +SIZE (KDE/release-service/21.04.2/libkgapi-21.04.2.tar.xz) = 249556 diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index 2d51bb821214..1c3ca6d2a85e 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741547 -SHA256 (KDE/release-service/21.04.1/libksieve-21.04.1.tar.xz) = 1082aa0ed0231bbc31c2031cb634bfa6991172af770fa9e9c755648d4665df46 -SIZE (KDE/release-service/21.04.1/libksieve-21.04.1.tar.xz) = 564652 +TIMESTAMP = 1623521023 +SHA256 (KDE/release-service/21.04.2/libksieve-21.04.2.tar.xz) = fe0d99fe6a91b8b054b4e287026dcc9252aad167995eb977e50185108c7b9f3d +SIZE (KDE/release-service/21.04.2/libksieve-21.04.2.tar.xz) = 572868 diff --git a/net/libksieve/pkg-plist b/net/libksieve/pkg-plist index fe98044e063a..eabe7308f8db 100644 --- a/net/libksieve/pkg-plist +++ b/net/libksieve/pkg-plist @@ -1,173 +1,183 @@ share/qlogging-categories5/libksieve.categories share/qlogging-categories5/libksieve.renamecategories include/KF5/KManageSieve/SieveJob include/KF5/KSieveUi/AbstractMoveImapFolderWidget include/KF5/KSieveUi/AbstractRegexpEditorLineEdit include/KF5/KSieveUi/AbstractSelectEmailLineEdit include/KF5/KSieveUi/CheckScriptJob include/KF5/KSieveUi/ManageSieveScriptsDialog include/KF5/KSieveUi/ManageSieveTreeView include/KF5/KSieveUi/ManageSieveWidget include/KF5/KSieveUi/MultiImapVacationDialog include/KF5/KSieveUi/MultiImapVacationManager include/KF5/KSieveUi/RenameScriptJob include/KF5/KSieveUi/SieveDebugDialog include/KF5/KSieveUi/SieveEditor include/KF5/KSieveUi/SieveEditorWidget include/KF5/KSieveUi/SieveImapAccountSettings include/KF5/KSieveUi/SieveImapInstance include/KF5/KSieveUi/SieveImapInstanceInterface include/KF5/KSieveUi/SieveImapInstanceInterfaceManager include/KF5/KSieveUi/SieveImapPasswordProvider include/KF5/KSieveUi/SieveTreeWidgetItem include/KF5/KSieveUi/Util include/KF5/KSieveUi/VacationManager include/KF5/kmanagesieve/kmanagesieve_export.h include/KF5/kmanagesieve/sievejob.h include/KF5/ksieveui/abstractmoveimapfolderwidget.h include/KF5/ksieveui/abstractregexpeditorlineedit.h include/KF5/ksieveui/abstractselectemaillineedit.h include/KF5/ksieveui/checkscriptjob.h include/KF5/ksieveui/ksieveui_export.h include/KF5/ksieveui/managesievescriptsdialog.h include/KF5/ksieveui/managesievetreeview.h include/KF5/ksieveui/managesievewidget.h include/KF5/ksieveui/multiimapvacationdialog.h include/KF5/ksieveui/multiimapvacationmanager.h include/KF5/ksieveui/renamescriptjob.h include/KF5/ksieveui/sievedebugdialog.h include/KF5/ksieveui/sieveeditor.h include/KF5/ksieveui/sieveeditorwidget.h include/KF5/ksieveui/sieveimapaccountsettings.h include/KF5/ksieveui/sieveimapinstance.h include/KF5/ksieveui/sieveimapinstanceinterface.h include/KF5/ksieveui/sieveimapinstanceinterfacemanager.h include/KF5/ksieveui/sieveimappasswordprovider.h include/KF5/ksieveui/sievetreewidgetitem.h include/KF5/ksieveui/util.h include/KF5/ksieveui/util_p.h include/KF5/ksieveui/vacationmanager.h include/KF5/libksieve_version.h lib/cmake/KF5LibKSieve/KF5LibKSieveConfig.cmake lib/cmake/KF5LibKSieve/KF5LibKSieveConfigVersion.cmake lib/cmake/KF5LibKSieve/KF5LibKSieveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5LibKSieve/KF5LibKSieveTargets.cmake lib/libKF5KManageSieve.so lib/libKF5KManageSieve.so.5 lib/libKF5KManageSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KSieve.so lib/libKF5KSieve.so.5 lib/libKF5KSieve.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5KSieveUi.so lib/libKF5KSieveUi.so.5 lib/libKF5KSieveUi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KManageSieve.pri %%QT_MKSPECDIR%%/modules/qt_KSieve.pri %%QT_MKSPECDIR%%/modules/qt_KSieveUi.pri %%QT_PLUGINDIR%%/kf5/kio/sieve.so share/knsrcfiles/ksieve_script.knsrc share/kservices5/sieve.protocol share/locale/ar/LC_MESSAGES/kio_sieve.mo share/locale/ar/LC_MESSAGES/libksieve.mo +share/locale/be/LC_MESSAGES/kio_sieve.mo +share/locale/be/LC_MESSAGES/libksieve.mo share/locale/bg/LC_MESSAGES/kio_sieve.mo share/locale/bg/LC_MESSAGES/libksieve.mo share/locale/bs/LC_MESSAGES/kio_sieve.mo share/locale/bs/LC_MESSAGES/libksieve.mo share/locale/ca/LC_MESSAGES/kio_sieve.mo share/locale/ca/LC_MESSAGES/libksieve.mo share/locale/ca@valencia/LC_MESSAGES/kio_sieve.mo share/locale/ca@valencia/LC_MESSAGES/libksieve.mo share/locale/cs/LC_MESSAGES/kio_sieve.mo share/locale/cs/LC_MESSAGES/libksieve.mo share/locale/da/LC_MESSAGES/kio_sieve.mo share/locale/da/LC_MESSAGES/libksieve.mo share/locale/de/LC_MESSAGES/kio_sieve.mo share/locale/de/LC_MESSAGES/libksieve.mo share/locale/el/LC_MESSAGES/kio_sieve.mo share/locale/el/LC_MESSAGES/libksieve.mo share/locale/en_GB/LC_MESSAGES/kio_sieve.mo share/locale/en_GB/LC_MESSAGES/libksieve.mo share/locale/eo/LC_MESSAGES/kio_sieve.mo share/locale/eo/LC_MESSAGES/libksieve.mo share/locale/es/LC_MESSAGES/kio_sieve.mo share/locale/es/LC_MESSAGES/libksieve.mo share/locale/et/LC_MESSAGES/kio_sieve.mo share/locale/et/LC_MESSAGES/libksieve.mo share/locale/eu/LC_MESSAGES/kio_sieve.mo share/locale/eu/LC_MESSAGES/libksieve.mo share/locale/fa/LC_MESSAGES/kio_sieve.mo share/locale/fa/LC_MESSAGES/libksieve.mo share/locale/fi/LC_MESSAGES/kio_sieve.mo share/locale/fi/LC_MESSAGES/libksieve.mo share/locale/fr/LC_MESSAGES/kio_sieve.mo share/locale/fr/LC_MESSAGES/libksieve.mo share/locale/ga/LC_MESSAGES/kio_sieve.mo share/locale/ga/LC_MESSAGES/libksieve.mo share/locale/gl/LC_MESSAGES/kio_sieve.mo share/locale/gl/LC_MESSAGES/libksieve.mo share/locale/he/LC_MESSAGES/kio_sieve.mo share/locale/hi/LC_MESSAGES/kio_sieve.mo share/locale/hi/LC_MESSAGES/libksieve.mo share/locale/hr/LC_MESSAGES/kio_sieve.mo share/locale/hu/LC_MESSAGES/kio_sieve.mo share/locale/hu/LC_MESSAGES/libksieve.mo share/locale/ia/LC_MESSAGES/kio_sieve.mo share/locale/ia/LC_MESSAGES/libksieve.mo share/locale/is/LC_MESSAGES/kio_sieve.mo share/locale/is/LC_MESSAGES/libksieve.mo share/locale/it/LC_MESSAGES/kio_sieve.mo share/locale/it/LC_MESSAGES/libksieve.mo share/locale/ja/LC_MESSAGES/kio_sieve.mo share/locale/ja/LC_MESSAGES/libksieve.mo share/locale/kk/LC_MESSAGES/kio_sieve.mo share/locale/kk/LC_MESSAGES/libksieve.mo share/locale/km/LC_MESSAGES/kio_sieve.mo share/locale/km/LC_MESSAGES/libksieve.mo share/locale/ko/LC_MESSAGES/kio_sieve.mo share/locale/ko/LC_MESSAGES/libksieve.mo share/locale/lt/LC_MESSAGES/kio_sieve.mo share/locale/lt/LC_MESSAGES/libksieve.mo share/locale/lv/LC_MESSAGES/kio_sieve.mo share/locale/lv/LC_MESSAGES/libksieve.mo share/locale/mr/LC_MESSAGES/kio_sieve.mo share/locale/mr/LC_MESSAGES/libksieve.mo share/locale/nb/LC_MESSAGES/kio_sieve.mo share/locale/nb/LC_MESSAGES/libksieve.mo share/locale/nds/LC_MESSAGES/kio_sieve.mo share/locale/nds/LC_MESSAGES/libksieve.mo share/locale/nl/LC_MESSAGES/kio_sieve.mo share/locale/nl/LC_MESSAGES/libksieve.mo share/locale/nn/LC_MESSAGES/kio_sieve.mo share/locale/nn/LC_MESSAGES/libksieve.mo share/locale/pa/LC_MESSAGES/kio_sieve.mo share/locale/pa/LC_MESSAGES/libksieve.mo share/locale/pl/LC_MESSAGES/kio_sieve.mo share/locale/pl/LC_MESSAGES/libksieve.mo share/locale/pt/LC_MESSAGES/kio_sieve.mo share/locale/pt/LC_MESSAGES/libksieve.mo share/locale/pt_BR/LC_MESSAGES/kio_sieve.mo share/locale/pt_BR/LC_MESSAGES/libksieve.mo share/locale/ro/LC_MESSAGES/kio_sieve.mo share/locale/ro/LC_MESSAGES/libksieve.mo share/locale/ru/LC_MESSAGES/kio_sieve.mo share/locale/ru/LC_MESSAGES/libksieve.mo +share/locale/se/LC_MESSAGES/kio_sieve.mo +share/locale/se/LC_MESSAGES/libksieve.mo share/locale/sk/LC_MESSAGES/kio_sieve.mo share/locale/sk/LC_MESSAGES/libksieve.mo share/locale/sl/LC_MESSAGES/kio_sieve.mo share/locale/sl/LC_MESSAGES/libksieve.mo +share/locale/sq/LC_MESSAGES/kio_sieve.mo +share/locale/sq/LC_MESSAGES/libksieve.mo share/locale/sr/LC_MESSAGES/kio_sieve.mo share/locale/sr/LC_MESSAGES/libksieve.mo share/locale/sv/LC_MESSAGES/kio_sieve.mo share/locale/sv/LC_MESSAGES/libksieve.mo +share/locale/ta/LC_MESSAGES/kio_sieve.mo +share/locale/ta/LC_MESSAGES/libksieve.mo +share/locale/tg/LC_MESSAGES/kio_sieve.mo +share/locale/tg/LC_MESSAGES/libksieve.mo share/locale/tr/LC_MESSAGES/kio_sieve.mo share/locale/tr/LC_MESSAGES/libksieve.mo share/locale/ug/LC_MESSAGES/kio_sieve.mo share/locale/ug/LC_MESSAGES/libksieve.mo share/locale/uk/LC_MESSAGES/kio_sieve.mo share/locale/uk/LC_MESSAGES/libksieve.mo share/locale/zh_CN/LC_MESSAGES/kio_sieve.mo share/locale/zh_CN/LC_MESSAGES/libksieve.mo share/locale/zh_TW/LC_MESSAGES/kio_sieve.mo share/locale/zh_TW/LC_MESSAGES/libksieve.mo share/sieve/scripts/copy/template.desktop share/sieve/scripts/copy/template.txt diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 8a3711d25d09..137d99438999 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741548 -SHA256 (KDE/release-service/21.04.1/mailcommon-21.04.1.tar.xz) = 13dc5b7ef81f74463f63833876b717ed6c8a66d37a44f0cbeaa9b090362d7e71 -SIZE (KDE/release-service/21.04.1/mailcommon-21.04.1.tar.xz) = 727260 +TIMESTAMP = 1623521024 +SHA256 (KDE/release-service/21.04.2/mailcommon-21.04.2.tar.xz) = f05055cb8a9d4d96ea550010e8ffeccdbd3cd60982a6ce63110368d60ed568b4 +SIZE (KDE/release-service/21.04.2/mailcommon-21.04.2.tar.xz) = 730564 diff --git a/net/mailcommon/pkg-plist b/net/mailcommon/pkg-plist index 3a84497784e0..39f6cd3ad72e 100644 --- a/net/mailcommon/pkg-plist +++ b/net/mailcommon/pkg-plist @@ -1,162 +1,163 @@ include/KF5/MailCommon/AccountConfigOrderDialog include/KF5/MailCommon/AddTagDialog include/KF5/MailCommon/BackupJob include/KF5/MailCommon/CollectionExpiryPage include/KF5/MailCommon/CollectionExpiryWidget include/KF5/MailCommon/CollectionGeneralPage include/KF5/MailCommon/CollectionGeneralWidget include/KF5/MailCommon/CollectionTemplatesWidget include/KF5/MailCommon/CollectionViewWidget include/KF5/MailCommon/CryptoUtils include/KF5/MailCommon/DBusOperators include/KF5/MailCommon/ExpireCollectionAttribute include/KF5/MailCommon/FavoriteCollectionOrderProxyModel include/KF5/MailCommon/FavoriteCollectionWidget include/KF5/MailCommon/FilterAction include/KF5/MailCommon/FilterActionDict include/KF5/MailCommon/FilterImporterAbstract include/KF5/MailCommon/FilterImporterBalsa include/KF5/MailCommon/FilterImporterClawsMail include/KF5/MailCommon/FilterImporterExporter include/KF5/MailCommon/FilterImporterPathCache include/KF5/MailCommon/FilterLog include/KF5/MailCommon/FilterManager include/KF5/MailCommon/FolderCollectionMonitor include/KF5/MailCommon/FolderJob include/KF5/MailCommon/FolderRequester include/KF5/MailCommon/FolderSelectionDialog include/KF5/MailCommon/FolderSettings include/KF5/MailCommon/FolderTreeView include/KF5/MailCommon/FolderTreeWidget include/KF5/MailCommon/FolderTreeWidgetProxyModel include/KF5/MailCommon/ItemContext include/KF5/MailCommon/JobScheduler include/KF5/MailCommon/KMFilterDialog include/KF5/MailCommon/MDNStateAttribute include/KF5/MailCommon/MailFilter include/KF5/MailCommon/MailInterfaces include/KF5/MailCommon/MailKernel include/KF5/MailCommon/MailUtil include/KF5/MailCommon/RedirectDialog include/KF5/MailCommon/ResourceReadConfigFile include/KF5/MailCommon/SearchPattern include/KF5/MailCommon/SearchPatternEdit include/KF5/MailCommon/SearchRule include/KF5/MailCommon/SearchRuleStatus include/KF5/MailCommon/SendMdnHandler include/KF5/MailCommon/SnippetTreeView include/KF5/MailCommon/SnippetWidget include/KF5/MailCommon/SnippetsManager include/KF5/MailCommon/SnippetsModel include/KF5/MailCommon/Tag include/KF5/MailCommon/TagWidget include/KF5/mailcommon/accountconfigorderdialog.h include/KF5/mailcommon/addtagdialog.h include/KF5/mailcommon/backupjob.h include/KF5/mailcommon/collectionexpirypage.h include/KF5/mailcommon/collectionexpirywidget.h include/KF5/mailcommon/collectiongeneralpage.h include/KF5/mailcommon/collectiongeneralwidget.h include/KF5/mailcommon/collectiontemplateswidget.h include/KF5/mailcommon/collectionviewwidget.h include/KF5/mailcommon/cryptoutils.h include/KF5/mailcommon/dbusoperators.h include/KF5/mailcommon/expirecollectionattribute.h include/KF5/mailcommon/favoritecollectionorderproxymodel.h include/KF5/mailcommon/favoritecollectionwidget.h include/KF5/mailcommon/filteraction.h include/KF5/mailcommon/filteractiondict.h include/KF5/mailcommon/filterimporterabstract.h include/KF5/mailcommon/filterimporterbalsa.h include/KF5/mailcommon/filterimporterclawsmail.h include/KF5/mailcommon/filterimporterexporter.h include/KF5/mailcommon/filterimporterpathcache.h include/KF5/mailcommon/filterlog.h include/KF5/mailcommon/filtermanager.h include/KF5/mailcommon/foldercollectionmonitor.h include/KF5/mailcommon/folderjob.h include/KF5/mailcommon/folderrequester.h include/KF5/mailcommon/folderselectiondialog.h include/KF5/mailcommon/foldersettings.h include/KF5/mailcommon/foldertreeview.h include/KF5/mailcommon/foldertreewidget.h include/KF5/mailcommon/foldertreewidgetproxymodel.h include/KF5/mailcommon/itemcontext.h include/KF5/mailcommon/jobscheduler.h include/KF5/mailcommon/kmfilterdialog.h include/KF5/mailcommon/mailcommon_export.h include/KF5/mailcommon/mailcommonsettings_base.h include/KF5/mailcommon/mailfilter.h include/KF5/mailcommon/mailinterfaces.h include/KF5/mailcommon/mailkernel.h include/KF5/mailcommon/mailutil.h include/KF5/mailcommon/mdnstateattribute.h include/KF5/mailcommon/pop3settings.h include/KF5/mailcommon/redirectdialog.h include/KF5/mailcommon/resourcereadconfigfile.h include/KF5/mailcommon/searchpattern.h include/KF5/mailcommon/searchpatternedit.h include/KF5/mailcommon/searchrule.h include/KF5/mailcommon/searchrulestatus.h include/KF5/mailcommon/sendmdnhandler.h include/KF5/mailcommon/snippetsmanager.h include/KF5/mailcommon/snippetsmodel.h include/KF5/mailcommon/snippettreeview.h include/KF5/mailcommon/snippetwidget.h include/KF5/mailcommon/tag.h include/KF5/mailcommon/tagwidget.h include/KF5/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.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MailCommon.so.5 %%QT_MKSPECDIR%%/modules/qt_MailCommon.pri %%QT_PLUGINDIR%%/designer/mailcommonwidgets.so share/locale/ar/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/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 08d657e7fabb..3ef099034bc1 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741549 -SHA256 (KDE/release-service/21.04.1/mailimporter-21.04.1.tar.xz) = 983c0e13e86c6d0a553660a85acbb0492c8718a3c5bc6bfe7d0bb82232421475 -SIZE (KDE/release-service/21.04.1/mailimporter-21.04.1.tar.xz) = 552964 +TIMESTAMP = 1623521026 +SHA256 (KDE/release-service/21.04.2/mailimporter-21.04.2.tar.xz) = c397086648028d43ad4f2312f5ec5ca2591bb85d355b451d182e2163d61bdc5b +SIZE (KDE/release-service/21.04.2/mailimporter-21.04.2.tar.xz) = 559440 diff --git a/net/mailimporter/pkg-plist b/net/mailimporter/pkg-plist index 13ad4925e24e..e4f041488557 100644 --- a/net/mailimporter/pkg-plist +++ b/net/mailimporter/pkg-plist @@ -1,132 +1,137 @@ share/qlogging-categories5/mailimporter.categories share/qlogging-categories5/mailimporter.renamecategories include/KF5/MailImporter/FilterBalsa include/KF5/MailImporter/FilterClawsMail include/KF5/MailImporter/FilterEvolution include/KF5/MailImporter/FilterEvolution_v2 include/KF5/MailImporter/FilterEvolution_v3 include/KF5/MailImporter/FilterIcedove include/KF5/MailImporter/FilterImporterBase include/KF5/MailImporter/FilterInfo include/KF5/MailImporter/FilterInfoGui include/KF5/MailImporter/FilterKMailArchive include/KF5/MailImporter/FilterKMail_maildir include/KF5/MailImporter/FilterLNotes include/KF5/MailImporter/FilterMBox include/KF5/MailImporter/FilterMailApp include/KF5/MailImporter/FilterMailmanGzip include/KF5/MailImporter/FilterOE include/KF5/MailImporter/FilterOpera include/KF5/MailImporter/FilterPMail include/KF5/MailImporter/FilterPlain include/KF5/MailImporter/FilterSeaMonkey include/KF5/MailImporter/FilterSylpheed include/KF5/MailImporter/FilterTheBat include/KF5/MailImporter/FilterThunderbird include/KF5/MailImporter/Filters include/KF5/MailImporter/ImportMailsWidget include/KF5/MailImporter/MailImporter_Utils include/KF5/MailImporter/MessageStatus include/KF5/MailImporter/OtherMailerUtil include/KF5/MailImporterAkonadi/FilterImporterAkonadi include/KF5/mailimporter/filterbalsa.h include/KF5/mailimporter/filterclawsmail.h include/KF5/mailimporter/filterevolution.h include/KF5/mailimporter/filterevolution_v2.h include/KF5/mailimporter/filterevolution_v3.h include/KF5/mailimporter/filtericedove.h include/KF5/mailimporter/filterimporterbase.h include/KF5/mailimporter/filterinfo.h include/KF5/mailimporter/filterinfogui.h include/KF5/mailimporter/filterkmail_maildir.h include/KF5/mailimporter/filterkmailarchive.h include/KF5/mailimporter/filterlnotes.h include/KF5/mailimporter/filtermailapp.h include/KF5/mailimporter/filtermailmangzip.h include/KF5/mailimporter/filtermbox.h include/KF5/mailimporter/filteroe.h include/KF5/mailimporter/filteropera.h include/KF5/mailimporter/filterplain.h include/KF5/mailimporter/filterpmail.h include/KF5/mailimporter/filters.h include/KF5/mailimporter/filterseamonkey.h include/KF5/mailimporter/filtersylpheed.h include/KF5/mailimporter/filterthebat.h include/KF5/mailimporter/filterthunderbird.h include/KF5/mailimporter/importmailswidget.h include/KF5/mailimporter/mailimporter_export.h include/KF5/mailimporter/mailimporter_utils.h include/KF5/mailimporter/messagestatus.h include/KF5/mailimporter/othermailerutil.h include/KF5/mailimporter_version.h include/KF5/mailimporterakonadi/filterimporterakonadi.h include/KF5/mailimporterakonadi/mailimporterakonadi_export.h include/KF5/mailimporterakonadi_version.h lib/cmake/KF5MailImporter/KF5MailImporterConfig.cmake lib/cmake/KF5MailImporter/KF5MailImporterConfigVersion.cmake lib/cmake/KF5MailImporter/KF5MailImporterTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailImporter/KF5MailImporterTargets.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiConfig.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiConfigVersion.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailImporterAkonadi/KF5MailImporterAkonadiTargets.cmake lib/libKF5MailImporter.so lib/libKF5MailImporter.so.5 lib/libKF5MailImporter.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MailImporterAkonadi.so lib/libKF5MailImporterAkonadi.so.5 lib/libKF5MailImporterAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailImporter.pri %%QT_MKSPECDIR%%/modules/qt_MailImporterAkonadi.pri share/locale/ar/LC_MESSAGES/libmailimporter.mo +share/locale/be/LC_MESSAGES/libmailimporter.mo share/locale/bg/LC_MESSAGES/libmailimporter.mo share/locale/bs/LC_MESSAGES/libmailimporter.mo share/locale/ca/LC_MESSAGES/libmailimporter.mo share/locale/ca@valencia/LC_MESSAGES/libmailimporter.mo share/locale/cs/LC_MESSAGES/libmailimporter.mo share/locale/da/LC_MESSAGES/libmailimporter.mo share/locale/de/LC_MESSAGES/libmailimporter.mo share/locale/el/LC_MESSAGES/libmailimporter.mo share/locale/en_GB/LC_MESSAGES/libmailimporter.mo share/locale/eo/LC_MESSAGES/libmailimporter.mo share/locale/es/LC_MESSAGES/libmailimporter.mo share/locale/et/LC_MESSAGES/libmailimporter.mo share/locale/eu/LC_MESSAGES/libmailimporter.mo share/locale/fa/LC_MESSAGES/libmailimporter.mo share/locale/fi/LC_MESSAGES/libmailimporter.mo share/locale/fr/LC_MESSAGES/libmailimporter.mo share/locale/ga/LC_MESSAGES/libmailimporter.mo share/locale/gl/LC_MESSAGES/libmailimporter.mo share/locale/he/LC_MESSAGES/libmailimporter.mo share/locale/hi/LC_MESSAGES/libmailimporter.mo share/locale/hr/LC_MESSAGES/libmailimporter.mo share/locale/hu/LC_MESSAGES/libmailimporter.mo share/locale/ia/LC_MESSAGES/libmailimporter.mo share/locale/is/LC_MESSAGES/libmailimporter.mo share/locale/it/LC_MESSAGES/libmailimporter.mo share/locale/ja/LC_MESSAGES/libmailimporter.mo share/locale/kk/LC_MESSAGES/libmailimporter.mo share/locale/km/LC_MESSAGES/libmailimporter.mo share/locale/ko/LC_MESSAGES/libmailimporter.mo share/locale/lt/LC_MESSAGES/libmailimporter.mo share/locale/lv/LC_MESSAGES/libmailimporter.mo share/locale/mr/LC_MESSAGES/libmailimporter.mo share/locale/nb/LC_MESSAGES/libmailimporter.mo share/locale/nds/LC_MESSAGES/libmailimporter.mo share/locale/nl/LC_MESSAGES/libmailimporter.mo share/locale/nn/LC_MESSAGES/libmailimporter.mo share/locale/pa/LC_MESSAGES/libmailimporter.mo share/locale/pl/LC_MESSAGES/libmailimporter.mo share/locale/pt/LC_MESSAGES/libmailimporter.mo share/locale/pt_BR/LC_MESSAGES/libmailimporter.mo share/locale/ro/LC_MESSAGES/libmailimporter.mo share/locale/ru/LC_MESSAGES/libmailimporter.mo +share/locale/se/LC_MESSAGES/libmailimporter.mo share/locale/sk/LC_MESSAGES/libmailimporter.mo share/locale/sl/LC_MESSAGES/libmailimporter.mo +share/locale/sq/LC_MESSAGES/libmailimporter.mo share/locale/sr/LC_MESSAGES/libmailimporter.mo share/locale/sv/LC_MESSAGES/libmailimporter.mo +share/locale/ta/LC_MESSAGES/libmailimporter.mo +share/locale/tg/LC_MESSAGES/libmailimporter.mo share/locale/tr/LC_MESSAGES/libmailimporter.mo share/locale/ug/LC_MESSAGES/libmailimporter.mo share/locale/uk/LC_MESSAGES/libmailimporter.mo share/locale/zh_CN/LC_MESSAGES/libmailimporter.mo share/locale/zh_TW/LC_MESSAGES/libmailimporter.mo diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index a4a2de7a67eb..9a99d10dbb51 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741549 -SHA256 (KDE/release-service/21.04.1/messagelib-21.04.1.tar.xz) = 9b6a97cc1348591d0dbdf7b01f3a6216aaa86ca5c9667f8ae2b1dc398178c7ec -SIZE (KDE/release-service/21.04.1/messagelib-21.04.1.tar.xz) = 10634708 +TIMESTAMP = 1623521027 +SHA256 (KDE/release-service/21.04.2/messagelib-21.04.2.tar.xz) = 1e9c9bb9f0384676e8cbbd2e0e212cffb4dba0b63309b52ad30ebb6e0d430fc3 +SIZE (KDE/release-service/21.04.2/messagelib-21.04.2.tar.xz) = 10778204 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index 157dc029435d..8a739d2838a7 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,903 +1,915 @@ include/KF5/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/AkonadiSender include/KF5/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/AttachmentJob include/KF5/MessageComposer/AttachmentModel include/KF5/MessageComposer/AttachmentVcardFromAddressBookJob include/KF5/MessageComposer/AutocryptHeadersJob include/KF5/MessageComposer/Composer include/KF5/MessageComposer/ComposerAttachmentInterface include/KF5/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/ComposerViewBase include/KF5/MessageComposer/ComposerViewInterface include/KF5/MessageComposer/ContentJobBase include/KF5/MessageComposer/ConvertSnippetVariableMenu include/KF5/MessageComposer/ConvertSnippetVariablesJob include/KF5/MessageComposer/ConvertSnippetVariablesUtil include/KF5/MessageComposer/EncryptJob include/KF5/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/FollowupReminder include/KF5/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/GlobalPart include/KF5/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/InfoPart include/KF5/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/JobBase include/KF5/MessageComposer/Kleo_Util include/KF5/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageHelper include/KF5/MessageComposer/MessagePart include/KF5/MessageComposer/MessageSender include/KF5/MessageComposer/MultipartJob include/KF5/MessageComposer/PluginActionType include/KF5/MessageComposer/PluginComposerInterface include/KF5/MessageComposer/PluginEditor include/KF5/MessageComposer/PluginEditorBase include/KF5/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/PluginEditorCheckBeforeSendConfigureWidget include/KF5/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/PluginEditorConvertTextConfigureWidget include/KF5/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/PluginEditorConverterInitialData include/KF5/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KF5/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/PluginEditorInit include/KF5/MessageComposer/PluginEditorInitConfigureWidget include/KF5/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/PluginEditorManager include/KF5/MessageComposer/ProtectedHeadersJob include/KF5/MessageComposer/Recipient include/KF5/MessageComposer/RecipientLine include/KF5/MessageComposer/RecipientsEditor include/KF5/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/RichTextComposerSignatures include/KF5/MessageComposer/SendLaterCreateJob include/KF5/MessageComposer/SendLaterDialog include/KF5/MessageComposer/SendLaterInfo include/KF5/MessageComposer/SendLaterJob include/KF5/MessageComposer/SendLaterRemoveJob include/KF5/MessageComposer/SendLaterUtil include/KF5/MessageComposer/SignEncryptJob include/KF5/MessageComposer/SignJob include/KF5/MessageComposer/SignatureController include/KF5/MessageComposer/SinglepartJob include/KF5/MessageComposer/SkeletonMessageJob include/KF5/MessageComposer/StatusBarLabelToggledState include/KF5/MessageComposer/TextPart include/KF5/MessageComposer/TransparentJob include/KF5/MessageComposer/Util include/KF5/MessageCore/AttachmentCompressJob include/KF5/MessageCore/AttachmentFromUrlBaseJob include/KF5/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/AttachmentLoadJob include/KF5/MessageCore/AttachmentPart include/KF5/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/AttachmentUpdateJob include/KF5/MessageCore/AutocryptRecipient include/KF5/MessageCore/AutocryptStorage include/KF5/MessageCore/AutocryptUtils include/KF5/MessageCore/ColorUtil include/KF5/MessageCore/ImageCollector include/KF5/MessageCore/MailingList include/KF5/MessageCore/MessageCoreSettings include/KF5/MessageCore/NodeHelper include/KF5/MessageCore/StringUtil include/KF5/MessageCore/Util include/KF5/MessageList/AggregationComboBox include/KF5/MessageList/AggregationConfigButton include/KF5/MessageList/Enums include/KF5/MessageList/MessageListUtil include/KF5/MessageList/Pane include/KF5/MessageList/QuickSearchLine include/KF5/MessageList/StorageModel include/KF5/MessageList/StorageModelBase include/KF5/MessageList/ThemeComboBox include/KF5/MessageList/ThemeConfigButton include/KF5/MessageList/View include/KF5/MessageList/WidgetBase include/KF5/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/BlockMailTrackingUrlInterceptor include/KF5/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/CSSHelper include/KF5/MessageViewer/CSSHelperBase include/KF5/MessageViewer/ConfigureWidget include/KF5/MessageViewer/DKIMCheckPolicy include/KF5/MessageViewer/DKIMCheckSignatureJob include/KF5/MessageViewer/DKIMHeaderParser include/KF5/MessageViewer/DKIMInfo include/KF5/MessageViewer/DKIMKeyRecord include/KF5/MessageViewer/DKIMManageRulesDialog include/KF5/MessageViewer/DKIMManageRulesWidget include/KF5/MessageViewer/DKIMManager include/KF5/MessageViewer/DKIMManagerAuthenticationServer include/KF5/MessageViewer/DKIMManagerKey include/KF5/MessageViewer/DKIMManagerKeyDialog include/KF5/MessageViewer/DKIMManagerKeyWidget include/KF5/MessageViewer/DKIMManagerRules include/KF5/MessageViewer/DKIMRule include/KF5/MessageViewer/DKIMViewerMenu include/KF5/MessageViewer/DKIMWidgetInfo include/KF5/MessageViewer/EditorWatcher include/KF5/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/HeaderStrategy include/KF5/MessageViewer/HeaderStyle include/KF5/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/HtmlBlock include/KF5/MessageViewer/HtmlWriter include/KF5/MessageViewer/IconNameCache include/KF5/MessageViewer/InvitationSettings include/KF5/MessageViewer/KXFace include/KF5/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessagePartRendererManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPlugin include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KF5/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MimeType include/KF5/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/PrintingSettings include/KF5/MessageViewer/RemoteContentConfigureDialog include/KF5/MessageViewer/RemoteContentMenu include/KF5/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/Stl_Util include/KF5/MessageViewer/URLHandler include/KF5/MessageViewer/Viewer include/KF5/MessageViewer/ViewerPlugin include/KF5/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/ViewerPluginToolManager include/KF5/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/Enums include/KF5/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/Util include/KF5/TemplateParser/CustomTemplates include/KF5/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplatesUtil include/KF5/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineExportPdfPageJob include/KF5/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/ZoomActionMenu include/KF5/messagecomposer/abstractencryptjob.h include/KF5/messagecomposer/akonadisender.h include/KF5/messagecomposer/aliasesexpandjob.h include/KF5/messagecomposer/attachmentclipboardjob.h include/KF5/messagecomposer/attachmentcontrollerbase.h include/KF5/messagecomposer/attachmentfrompublickeyjob.h include/KF5/messagecomposer/attachmentjob.h include/KF5/messagecomposer/attachmentmodel.h include/KF5/messagecomposer/attachmentvcardfromaddressbookjob.h include/KF5/messagecomposer/autocryptheadersjob.h include/KF5/messagecomposer/composer.h include/KF5/messagecomposer/composerattachmentinterface.h include/KF5/messagecomposer/composerlineedit.h include/KF5/messagecomposer/composerviewbase.h include/KF5/messagecomposer/composerviewinterface.h include/KF5/messagecomposer/contentjobbase.h include/KF5/messagecomposer/convertsnippetvariablemenu.h include/KF5/messagecomposer/convertsnippetvariablesjob.h include/KF5/messagecomposer/convertsnippetvariablesutil.h include/KF5/messagecomposer/encryptjob.h include/KF5/messagecomposer/followupreminder.h include/KF5/messagecomposer/followupremindercreatejob.h include/KF5/messagecomposer/followupreminderselectdatedialog.h include/KF5/messagecomposer/globalpart.h include/KF5/messagecomposer/imagescalingwidget.h include/KF5/messagecomposer/infopart.h include/KF5/messagecomposer/inserttextfilejob.h include/KF5/messagecomposer/jobbase.h include/KF5/messagecomposer/kleo_util.h include/KF5/messagecomposer/maintextjob.h include/KF5/messagecomposer/messagecomposer_debug.h include/KF5/messagecomposer/messagecomposer_export.h include/KF5/messagecomposer/messagecomposersettings.h include/KF5/messagecomposer/messagecomposersettings_base.h include/KF5/messagecomposer/messagefactoryng.h include/KF5/messagecomposer/messagehelper.h include/KF5/messagecomposer/messagepart.h include/KF5/messagecomposer/messagesender.h include/KF5/messagecomposer/multipartjob.h include/KF5/messagecomposer/pluginactiontype.h include/KF5/messagecomposer/plugincomposerinterface.h include/KF5/messagecomposer/plugineditor.h include/KF5/messagecomposer/plugineditorbase.h include/KF5/messagecomposer/plugineditorcheckbeforesend.h include/KF5/messagecomposer/plugineditorcheckbeforesendconfigurewidget.h include/KF5/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/messagecomposer/plugineditorconverterinitialdata.h include/KF5/messagecomposer/plugineditorconverttext.h include/KF5/messagecomposer/plugineditorconverttextconfigurewidget.h include/KF5/messagecomposer/plugineditorconverttextinterface.h include/KF5/messagecomposer/plugineditorconverttextmanager.h include/KF5/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KF5/messagecomposer/plugineditorgrammarmanager.h include/KF5/messagecomposer/plugineditorinit.h include/KF5/messagecomposer/plugineditorinitconfigurewidget.h include/KF5/messagecomposer/plugineditorinitinterface.h include/KF5/messagecomposer/plugineditorinitmanager.h include/KF5/messagecomposer/plugineditorinterface.h include/KF5/messagecomposer/plugineditormanager.h include/KF5/messagecomposer/protectedheadersjob.h include/KF5/messagecomposer/recipient.h include/KF5/messagecomposer/recipientline.h include/KF5/messagecomposer/recipientseditor.h include/KF5/messagecomposer/richtextcomposerng.h include/KF5/messagecomposer/richtextcomposersignatures.h include/KF5/messagecomposer/sendlatercreatejob.h include/KF5/messagecomposer/sendlaterdialog.h include/KF5/messagecomposer/sendlaterinfo.h include/KF5/messagecomposer/sendlaterjob.h include/KF5/messagecomposer/sendlaterremovejob.h include/KF5/messagecomposer/sendlaterutil.h include/KF5/messagecomposer/signaturecontroller.h include/KF5/messagecomposer/signencryptjob.h include/KF5/messagecomposer/signjob.h include/KF5/messagecomposer/singlepartjob.h include/KF5/messagecomposer/skeletonmessagejob.h include/KF5/messagecomposer/statusbarlabeltoggledstate.h include/KF5/messagecomposer/textpart.h include/KF5/messagecomposer/transparentjob.h include/KF5/messagecomposer/util.h include/KF5/messagecomposer_version.h include/KF5/messagecore/attachmentcompressjob.h include/KF5/messagecore/attachmentfromurlbasejob.h include/KF5/messagecore/attachmentfromurlutils.h include/KF5/messagecore/attachmentloadjob.h include/KF5/messagecore/attachmentpart.h include/KF5/messagecore/attachmentpropertiesdialog.h include/KF5/messagecore/attachmentupdatejob.h include/KF5/messagecore/autocryptrecipient.h include/KF5/messagecore/autocryptstorage.h include/KF5/messagecore/autocryptutils.h include/KF5/messagecore/colorutil.h include/KF5/messagecore/globalsettings_messagecore.h include/KF5/messagecore/imagecollector.h include/KF5/messagecore/mailinglist.h include/KF5/messagecore/messagecore_export.h include/KF5/messagecore/messagecoresettings.h include/KF5/messagecore/nodehelper.h include/KF5/messagecore/stringutil.h include/KF5/messagecore/util.h include/KF5/messagecore_version.h include/KF5/messagelist/aggregationcombobox.h include/KF5/messagelist/aggregationconfigbutton.h include/KF5/messagelist/enums.h include/KF5/messagelist/messagelist_export.h include/KF5/messagelist/messagelistsettings.h include/KF5/messagelist/messagelistutil.h include/KF5/messagelist/pane.h include/KF5/messagelist/quicksearchline.h include/KF5/messagelist/storagemodel.h include/KF5/messagelist/storagemodelbase.h include/KF5/messagelist/themecombobox.h include/KF5/messagelist/themeconfigbutton.h include/KF5/messagelist/view.h include/KF5/messagelist/widgetbase.h include/KF5/messagelist_version.h include/KF5/messageviewer/attachmentstrategy.h include/KF5/messageviewer/blockmailtrackingurlinterceptor.h include/KF5/messageviewer/bodyparturlhandler.h include/KF5/messageviewer/bufferedhtmlwriter.h include/KF5/messageviewer/config-messageviewer.h include/KF5/messageviewer/configurewidget.h include/KF5/messageviewer/csshelper.h include/KF5/messageviewer/csshelperbase.h include/KF5/messageviewer/dkimcheckpolicy.h include/KF5/messageviewer/dkimchecksignaturejob.h include/KF5/messageviewer/dkimheaderparser.h include/KF5/messageviewer/dkiminfo.h include/KF5/messageviewer/dkimkeyrecord.h include/KF5/messageviewer/dkimmanager.h include/KF5/messageviewer/dkimmanagerauthenticationserver.h include/KF5/messageviewer/dkimmanagerkey.h include/KF5/messageviewer/dkimmanagerkeydialog.h include/KF5/messageviewer/dkimmanagerkeywidget.h include/KF5/messageviewer/dkimmanagerrules.h include/KF5/messageviewer/dkimmanagerulesdialog.h include/KF5/messageviewer/dkimmanageruleswidget.h include/KF5/messageviewer/dkimrule.h include/KF5/messageviewer/dkimviewermenu.h include/KF5/messageviewer/dkimwidgetinfo.h include/KF5/messageviewer/editorwatcher.h include/KF5/messageviewer/filehtmlwriter.h include/KF5/messageviewer/globalsettings_messageviewer.h include/KF5/messageviewer/grantleeheaderstyle.h include/KF5/messageviewer/grantleeheaderteststyle.h include/KF5/messageviewer/headerstrategy.h include/KF5/messageviewer/headerstyle.h include/KF5/messageviewer/headerstyle_util.h include/KF5/messageviewer/headerstyleinterface.h include/KF5/messageviewer/headerstylemenumanager.h include/KF5/messageviewer/headerstyleplugin.h include/KF5/messageviewer/headerstylepluginmanager.h include/KF5/messageviewer/htmlblock.h include/KF5/messageviewer/htmlwriter.h include/KF5/messageviewer/iconnamecache.h include/KF5/messageviewer/invitationsettings.h include/KF5/messageviewer/kxface.h include/KF5/messageviewer/mailwebenginepage.h include/KF5/messageviewer/mailwebengineview.h include/KF5/messageviewer/markmessagereadhandler.h include/KF5/messageviewer/messagepartrendererbase.h include/KF5/messageviewer/messagepartrenderermanager.h include/KF5/messageviewer/messagepartrenderplugin.h include/KF5/messageviewer/messageviewer_debug.h include/KF5/messageviewer/messageviewer_export.h include/KF5/messageviewer/messageviewerconfiguresettingsplugin.h include/KF5/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KF5/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/messageviewer/messageviewersettings.h include/KF5/messageviewer/messageviewerutil.h include/KF5/messageviewer/mimetype.h include/KF5/messageviewer/objecttreeemptysource.h include/KF5/messageviewer/plainheaderstyle.h include/KF5/messageviewer/printingsettings.h include/KF5/messageviewer/remotecontentconfiguredialog.h include/KF5/messageviewer/remotecontentmenu.h include/KF5/messageviewer/richheaderstrategy.h include/KF5/messageviewer/scamcheckshorturl.h include/KF5/messageviewer/scamcheckshorturlmanager.h include/KF5/messageviewer/scamexpandurljob.h include/KF5/messageviewer/spamheaderanalyzer.h include/KF5/messageviewer/stl_util.h include/KF5/messageviewer/urlhandler.h include/KF5/messageviewer/viewer.h include/KF5/messageviewer/viewerplugin.h include/KF5/messageviewer/viewerplugininterface.h include/KF5/messageviewer/viewerpluginmanager.h include/KF5/messageviewer/viewerplugintoolmanager.h include/KF5/messageviewer_version.h include/KF5/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/mimetreeparser/bodypart.h include/KF5/mimetreeparser/bodypartformatter.h include/KF5/mimetreeparser/bodypartformatterfactory.h include/KF5/mimetreeparser/enums.h include/KF5/mimetreeparser/messagepart.h include/KF5/mimetreeparser/mimetreeparser_export.h include/KF5/mimetreeparser/nodehelper.h include/KF5/mimetreeparser/objecttreeparser.h include/KF5/mimetreeparser/objecttreesource.h include/KF5/mimetreeparser/partmetadata.h include/KF5/mimetreeparser/partnodebodypart.h include/KF5/mimetreeparser/simpleobjecttreesource.h include/KF5/mimetreeparser/util.h include/KF5/mimetreeparser_version.h include/KF5/templateparser/customtemplates.h include/KF5/templateparser/customtemplates_kfg.h include/KF5/templateparser/customtemplatesmenu.h include/KF5/templateparser/defaulttemplates.h include/KF5/templateparser/globalsettings_templateparser.h include/KF5/templateparser/templateconvertcommandjob.h include/KF5/templateparser/templateparser_export.h include/KF5/templateparser/templateparseremailaddressrequesterbase.h include/KF5/templateparser/templateparserextracthtmlinforesult.h include/KF5/templateparser/templateparserjob.h include/KF5/templateparser/templatescommandmenu.h include/KF5/templateparser/templatesconfiguration.h include/KF5/templateparser/templatesconfiguration_kfg.h include/KF5/templateparser/templatesinsertcommandaction.h include/KF5/templateparser/templatesinsertcommandpushbutton.h include/KF5/templateparser/templatestextedit.h include/KF5/templateparser/templatesutil.h include/KF5/templateparser/ui_templatesconfiguration_base.h include/KF5/templateparser_version.h include/KF5/webengineviewer/checkphishingurlcache.h include/KF5/webengineviewer/checkphishingurljob.h include/KF5/webengineviewer/checkphishingurlutil.h include/KF5/webengineviewer/createphishingurldatabasejob.h include/KF5/webengineviewer/findbarbase.h include/KF5/webengineviewer/findbarwebengineview.h include/KF5/webengineviewer/hashcachemanager.h include/KF5/webengineviewer/interceptormanager.h include/KF5/webengineviewer/localdatabasemanager.h include/KF5/webengineviewer/networkpluginurlinterceptor.h include/KF5/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/webengineviewer/networkurlinterceptor.h include/KF5/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/webengineviewer/searchfullhashjob.h include/KF5/webengineviewer/updatedatabaseinfo.h include/KF5/webengineviewer/webengineaccesskey.h include/KF5/webengineviewer/webengineexporthtmlpagejob.h include/KF5/webengineviewer/webengineexportpdfpagejob.h include/KF5/webengineviewer/webenginemanagescript.h include/KF5/webengineviewer/webenginepage.h include/KF5/webengineviewer/webenginescript.h include/KF5/webengineviewer/webengineview.h include/KF5/webengineviewer/webengineviewer_export.h include/KF5/webengineviewer/webhittest.h include/KF5/webengineviewer/webhittestresult.h include/KF5/webengineviewer/zoomactionmenu.h include/KF5/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/kconf_update/messageviewer.upd 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/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.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/libmessagelist.mo +share/locale/ta/LC_MESSAGES/libmessageviewer.mo +share/locale/ta/LC_MESSAGES/libmimetreeparser.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/5.2/header.html share/messageviewer/defaultthemes/5.2/kmail_default.desktop share/messageviewer/defaultthemes/5.2/photo.png share/messageviewer/defaultthemes/5.2/photo.svg share/messageviewer/defaultthemes/5.2/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 d1d0a205858a..46984f46a463 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741550 -SHA256 (KDE/release-service/21.04.1/pimcommon-21.04.1.tar.xz) = 7dbed3b542f7a1c8f78fa6a96b8687fa460c6264fb9cc85b372ca16c723c11ba -SIZE (KDE/release-service/21.04.1/pimcommon-21.04.1.tar.xz) = 369308 +TIMESTAMP = 1623521029 +SHA256 (KDE/release-service/21.04.2/pimcommon-21.04.2.tar.xz) = 77412d4fe4caebe40fdb93f3816d37d6c2f6afb855035eea18fd710327d9a37d +SIZE (KDE/release-service/21.04.2/pimcommon-21.04.2.tar.xz) = 369304 diff --git a/net/zeroconf-ioslave/distinfo b/net/zeroconf-ioslave/distinfo index 9bf71ed4f1da..b6008b350cb7 100644 --- a/net/zeroconf-ioslave/distinfo +++ b/net/zeroconf-ioslave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741551 -SHA256 (KDE/release-service/21.04.1/zeroconf-ioslave-21.04.1.tar.xz) = f270de0b5012dd084f44b21eb72ed04b22d67ea8a9cfdd0065058031217586af -SIZE (KDE/release-service/21.04.1/zeroconf-ioslave-21.04.1.tar.xz) = 43340 +TIMESTAMP = 1623521030 +SHA256 (KDE/release-service/21.04.2/zeroconf-ioslave-21.04.2.tar.xz) = 79210a2bfc13ea58c4b0cf7a72ed7338ceae16918d8d8b2355ed3fe3b10bbdc0 +SIZE (KDE/release-service/21.04.2/zeroconf-ioslave-21.04.2.tar.xz) = 44352 diff --git a/net/zeroconf-ioslave/pkg-plist b/net/zeroconf-ioslave/pkg-plist index 564c3b42109c..8120c1fe11e5 100644 --- a/net/zeroconf-ioslave/pkg-plist +++ b/net/zeroconf-ioslave/pkg-plist @@ -1,58 +1,63 @@ %%QT_PLUGINDIR%%/kded_dnssdwatcher.so %%QT_PLUGINDIR%%/kf5/kio/zeroconf.so share/dbus-1/interfaces/org.kde.kdnssd.xml share/kservices5/kded/dnssdwatcher.desktop share/locale/ar/LC_MESSAGES/kio5_zeroconf.mo +share/locale/be/LC_MESSAGES/kio5_zeroconf.mo share/locale/bg/LC_MESSAGES/kio5_zeroconf.mo share/locale/bs/LC_MESSAGES/kio5_zeroconf.mo share/locale/ca/LC_MESSAGES/kio5_zeroconf.mo share/locale/ca@valencia/LC_MESSAGES/kio5_zeroconf.mo share/locale/cs/LC_MESSAGES/kio5_zeroconf.mo share/locale/da/LC_MESSAGES/kio5_zeroconf.mo share/locale/de/LC_MESSAGES/kio5_zeroconf.mo share/locale/el/LC_MESSAGES/kio5_zeroconf.mo share/locale/en_GB/LC_MESSAGES/kio5_zeroconf.mo share/locale/eo/LC_MESSAGES/kio5_zeroconf.mo share/locale/es/LC_MESSAGES/kio5_zeroconf.mo share/locale/et/LC_MESSAGES/kio5_zeroconf.mo share/locale/eu/LC_MESSAGES/kio5_zeroconf.mo share/locale/fa/LC_MESSAGES/kio5_zeroconf.mo share/locale/fi/LC_MESSAGES/kio5_zeroconf.mo share/locale/fr/LC_MESSAGES/kio5_zeroconf.mo share/locale/ga/LC_MESSAGES/kio5_zeroconf.mo share/locale/gl/LC_MESSAGES/kio5_zeroconf.mo share/locale/hi/LC_MESSAGES/kio5_zeroconf.mo share/locale/hr/LC_MESSAGES/kio5_zeroconf.mo share/locale/hu/LC_MESSAGES/kio5_zeroconf.mo share/locale/ia/LC_MESSAGES/kio5_zeroconf.mo share/locale/is/LC_MESSAGES/kio5_zeroconf.mo share/locale/it/LC_MESSAGES/kio5_zeroconf.mo share/locale/ja/LC_MESSAGES/kio5_zeroconf.mo share/locale/kk/LC_MESSAGES/kio5_zeroconf.mo share/locale/km/LC_MESSAGES/kio5_zeroconf.mo share/locale/ko/LC_MESSAGES/kio5_zeroconf.mo share/locale/lt/LC_MESSAGES/kio5_zeroconf.mo share/locale/lv/LC_MESSAGES/kio5_zeroconf.mo share/locale/ml/LC_MESSAGES/kio5_zeroconf.mo share/locale/mr/LC_MESSAGES/kio5_zeroconf.mo share/locale/nb/LC_MESSAGES/kio5_zeroconf.mo share/locale/nds/LC_MESSAGES/kio5_zeroconf.mo share/locale/nl/LC_MESSAGES/kio5_zeroconf.mo share/locale/nn/LC_MESSAGES/kio5_zeroconf.mo share/locale/pa/LC_MESSAGES/kio5_zeroconf.mo share/locale/pl/LC_MESSAGES/kio5_zeroconf.mo share/locale/pt/LC_MESSAGES/kio5_zeroconf.mo share/locale/pt_BR/LC_MESSAGES/kio5_zeroconf.mo share/locale/ro/LC_MESSAGES/kio5_zeroconf.mo share/locale/ru/LC_MESSAGES/kio5_zeroconf.mo +share/locale/se/LC_MESSAGES/kio5_zeroconf.mo share/locale/sk/LC_MESSAGES/kio5_zeroconf.mo share/locale/sl/LC_MESSAGES/kio5_zeroconf.mo +share/locale/sq/LC_MESSAGES/kio5_zeroconf.mo share/locale/sr/LC_MESSAGES/kio5_zeroconf.mo share/locale/sv/LC_MESSAGES/kio5_zeroconf.mo +share/locale/ta/LC_MESSAGES/kio5_zeroconf.mo share/locale/tr/LC_MESSAGES/kio5_zeroconf.mo share/locale/ug/LC_MESSAGES/kio5_zeroconf.mo share/locale/uk/LC_MESSAGES/kio5_zeroconf.mo +share/locale/vi/LC_MESSAGES/kio5_zeroconf.mo share/locale/zh_CN/LC_MESSAGES/kio5_zeroconf.mo share/locale/zh_TW/LC_MESSAGES/kio5_zeroconf.mo share/metainfo/org.kde.zeroconf-ioslave.metainfo.xml share/remoteview/zeroconf.desktop diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 7346c7cb1415..eb39613bcf12 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741551 -SHA256 (KDE/release-service/21.04.1/print-manager-21.04.1.tar.xz) = 57d40eae1dd0dd25a2eaecfada541a65534d4f1a535d143f9e1af8108d7584b3 -SIZE (KDE/release-service/21.04.1/print-manager-21.04.1.tar.xz) = 259112 +TIMESTAMP = 1623521032 +SHA256 (KDE/release-service/21.04.2/print-manager-21.04.2.tar.xz) = b1fb3517e31cf33e9c31cdfc92a8ed989c6239da1ffeb8cc07f135edc932bb30 +SIZE (KDE/release-service/21.04.2/print-manager-21.04.2.tar.xz) = 263920 diff --git a/print/print-manager/pkg-plist b/print/print-manager/pkg-plist index 58740d39740f..13e7c6924a11 100644 --- a/print/print-manager/pkg-plist +++ b/print/print-manager/pkg-plist @@ -1,118 +1,122 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kcm_printer_manager.so %%QT_PLUGINDIR%%/kf5/kded/printmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/org.kde.ConfigurePrinter.desktop share/applications/org.kde.PrintQueue.desktop share/applications/org.kde.kde-add-printer.desktop share/knotifications5/printmanager.notifyrc share/kservices5/kcm_printer_manager.desktop share/kservices5/plasma-applet-org.kde.plasma.printmanager.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ar/LC_MESSAGES/print-manager.mo share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ast/LC_MESSAGES/print-manager.mo +share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/az/LC_MESSAGES/print-manager.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bg/LC_MESSAGES/print-manager.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/bs/LC_MESSAGES/print-manager.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca/LC_MESSAGES/print-manager.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ca@valencia/LC_MESSAGES/print-manager.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/cs/LC_MESSAGES/print-manager.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/da/LC_MESSAGES/print-manager.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/de/LC_MESSAGES/print-manager.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/el/LC_MESSAGES/print-manager.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/en_GB/LC_MESSAGES/print-manager.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/es/LC_MESSAGES/print-manager.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/et/LC_MESSAGES/print-manager.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/eu/LC_MESSAGES/print-manager.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fi/LC_MESSAGES/print-manager.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/fr/LC_MESSAGES/print-manager.mo share/locale/ga/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ga/LC_MESSAGES/print-manager.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/gl/LC_MESSAGES/print-manager.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/hu/LC_MESSAGES/print-manager.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ia/LC_MESSAGES/print-manager.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/id/LC_MESSAGES/print-manager.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/it/LC_MESSAGES/print-manager.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ja/LC_MESSAGES/print-manager.mo share/locale/kk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/kk/LC_MESSAGES/print-manager.mo share/locale/km/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/km/LC_MESSAGES/print-manager.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ko/LC_MESSAGES/print-manager.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/lt/LC_MESSAGES/print-manager.mo share/locale/mr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/mr/LC_MESSAGES/print-manager.mo share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nb/LC_MESSAGES/print-manager.mo share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nds/LC_MESSAGES/print-manager.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nl/LC_MESSAGES/print-manager.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/nn/LC_MESSAGES/print-manager.mo share/locale/pa/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pa/LC_MESSAGES/print-manager.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pl/LC_MESSAGES/print-manager.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt/LC_MESSAGES/print-manager.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/pt_BR/LC_MESSAGES/print-manager.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ro/LC_MESSAGES/print-manager.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ru/LC_MESSAGES/print-manager.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sk/LC_MESSAGES/print-manager.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sl/LC_MESSAGES/print-manager.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sr/LC_MESSAGES/print-manager.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/sv/LC_MESSAGES/print-manager.mo +share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/tg/LC_MESSAGES/print-manager.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/tr/LC_MESSAGES/print-manager.mo share/locale/ug/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ug/LC_MESSAGES/print-manager.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/uk/LC_MESSAGES/print-manager.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_CN/LC_MESSAGES/print-manager.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/zh_TW/LC_MESSAGES/print-manager.mo share/metainfo/org.kde.plasma.printmanager.appdata.xml share/metainfo/org.kde.print-manager.metainfo.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PopupDialog.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/PrinterItem.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/config.qml share/plasma/plasmoids/org.kde.plasma.printmanager/contents/ui/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.desktop share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 5786c0c66fd3..3e9bb6e3aaf2 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741553 -SHA256 (KDE/release-service/21.04.1/kalzium-21.04.1.tar.xz) = 5769fde1c75b097337527b233b4c40c08e86efeeab76b1832c80fb9ecacc202a -SIZE (KDE/release-service/21.04.1/kalzium-21.04.1.tar.xz) = 24543488 +TIMESTAMP = 1623521034 +SHA256 (KDE/release-service/21.04.2/kalzium-21.04.2.tar.xz) = e8db393ec6c1a8193a1de71200d0af97a9783c542b433efb472f4b3eaaadc8bb +SIZE (KDE/release-service/21.04.2/kalzium-21.04.2.tar.xz) = 24589564 diff --git a/science/kalzium/pkg-plist b/science/kalzium/pkg-plist index bc57cde0d8a7..90bf6559a0ce 100644 --- a/science/kalzium/pkg-plist +++ b/science/kalzium/pkg-plist @@ -1,693 +1,703 @@ bin/kalzium include/libkdeedu/chemicaldataobject.h include/libkdeedu/element.h include/libkdeedu/elementparser.h include/libkdeedu/isotope.h include/libkdeedu/isotopeparser.h include/libkdeedu/libkdeedu_science_export.h include/libkdeedu/moleculeparser.h include/libkdeedu/parser.h include/libkdeedu/psetables.h include/libkdeedu/spectrum.h include/libkdeedu/spectrumparser.h lib/libcompoundviewer.so lib/libcompoundviewer.so.5 lib/libcompoundviewer.so.5.0.0 lib/libscience.so lib/libscience.so.5 lib/libscience.so.5.0.0 man/ca/man1/kalzium.1.gz man/da/man1/kalzium.1.gz man/de/man1/kalzium.1.gz man/es/man1/kalzium.1.gz man/et/man1/kalzium.1.gz man/fr/man1/kalzium.1.gz man/gl/man1/kalzium.1.gz man/it/man1/kalzium.1.gz man/man1/kalzium.1.gz man/nl/man1/kalzium.1.gz man/pl/man1/kalzium.1.gz man/pt/man1/kalzium.1.gz man/pt_BR/man1/kalzium.1.gz man/ru/man1/kalzium.1.gz man/sv/man1/kalzium.1.gz man/uk/man1/kalzium.1.gz share/applications/org.kde.kalzium.desktop share/applications/org.kde.kalzium_cml.desktop share/config.kcfg/kalzium.kcfg share/icons/hicolor/128x128/apps/kalzium.png share/icons/hicolor/16x16/apps/kalzium.png share/icons/hicolor/22x22/apps/kalzium.png share/icons/hicolor/32x32/apps/kalzium.png share/icons/hicolor/48x48/apps/kalzium.png share/icons/hicolor/64x64/apps/kalzium.png share/icons/hicolor/scalable/apps/kalzium.svgz %%DATADIR%%/data/bg.jpg %%DATADIR%%/data/hazardsymbols/hazard_C.png %%DATADIR%%/data/hazardsymbols/hazard_E.png %%DATADIR%%/data/hazardsymbols/hazard_F.png %%DATADIR%%/data/hazardsymbols/hazard_N.png %%DATADIR%%/data/hazardsymbols/hazard_O.png %%DATADIR%%/data/hazardsymbols/hazard_T.png %%DATADIR%%/data/hazardsymbols/hazard_X.png %%DATADIR%%/data/htmlview/abundance.png %%DATADIR%%/data/htmlview/boilingpoint.png %%DATADIR%%/data/htmlview/book.png %%DATADIR%%/data/htmlview/discovery.png %%DATADIR%%/data/htmlview/electronaffinity.png %%DATADIR%%/data/htmlview/icons.svg %%DATADIR%%/data/htmlview/ionization.png %%DATADIR%%/data/htmlview/mass.png %%DATADIR%%/data/htmlview/meltingpoint.png %%DATADIR%%/data/htmlview/radius.png %%DATADIR%%/data/htmlview/structure.png %%DATADIR%%/data/iconsets/school/1.svg %%DATADIR%%/data/iconsets/school/10.svg %%DATADIR%%/data/iconsets/school/100.svg %%DATADIR%%/data/iconsets/school/101.svg %%DATADIR%%/data/iconsets/school/102.svg %%DATADIR%%/data/iconsets/school/103.svg %%DATADIR%%/data/iconsets/school/104.svg %%DATADIR%%/data/iconsets/school/105.svg %%DATADIR%%/data/iconsets/school/106.svg %%DATADIR%%/data/iconsets/school/107.svg %%DATADIR%%/data/iconsets/school/108.svg %%DATADIR%%/data/iconsets/school/109.svg %%DATADIR%%/data/iconsets/school/11.svg %%DATADIR%%/data/iconsets/school/110.svg %%DATADIR%%/data/iconsets/school/111.svg %%DATADIR%%/data/iconsets/school/112.svg %%DATADIR%%/data/iconsets/school/113.svg %%DATADIR%%/data/iconsets/school/114.svg %%DATADIR%%/data/iconsets/school/115.svg %%DATADIR%%/data/iconsets/school/116.svg %%DATADIR%%/data/iconsets/school/117.svg %%DATADIR%%/data/iconsets/school/118.svg %%DATADIR%%/data/iconsets/school/12.svg %%DATADIR%%/data/iconsets/school/13.svg %%DATADIR%%/data/iconsets/school/14.svg %%DATADIR%%/data/iconsets/school/15.svg %%DATADIR%%/data/iconsets/school/16.svg %%DATADIR%%/data/iconsets/school/17.svg %%DATADIR%%/data/iconsets/school/18.svg %%DATADIR%%/data/iconsets/school/19.svg %%DATADIR%%/data/iconsets/school/2.svg %%DATADIR%%/data/iconsets/school/20.svg %%DATADIR%%/data/iconsets/school/21.svg %%DATADIR%%/data/iconsets/school/22.svg %%DATADIR%%/data/iconsets/school/23.svg %%DATADIR%%/data/iconsets/school/24.svg %%DATADIR%%/data/iconsets/school/25.svg %%DATADIR%%/data/iconsets/school/26.svg %%DATADIR%%/data/iconsets/school/27.svg %%DATADIR%%/data/iconsets/school/28.svg %%DATADIR%%/data/iconsets/school/29.svg %%DATADIR%%/data/iconsets/school/3.svg %%DATADIR%%/data/iconsets/school/30.svg %%DATADIR%%/data/iconsets/school/31.svg %%DATADIR%%/data/iconsets/school/32.svg %%DATADIR%%/data/iconsets/school/33.svg %%DATADIR%%/data/iconsets/school/34.svg %%DATADIR%%/data/iconsets/school/35.svg %%DATADIR%%/data/iconsets/school/36.svg %%DATADIR%%/data/iconsets/school/37.svg %%DATADIR%%/data/iconsets/school/38.svg %%DATADIR%%/data/iconsets/school/39.svg %%DATADIR%%/data/iconsets/school/4.svg %%DATADIR%%/data/iconsets/school/40.svg %%DATADIR%%/data/iconsets/school/41.svg %%DATADIR%%/data/iconsets/school/42.svg %%DATADIR%%/data/iconsets/school/43.svg %%DATADIR%%/data/iconsets/school/44.svg %%DATADIR%%/data/iconsets/school/45.svg %%DATADIR%%/data/iconsets/school/46.svg %%DATADIR%%/data/iconsets/school/47.svg %%DATADIR%%/data/iconsets/school/48.svg %%DATADIR%%/data/iconsets/school/49.svg %%DATADIR%%/data/iconsets/school/5.svg %%DATADIR%%/data/iconsets/school/50.svg %%DATADIR%%/data/iconsets/school/51.svg %%DATADIR%%/data/iconsets/school/52.svg %%DATADIR%%/data/iconsets/school/53.svg %%DATADIR%%/data/iconsets/school/54.svg %%DATADIR%%/data/iconsets/school/55.svg %%DATADIR%%/data/iconsets/school/56.svg %%DATADIR%%/data/iconsets/school/57.svg %%DATADIR%%/data/iconsets/school/58.svg %%DATADIR%%/data/iconsets/school/59.svg %%DATADIR%%/data/iconsets/school/6.svg %%DATADIR%%/data/iconsets/school/60.svg %%DATADIR%%/data/iconsets/school/61.svg %%DATADIR%%/data/iconsets/school/62.svg %%DATADIR%%/data/iconsets/school/63.svg %%DATADIR%%/data/iconsets/school/64.svg %%DATADIR%%/data/iconsets/school/65.svg %%DATADIR%%/data/iconsets/school/66.svg %%DATADIR%%/data/iconsets/school/67.svg %%DATADIR%%/data/iconsets/school/68.svg %%DATADIR%%/data/iconsets/school/69.svg %%DATADIR%%/data/iconsets/school/7.svg %%DATADIR%%/data/iconsets/school/70.svg %%DATADIR%%/data/iconsets/school/71.svg %%DATADIR%%/data/iconsets/school/72.svg %%DATADIR%%/data/iconsets/school/73.svg %%DATADIR%%/data/iconsets/school/74.svg %%DATADIR%%/data/iconsets/school/75.svg %%DATADIR%%/data/iconsets/school/76.svg %%DATADIR%%/data/iconsets/school/77.svg %%DATADIR%%/data/iconsets/school/78.svg %%DATADIR%%/data/iconsets/school/79.svg %%DATADIR%%/data/iconsets/school/8.svg %%DATADIR%%/data/iconsets/school/80.svg %%DATADIR%%/data/iconsets/school/81.svg %%DATADIR%%/data/iconsets/school/82.svg %%DATADIR%%/data/iconsets/school/83.svg %%DATADIR%%/data/iconsets/school/84.svg %%DATADIR%%/data/iconsets/school/85.svg %%DATADIR%%/data/iconsets/school/86.svg %%DATADIR%%/data/iconsets/school/87.svg %%DATADIR%%/data/iconsets/school/88.svg %%DATADIR%%/data/iconsets/school/89.svg %%DATADIR%%/data/iconsets/school/9.svg %%DATADIR%%/data/iconsets/school/90.svg %%DATADIR%%/data/iconsets/school/91.svg %%DATADIR%%/data/iconsets/school/92.svg %%DATADIR%%/data/iconsets/school/93.svg %%DATADIR%%/data/iconsets/school/94.svg %%DATADIR%%/data/iconsets/school/95.svg %%DATADIR%%/data/iconsets/school/96.svg %%DATADIR%%/data/iconsets/school/97.svg %%DATADIR%%/data/iconsets/school/98.svg %%DATADIR%%/data/iconsets/school/99.svg %%DATADIR%%/data/iconsets/school/iconinformation.txt %%DATADIR%%/data/knowledge.xml %%DATADIR%%/data/latticeicons/cf.svgz %%DATADIR%%/data/latticeicons/ci.svgz %%DATADIR%%/data/latticeicons/cp.svgz %%DATADIR%%/data/latticeicons/hp.svgz %%DATADIR%%/data/latticeicons/hr.svgz %%DATADIR%%/data/latticeicons/mp.svgz %%DATADIR%%/data/latticeicons/op.svgz %%DATADIR%%/data/latticeicons/tp.svgz %%DATADIR%%/data/maps/de.png %%DATADIR%%/data/maps/dk.png %%DATADIR%%/data/maps/es.png %%DATADIR%%/data/maps/fi.png %%DATADIR%%/data/maps/fr.png %%DATADIR%%/data/maps/it.png %%DATADIR%%/data/maps/ru.png %%DATADIR%%/data/maps/ruus.png %%DATADIR%%/data/maps/se.png %%DATADIR%%/data/maps/uk.png %%DATADIR%%/data/maps/ukfr.png %%DATADIR%%/data/maps/ukse.png %%DATADIR%%/data/maps/us.png %%DATADIR%%/data/molecules/2-aminoethanol.cml %%DATADIR%%/data/molecules/2-thioethanol.cml %%DATADIR%%/data/molecules/2_2_2-trifluoroethanol.cml %%DATADIR%%/data/molecules/but-2-yne-1_4-diol.cml %%DATADIR%%/data/molecules/butane.cml %%DATADIR%%/data/molecules/carbon_dioxide.cml %%DATADIR%%/data/molecules/carbon_monoxide.cml %%DATADIR%%/data/molecules/ethane-1_2-diol.cml %%DATADIR%%/data/molecules/ethane.cml %%DATADIR%%/data/molecules/ethanol.cml %%DATADIR%%/data/molecules/methane.cml %%DATADIR%%/data/molecules/methanol.cml %%DATADIR%%/data/molecules/porphyrin.cml %%DATADIR%%/data/molecules/propan-1-ol.cml %%DATADIR%%/data/molecules/propan-2-ol.cml %%DATADIR%%/data/molecules/propane.cml %%DATADIR%%/data/molecules/thiophene.cml %%DATADIR%%/data/molecules/water.cml %%DATADIR%%/data/toolpics/abzug.jpg %%DATADIR%%/data/toolpics/becherglas.jpg %%DATADIR%%/data/toolpics/brechungsmesser.jpg %%DATADIR%%/data/toolpics/brenner.jpg %%DATADIR%%/data/toolpics/destillierbruecke.jpg %%DATADIR%%/data/toolpics/dsc.jpg %%DATADIR%%/data/toolpics/erlenmeyerkolben.jpg %%DATADIR%%/data/toolpics/exikator.jpg %%DATADIR%%/data/toolpics/halter.jpg %%DATADIR%%/data/toolpics/heizplatte.jpg %%DATADIR%%/data/toolpics/hplc.jpg %%DATADIR%%/data/toolpics/kolbenprober.png %%DATADIR%%/data/toolpics/korkring.jpg %%DATADIR%%/data/toolpics/messzylinder.jpg %%DATADIR%%/data/toolpics/moerser.jpg %%DATADIR%%/data/toolpics/phpapier.jpg %%DATADIR%%/data/toolpics/pileusball.jpg %%DATADIR%%/data/toolpics/pipette.jpg %%DATADIR%%/data/toolpics/rg-halter.jpg %%DATADIR%%/data/toolpics/rg-staender.jpg %%DATADIR%%/data/toolpics/rg.jpg %%DATADIR%%/data/toolpics/rotationsverdampfer.jpg %%DATADIR%%/data/toolpics/rueckflusskuehler.jpg %%DATADIR%%/data/toolpics/ruehrfisch.jpg %%DATADIR%%/data/toolpics/rundkolben.jpg %%DATADIR%%/data/toolpics/scheidetrichter.jpg %%DATADIR%%/data/toolpics/schutzbrille.jpg %%DATADIR%%/data/toolpics/spatel.jpg %%DATADIR%%/data/toolpics/spritzflasche.jpg %%DATADIR%%/data/toolpics/thermometer.jpg %%DATADIR%%/data/toolpics/thermometer2.jpg %%DATADIR%%/data/toolpics/tonschale.jpg %%DATADIR%%/data/toolpics/trichter.jpg %%DATADIR%%/data/toolpics/trockenrohr.jpg %%DATADIR%%/data/toolpics/tropftrichter.jpg %%DATADIR%%/data/toolpics/uhrglas.jpg %%DATADIR%%/data/toolpics/verteiler.jpg %%DATADIR%%/data/toolpics/vollpipette.jpg %%DATADIR%%/data/toolpics/waage.jpg %%DATADIR%%/data/toolpics/wasserstrahlpumpe.jpg %%DATADIR%%/data/tools.xml %%DATADIR%%/icons/hicolor/16x16/actions/calculate.png %%DATADIR%%/icons/hicolor/16x16/actions/chemical.png %%DATADIR%%/icons/hicolor/16x16/actions/elempic.png %%DATADIR%%/icons/hicolor/16x16/actions/energies.png %%DATADIR%%/icons/hicolor/16x16/actions/eqchem.png %%DATADIR%%/icons/hicolor/16x16/actions/glossary.png %%DATADIR%%/icons/hicolor/16x16/actions/isotopemap.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/16x16/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/16x16/actions/legend.png %%DATADIR%%/icons/hicolor/16x16/actions/misc.png %%DATADIR%%/icons/hicolor/16x16/actions/numbers.png %%DATADIR%%/icons/hicolor/16x16/actions/orbits.png %%DATADIR%%/icons/hicolor/16x16/actions/overview.png %%DATADIR%%/icons/hicolor/16x16/actions/plot.png %%DATADIR%%/icons/hicolor/16x16/actions/sidebar.png %%DATADIR%%/icons/hicolor/16x16/actions/spectrum.png %%DATADIR%%/icons/hicolor/16x16/actions/statematter.png %%DATADIR%%/icons/hicolor/16x16/actions/timeline.png %%DATADIR%%/icons/hicolor/16x16/actions/tooltip.png %%DATADIR%%/icons/hicolor/22x22/actions/calculate.png %%DATADIR%%/icons/hicolor/22x22/actions/chemical.png %%DATADIR%%/icons/hicolor/22x22/actions/elempic.png %%DATADIR%%/icons/hicolor/22x22/actions/energies.png %%DATADIR%%/icons/hicolor/22x22/actions/eqchem.png %%DATADIR%%/icons/hicolor/22x22/actions/glossary.png %%DATADIR%%/icons/hicolor/22x22/actions/isotopemap.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/22x22/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/22x22/actions/legend.png %%DATADIR%%/icons/hicolor/22x22/actions/numbers.png %%DATADIR%%/icons/hicolor/22x22/actions/orbits.png %%DATADIR%%/icons/hicolor/22x22/actions/overview.png %%DATADIR%%/icons/hicolor/22x22/actions/plot.png %%DATADIR%%/icons/hicolor/22x22/actions/sidebar.png %%DATADIR%%/icons/hicolor/22x22/actions/spectrum.png %%DATADIR%%/icons/hicolor/22x22/actions/statematter.png %%DATADIR%%/icons/hicolor/22x22/actions/timeline.png %%DATADIR%%/icons/hicolor/22x22/actions/tooltip.png %%DATADIR%%/icons/hicolor/32x32/actions/calculate.png %%DATADIR%%/icons/hicolor/32x32/actions/chemical.png %%DATADIR%%/icons/hicolor/32x32/actions/elempic.png %%DATADIR%%/icons/hicolor/32x32/actions/energies.png %%DATADIR%%/icons/hicolor/32x32/actions/eqchem.png %%DATADIR%%/icons/hicolor/32x32/actions/glossary.png %%DATADIR%%/icons/hicolor/32x32/actions/isotopemap.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/32x32/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/32x32/actions/legend.png %%DATADIR%%/icons/hicolor/32x32/actions/misc.png %%DATADIR%%/icons/hicolor/32x32/actions/numbers.png %%DATADIR%%/icons/hicolor/32x32/actions/orbits.png %%DATADIR%%/icons/hicolor/32x32/actions/overview.png %%DATADIR%%/icons/hicolor/32x32/actions/plot.png %%DATADIR%%/icons/hicolor/32x32/actions/sidebar.png %%DATADIR%%/icons/hicolor/32x32/actions/spectrum.png %%DATADIR%%/icons/hicolor/32x32/actions/statematter.png %%DATADIR%%/icons/hicolor/32x32/actions/timeline.png %%DATADIR%%/icons/hicolor/32x32/actions/tooltip.png %%DATADIR%%/icons/hicolor/48x48/actions/calculate.png %%DATADIR%%/icons/hicolor/48x48/actions/chemical.png %%DATADIR%%/icons/hicolor/48x48/actions/energies.png %%DATADIR%%/icons/hicolor/48x48/actions/eqchem.png %%DATADIR%%/icons/hicolor/48x48/actions/glossary.png %%DATADIR%%/icons/hicolor/48x48/actions/isotopemap.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/48x48/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/48x48/actions/legend.png %%DATADIR%%/icons/hicolor/48x48/actions/misc.png %%DATADIR%%/icons/hicolor/48x48/actions/numbers.png %%DATADIR%%/icons/hicolor/48x48/actions/orbits.png %%DATADIR%%/icons/hicolor/48x48/actions/overview.png %%DATADIR%%/icons/hicolor/48x48/actions/plot.png %%DATADIR%%/icons/hicolor/48x48/actions/sidebar.png %%DATADIR%%/icons/hicolor/48x48/actions/spectrum.png %%DATADIR%%/icons/hicolor/48x48/actions/statematter.png %%DATADIR%%/icons/hicolor/48x48/actions/timeline.png %%DATADIR%%/icons/hicolor/48x48/actions/tooltip.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_molviewer.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_rs.png %%DATADIR%%/icons/hicolor/64x64/actions/kalzium_tables.png %%DATADIR%%/icons/hicolor/64x64/actions/numbers.png %%DATADIR%%/icons/hicolor/scalable/actions/calculate.svgz %%DATADIR%%/icons/hicolor/scalable/actions/chemical.svgz %%DATADIR%%/icons/hicolor/scalable/actions/elempic.svgz %%DATADIR%%/icons/hicolor/scalable/actions/energies.svgz %%DATADIR%%/icons/hicolor/scalable/actions/eqchem.svgz %%DATADIR%%/icons/hicolor/scalable/actions/glossary.svgz %%DATADIR%%/icons/hicolor/scalable/actions/isotopemap.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_molviewer.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_rs.svgz %%DATADIR%%/icons/hicolor/scalable/actions/kalzium_tables.svgz %%DATADIR%%/icons/hicolor/scalable/actions/misc.svgz %%DATADIR%%/icons/hicolor/scalable/actions/numbers.svgz %%DATADIR%%/icons/hicolor/scalable/actions/orbits.svgz %%DATADIR%%/icons/hicolor/scalable/actions/overview.svgz %%DATADIR%%/icons/hicolor/scalable/actions/plot.svgz %%DATADIR%%/icons/hicolor/scalable/actions/sidebar.svgz %%DATADIR%%/icons/hicolor/scalable/actions/spectrum.svgz %%DATADIR%%/icons/hicolor/scalable/actions/statematter.svgz %%DATADIR%%/icons/hicolor/scalable/actions/timeline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tooltip.svgz share/knsrcfiles/kalzium.knsrc share/kxmlgui5/kalzium/kalziumui.rc share/libkdeedu/data/elements.xml share/libkdeedu/data/isotopes.xml share/libkdeedu/data/spectra.xml share/libkdeedu/data/symbols.csv share/libkdeedu/data/symbols2.csv share/locale/ar/LC_MESSAGES/kalzium.mo +share/locale/be/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/bg/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/bs/LC_MESSAGES/kalzium.mo share/locale/bs/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/bs/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/bs/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/bs/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ca/LC_MESSAGES/kalzium.mo share/locale/ca/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ca/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ca/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ca/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ca@valencia/LC_MESSAGES/kalzium.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ca@valencia/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/cs/LC_MESSAGES/kalzium.mo share/locale/cs/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/cs/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/cs/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/cs/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/da/LC_MESSAGES/kalzium.mo share/locale/da/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/da/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/da/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/da/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/de/LC_MESSAGES/kalzium.mo share/locale/de/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/de/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/de/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/de/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/el/LC_MESSAGES/kalzium.mo share/locale/el/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/el/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/el/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/el/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/en_GB/LC_MESSAGES/kalzium.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/en_GB/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/eo/LC_MESSAGES/kalzium.mo share/locale/eo/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/eo/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/eo/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/eo/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/es/LC_MESSAGES/kalzium.mo share/locale/es/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/es/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/es/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/es/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/et/LC_MESSAGES/kalzium.mo share/locale/et/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/et/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/et/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/et/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/eu/LC_MESSAGES/kalzium.mo share/locale/eu/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/eu/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fa/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/fi/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fi/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fi/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/fr/LC_MESSAGES/kalzium.mo share/locale/fr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/fr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/fr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/fr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ga/LC_MESSAGES/kalzium.mo share/locale/ga/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ga/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ga/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ga/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/gl/LC_MESSAGES/kalzium.mo share/locale/gl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/gl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/gl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/gl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/he/LC_MESSAGES/kalzium.mo share/locale/he/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/he/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/hi/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/hr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/hr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/hr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/hu/LC_MESSAGES/kalzium.mo share/locale/hu/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/hu/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/hu/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/hu/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/is/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/it/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/it/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/it/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ja/LC_MESSAGES/kalzium.mo share/locale/ja/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ja/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ja/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ja/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/kk/LC_MESSAGES/kalzium.mo share/locale/kk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/kk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/kk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/kk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/km/LC_MESSAGES/kalzium.mo share/locale/km/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/km/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ko/LC_MESSAGES/kalzium.mo share/locale/ko/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ko/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ko/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ko/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/lt/LC_MESSAGES/kalzium.mo share/locale/lt/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/lt/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/lt/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/lt/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/lv/LC_MESSAGES/kalzium.mo share/locale/lv/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/lv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/lv/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/lv/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ml/LC_MESSAGES/kalzium.mo share/locale/ml/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ml/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ml/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ml/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/mr/LC_MESSAGES/kalzium.mo share/locale/mr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/mr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/mr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/mr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nb/LC_MESSAGES/kalzium.mo share/locale/nb/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nb/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nb/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nb/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nds/LC_MESSAGES/kalzium.mo share/locale/nds/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nds/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nds/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nds/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nl/LC_MESSAGES/kalzium.mo share/locale/nl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/nn/LC_MESSAGES/kalzium.mo share/locale/nn/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/nn/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/nn/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/nn/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pa/LC_MESSAGES/kalzium.mo share/locale/pa/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pa/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pa/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pa/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pl/LC_MESSAGES/kalzium.mo share/locale/pl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pl/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pt/LC_MESSAGES/kalzium.mo share/locale/pt/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pt/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pt/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/pt_BR/LC_MESSAGES/kalzium.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/pt_BR/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ro/LC_MESSAGES/kalzium.mo share/locale/ro/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ro/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ro/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ro/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ru/LC_MESSAGES/kalzium.mo share/locale/ru/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ru/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ru/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ru/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/se/LC_MESSAGES/kalzium.mo share/locale/sk/LC_MESSAGES/kalzium.mo share/locale/sk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/sl/LC_MESSAGES/kalzium.mo share/locale/sl/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sl/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sl/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sl/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/sq/LC_MESSAGES/kalzium.mo +share/locale/sq/LC_MESSAGES/plasma_applet_concentrationCalculator.mo +share/locale/sq/LC_MESSAGES/plasma_applet_gasCalculator.mo +share/locale/sq/LC_MESSAGES/plasma_applet_kalzium.mo +share/locale/sq/LC_MESSAGES/plasma_applet_nuclearCalculator.mo +share/locale/sq/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/sv/LC_MESSAGES/kalzium.mo share/locale/sv/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/sv/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/sv/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/sv/LC_MESSAGES/plasma_engine_kalzium.mo +share/locale/ta/LC_MESSAGES/kalzium.mo +share/locale/tg/LC_MESSAGES/kalzium.mo share/locale/tr/LC_MESSAGES/kalzium.mo share/locale/tr/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/tr/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/tr/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/tr/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/ug/LC_MESSAGES/kalzium.mo share/locale/ug/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/ug/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/ug/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/ug/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/uk/LC_MESSAGES/kalzium.mo share/locale/uk/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/uk/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/uk/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/uk/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/zh_CN/LC_MESSAGES/kalzium.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/zh_CN/LC_MESSAGES/plasma_engine_kalzium.mo share/locale/zh_TW/LC_MESSAGES/kalzium.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_Molmasscalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_concentrationCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_gasCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kalzium.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_nuclearCalculator.mo share/locale/zh_TW/LC_MESSAGES/plasma_engine_kalzium.mo share/metainfo/org.kde.kalzium.appdata.xml diff --git a/science/step/distinfo b/science/step/distinfo index 91ca4bb76b6c..c0ec92b5c72e 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741553 -SHA256 (KDE/release-service/21.04.1/step-21.04.1.tar.xz) = 97daa2354edda714b514c91c3831d11a1b5f8b675933de926f7ffafaf06b4b78 -SIZE (KDE/release-service/21.04.1/step-21.04.1.tar.xz) = 963968 +TIMESTAMP = 1623521036 +SHA256 (KDE/release-service/21.04.2/step-21.04.2.tar.xz) = 00ed1c6569caa373775abd09bcb32b77356bf92e9ae3e0026c16c5ec02f8f96a +SIZE (KDE/release-service/21.04.2/step-21.04.2.tar.xz) = 968600 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index 3d12883e951b..0576e4ad081e 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1264 +1,1266 @@ bin/step share/applications/org.kde.step.desktop share/config.kcfg/step.kcfg share/icons/hicolor/128x128/apps/step.png share/icons/hicolor/16x16/apps/step.png share/icons/hicolor/22x22/actions/pointer.png share/icons/hicolor/22x22/actions/step_object_Anchor.png share/icons/hicolor/22x22/actions/step_object_Box.png share/icons/hicolor/22x22/actions/step_object_ChargedParticle.png share/icons/hicolor/22x22/actions/step_object_CircularMotor.png share/icons/hicolor/22x22/actions/step_object_Controller.png share/icons/hicolor/22x22/actions/step_object_CoulombForce.png share/icons/hicolor/22x22/actions/step_object_Disk.png share/icons/hicolor/22x22/actions/step_object_Gas.png share/icons/hicolor/22x22/actions/step_object_GasParticle.png share/icons/hicolor/22x22/actions/step_object_Graph.png share/icons/hicolor/22x22/actions/step_object_GravitationForce.png share/icons/hicolor/22x22/actions/step_object_LinearMotor.png share/icons/hicolor/22x22/actions/step_object_Meter.png share/icons/hicolor/22x22/actions/step_object_Note.png share/icons/hicolor/22x22/actions/step_object_Particle.png share/icons/hicolor/22x22/actions/step_object_Pin.png share/icons/hicolor/22x22/actions/step_object_Polygon.png share/icons/hicolor/22x22/actions/step_object_Rope.png share/icons/hicolor/22x22/actions/step_object_SoftBody.png share/icons/hicolor/22x22/actions/step_object_Spring.png share/icons/hicolor/22x22/actions/step_object_Stick.png share/icons/hicolor/22x22/actions/step_object_Tracer.png share/icons/hicolor/22x22/actions/step_object_WeightForce.png share/icons/hicolor/22x22/apps/step.png share/icons/hicolor/32x32/apps/step.png share/icons/hicolor/48x48/apps/step.png share/icons/hicolor/64x64/apps/step.png share/knsrcfiles/step.knsrc share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo +share/locale/be/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step.mo share/locale/bs/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo share/locale/eo/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo share/locale/fi/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo share/locale/ga/LC_MESSAGES/step.mo share/locale/gl/LC_MESSAGES/step.mo share/locale/hr/LC_MESSAGES/step.mo share/locale/hu/LC_MESSAGES/step.mo share/locale/ia/LC_MESSAGES/step.mo share/locale/ia/LC_MESSAGES/step_example_files.mo share/locale/ia/LC_MESSAGES/step_objinfo_files.mo share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo share/locale/kk/LC_MESSAGES/step.mo share/locale/km/LC_MESSAGES/step.mo share/locale/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_objinfo_files.mo +share/locale/sq/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo share/locale/tr/LC_MESSAGES/step.mo share/locale/ug/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/es/brownian.step %%DATADIR%%/examples/es/doublependulum.step %%DATADIR%%/examples/es/eightpendula.step %%DATADIR%%/examples/es/first.step %%DATADIR%%/examples/es/fourpendula.step %%DATADIR%%/examples/es/gas.step %%DATADIR%%/examples/es/graph.step %%DATADIR%%/examples/es/liquid.step %%DATADIR%%/examples/es/lissajous.step %%DATADIR%%/examples/es/motor.step %%DATADIR%%/examples/es/motor1.step %%DATADIR%%/examples/es/note.step %%DATADIR%%/examples/es/resonance.step %%DATADIR%%/examples/es/softbody.step %%DATADIR%%/examples/es/solar.step %%DATADIR%%/examples/es/springs.step %%DATADIR%%/examples/es/wave.step %%DATADIR%%/examples/et/brownian.step %%DATADIR%%/examples/et/doublependulum.step %%DATADIR%%/examples/et/eightpendula.step %%DATADIR%%/examples/et/first.step %%DATADIR%%/examples/et/fourpendula.step %%DATADIR%%/examples/et/gas.step %%DATADIR%%/examples/et/graph.step %%DATADIR%%/examples/et/liquid.step %%DATADIR%%/examples/et/lissajous.step %%DATADIR%%/examples/et/motor.step %%DATADIR%%/examples/et/motor1.step %%DATADIR%%/examples/et/note.step %%DATADIR%%/examples/et/resonance.step %%DATADIR%%/examples/et/softbody.step %%DATADIR%%/examples/et/solar.step %%DATADIR%%/examples/et/springs.step %%DATADIR%%/examples/et/wave.step %%DATADIR%%/examples/eu/brownian.step %%DATADIR%%/examples/eu/doublependulum.step %%DATADIR%%/examples/eu/eightpendula.step %%DATADIR%%/examples/eu/first.step %%DATADIR%%/examples/eu/fourpendula.step %%DATADIR%%/examples/eu/gas.step %%DATADIR%%/examples/eu/graph.step %%DATADIR%%/examples/eu/liquid.step %%DATADIR%%/examples/eu/lissajous.step %%DATADIR%%/examples/eu/motor.step %%DATADIR%%/examples/eu/motor1.step %%DATADIR%%/examples/eu/note.step %%DATADIR%%/examples/eu/resonance.step %%DATADIR%%/examples/eu/softbody.step %%DATADIR%%/examples/eu/solar.step %%DATADIR%%/examples/eu/springs.step %%DATADIR%%/examples/eu/wave.step %%DATADIR%%/examples/first.step %%DATADIR%%/examples/fourpendula.step %%DATADIR%%/examples/fr/brownian.step %%DATADIR%%/examples/fr/doublependulum.step %%DATADIR%%/examples/fr/eightpendula.step %%DATADIR%%/examples/fr/first.step %%DATADIR%%/examples/fr/fourpendula.step %%DATADIR%%/examples/fr/gas.step %%DATADIR%%/examples/fr/graph.step %%DATADIR%%/examples/fr/liquid.step %%DATADIR%%/examples/fr/lissajous.step %%DATADIR%%/examples/fr/motor.step %%DATADIR%%/examples/fr/motor1.step %%DATADIR%%/examples/fr/note.step %%DATADIR%%/examples/fr/resonance.step %%DATADIR%%/examples/fr/softbody.step %%DATADIR%%/examples/fr/solar.step %%DATADIR%%/examples/fr/springs.step %%DATADIR%%/examples/fr/wave.step %%DATADIR%%/examples/gas.step %%DATADIR%%/examples/graph.step %%DATADIR%%/examples/ia/brownian.step %%DATADIR%%/examples/ia/doublependulum.step %%DATADIR%%/examples/ia/eightpendula.step %%DATADIR%%/examples/ia/first.step %%DATADIR%%/examples/ia/fourpendula.step %%DATADIR%%/examples/ia/gas.step %%DATADIR%%/examples/ia/graph.step %%DATADIR%%/examples/ia/liquid.step %%DATADIR%%/examples/ia/lissajous.step %%DATADIR%%/examples/ia/motor.step %%DATADIR%%/examples/ia/motor1.step %%DATADIR%%/examples/ia/note.step %%DATADIR%%/examples/ia/resonance.step %%DATADIR%%/examples/ia/softbody.step %%DATADIR%%/examples/ia/solar.step %%DATADIR%%/examples/ia/springs.step %%DATADIR%%/examples/ia/wave.step %%DATADIR%%/examples/it/brownian.step %%DATADIR%%/examples/it/doublependulum.step %%DATADIR%%/examples/it/eightpendula.step %%DATADIR%%/examples/it/first.step %%DATADIR%%/examples/it/fourpendula.step %%DATADIR%%/examples/it/gas.step %%DATADIR%%/examples/it/graph.step %%DATADIR%%/examples/it/liquid.step %%DATADIR%%/examples/it/lissajous.step %%DATADIR%%/examples/it/motor.step %%DATADIR%%/examples/it/motor1.step %%DATADIR%%/examples/it/note.step %%DATADIR%%/examples/it/resonance.step %%DATADIR%%/examples/it/softbody.step %%DATADIR%%/examples/it/solar.step %%DATADIR%%/examples/it/springs.step %%DATADIR%%/examples/it/wave.step %%DATADIR%%/examples/ja/brownian.step %%DATADIR%%/examples/ja/doublependulum.step %%DATADIR%%/examples/ja/eightpendula.step %%DATADIR%%/examples/ja/first.step %%DATADIR%%/examples/ja/fourpendula.step %%DATADIR%%/examples/ja/gas.step %%DATADIR%%/examples/ja/graph.step %%DATADIR%%/examples/ja/liquid.step %%DATADIR%%/examples/ja/lissajous.step %%DATADIR%%/examples/ja/motor.step %%DATADIR%%/examples/ja/motor1.step %%DATADIR%%/examples/ja/note.step %%DATADIR%%/examples/ja/resonance.step %%DATADIR%%/examples/ja/softbody.step %%DATADIR%%/examples/ja/solar.step %%DATADIR%%/examples/ja/springs.step %%DATADIR%%/examples/ja/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pl/brownian.step %%DATADIR%%/examples/pl/doublependulum.step %%DATADIR%%/examples/pl/eightpendula.step %%DATADIR%%/examples/pl/first.step %%DATADIR%%/examples/pl/fourpendula.step %%DATADIR%%/examples/pl/gas.step %%DATADIR%%/examples/pl/graph.step %%DATADIR%%/examples/pl/liquid.step %%DATADIR%%/examples/pl/lissajous.step %%DATADIR%%/examples/pl/motor.step %%DATADIR%%/examples/pl/motor1.step %%DATADIR%%/examples/pl/note.step %%DATADIR%%/examples/pl/resonance.step %%DATADIR%%/examples/pl/softbody.step %%DATADIR%%/examples/pl/solar.step %%DATADIR%%/examples/pl/springs.step %%DATADIR%%/examples/pl/wave.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/ia/anchor.html %%DATADIR%%/objinfo/l10n/ia/box.html %%DATADIR%%/objinfo/l10n/ia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ia/coulombforce.html %%DATADIR%%/objinfo/l10n/ia/disk.html %%DATADIR%%/objinfo/l10n/ia/gas.html %%DATADIR%%/objinfo/l10n/ia/gasljforce.html %%DATADIR%%/objinfo/l10n/ia/gasparticle.html %%DATADIR%%/objinfo/l10n/ia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ia/linearmotor.html %%DATADIR%%/objinfo/l10n/ia/meter.html %%DATADIR%%/objinfo/l10n/ia/note.html %%DATADIR%%/objinfo/l10n/ia/particle.html %%DATADIR%%/objinfo/l10n/ia/pin.html %%DATADIR%%/objinfo/l10n/ia/polygon.html %%DATADIR%%/objinfo/l10n/ia/softbody.html %%DATADIR%%/objinfo/l10n/ia/spring.html %%DATADIR%%/objinfo/l10n/ia/weightforce.html %%DATADIR%%/objinfo/l10n/ia/world.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pl/anchor.html %%DATADIR%%/objinfo/l10n/pl/box.html %%DATADIR%%/objinfo/l10n/pl/chargedparticle.html %%DATADIR%%/objinfo/l10n/pl/coulombforce.html %%DATADIR%%/objinfo/l10n/pl/disk.html %%DATADIR%%/objinfo/l10n/pl/gas.html %%DATADIR%%/objinfo/l10n/pl/gasljforce.html %%DATADIR%%/objinfo/l10n/pl/gasparticle.html %%DATADIR%%/objinfo/l10n/pl/gravitationforce.html %%DATADIR%%/objinfo/l10n/pl/linearmotor.html %%DATADIR%%/objinfo/l10n/pl/meter.html %%DATADIR%%/objinfo/l10n/pl/note.html %%DATADIR%%/objinfo/l10n/pl/particle.html %%DATADIR%%/objinfo/l10n/pl/pin.html %%DATADIR%%/objinfo/l10n/pl/polygon.html %%DATADIR%%/objinfo/l10n/pl/softbody.html %%DATADIR%%/objinfo/l10n/pl/spring.html %%DATADIR%%/objinfo/l10n/pl/weightforce.html %%DATADIR%%/objinfo/l10n/pl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/ia/tutorial1.step %%DATADIR%%/tutorials/ia/tutorial2.step %%DATADIR%%/tutorials/ia/tutorial3.step %%DATADIR%%/tutorials/ia/tutorial4.step %%DATADIR%%/tutorials/ia/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pl/tutorial1.step %%DATADIR%%/tutorials/pl/tutorial2.step %%DATADIR%%/tutorials/pl/tutorial3.step %%DATADIR%%/tutorials/pl/tutorial4.step %%DATADIR%%/tutorials/pl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/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 bcfb61512b0d..aa353abc45ff 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741554 -SHA256 (KDE/release-service/21.04.1/kgpg-21.04.1.tar.xz) = 03ce0e027e8cca477a34c1ad9bae74c6076044a2624a964917690aa4769ffc9f -SIZE (KDE/release-service/21.04.1/kgpg-21.04.1.tar.xz) = 2886248 +TIMESTAMP = 1623521037 +SHA256 (KDE/release-service/21.04.2/kgpg-21.04.2.tar.xz) = 6cc8fb46bca6ccce2e8d0966d22f86de2a35909ba6662a08511926665b4bdb34 +SIZE (KDE/release-service/21.04.2/kgpg-21.04.2.tar.xz) = 2937432 diff --git a/security/kgpg/pkg-plist b/security/kgpg/pkg-plist index f8fd07999c0d..9cfdc1236a2e 100644 --- a/security/kgpg/pkg-plist +++ b/security/kgpg/pkg-plist @@ -1,105 +1,110 @@ bin/kgpg etc/xdg/autostart/org.kde.kgpg.desktop share/qlogging-categories5/kgpg.categories share/applications/org.kde.kgpg.desktop share/config.kcfg/kgpg.kcfg share/dbus-1/interfaces/org.kde.kgpg.Key.xml share/icons/hicolor/128x128/apps/kgpg.png share/icons/hicolor/16x16/actions/document-export-key.png share/icons/hicolor/16x16/actions/document-import-key.png share/icons/hicolor/16x16/actions/document-properties-key.png share/icons/hicolor/16x16/apps/kgpg.png share/icons/hicolor/16x16/status/key-group.png share/icons/hicolor/16x16/status/key-orphan.png share/icons/hicolor/16x16/status/key-pair.png share/icons/hicolor/16x16/status/key-single.png share/icons/hicolor/22x22/actions/document-export-key.png share/icons/hicolor/22x22/actions/document-import-key.png share/icons/hicolor/22x22/actions/document-properties-key.png share/icons/hicolor/22x22/actions/key-generate-pair.png share/icons/hicolor/22x22/actions/view-key-secret.png share/icons/hicolor/22x22/apps/kgpg.png share/icons/hicolor/22x22/status/key-group.png share/icons/hicolor/22x22/status/key-pair.png share/icons/hicolor/22x22/status/key-single.png share/icons/hicolor/32x32/actions/document-export-key.png share/icons/hicolor/32x32/actions/document-import-key.png share/icons/hicolor/32x32/actions/document-properties-key.png share/icons/hicolor/32x32/apps/kgpg.png share/icons/hicolor/32x32/status/key-group.png share/icons/hicolor/32x32/status/key-pair.png share/icons/hicolor/32x32/status/key-single.png share/icons/hicolor/48x48/actions/document-export-key.png share/icons/hicolor/48x48/actions/document-import-key.png share/icons/hicolor/48x48/actions/document-properties-key.png share/icons/hicolor/48x48/apps/kgpg.png share/icons/hicolor/48x48/status/key-group.png share/icons/hicolor/48x48/status/key-pair.png share/icons/hicolor/48x48/status/key-single.png share/icons/hicolor/64x64/apps/kgpg.png share/icons/hicolor/scalable/actions/document-export-key.svgz share/icons/hicolor/scalable/actions/document-import-key.svgz share/icons/hicolor/scalable/actions/document-properties-key.svgz share/icons/hicolor/scalable/apps/kgpg.svg share/icons/hicolor/scalable/status/key-group.svgz share/icons/hicolor/scalable/status/key-pair.svgz share/icons/hicolor/scalable/status/key-single.svgz %%DATADIR%%/tips share/kservices5/ServiceMenus/encryptfile.desktop share/kservices5/ServiceMenus/encryptfolder.desktop share/kservices5/ServiceMenus/viewdecrypted.desktop share/kxmlgui5/kgpg/keysmanager.rc share/kxmlgui5/kgpg/kgpgeditor.rc share/locale/ar/LC_MESSAGES/kgpg.mo +share/locale/be/LC_MESSAGES/kgpg.mo share/locale/bg/LC_MESSAGES/kgpg.mo share/locale/bs/LC_MESSAGES/kgpg.mo share/locale/ca/LC_MESSAGES/kgpg.mo share/locale/ca@valencia/LC_MESSAGES/kgpg.mo share/locale/cs/LC_MESSAGES/kgpg.mo share/locale/da/LC_MESSAGES/kgpg.mo share/locale/de/LC_MESSAGES/kgpg.mo share/locale/el/LC_MESSAGES/kgpg.mo share/locale/en_GB/LC_MESSAGES/kgpg.mo share/locale/eo/LC_MESSAGES/kgpg.mo share/locale/es/LC_MESSAGES/kgpg.mo share/locale/et/LC_MESSAGES/kgpg.mo share/locale/eu/LC_MESSAGES/kgpg.mo share/locale/fa/LC_MESSAGES/kgpg.mo share/locale/fi/LC_MESSAGES/kgpg.mo share/locale/fr/LC_MESSAGES/kgpg.mo share/locale/ga/LC_MESSAGES/kgpg.mo share/locale/gl/LC_MESSAGES/kgpg.mo share/locale/he/LC_MESSAGES/kgpg.mo share/locale/hr/LC_MESSAGES/kgpg.mo share/locale/hu/LC_MESSAGES/kgpg.mo share/locale/ia/LC_MESSAGES/kgpg.mo share/locale/id/LC_MESSAGES/kgpg.mo share/locale/is/LC_MESSAGES/kgpg.mo share/locale/it/LC_MESSAGES/kgpg.mo share/locale/ja/LC_MESSAGES/kgpg.mo share/locale/kk/LC_MESSAGES/kgpg.mo share/locale/km/LC_MESSAGES/kgpg.mo share/locale/ko/LC_MESSAGES/kgpg.mo share/locale/lt/LC_MESSAGES/kgpg.mo share/locale/lv/LC_MESSAGES/kgpg.mo share/locale/mr/LC_MESSAGES/kgpg.mo share/locale/nb/LC_MESSAGES/kgpg.mo share/locale/nds/LC_MESSAGES/kgpg.mo share/locale/nl/LC_MESSAGES/kgpg.mo share/locale/nn/LC_MESSAGES/kgpg.mo share/locale/pa/LC_MESSAGES/kgpg.mo share/locale/pl/LC_MESSAGES/kgpg.mo share/locale/pt/LC_MESSAGES/kgpg.mo share/locale/pt_BR/LC_MESSAGES/kgpg.mo share/locale/ro/LC_MESSAGES/kgpg.mo share/locale/ru/LC_MESSAGES/kgpg.mo +share/locale/se/LC_MESSAGES/kgpg.mo share/locale/sk/LC_MESSAGES/kgpg.mo share/locale/sl/LC_MESSAGES/kgpg.mo +share/locale/sq/LC_MESSAGES/kgpg.mo share/locale/sr/LC_MESSAGES/kgpg.mo share/locale/sv/LC_MESSAGES/kgpg.mo +share/locale/ta/LC_MESSAGES/kgpg.mo +share/locale/tg/LC_MESSAGES/kgpg.mo share/locale/tr/LC_MESSAGES/kgpg.mo share/locale/ug/LC_MESSAGES/kgpg.mo share/locale/uk/LC_MESSAGES/kgpg.mo share/locale/zh_CN/LC_MESSAGES/kgpg.mo share/locale/zh_TW/LC_MESSAGES/kgpg.mo share/metainfo/org.kde.kgpg.appdata.xml diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index 327e0479221c..91a441494475 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741555 -SHA256 (KDE/release-service/21.04.1/kleopatra-21.04.1.tar.xz) = 21218c61f153fb7e29b654fb40dcfd80d8c49749cf7b21f4e803cf25b18c72c3 -SIZE (KDE/release-service/21.04.1/kleopatra-21.04.1.tar.xz) = 2054160 +TIMESTAMP = 1623521039 +SHA256 (KDE/release-service/21.04.2/kleopatra-21.04.2.tar.xz) = ece15d1428c0f8c756ded36ef0955b1d80b842b96231236620345f188573c14c +SIZE (KDE/release-service/21.04.2/kleopatra-21.04.2.tar.xz) = 2115416 diff --git a/security/kleopatra/pkg-plist b/security/kleopatra/pkg-plist index fa950a42a963..b5b88a987a94 100644 --- a/security/kleopatra/pkg-plist +++ b/security/kleopatra/pkg-plist @@ -1,139 +1,149 @@ bin/kleopatra bin/kwatchgnupg share/qlogging-categories5/kleopatra.categories share/qlogging-categories5/kleopatra.renamecategories lib/libkleopatraclientcore.so lib/libkleopatraclientcore.so.1 lib/libkleopatraclientcore.so.1.3.0 lib/libkleopatraclientgui.so lib/libkleopatraclientgui.so.1 lib/libkleopatraclientgui.so.1.3.0 %%QT_PLUGINDIR%%/kcm_kleopatra.so share/applications/kleopatra_import.desktop share/applications/org.kde.kleopatra.desktop share/icons/hicolor/128x128/apps/kleopatra.png share/icons/hicolor/16x16/apps/kleopatra.png share/icons/hicolor/22x22/apps/kleopatra.png share/icons/hicolor/256x256/apps/kleopatra.png share/icons/hicolor/32x32/apps/kleopatra.png share/icons/hicolor/48x48/apps/kleopatra.png share/icons/hicolor/64x64/apps/kleopatra.png share/kconf_update/kleopatra-15.08-kickoff.sh share/kconf_update/kleopatra.upd %%DATADIR%%/pics/kleopatra_splashscreen.png %%DATADIR%%/pics/kleopatra_splashscreen.svgz %%DATADIR%%/pics/kleopatra_wizard.png %%DATADIR%%/pics/kleopatra_wizard.svgz share/kservices5/kleopatra_config_appear.desktop share/kservices5/kleopatra_config_cryptooperations.desktop share/kservices5/kleopatra_config_dirserv.desktop share/kservices5/kleopatra_config_gnupgsystem.desktop share/kservices5/kleopatra_config_smimevalidation.desktop share/kservices5/kleopatra_decryptverifyfiles.desktop share/kservices5/kleopatra_decryptverifyfolders.desktop share/kservices5/kleopatra_signencryptfiles.desktop share/kservices5/kleopatra_signencryptfolders.desktop share/kwatchgnupg/pics/kwatchgnupg.png share/kwatchgnupg/pics/kwatchgnupg2.png share/locale/ar/LC_MESSAGES/kleopatra.mo share/locale/ar/LC_MESSAGES/kwatchgnupg.mo +share/locale/be/LC_MESSAGES/kleopatra.mo +share/locale/be/LC_MESSAGES/kwatchgnupg.mo share/locale/bg/LC_MESSAGES/kleopatra.mo share/locale/bg/LC_MESSAGES/kwatchgnupg.mo share/locale/bs/LC_MESSAGES/kleopatra.mo share/locale/bs/LC_MESSAGES/kwatchgnupg.mo share/locale/ca/LC_MESSAGES/kleopatra.mo share/locale/ca/LC_MESSAGES/kwatchgnupg.mo share/locale/ca@valencia/LC_MESSAGES/kleopatra.mo share/locale/ca@valencia/LC_MESSAGES/kwatchgnupg.mo share/locale/cs/LC_MESSAGES/kleopatra.mo share/locale/cs/LC_MESSAGES/kwatchgnupg.mo share/locale/da/LC_MESSAGES/kleopatra.mo share/locale/da/LC_MESSAGES/kwatchgnupg.mo share/locale/de/LC_MESSAGES/kleopatra.mo share/locale/de/LC_MESSAGES/kwatchgnupg.mo share/locale/el/LC_MESSAGES/kleopatra.mo share/locale/el/LC_MESSAGES/kwatchgnupg.mo share/locale/en_GB/LC_MESSAGES/kleopatra.mo share/locale/en_GB/LC_MESSAGES/kwatchgnupg.mo share/locale/eo/LC_MESSAGES/kleopatra.mo share/locale/eo/LC_MESSAGES/kwatchgnupg.mo share/locale/es/LC_MESSAGES/kleopatra.mo share/locale/es/LC_MESSAGES/kwatchgnupg.mo share/locale/et/LC_MESSAGES/kleopatra.mo share/locale/et/LC_MESSAGES/kwatchgnupg.mo share/locale/eu/LC_MESSAGES/kleopatra.mo share/locale/eu/LC_MESSAGES/kwatchgnupg.mo share/locale/fa/LC_MESSAGES/kleopatra.mo share/locale/fa/LC_MESSAGES/kwatchgnupg.mo share/locale/fi/LC_MESSAGES/kleopatra.mo share/locale/fi/LC_MESSAGES/kwatchgnupg.mo share/locale/fr/LC_MESSAGES/kleopatra.mo share/locale/fr/LC_MESSAGES/kwatchgnupg.mo share/locale/ga/LC_MESSAGES/kleopatra.mo share/locale/ga/LC_MESSAGES/kwatchgnupg.mo share/locale/gl/LC_MESSAGES/kleopatra.mo share/locale/gl/LC_MESSAGES/kwatchgnupg.mo share/locale/he/LC_MESSAGES/kleopatra.mo share/locale/hi/LC_MESSAGES/kleopatra.mo share/locale/hi/LC_MESSAGES/kwatchgnupg.mo share/locale/hr/LC_MESSAGES/kleopatra.mo share/locale/hu/LC_MESSAGES/kleopatra.mo share/locale/hu/LC_MESSAGES/kwatchgnupg.mo share/locale/ia/LC_MESSAGES/kleopatra.mo share/locale/ia/LC_MESSAGES/kwatchgnupg.mo share/locale/is/LC_MESSAGES/kleopatra.mo share/locale/is/LC_MESSAGES/kwatchgnupg.mo share/locale/it/LC_MESSAGES/kleopatra.mo share/locale/it/LC_MESSAGES/kwatchgnupg.mo share/locale/ja/LC_MESSAGES/kleopatra.mo share/locale/ja/LC_MESSAGES/kwatchgnupg.mo share/locale/kk/LC_MESSAGES/kleopatra.mo share/locale/kk/LC_MESSAGES/kwatchgnupg.mo share/locale/km/LC_MESSAGES/kleopatra.mo share/locale/km/LC_MESSAGES/kwatchgnupg.mo share/locale/ko/LC_MESSAGES/kleopatra.mo share/locale/ko/LC_MESSAGES/kwatchgnupg.mo share/locale/lt/LC_MESSAGES/kleopatra.mo share/locale/lt/LC_MESSAGES/kwatchgnupg.mo share/locale/lv/LC_MESSAGES/kleopatra.mo share/locale/lv/LC_MESSAGES/kwatchgnupg.mo share/locale/mr/LC_MESSAGES/kleopatra.mo share/locale/mr/LC_MESSAGES/kwatchgnupg.mo share/locale/nb/LC_MESSAGES/kleopatra.mo share/locale/nb/LC_MESSAGES/kwatchgnupg.mo share/locale/nds/LC_MESSAGES/kleopatra.mo share/locale/nds/LC_MESSAGES/kwatchgnupg.mo share/locale/nl/LC_MESSAGES/kleopatra.mo share/locale/nl/LC_MESSAGES/kwatchgnupg.mo share/locale/nn/LC_MESSAGES/kleopatra.mo share/locale/nn/LC_MESSAGES/kwatchgnupg.mo share/locale/pa/LC_MESSAGES/kleopatra.mo share/locale/pa/LC_MESSAGES/kwatchgnupg.mo share/locale/pl/LC_MESSAGES/kleopatra.mo share/locale/pl/LC_MESSAGES/kwatchgnupg.mo share/locale/pt/LC_MESSAGES/kleopatra.mo share/locale/pt/LC_MESSAGES/kwatchgnupg.mo share/locale/pt_BR/LC_MESSAGES/kleopatra.mo share/locale/pt_BR/LC_MESSAGES/kwatchgnupg.mo share/locale/ro/LC_MESSAGES/kleopatra.mo share/locale/ro/LC_MESSAGES/kwatchgnupg.mo share/locale/ru/LC_MESSAGES/kleopatra.mo share/locale/ru/LC_MESSAGES/kwatchgnupg.mo +share/locale/se/LC_MESSAGES/kleopatra.mo +share/locale/se/LC_MESSAGES/kwatchgnupg.mo share/locale/sk/LC_MESSAGES/kleopatra.mo share/locale/sk/LC_MESSAGES/kwatchgnupg.mo share/locale/sl/LC_MESSAGES/kleopatra.mo share/locale/sl/LC_MESSAGES/kwatchgnupg.mo +share/locale/sq/LC_MESSAGES/kleopatra.mo +share/locale/sq/LC_MESSAGES/kwatchgnupg.mo share/locale/sr/LC_MESSAGES/kwatchgnupg.mo share/locale/sv/LC_MESSAGES/kleopatra.mo share/locale/sv/LC_MESSAGES/kwatchgnupg.mo +share/locale/ta/LC_MESSAGES/kleopatra.mo +share/locale/ta/LC_MESSAGES/kwatchgnupg.mo +share/locale/tg/LC_MESSAGES/kleopatra.mo +share/locale/tg/LC_MESSAGES/kwatchgnupg.mo share/locale/tr/LC_MESSAGES/kleopatra.mo share/locale/tr/LC_MESSAGES/kwatchgnupg.mo share/locale/ug/LC_MESSAGES/kleopatra.mo share/locale/ug/LC_MESSAGES/kwatchgnupg.mo share/locale/uk/LC_MESSAGES/kleopatra.mo share/locale/uk/LC_MESSAGES/kwatchgnupg.mo share/locale/zh_CN/LC_MESSAGES/kleopatra.mo share/locale/zh_CN/LC_MESSAGES/kwatchgnupg.mo share/locale/zh_TW/LC_MESSAGES/kleopatra.mo share/locale/zh_TW/LC_MESSAGES/kwatchgnupg.mo share/metainfo/org.kde.kleopatra.appdata.xml diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 0eeb70ffed50..a5f866f144b0 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741556 -SHA256 (KDE/release-service/21.04.1/kpkpass-21.04.1.tar.xz) = 5368717031967d9134f1efe3ba72119b1574db5568a6818a1fd12014b9f58cb8 -SIZE (KDE/release-service/21.04.1/kpkpass-21.04.1.tar.xz) = 27352 +TIMESTAMP = 1623521040 +SHA256 (KDE/release-service/21.04.2/kpkpass-21.04.2.tar.xz) = dc0794033abf028180d97b83f479f52aa921283db6e3dba47e73923f5f944610 +SIZE (KDE/release-service/21.04.2/kpkpass-21.04.2.tar.xz) = 27360 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 2a6d814ad8bc..0f7e646f093c 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741556 -SHA256 (KDE/release-service/21.04.1/kwalletmanager-21.04.1.tar.xz) = ef6eeb9376e07d4d8131ea234e6b80ae32a84f9eeab125f8df70f7006671d38c -SIZE (KDE/release-service/21.04.1/kwalletmanager-21.04.1.tar.xz) = 782320 +TIMESTAMP = 1623521041 +SHA256 (KDE/release-service/21.04.2/kwalletmanager-21.04.2.tar.xz) = 6ae87325a5ba7d0c10cf0f400696b6cca24d400361752a5168dd2a66970c2748 +SIZE (KDE/release-service/21.04.2/kwalletmanager-21.04.2.tar.xz) = 796180 diff --git a/security/kwalletmanager/pkg-plist b/security/kwalletmanager/pkg-plist index 02d14426182b..def9115e93e2 100644 --- a/security/kwalletmanager/pkg-plist +++ b/security/kwalletmanager/pkg-plist @@ -1,130 +1,142 @@ bin/kwalletmanager5 share/qlogging-categories5/kwalletmanager.categories lib/libexec/kauth/kcm_kwallet_helper5 %%QT_PLUGINDIR%%/kcm_kwallet5.so share/applications/kwalletmanager5-kwalletd.desktop share/applications/org.kde.kwalletmanager5.desktop share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service share/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf share/icons/hicolor/128x128/apps/kwalletmanager.png share/icons/hicolor/128x128/apps/kwalletmanager2.png share/icons/hicolor/16x16/apps/kwalletmanager.png share/icons/hicolor/16x16/apps/kwalletmanager2.png share/icons/hicolor/22x22/actions/wallet-closed.png share/icons/hicolor/22x22/actions/wallet-open.png share/icons/hicolor/22x22/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager.png share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwalletmanager.png share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwalletmanager.png share/icons/hicolor/64x64/apps/kwalletmanager2.png share/kservices5/kwalletconfig5.desktop share/kservices5/kwalletmanager5_show.desktop share/kxmlgui5/kwalletmanager5/kwalletmanager.rc share/locale/ar/LC_MESSAGES/kcmkwallet.mo share/locale/ar/LC_MESSAGES/kwalletmanager.mo +share/locale/az/LC_MESSAGES/kcmkwallet.mo +share/locale/az/LC_MESSAGES/kwalletmanager.mo +share/locale/be/LC_MESSAGES/kcmkwallet.mo +share/locale/be/LC_MESSAGES/kwalletmanager.mo share/locale/bg/LC_MESSAGES/kcmkwallet.mo share/locale/bg/LC_MESSAGES/kwalletmanager.mo share/locale/bs/LC_MESSAGES/kcmkwallet.mo share/locale/bs/LC_MESSAGES/kwalletmanager.mo share/locale/ca/LC_MESSAGES/kcmkwallet.mo share/locale/ca/LC_MESSAGES/kwalletmanager.mo share/locale/ca@valencia/LC_MESSAGES/kcmkwallet.mo share/locale/ca@valencia/LC_MESSAGES/kwalletmanager.mo share/locale/cs/LC_MESSAGES/kcmkwallet.mo share/locale/cs/LC_MESSAGES/kwalletmanager.mo share/locale/da/LC_MESSAGES/kcmkwallet.mo share/locale/da/LC_MESSAGES/kwalletmanager.mo share/locale/de/LC_MESSAGES/kcmkwallet.mo share/locale/de/LC_MESSAGES/kwalletmanager.mo share/locale/el/LC_MESSAGES/kcmkwallet.mo share/locale/el/LC_MESSAGES/kwalletmanager.mo share/locale/en_GB/LC_MESSAGES/kcmkwallet.mo share/locale/en_GB/LC_MESSAGES/kwalletmanager.mo share/locale/eo/LC_MESSAGES/kcmkwallet.mo share/locale/eo/LC_MESSAGES/kwalletmanager.mo share/locale/es/LC_MESSAGES/kcmkwallet.mo share/locale/es/LC_MESSAGES/kwalletmanager.mo share/locale/et/LC_MESSAGES/kcmkwallet.mo share/locale/et/LC_MESSAGES/kwalletmanager.mo share/locale/eu/LC_MESSAGES/kcmkwallet.mo share/locale/eu/LC_MESSAGES/kwalletmanager.mo share/locale/fa/LC_MESSAGES/kcmkwallet.mo share/locale/fa/LC_MESSAGES/kwalletmanager.mo share/locale/fi/LC_MESSAGES/kcmkwallet.mo share/locale/fi/LC_MESSAGES/kwalletmanager.mo share/locale/fr/LC_MESSAGES/kcmkwallet.mo share/locale/fr/LC_MESSAGES/kwalletmanager.mo share/locale/ga/LC_MESSAGES/kcmkwallet.mo share/locale/ga/LC_MESSAGES/kwalletmanager.mo share/locale/gl/LC_MESSAGES/kcmkwallet.mo share/locale/gl/LC_MESSAGES/kwalletmanager.mo share/locale/hi/LC_MESSAGES/kcmkwallet.mo share/locale/hi/LC_MESSAGES/kwalletmanager.mo share/locale/hr/LC_MESSAGES/kcmkwallet.mo share/locale/hr/LC_MESSAGES/kwalletmanager.mo share/locale/hu/LC_MESSAGES/kcmkwallet.mo share/locale/hu/LC_MESSAGES/kwalletmanager.mo share/locale/ia/LC_MESSAGES/kcmkwallet.mo share/locale/ia/LC_MESSAGES/kwalletmanager.mo share/locale/id/LC_MESSAGES/kcmkwallet.mo share/locale/id/LC_MESSAGES/kwalletmanager.mo share/locale/is/LC_MESSAGES/kcmkwallet.mo share/locale/is/LC_MESSAGES/kwalletmanager.mo share/locale/it/LC_MESSAGES/kcmkwallet.mo share/locale/it/LC_MESSAGES/kwalletmanager.mo share/locale/ja/LC_MESSAGES/kcmkwallet.mo share/locale/ja/LC_MESSAGES/kwalletmanager.mo share/locale/kk/LC_MESSAGES/kcmkwallet.mo share/locale/kk/LC_MESSAGES/kwalletmanager.mo share/locale/km/LC_MESSAGES/kcmkwallet.mo share/locale/km/LC_MESSAGES/kwalletmanager.mo share/locale/ko/LC_MESSAGES/kcmkwallet.mo share/locale/ko/LC_MESSAGES/kwalletmanager.mo share/locale/lt/LC_MESSAGES/kcmkwallet.mo share/locale/lt/LC_MESSAGES/kwalletmanager.mo share/locale/lv/LC_MESSAGES/kcmkwallet.mo share/locale/lv/LC_MESSAGES/kwalletmanager.mo share/locale/mr/LC_MESSAGES/kcmkwallet.mo share/locale/mr/LC_MESSAGES/kwalletmanager.mo share/locale/nb/LC_MESSAGES/kcmkwallet.mo share/locale/nb/LC_MESSAGES/kwalletmanager.mo share/locale/nds/LC_MESSAGES/kcmkwallet.mo share/locale/nds/LC_MESSAGES/kwalletmanager.mo share/locale/nl/LC_MESSAGES/kcmkwallet.mo share/locale/nl/LC_MESSAGES/kwalletmanager.mo share/locale/nn/LC_MESSAGES/kcmkwallet.mo share/locale/nn/LC_MESSAGES/kwalletmanager.mo share/locale/pa/LC_MESSAGES/kcmkwallet.mo share/locale/pa/LC_MESSAGES/kwalletmanager.mo share/locale/pl/LC_MESSAGES/kcmkwallet.mo share/locale/pl/LC_MESSAGES/kwalletmanager.mo share/locale/pt/LC_MESSAGES/kcmkwallet.mo share/locale/pt/LC_MESSAGES/kwalletmanager.mo share/locale/pt_BR/LC_MESSAGES/kcmkwallet.mo share/locale/pt_BR/LC_MESSAGES/kwalletmanager.mo share/locale/ro/LC_MESSAGES/kcmkwallet.mo share/locale/ro/LC_MESSAGES/kwalletmanager.mo share/locale/ru/LC_MESSAGES/kcmkwallet.mo share/locale/ru/LC_MESSAGES/kwalletmanager.mo +share/locale/se/LC_MESSAGES/kcmkwallet.mo +share/locale/se/LC_MESSAGES/kwalletmanager.mo share/locale/sk/LC_MESSAGES/kcmkwallet.mo share/locale/sk/LC_MESSAGES/kwalletmanager.mo share/locale/sl/LC_MESSAGES/kcmkwallet.mo share/locale/sl/LC_MESSAGES/kwalletmanager.mo +share/locale/sq/LC_MESSAGES/kcmkwallet.mo +share/locale/sq/LC_MESSAGES/kwalletmanager.mo share/locale/sr/LC_MESSAGES/kcmkwallet.mo share/locale/sr/LC_MESSAGES/kwalletmanager.mo share/locale/sv/LC_MESSAGES/kcmkwallet.mo share/locale/sv/LC_MESSAGES/kwalletmanager.mo +share/locale/ta/LC_MESSAGES/kcmkwallet.mo +share/locale/ta/LC_MESSAGES/kwalletmanager.mo +share/locale/tg/LC_MESSAGES/kcmkwallet.mo +share/locale/tg/LC_MESSAGES/kwalletmanager.mo share/locale/tr/LC_MESSAGES/kcmkwallet.mo share/locale/tr/LC_MESSAGES/kwalletmanager.mo share/locale/ug/LC_MESSAGES/kcmkwallet.mo share/locale/ug/LC_MESSAGES/kwalletmanager.mo share/locale/uk/LC_MESSAGES/kcmkwallet.mo share/locale/uk/LC_MESSAGES/kwalletmanager.mo share/locale/zh_CN/LC_MESSAGES/kcmkwallet.mo share/locale/zh_CN/LC_MESSAGES/kwalletmanager.mo share/locale/zh_TW/LC_MESSAGES/kcmkwallet.mo share/locale/zh_TW/LC_MESSAGES/kwalletmanager.mo share/metainfo/org.kde.kwalletmanager5.appdata.xml share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 8e947cd16129..2d2bfe9dde2c 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741557 -SHA256 (KDE/release-service/21.04.1/libkleo-21.04.1.tar.xz) = 09e080d6a3e0f1d1433a839211eb457e449fd3a36c400f128f1c373c52b65949 -SIZE (KDE/release-service/21.04.1/libkleo-21.04.1.tar.xz) = 371876 +TIMESTAMP = 1623521043 +SHA256 (KDE/release-service/21.04.2/libkleo-21.04.2.tar.xz) = 9d797ffbd1e54af2a5f8b787d7f4bfeb7daf451852d61ea2661348e4b3e4f7d5 +SIZE (KDE/release-service/21.04.2/libkleo-21.04.2.tar.xz) = 384148 diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index 14392e3202b0..c8bc88f86ec7 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,158 +1,163 @@ share/qlogging-categories5/libkleo.categories share/qlogging-categories5/libkleo.renamecategories etc/xdg/libkleopatrarc include/KF5/Libkleo/ChecksumDefinition include/KF5/Libkleo/Classify include/KF5/Libkleo/Compat include/KF5/Libkleo/CryptoConfigDialog include/KF5/Libkleo/CryptoConfigModule include/KF5/Libkleo/DNAttributeOrderConfigWidget include/KF5/Libkleo/Debug include/KF5/Libkleo/DefaultKeyFilter include/KF5/Libkleo/DefaultKeyGenerationJob include/KF5/Libkleo/DirectoryServicesWidget include/KF5/Libkleo/Dn include/KF5/Libkleo/Enum include/KF5/Libkleo/FileNameRequester include/KF5/Libkleo/FileSystemWatcher include/KF5/Libkleo/Formatting include/KF5/Libkleo/GnuPG include/KF5/Libkleo/KConfigBasedKeyFilter include/KF5/Libkleo/KDHorizontalLine include/KF5/Libkleo/KeyApprovalDialog include/KF5/Libkleo/KeyCache include/KF5/Libkleo/KeyFilter include/KF5/Libkleo/KeyFilterManager include/KF5/Libkleo/KeyGroup include/KF5/Libkleo/KeyList include/KF5/Libkleo/KeyListModel include/KF5/Libkleo/KeyListModelInterface include/KF5/Libkleo/KeyListSortFilterProxyModel include/KF5/Libkleo/KeyRearrangeColumnsProxyModel include/KF5/Libkleo/KeyRequester include/KF5/Libkleo/KeyResolver include/KF5/Libkleo/KeySelectionCombo include/KF5/Libkleo/KeySelectionDialog include/KF5/Libkleo/KleoException include/KF5/Libkleo/MessageBox include/KF5/Libkleo/NewKeyApprovalDialog include/KF5/Libkleo/OidMap include/KF5/Libkleo/Predicates include/KF5/Libkleo/ProgressDialog include/KF5/Libkleo/Stl_Util include/KF5/Libkleo/SubkeyListModel include/KF5/Libkleo/UserIDListModel include/KF5/libkleo/checksumdefinition.h include/KF5/libkleo/classify.h include/KF5/libkleo/compat.h include/KF5/libkleo/cryptoconfigdialog.h include/KF5/libkleo/cryptoconfigmodule.h include/KF5/libkleo/debug.h include/KF5/libkleo/defaultkeyfilter.h include/KF5/libkleo/defaultkeygenerationjob.h include/KF5/libkleo/directoryserviceswidget.h include/KF5/libkleo/dn.h include/KF5/libkleo/dnattributeorderconfigwidget.h include/KF5/libkleo/enum.h include/KF5/libkleo/filenamerequester.h include/KF5/libkleo/filesystemwatcher.h include/KF5/libkleo/formatting.h include/KF5/libkleo/gnupg.h include/KF5/libkleo/kconfigbasedkeyfilter.h include/KF5/libkleo/kdhorizontalline.h include/KF5/libkleo/keyapprovaldialog.h include/KF5/libkleo/keycache.h include/KF5/libkleo/keyfilter.h include/KF5/libkleo/keyfiltermanager.h include/KF5/libkleo/keygroup.h include/KF5/libkleo/keylist.h include/KF5/libkleo/keylistmodel.h include/KF5/libkleo/keylistmodelinterface.h include/KF5/libkleo/keylistsortfilterproxymodel.h include/KF5/libkleo/keyrearrangecolumnsproxymodel.h include/KF5/libkleo/keyrequester.h include/KF5/libkleo/keyresolver.h include/KF5/libkleo/keyselectioncombo.h include/KF5/libkleo/keyselectiondialog.h include/KF5/libkleo/kleo_export.h include/KF5/libkleo/kleoexception.h include/KF5/libkleo/messagebox.h include/KF5/libkleo/newkeyapprovaldialog.h include/KF5/libkleo/oidmap.h include/KF5/libkleo/predicates.h include/KF5/libkleo/progressdialog.h include/KF5/libkleo/stl_util.h include/KF5/libkleo/subkeylistmodel.h include/KF5/libkleo/useridlistmodel.h include/KF5/libkleo_version.h lib/cmake/KF5Libkleo/KF5LibkleoConfig.cmake lib/cmake/KF5Libkleo/KF5LibkleoConfigVersion.cmake lib/cmake/KF5Libkleo/KF5LibkleoTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Libkleo/KF5LibkleoTargets.cmake lib/libKF5Libkleo.so lib/libKF5Libkleo.so.5 lib/libKF5Libkleo.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Libkleo.pri %%DATADIR%%patra/pics/chiasmus_chi.png %%DATADIR%%patra/pics/hi16-app-gpg.png %%DATADIR%%patra/pics/hi16-app-gpgsm.png %%DATADIR%%patra/pics/hi22-app-gpg.png %%DATADIR%%patra/pics/hi22-app-gpgsm.png %%DATADIR%%patra/pics/hi32-app-gpg.png %%DATADIR%%patra/pics/hi32-app-gpgsm.png %%DATADIR%%patra/pics/key.png %%DATADIR%%patra/pics/key_bad.png %%DATADIR%%patra/pics/key_ok.png %%DATADIR%%patra/pics/key_unknown.png %%DATADIR%%patra/pics/smartcard.xpm share/locale/ar/LC_MESSAGES/libkleopatra.mo +share/locale/be/LC_MESSAGES/libkleopatra.mo share/locale/bg/LC_MESSAGES/libkleopatra.mo share/locale/bs/LC_MESSAGES/libkleopatra.mo share/locale/ca/LC_MESSAGES/libkleopatra.mo share/locale/ca@valencia/LC_MESSAGES/libkleopatra.mo share/locale/cs/LC_MESSAGES/libkleopatra.mo share/locale/da/LC_MESSAGES/libkleopatra.mo share/locale/de/LC_MESSAGES/libkleopatra.mo share/locale/el/LC_MESSAGES/libkleopatra.mo share/locale/en_GB/LC_MESSAGES/libkleopatra.mo share/locale/eo/LC_MESSAGES/libkleopatra.mo share/locale/es/LC_MESSAGES/libkleopatra.mo share/locale/et/LC_MESSAGES/libkleopatra.mo share/locale/eu/LC_MESSAGES/libkleopatra.mo share/locale/fa/LC_MESSAGES/libkleopatra.mo share/locale/fi/LC_MESSAGES/libkleopatra.mo share/locale/fr/LC_MESSAGES/libkleopatra.mo share/locale/ga/LC_MESSAGES/libkleopatra.mo share/locale/gl/LC_MESSAGES/libkleopatra.mo share/locale/hi/LC_MESSAGES/libkleopatra.mo share/locale/hr/LC_MESSAGES/libkleopatra.mo share/locale/hu/LC_MESSAGES/libkleopatra.mo share/locale/ia/LC_MESSAGES/libkleopatra.mo share/locale/is/LC_MESSAGES/libkleopatra.mo share/locale/it/LC_MESSAGES/libkleopatra.mo share/locale/ja/LC_MESSAGES/libkleopatra.mo share/locale/kk/LC_MESSAGES/libkleopatra.mo share/locale/km/LC_MESSAGES/libkleopatra.mo share/locale/ko/LC_MESSAGES/libkleopatra.mo share/locale/lt/LC_MESSAGES/libkleopatra.mo share/locale/lv/LC_MESSAGES/libkleopatra.mo share/locale/mr/LC_MESSAGES/libkleopatra.mo share/locale/nb/LC_MESSAGES/libkleopatra.mo share/locale/nds/LC_MESSAGES/libkleopatra.mo share/locale/nl/LC_MESSAGES/libkleopatra.mo share/locale/nn/LC_MESSAGES/libkleopatra.mo share/locale/pa/LC_MESSAGES/libkleopatra.mo share/locale/pl/LC_MESSAGES/libkleopatra.mo share/locale/pt/LC_MESSAGES/libkleopatra.mo share/locale/pt_BR/LC_MESSAGES/libkleopatra.mo share/locale/ro/LC_MESSAGES/libkleopatra.mo share/locale/ru/LC_MESSAGES/libkleopatra.mo +share/locale/se/LC_MESSAGES/libkleopatra.mo share/locale/sk/LC_MESSAGES/libkleopatra.mo share/locale/sl/LC_MESSAGES/libkleopatra.mo +share/locale/sq/LC_MESSAGES/libkleopatra.mo share/locale/sr/LC_MESSAGES/libkleopatra.mo share/locale/sv/LC_MESSAGES/libkleopatra.mo +share/locale/ta/LC_MESSAGES/libkleopatra.mo +share/locale/tg/LC_MESSAGES/libkleopatra.mo share/locale/tr/LC_MESSAGES/libkleopatra.mo share/locale/ug/LC_MESSAGES/libkleopatra.mo share/locale/uk/LC_MESSAGES/libkleopatra.mo share/locale/zh_CN/LC_MESSAGES/libkleopatra.mo share/locale/zh_TW/LC_MESSAGES/libkleopatra.mo diff --git a/sysutils/baloo-widgets/Makefile b/sysutils/baloo-widgets/Makefile index ae97fa9d036d..a64f21d7d413 100644 --- a/sysutils/baloo-widgets/Makefile +++ b/sysutils/baloo-widgets/Makefile @@ -1,19 +1,19 @@ PORTNAME= baloo-widgets DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= sysutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= BalooWidgets library USES= cmake compiler:c++11-lang gettext kde:5 qt:5 tar:xz USE_KDE= baloo completion config coreaddons ecm emoticons filemetadata \ i18n init itemmodels jobwidgets kdelibs4support kio service \ widgetsaddons USE_QT= concurrent core dbus gui network testlib widgets xml \ buildtools_build qmake_build USE_LDCONFIG= yes # Override shared library version -KDE_APPLICATIONS_SHLIB_VER= 21.4.1 +KDE_APPLICATIONS_SHLIB_VER= 21.4.2 .include diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 7df67593d182..14ab39509637 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741558 -SHA256 (KDE/release-service/21.04.1/baloo-widgets-21.04.1.tar.xz) = ea3247575b8825237b61009c9764f788e80324783f8f13cf20a5bcfabdcdd72e -SIZE (KDE/release-service/21.04.1/baloo-widgets-21.04.1.tar.xz) = 262260 +TIMESTAMP = 1623521045 +SHA256 (KDE/release-service/21.04.2/baloo-widgets-21.04.2.tar.xz) = 95755473c7460dcf07ef7072ad7cbacfe81b214bcc419c7e33d72b5e396b3384 +SIZE (KDE/release-service/21.04.2/baloo-widgets-21.04.2.tar.xz) = 262684 diff --git a/sysutils/baloo-widgets/pkg-plist b/sysutils/baloo-widgets/pkg-plist index fcc9485ffdec..c69406393777 100644 --- a/sysutils/baloo-widgets/pkg-plist +++ b/sysutils/baloo-widgets/pkg-plist @@ -1,67 +1,68 @@ bin/baloo_filemetadata_temp_extractor include/KF5/BalooWidgets/Baloo/FileMetaDataConfigWidget include/KF5/BalooWidgets/Baloo/FileMetaDataWidget include/KF5/BalooWidgets/Baloo/TagWidget include/KF5/BalooWidgets/baloo/filemetadataconfigwidget.h include/KF5/BalooWidgets/baloo/filemetadatawidget.h include/KF5/BalooWidgets/baloo/tagwidget.h include/KF5/BalooWidgets/baloo/widgets_export.h lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfig.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsConfigVersion.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5BalooWidgets/KF5BalooWidgetsTargets.cmake lib/libKF5BalooWidgets.so lib/libKF5BalooWidgets.so.5 lib/libKF5BalooWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/baloofilepropertiesplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so share/kservices5/baloofilepropertiesplugin.desktop share/locale/ar/LC_MESSAGES/baloowidgets5.mo share/locale/ast/LC_MESSAGES/baloowidgets5.mo +share/locale/az/LC_MESSAGES/baloowidgets5.mo share/locale/bg/LC_MESSAGES/baloowidgets5.mo share/locale/bs/LC_MESSAGES/baloowidgets5.mo share/locale/ca/LC_MESSAGES/baloowidgets5.mo share/locale/ca@valencia/LC_MESSAGES/baloowidgets5.mo share/locale/cs/LC_MESSAGES/baloowidgets5.mo share/locale/da/LC_MESSAGES/baloowidgets5.mo share/locale/de/LC_MESSAGES/baloowidgets5.mo share/locale/el/LC_MESSAGES/baloowidgets5.mo share/locale/en_GB/LC_MESSAGES/baloowidgets5.mo share/locale/es/LC_MESSAGES/baloowidgets5.mo share/locale/et/LC_MESSAGES/baloowidgets5.mo share/locale/eu/LC_MESSAGES/baloowidgets5.mo share/locale/fi/LC_MESSAGES/baloowidgets5.mo share/locale/fr/LC_MESSAGES/baloowidgets5.mo share/locale/ga/LC_MESSAGES/baloowidgets5.mo share/locale/gl/LC_MESSAGES/baloowidgets5.mo share/locale/he/LC_MESSAGES/baloowidgets5.mo share/locale/hu/LC_MESSAGES/baloowidgets5.mo share/locale/ia/LC_MESSAGES/baloowidgets5.mo share/locale/id/LC_MESSAGES/baloowidgets5.mo share/locale/it/LC_MESSAGES/baloowidgets5.mo share/locale/ja/LC_MESSAGES/baloowidgets5.mo share/locale/kk/LC_MESSAGES/baloowidgets5.mo share/locale/ko/LC_MESSAGES/baloowidgets5.mo share/locale/lt/LC_MESSAGES/baloowidgets5.mo share/locale/ml/LC_MESSAGES/baloowidgets5.mo share/locale/mr/LC_MESSAGES/baloowidgets5.mo share/locale/nb/LC_MESSAGES/baloowidgets5.mo share/locale/nds/LC_MESSAGES/baloowidgets5.mo share/locale/nl/LC_MESSAGES/baloowidgets5.mo share/locale/nn/LC_MESSAGES/baloowidgets5.mo share/locale/pa/LC_MESSAGES/baloowidgets5.mo share/locale/pl/LC_MESSAGES/baloowidgets5.mo share/locale/pt/LC_MESSAGES/baloowidgets5.mo share/locale/pt_BR/LC_MESSAGES/baloowidgets5.mo share/locale/ro/LC_MESSAGES/baloowidgets5.mo share/locale/ru/LC_MESSAGES/baloowidgets5.mo share/locale/sk/LC_MESSAGES/baloowidgets5.mo share/locale/sl/LC_MESSAGES/baloowidgets5.mo share/locale/sr/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/tr/LC_MESSAGES/baloowidgets5.mo share/locale/ug/LC_MESSAGES/baloowidgets5.mo share/locale/uk/LC_MESSAGES/baloowidgets5.mo share/locale/zh_CN/LC_MESSAGES/baloowidgets5.mo share/locale/zh_TW/LC_MESSAGES/baloowidgets5.mo share/qlogging-categories5/baloo-widgets.categories diff --git a/sysutils/filelight/distinfo b/sysutils/filelight/distinfo index 1b58f326113a..d4488a29ad0e 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741559 -SHA256 (KDE/release-service/21.04.1/filelight-21.04.1.tar.xz) = badfc2e4130103d1237a6e535b9b3cd99b24b2091e1e61202cf81d10a99db7b7 -SIZE (KDE/release-service/21.04.1/filelight-21.04.1.tar.xz) = 678996 +TIMESTAMP = 1623521046 +SHA256 (KDE/release-service/21.04.2/filelight-21.04.2.tar.xz) = 618f91b9da8eebbb6b96e3d74d9e89a7c088ca08b1682ff6c4e65b53a3da5d20 +SIZE (KDE/release-service/21.04.2/filelight-21.04.2.tar.xz) = 680824 diff --git a/sysutils/filelight/pkg-plist b/sysutils/filelight/pkg-plist index 824a46e03d5a..f885379b3d72 100644 --- a/sysutils/filelight/pkg-plist +++ b/sysutils/filelight/pkg-plist @@ -1,57 +1,58 @@ bin/filelight share/qlogging-categories5/filelight.categories etc/xdg/filelightrc share/applications/org.kde.filelight.desktop share/icons/hicolor/128x128/apps/filelight.png share/icons/hicolor/16x16/apps/filelight.png share/icons/hicolor/22x22/apps/filelight.png share/icons/hicolor/32x32/apps/filelight.png share/icons/hicolor/48x48/apps/filelight.png share/icons/hicolor/64x64/apps/filelight.png share/kxmlgui5/filelight/filelightui.rc share/locale/ast/LC_MESSAGES/filelight.mo +share/locale/az/LC_MESSAGES/filelight.mo share/locale/bg/LC_MESSAGES/filelight.mo share/locale/bs/LC_MESSAGES/filelight.mo share/locale/ca/LC_MESSAGES/filelight.mo share/locale/ca@valencia/LC_MESSAGES/filelight.mo share/locale/cs/LC_MESSAGES/filelight.mo share/locale/da/LC_MESSAGES/filelight.mo share/locale/de/LC_MESSAGES/filelight.mo share/locale/el/LC_MESSAGES/filelight.mo share/locale/en_GB/LC_MESSAGES/filelight.mo share/locale/eo/LC_MESSAGES/filelight.mo share/locale/es/LC_MESSAGES/filelight.mo share/locale/et/LC_MESSAGES/filelight.mo share/locale/eu/LC_MESSAGES/filelight.mo share/locale/fi/LC_MESSAGES/filelight.mo share/locale/fr/LC_MESSAGES/filelight.mo share/locale/ga/LC_MESSAGES/filelight.mo share/locale/gl/LC_MESSAGES/filelight.mo share/locale/hu/LC_MESSAGES/filelight.mo share/locale/ia/LC_MESSAGES/filelight.mo share/locale/it/LC_MESSAGES/filelight.mo share/locale/ja/LC_MESSAGES/filelight.mo share/locale/kk/LC_MESSAGES/filelight.mo share/locale/ko/LC_MESSAGES/filelight.mo share/locale/lt/LC_MESSAGES/filelight.mo share/locale/mr/LC_MESSAGES/filelight.mo share/locale/nb/LC_MESSAGES/filelight.mo share/locale/nds/LC_MESSAGES/filelight.mo share/locale/nl/LC_MESSAGES/filelight.mo share/locale/nn/LC_MESSAGES/filelight.mo share/locale/pa/LC_MESSAGES/filelight.mo share/locale/pl/LC_MESSAGES/filelight.mo share/locale/pt/LC_MESSAGES/filelight.mo share/locale/pt_BR/LC_MESSAGES/filelight.mo share/locale/ro/LC_MESSAGES/filelight.mo share/locale/ru/LC_MESSAGES/filelight.mo share/locale/sk/LC_MESSAGES/filelight.mo share/locale/sl/LC_MESSAGES/filelight.mo share/locale/sr/LC_MESSAGES/filelight.mo share/locale/sv/LC_MESSAGES/filelight.mo share/locale/tr/LC_MESSAGES/filelight.mo share/locale/ug/LC_MESSAGES/filelight.mo share/locale/uk/LC_MESSAGES/filelight.mo share/locale/zh_CN/LC_MESSAGES/filelight.mo share/locale/zh_TW/LC_MESSAGES/filelight.mo share/metainfo/org.kde.filelight.appdata.xml diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 077f97e7b5e1..eb9d474261c4 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741559 -SHA256 (KDE/release-service/21.04.1/k3b-21.04.1.tar.xz) = d316f98c9c4e7d4023c20e79e41baca011f75982c4415edd027feed94c780569 -SIZE (KDE/release-service/21.04.1/k3b-21.04.1.tar.xz) = 10708748 +TIMESTAMP = 1623521048 +SHA256 (KDE/release-service/21.04.2/k3b-21.04.2.tar.xz) = 986c5073c944dbda5b49e3c1a2fbf340fb1c6af941e80b6a0020fadd1be9034b +SIZE (KDE/release-service/21.04.2/k3b-21.04.2.tar.xz) = 10743652 diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index e2e4925f56e2..40e7d514939e 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,542 +1,553 @@ bin/k3b include/k3b_export.h include/k3bactivepipe.h include/k3baudiocdtrackdrag.h include/k3baudiocdtrackreader.h include/k3baudiocdtracksource.h include/k3baudiocuefilewritingjob.h include/k3baudiodatasource.h include/k3baudiodatasourceiterator.h include/k3baudiodecoder.h include/k3baudiodoc.h include/k3baudiodocreader.h include/k3baudioencoder.h include/k3baudiofile.h include/k3baudiofileanalyzerjob.h include/k3baudiofilereader.h include/k3baudiojob.h include/k3baudiotrack.h include/k3baudiotrackreader.h include/k3baudiozerodata.h include/k3baudiozerodatareader.h include/k3bbinimagewritingjob.h include/k3bblankingjob.h include/k3bbootitem.h include/k3bbusywidget.h include/k3bcdcopyjob.h include/k3bcddb.h include/k3bcdparanoialib.h include/k3bcdrdaowriter.h include/k3bcdrecordwriter.h include/k3bcdrskinwriter.h include/k3bcdtext.h include/k3bcdtextvalidator.h include/k3bchecksumpipe.h include/k3bclonejob.h include/k3bcore.h include/k3bcuefileparser.h include/k3bdatadoc.h include/k3bdataitem.h include/k3bdatajob.h include/k3bdefaultexternalprograms.h include/k3bdevice.h include/k3bdevice_export.h include/k3bdevicecombobox.h include/k3bdeviceglobals.h include/k3bdevicehandler.h include/k3bdevicemanager.h include/k3bdeviceselectiondialog.h include/k3bdevicetypes.h include/k3bdiritem.h include/k3bdirsizejob.h include/k3bdiskinfo.h include/k3bdoc.h include/k3bdvdcopyjob.h include/k3bdvdformattingjob.h include/k3bexceptions.h include/k3bexternalbinmanager.h include/k3bfileitem.h include/k3bfilesplitter.h include/k3bfilesysteminfo.h include/k3bglobals.h include/k3bglobalsettings.h include/k3bgrowisofswriter.h include/k3bimagefilereader.h include/k3binffilewriter.h include/k3bintmapcombobox.h include/k3bintvalidator.h include/k3biso9660.h include/k3biso9660backend.h include/k3biso9660imagewritingjob.h include/k3bisooptions.h include/k3bjob.h include/k3bjobhandler.h include/k3bmd5job.h include/k3bmediacache.h include/k3bmedium.h include/k3bmetawriter.h include/k3bmixeddoc.h include/k3bmixedjob.h include/k3bmovixdoc.h include/k3bmovixfileitem.h include/k3bmovixjob.h include/k3bmsf.h include/k3bmsfedit.h include/k3bmultichoicedialog.h include/k3bplugin.h include/k3bpluginconfigwidget.h include/k3bpluginmanager.h include/k3bprocess.h include/k3bprojectplugin.h include/k3brawaudiodatareader.h include/k3brawaudiodatasource.h include/k3bsignalwaiter.h include/k3bsimplejobhandler.h include/k3bstdguiitems.h include/k3bthreadjob.h include/k3bthreadwidget.h include/k3bthroughputestimator.h include/k3btoc.h include/k3btocfilewriter.h include/k3btrack.h include/k3bvalidators.h include/k3bvcddoc.h include/k3bvcdjob.h include/k3bvcdoptions.h include/k3bverificationjob.h include/k3bversion.h include/k3bvideodvd.h include/k3bvideodvdaudiostream.h include/k3bvideodvddoc.h include/k3bvideodvdjob.h include/k3bvideodvdptt.h include/k3bvideodvdsubpicturestream.h include/k3bvideodvdtime.h include/k3bvideodvdtitle.h include/k3bvideodvdtitledetectclippingjob.h include/k3bvideodvdtitletranscodingjob.h include/k3bvideodvdvideostream.h include/k3bwavefilewriter.h lib/libk3bdevice.so lib/libk3bdevice.so.7 lib/libk3bdevice.so.7.0.0 lib/libk3blib.so lib/libk3blib.so.7 lib/libk3blib.so.7.0.0 lib/libexec/kauth/k3bhelper %%QT_PLUGINDIR%%/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3blameencoder.so %%QT_PLUGINDIR%%/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3bwavedecoder.so %%QT_PLUGINDIR%%/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/kcm_k3bsoxencoder.so %%QT_PLUGINDIR%%/kf5/kio/videodvd.so share/applications/org.kde.k3b.desktop share/dbus-1/system-services/org.kde.k3b.service share/dbus-1/system.d/org.kde.k3b.conf share/icons/hicolor/128x128/apps/k3b.png share/icons/hicolor/128x128/mimetypes/application-x-k3b.png share/icons/hicolor/16x16/apps/k3b.png share/icons/hicolor/22x22/apps/k3b.png share/icons/hicolor/32x32/apps/k3b.png share/icons/hicolor/32x32/mimetypes/application-x-k3b.png share/icons/hicolor/48x48/apps/k3b.png share/icons/hicolor/48x48/mimetypes/application-x-k3b.png share/icons/hicolor/64x64/apps/k3b.png share/icons/hicolor/64x64/mimetypes/application-x-k3b.png share/icons/hicolor/scalable/apps/k3b.svgz share/icons/hicolor/scalable/mimetypes/application-x-k3b.svgz %%DATADIR%%/cdi/cdi_imag.rtf %%DATADIR%%/cdi/cdi_text.fnt %%DATADIR%%/cdi/cdi_vcd.app %%DATADIR%%/cdi/cdi_vcd.cfg %%DATADIR%%/cdi/icdia.htm %%DATADIR%%/cdi/vcd_on_cdi_41.pdf %%DATADIR%%/extra/k3bphotosvcd.mpg %%DATADIR%%/extra/k3bphotovcd.mpg %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/128x128/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/128x128/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/16x16/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/16x16/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/16x16/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/22x22/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/22x22/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/32x32/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/32x32/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/48x48/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-data.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/48x48/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/64x64/actions/musicbrainz.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-audio-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-cd.png %%DATADIR%%/icons/hicolor/64x64/actions/tools-rip-video-dvd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-audio.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-cd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-dvd-video.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-mixed-cd.png %%DATADIR%%/icons/hicolor/64x64/devices/media-optical-video.png %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-audio-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-cd.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tools-rip-video-dvd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-audio.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-cd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-data.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-dvd-video.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-mixed-cd.svgz %%DATADIR%%/icons/hicolor/scalable/devices/media-optical-video.svgz %%DATADIR%%/pics/73lab/dialog_left.png %%DATADIR%%/pics/73lab/dialog_right.png %%DATADIR%%/pics/73lab/k3b.theme %%DATADIR%%/pics/73lab/media_audio.png %%DATADIR%%/pics/73lab/media_data.png %%DATADIR%%/pics/73lab/media_empty.png %%DATADIR%%/pics/73lab/media_left.png %%DATADIR%%/pics/73lab/media_mixed.png %%DATADIR%%/pics/73lab/media_none.png %%DATADIR%%/pics/73lab/media_video.png %%DATADIR%%/pics/73lab/probing.png %%DATADIR%%/pics/73lab/progress_fail.png %%DATADIR%%/pics/73lab/progress_right.png %%DATADIR%%/pics/73lab/progress_success.png %%DATADIR%%/pics/73lab/progress_working.png %%DATADIR%%/pics/73lab/project_left.png %%DATADIR%%/pics/73lab/project_right.png %%DATADIR%%/pics/73lab/splash.png %%DATADIR%%/pics/73lab/welcome_bg.png %%DATADIR%%/pics/RobsTheme/dialog_left.png %%DATADIR%%/pics/RobsTheme/dialog_right.png %%DATADIR%%/pics/RobsTheme/k3b.theme %%DATADIR%%/pics/RobsTheme/media_audio.png %%DATADIR%%/pics/RobsTheme/media_data.png %%DATADIR%%/pics/RobsTheme/media_empty.png %%DATADIR%%/pics/RobsTheme/media_left.png %%DATADIR%%/pics/RobsTheme/media_mixed.png %%DATADIR%%/pics/RobsTheme/media_none.png %%DATADIR%%/pics/RobsTheme/media_video.png %%DATADIR%%/pics/RobsTheme/progress_fail.png %%DATADIR%%/pics/RobsTheme/progress_right.png %%DATADIR%%/pics/RobsTheme/progress_success.png %%DATADIR%%/pics/RobsTheme/progress_working.png %%DATADIR%%/pics/RobsTheme/project_left.png %%DATADIR%%/pics/RobsTheme/project_right.png %%DATADIR%%/pics/RobsTheme/splash.png %%DATADIR%%/pics/RobsTheme/welcome_bg.png %%DATADIR%%/pics/crystal/dialog_left.png %%DATADIR%%/pics/crystal/dialog_right.png %%DATADIR%%/pics/crystal/k3b.theme %%DATADIR%%/pics/crystal/media_audio.png %%DATADIR%%/pics/crystal/media_data.png %%DATADIR%%/pics/crystal/media_empty.png %%DATADIR%%/pics/crystal/media_left.png %%DATADIR%%/pics/crystal/media_mixed.png %%DATADIR%%/pics/crystal/media_none.png %%DATADIR%%/pics/crystal/media_video.png %%DATADIR%%/pics/crystal/probing.png %%DATADIR%%/pics/crystal/progress_fail.png %%DATADIR%%/pics/crystal/progress_right.png %%DATADIR%%/pics/crystal/progress_success.png %%DATADIR%%/pics/crystal/progress_working.png %%DATADIR%%/pics/crystal/project_left.png %%DATADIR%%/pics/crystal/project_right.png %%DATADIR%%/pics/crystal/splash.png %%DATADIR%%/pics/crystal/welcome_bg.png %%DATADIR%%/pics/quant/dialog_left.png %%DATADIR%%/pics/quant/dialog_right.png %%DATADIR%%/pics/quant/k3b.theme %%DATADIR%%/pics/quant/media_audio.png %%DATADIR%%/pics/quant/media_data.png %%DATADIR%%/pics/quant/media_empty.png %%DATADIR%%/pics/quant/media_left.png %%DATADIR%%/pics/quant/media_mixed.png %%DATADIR%%/pics/quant/media_none.png %%DATADIR%%/pics/quant/media_video.png %%DATADIR%%/pics/quant/progress_fail.png %%DATADIR%%/pics/quant/progress_right.png %%DATADIR%%/pics/quant/progress_success.png %%DATADIR%%/pics/quant/progress_working.png %%DATADIR%%/pics/quant/project_left.png %%DATADIR%%/pics/quant/project_right.png %%DATADIR%%/pics/quant/splash.png %%DATADIR%%/pics/quant/welcome_bg.png share/knotifications5/k3b.notifyrc share/knsrcfiles/k3btheme.knsrc share/konqsidebartng/virtual_folders/services/videodvd.desktop share/kservices5/ServiceMenus/k3b_create_audio_cd.desktop share/kservices5/ServiceMenus/k3b_create_data_project.desktop share/kservices5/ServiceMenus/k3b_create_video_cd.desktop share/kservices5/ServiceMenus/k3b_write_bin_image.desktop share/kservices5/ServiceMenus/k3b_write_iso_image.desktop share/kservices5/k3baudiometainforenamerplugin.desktop share/kservices5/k3baudioprojectcddbplugin.desktop share/kservices5/k3bexternalencoder.desktop share/kservices5/k3bflacdecoder.desktop share/kservices5/k3blameencoder.desktop share/kservices5/k3blibsndfiledecoder.desktop share/kservices5/k3bmaddecoder.desktop share/kservices5/k3boggvorbisdecoder.desktop share/kservices5/k3boggvorbisencoder.desktop share/kservices5/k3bsoxencoder.desktop share/kservices5/k3bwavedecoder.desktop share/kservices5/kcm_k3bexternalencoder.desktop share/kservices5/kcm_k3blameencoder.desktop share/kservices5/kcm_k3boggvorbisencoder.desktop share/kservices5/kcm_k3bsoxencoder.desktop share/kservices5/videodvd.protocol share/kservicetypes5/k3bplugin.desktop share/kxmlgui5/k3b/k3bdeviceui.rc share/kxmlgui5/k3b/k3bui.rc share/locale/ar/LC_MESSAGES/k3b.mo share/locale/ast/LC_MESSAGES/kio_videodvd.mo share/locale/ast/LC_MESSAGES/libk3bdevice.mo +share/locale/be/LC_MESSAGES/k3b.mo +share/locale/be/LC_MESSAGES/kio_videodvd.mo +share/locale/be/LC_MESSAGES/libk3b.mo +share/locale/be/LC_MESSAGES/libk3bdevice.mo share/locale/bg/LC_MESSAGES/k3b.mo share/locale/bg/LC_MESSAGES/kio_videodvd.mo share/locale/bg/LC_MESSAGES/libk3b.mo share/locale/bg/LC_MESSAGES/libk3bdevice.mo share/locale/bs/LC_MESSAGES/k3b.mo share/locale/bs/LC_MESSAGES/kio_videodvd.mo share/locale/bs/LC_MESSAGES/libk3b.mo share/locale/bs/LC_MESSAGES/libk3bdevice.mo share/locale/ca/LC_MESSAGES/k3b.mo share/locale/ca/LC_MESSAGES/kio_videodvd.mo share/locale/ca/LC_MESSAGES/libk3b.mo share/locale/ca/LC_MESSAGES/libk3bdevice.mo share/locale/ca@valencia/LC_MESSAGES/k3b.mo share/locale/ca@valencia/LC_MESSAGES/kio_videodvd.mo share/locale/ca@valencia/LC_MESSAGES/libk3b.mo share/locale/ca@valencia/LC_MESSAGES/libk3bdevice.mo share/locale/cs/LC_MESSAGES/k3b.mo share/locale/cs/LC_MESSAGES/kio_videodvd.mo share/locale/cs/LC_MESSAGES/libk3b.mo share/locale/cs/LC_MESSAGES/libk3bdevice.mo share/locale/da/LC_MESSAGES/k3b.mo share/locale/da/LC_MESSAGES/kio_videodvd.mo share/locale/da/LC_MESSAGES/libk3b.mo share/locale/da/LC_MESSAGES/libk3bdevice.mo share/locale/de/LC_MESSAGES/k3b.mo share/locale/de/LC_MESSAGES/kio_videodvd.mo share/locale/de/LC_MESSAGES/libk3b.mo share/locale/de/LC_MESSAGES/libk3bdevice.mo share/locale/el/LC_MESSAGES/k3b.mo share/locale/el/LC_MESSAGES/kio_videodvd.mo share/locale/el/LC_MESSAGES/libk3b.mo share/locale/el/LC_MESSAGES/libk3bdevice.mo share/locale/en_GB/LC_MESSAGES/k3b.mo share/locale/en_GB/LC_MESSAGES/kio_videodvd.mo share/locale/en_GB/LC_MESSAGES/libk3b.mo share/locale/en_GB/LC_MESSAGES/libk3bdevice.mo share/locale/eo/LC_MESSAGES/k3b.mo share/locale/eo/LC_MESSAGES/kio_videodvd.mo share/locale/eo/LC_MESSAGES/libk3b.mo share/locale/eo/LC_MESSAGES/libk3bdevice.mo share/locale/es/LC_MESSAGES/k3b.mo share/locale/es/LC_MESSAGES/kio_videodvd.mo share/locale/es/LC_MESSAGES/libk3b.mo share/locale/es/LC_MESSAGES/libk3bdevice.mo share/locale/et/LC_MESSAGES/k3b.mo share/locale/et/LC_MESSAGES/kio_videodvd.mo share/locale/et/LC_MESSAGES/libk3b.mo share/locale/et/LC_MESSAGES/libk3bdevice.mo share/locale/eu/LC_MESSAGES/k3b.mo share/locale/eu/LC_MESSAGES/kio_videodvd.mo share/locale/eu/LC_MESSAGES/libk3b.mo share/locale/eu/LC_MESSAGES/libk3bdevice.mo share/locale/fa/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/k3b.mo share/locale/fi/LC_MESSAGES/kio_videodvd.mo share/locale/fi/LC_MESSAGES/libk3b.mo share/locale/fi/LC_MESSAGES/libk3bdevice.mo share/locale/fr/LC_MESSAGES/k3b.mo share/locale/fr/LC_MESSAGES/kio_videodvd.mo share/locale/fr/LC_MESSAGES/libk3b.mo share/locale/fr/LC_MESSAGES/libk3bdevice.mo share/locale/ga/LC_MESSAGES/k3b.mo share/locale/ga/LC_MESSAGES/kio_videodvd.mo share/locale/ga/LC_MESSAGES/libk3b.mo share/locale/ga/LC_MESSAGES/libk3bdevice.mo share/locale/gl/LC_MESSAGES/k3b.mo share/locale/gl/LC_MESSAGES/kio_videodvd.mo share/locale/gl/LC_MESSAGES/libk3b.mo share/locale/gl/LC_MESSAGES/libk3bdevice.mo share/locale/he/LC_MESSAGES/k3b.mo share/locale/he/LC_MESSAGES/kio_videodvd.mo share/locale/he/LC_MESSAGES/libk3b.mo share/locale/he/LC_MESSAGES/libk3bdevice.mo share/locale/hi/LC_MESSAGES/k3b.mo share/locale/hi/LC_MESSAGES/kio_videodvd.mo share/locale/hi/LC_MESSAGES/libk3b.mo share/locale/hi/LC_MESSAGES/libk3bdevice.mo share/locale/hr/LC_MESSAGES/k3b.mo share/locale/hr/LC_MESSAGES/kio_videodvd.mo share/locale/hr/LC_MESSAGES/libk3b.mo share/locale/hr/LC_MESSAGES/libk3bdevice.mo share/locale/hu/LC_MESSAGES/k3b.mo share/locale/hu/LC_MESSAGES/kio_videodvd.mo share/locale/hu/LC_MESSAGES/libk3b.mo share/locale/hu/LC_MESSAGES/libk3bdevice.mo share/locale/ia/LC_MESSAGES/k3b.mo share/locale/ia/LC_MESSAGES/kio_videodvd.mo share/locale/ia/LC_MESSAGES/libk3b.mo share/locale/ia/LC_MESSAGES/libk3bdevice.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/k3b.mo share/locale/is/LC_MESSAGES/kio_videodvd.mo share/locale/is/LC_MESSAGES/libk3b.mo share/locale/is/LC_MESSAGES/libk3bdevice.mo share/locale/it/LC_MESSAGES/k3b.mo share/locale/it/LC_MESSAGES/kio_videodvd.mo share/locale/it/LC_MESSAGES/libk3b.mo share/locale/it/LC_MESSAGES/libk3bdevice.mo share/locale/ja/LC_MESSAGES/k3b.mo share/locale/ja/LC_MESSAGES/kio_videodvd.mo share/locale/ja/LC_MESSAGES/libk3b.mo share/locale/ja/LC_MESSAGES/libk3bdevice.mo share/locale/kk/LC_MESSAGES/k3b.mo share/locale/kk/LC_MESSAGES/kio_videodvd.mo share/locale/kk/LC_MESSAGES/libk3b.mo share/locale/kk/LC_MESSAGES/libk3bdevice.mo share/locale/km/LC_MESSAGES/k3b.mo share/locale/km/LC_MESSAGES/kio_videodvd.mo share/locale/km/LC_MESSAGES/libk3b.mo share/locale/km/LC_MESSAGES/libk3bdevice.mo share/locale/ko/LC_MESSAGES/k3b.mo share/locale/ko/LC_MESSAGES/kio_videodvd.mo share/locale/ko/LC_MESSAGES/libk3b.mo share/locale/ko/LC_MESSAGES/libk3bdevice.mo share/locale/lt/LC_MESSAGES/k3b.mo share/locale/lt/LC_MESSAGES/kio_videodvd.mo share/locale/lt/LC_MESSAGES/libk3b.mo share/locale/lt/LC_MESSAGES/libk3bdevice.mo share/locale/lv/LC_MESSAGES/k3b.mo share/locale/lv/LC_MESSAGES/kio_videodvd.mo share/locale/lv/LC_MESSAGES/libk3b.mo share/locale/lv/LC_MESSAGES/libk3bdevice.mo share/locale/ml/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/k3b.mo share/locale/mr/LC_MESSAGES/kio_videodvd.mo share/locale/mr/LC_MESSAGES/libk3b.mo share/locale/mr/LC_MESSAGES/libk3bdevice.mo share/locale/nb/LC_MESSAGES/k3b.mo share/locale/nb/LC_MESSAGES/kio_videodvd.mo share/locale/nb/LC_MESSAGES/libk3b.mo share/locale/nb/LC_MESSAGES/libk3bdevice.mo share/locale/nds/LC_MESSAGES/k3b.mo share/locale/nds/LC_MESSAGES/kio_videodvd.mo share/locale/nds/LC_MESSAGES/libk3b.mo share/locale/nds/LC_MESSAGES/libk3bdevice.mo share/locale/nl/LC_MESSAGES/k3b.mo share/locale/nl/LC_MESSAGES/kio_videodvd.mo share/locale/nl/LC_MESSAGES/libk3b.mo share/locale/nl/LC_MESSAGES/libk3bdevice.mo share/locale/nn/LC_MESSAGES/k3b.mo share/locale/nn/LC_MESSAGES/kio_videodvd.mo share/locale/nn/LC_MESSAGES/libk3b.mo share/locale/nn/LC_MESSAGES/libk3bdevice.mo share/locale/pa/LC_MESSAGES/k3b.mo share/locale/pa/LC_MESSAGES/kio_videodvd.mo share/locale/pa/LC_MESSAGES/libk3b.mo share/locale/pa/LC_MESSAGES/libk3bdevice.mo share/locale/pl/LC_MESSAGES/k3b.mo share/locale/pl/LC_MESSAGES/kio_videodvd.mo share/locale/pl/LC_MESSAGES/libk3b.mo share/locale/pl/LC_MESSAGES/libk3bdevice.mo share/locale/pt/LC_MESSAGES/k3b.mo share/locale/pt/LC_MESSAGES/kio_videodvd.mo share/locale/pt/LC_MESSAGES/libk3b.mo share/locale/pt/LC_MESSAGES/libk3bdevice.mo share/locale/pt_BR/LC_MESSAGES/k3b.mo share/locale/pt_BR/LC_MESSAGES/kio_videodvd.mo share/locale/pt_BR/LC_MESSAGES/libk3b.mo share/locale/pt_BR/LC_MESSAGES/libk3bdevice.mo share/locale/ro/LC_MESSAGES/k3b.mo share/locale/ro/LC_MESSAGES/kio_videodvd.mo share/locale/ro/LC_MESSAGES/libk3b.mo share/locale/ro/LC_MESSAGES/libk3bdevice.mo share/locale/ru/LC_MESSAGES/k3b.mo share/locale/ru/LC_MESSAGES/kio_videodvd.mo share/locale/ru/LC_MESSAGES/libk3b.mo share/locale/ru/LC_MESSAGES/libk3bdevice.mo +share/locale/se/LC_MESSAGES/k3b.mo +share/locale/se/LC_MESSAGES/libk3b.mo +share/locale/se/LC_MESSAGES/libk3bdevice.mo share/locale/sk/LC_MESSAGES/k3b.mo share/locale/sk/LC_MESSAGES/kio_videodvd.mo share/locale/sk/LC_MESSAGES/libk3b.mo share/locale/sk/LC_MESSAGES/libk3bdevice.mo share/locale/sl/LC_MESSAGES/k3b.mo share/locale/sl/LC_MESSAGES/kio_videodvd.mo share/locale/sl/LC_MESSAGES/libk3b.mo share/locale/sl/LC_MESSAGES/libk3bdevice.mo +share/locale/sq/LC_MESSAGES/k3b.mo +share/locale/sq/LC_MESSAGES/kio_videodvd.mo +share/locale/sq/LC_MESSAGES/libk3b.mo +share/locale/sq/LC_MESSAGES/libk3bdevice.mo share/locale/sr/LC_MESSAGES/k3b.mo share/locale/sr/LC_MESSAGES/kio_videodvd.mo share/locale/sr/LC_MESSAGES/libk3b.mo share/locale/sr/LC_MESSAGES/libk3bdevice.mo share/locale/sv/LC_MESSAGES/k3b.mo share/locale/sv/LC_MESSAGES/kio_videodvd.mo share/locale/sv/LC_MESSAGES/libk3b.mo share/locale/sv/LC_MESSAGES/libk3bdevice.mo share/locale/tr/LC_MESSAGES/k3b.mo share/locale/tr/LC_MESSAGES/kio_videodvd.mo share/locale/tr/LC_MESSAGES/libk3b.mo share/locale/tr/LC_MESSAGES/libk3bdevice.mo share/locale/ug/LC_MESSAGES/k3b.mo share/locale/ug/LC_MESSAGES/kio_videodvd.mo share/locale/ug/LC_MESSAGES/libk3b.mo share/locale/ug/LC_MESSAGES/libk3bdevice.mo share/locale/uk/LC_MESSAGES/k3b.mo share/locale/uk/LC_MESSAGES/kio_videodvd.mo share/locale/uk/LC_MESSAGES/libk3b.mo share/locale/uk/LC_MESSAGES/libk3bdevice.mo share/locale/wa/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/k3b.mo share/locale/zh_CN/LC_MESSAGES/kio_videodvd.mo share/locale/zh_CN/LC_MESSAGES/libk3b.mo share/locale/zh_CN/LC_MESSAGES/libk3bdevice.mo share/locale/zh_TW/LC_MESSAGES/k3b.mo share/locale/zh_TW/LC_MESSAGES/kio_videodvd.mo share/locale/zh_TW/LC_MESSAGES/libk3b.mo share/locale/zh_TW/LC_MESSAGES/libk3bdevice.mo share/metainfo/org.kde.k3b.appdata.xml share/mime/packages/x-k3b.xml share/polkit-1/actions/org.kde.k3b.policy share/solid/actions/k3b_audiocd_rip.desktop share/solid/actions/k3b_copy_disc.desktop share/solid/actions/k3b_create_audio_cd_from_blank_medium.desktop share/solid/actions/k3b_create_data_project_from_blank_medium.desktop share/solid/actions/k3b_videodvd_rip.desktop diff --git a/sysutils/kbackup/distinfo b/sysutils/kbackup/distinfo index c769b8040e41..4d4a46578da3 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741560 -SHA256 (KDE/release-service/21.04.1/kbackup-21.04.1.tar.xz) = eced358efaf30539b3bcdaae528ab709997ffd9f969eed2aa938f55eebc25093 -SIZE (KDE/release-service/21.04.1/kbackup-21.04.1.tar.xz) = 383648 +TIMESTAMP = 1623521049 +SHA256 (KDE/release-service/21.04.2/kbackup-21.04.2.tar.xz) = ca50b2d06f8c0a73a142637c349b45401bc9f196d152f2e2a7347a085a42ba1e +SIZE (KDE/release-service/21.04.2/kbackup-21.04.2.tar.xz) = 383648 diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 073eb06f7356..3a6ff1ea06a3 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741561 -SHA256 (KDE/release-service/21.04.1/kcron-21.04.1.tar.xz) = e5cc4838b7f1d0380be64888b9e1da5e2e8625d36b19e376134a50795614cff6 -SIZE (KDE/release-service/21.04.1/kcron-21.04.1.tar.xz) = 901484 +TIMESTAMP = 1623521051 +SHA256 (KDE/release-service/21.04.2/kcron-21.04.2.tar.xz) = d0b016fda306eed85e714cdfd17c7641ac52275dc4ed761b4585e64b48adb94c +SIZE (KDE/release-service/21.04.2/kcron-21.04.2.tar.xz) = 911756 diff --git a/sysutils/kcron/pkg-plist b/sysutils/kcron/pkg-plist index 2a36e8f3b12c..eb777b78f3b8 100644 --- a/sysutils/kcron/pkg-plist +++ b/sysutils/kcron/pkg-plist @@ -1,57 +1,63 @@ share/qlogging-categories5/kcron.categories %%QT_PLUGINDIR%%/kcm_cron.so share/kservices5/kcm_cron.desktop share/locale/ar/LC_MESSAGES/kcron.mo +share/locale/be/LC_MESSAGES/kcron.mo share/locale/bg/LC_MESSAGES/kcron.mo share/locale/bs/LC_MESSAGES/kcron.mo share/locale/ca/LC_MESSAGES/kcron.mo share/locale/ca@valencia/LC_MESSAGES/kcron.mo share/locale/cs/LC_MESSAGES/kcron.mo share/locale/da/LC_MESSAGES/kcron.mo share/locale/de/LC_MESSAGES/kcron.mo share/locale/el/LC_MESSAGES/kcron.mo share/locale/en_GB/LC_MESSAGES/kcron.mo share/locale/eo/LC_MESSAGES/kcron.mo share/locale/es/LC_MESSAGES/kcron.mo share/locale/et/LC_MESSAGES/kcron.mo share/locale/eu/LC_MESSAGES/kcron.mo share/locale/fa/LC_MESSAGES/kcron.mo share/locale/fi/LC_MESSAGES/kcron.mo share/locale/fr/LC_MESSAGES/kcron.mo share/locale/ga/LC_MESSAGES/kcron.mo share/locale/gl/LC_MESSAGES/kcron.mo share/locale/he/LC_MESSAGES/kcron.mo share/locale/hi/LC_MESSAGES/kcron.mo share/locale/hr/LC_MESSAGES/kcron.mo share/locale/hu/LC_MESSAGES/kcron.mo share/locale/ia/LC_MESSAGES/kcron.mo share/locale/is/LC_MESSAGES/kcron.mo share/locale/it/LC_MESSAGES/kcron.mo share/locale/ja/LC_MESSAGES/kcron.mo share/locale/kk/LC_MESSAGES/kcron.mo share/locale/km/LC_MESSAGES/kcron.mo share/locale/ko/LC_MESSAGES/kcron.mo share/locale/lt/LC_MESSAGES/kcron.mo share/locale/lv/LC_MESSAGES/kcron.mo share/locale/mr/LC_MESSAGES/kcron.mo share/locale/nb/LC_MESSAGES/kcron.mo share/locale/nds/LC_MESSAGES/kcron.mo share/locale/nl/LC_MESSAGES/kcron.mo share/locale/nn/LC_MESSAGES/kcron.mo share/locale/pa/LC_MESSAGES/kcron.mo share/locale/pl/LC_MESSAGES/kcron.mo share/locale/pt/LC_MESSAGES/kcron.mo share/locale/pt_BR/LC_MESSAGES/kcron.mo share/locale/ro/LC_MESSAGES/kcron.mo share/locale/ru/LC_MESSAGES/kcron.mo +share/locale/se/LC_MESSAGES/kcron.mo share/locale/sk/LC_MESSAGES/kcron.mo share/locale/sl/LC_MESSAGES/kcron.mo +share/locale/sq/LC_MESSAGES/kcron.mo share/locale/sr/LC_MESSAGES/kcron.mo share/locale/sv/LC_MESSAGES/kcron.mo +share/locale/ta/LC_MESSAGES/kcron.mo +share/locale/tg/LC_MESSAGES/kcron.mo share/locale/tr/LC_MESSAGES/kcron.mo share/locale/ug/LC_MESSAGES/kcron.mo share/locale/uk/LC_MESSAGES/kcron.mo +share/locale/vi/LC_MESSAGES/kcron.mo share/locale/wa/LC_MESSAGES/kcron.mo share/locale/zh_CN/LC_MESSAGES/kcron.mo share/locale/zh_TW/LC_MESSAGES/kcron.mo share/metainfo/org.kde.kcron.metainfo.xml diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index 4fda3d1c4039..683c2155a28f 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741562 -SHA256 (KDE/release-service/21.04.1/kdebugsettings-21.04.1.tar.xz) = efe4dd509e8df605d9ffc48c3f5f9dd33789e24de03e2748b7535ab56cc64a2b -SIZE (KDE/release-service/21.04.1/kdebugsettings-21.04.1.tar.xz) = 86564 +TIMESTAMP = 1623521052 +SHA256 (KDE/release-service/21.04.2/kdebugsettings-21.04.2.tar.xz) = a2b341875ea97f1f8bb9c98bd7ba10971180c6fd10fa1142d8f38d9b7ff764c6 +SIZE (KDE/release-service/21.04.2/kdebugsettings-21.04.2.tar.xz) = 87892 diff --git a/sysutils/kdebugsettings/pkg-plist b/sysutils/kdebugsettings/pkg-plist index 73a67098a08d..c5d0520a94b4 100644 --- a/sysutils/kdebugsettings/pkg-plist +++ b/sysutils/kdebugsettings/pkg-plist @@ -1,43 +1,44 @@ bin/kdebugsettings lib/libkdebugsettings.so.%%KDE_APPLICATIONS_VERSION%% lib/libkdebugsettings.so.5 share/applications/org.kde.kdebugsettings.desktop %%DATADIR%%/groups/Full Debug Ruqola share/locale/ar/LC_MESSAGES/kdebugsettings.mo +share/locale/az/LC_MESSAGES/kdebugsettings.mo share/locale/ca/LC_MESSAGES/kdebugsettings.mo share/locale/ca@valencia/LC_MESSAGES/kdebugsettings.mo share/locale/cs/LC_MESSAGES/kdebugsettings.mo share/locale/da/LC_MESSAGES/kdebugsettings.mo share/locale/de/LC_MESSAGES/kdebugsettings.mo share/locale/el/LC_MESSAGES/kdebugsettings.mo share/locale/en_GB/LC_MESSAGES/kdebugsettings.mo share/locale/es/LC_MESSAGES/kdebugsettings.mo share/locale/et/LC_MESSAGES/kdebugsettings.mo share/locale/eu/LC_MESSAGES/kdebugsettings.mo share/locale/fi/LC_MESSAGES/kdebugsettings.mo share/locale/fr/LC_MESSAGES/kdebugsettings.mo share/locale/gl/LC_MESSAGES/kdebugsettings.mo share/locale/hu/LC_MESSAGES/kdebugsettings.mo share/locale/ia/LC_MESSAGES/kdebugsettings.mo share/locale/it/LC_MESSAGES/kdebugsettings.mo share/locale/ja/LC_MESSAGES/kdebugsettings.mo share/locale/ko/LC_MESSAGES/kdebugsettings.mo share/locale/lt/LC_MESSAGES/kdebugsettings.mo share/locale/nl/LC_MESSAGES/kdebugsettings.mo share/locale/nn/LC_MESSAGES/kdebugsettings.mo share/locale/pl/LC_MESSAGES/kdebugsettings.mo share/locale/pt/LC_MESSAGES/kdebugsettings.mo share/locale/pt_BR/LC_MESSAGES/kdebugsettings.mo share/locale/ro/LC_MESSAGES/kdebugsettings.mo share/locale/ru/LC_MESSAGES/kdebugsettings.mo share/locale/sk/LC_MESSAGES/kdebugsettings.mo share/locale/sl/LC_MESSAGES/kdebugsettings.mo share/locale/sr/LC_MESSAGES/kdebugsettings.mo share/locale/sv/LC_MESSAGES/kdebugsettings.mo share/locale/tr/LC_MESSAGES/kdebugsettings.mo share/locale/uk/LC_MESSAGES/kdebugsettings.mo share/locale/zh_CN/LC_MESSAGES/kdebugsettings.mo share/locale/zh_TW/LC_MESSAGES/kdebugsettings.mo share/metainfo/org.kde.kdebugsettings.appdata.xml share/qlogging-categories5/kde.renamecategories share/qlogging-categories5/kdebugsettings.categories diff --git a/sysutils/kdf/distinfo b/sysutils/kdf/distinfo index 025f494988b9..8b0c9ffd559b 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741563 -SHA256 (KDE/release-service/21.04.1/kdf-21.04.1.tar.xz) = 69215c6cf7f6502ff2375eafb3f8072cd75a92f38ebab053106e071a1e03f671 -SIZE (KDE/release-service/21.04.1/kdf-21.04.1.tar.xz) = 467320 +TIMESTAMP = 1623521053 +SHA256 (KDE/release-service/21.04.2/kdf-21.04.2.tar.xz) = c013e59cfce7e035b8f60dabd686714885b1ac2c13ae74b9c322f5d7f6d7c8b4 +SIZE (KDE/release-service/21.04.2/kdf-21.04.2.tar.xz) = 472396 diff --git a/sysutils/kdf/pkg-plist b/sysutils/kdf/pkg-plist index c924385edad6..4756d99ea1d1 100644 --- a/sysutils/kdf/pkg-plist +++ b/sysutils/kdf/pkg-plist @@ -1,79 +1,84 @@ bin/kdf bin/kwikdisk share/qlogging-categories5/kdf.categories lib/libkdfprivate.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdfprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/libkcm_kdf.so share/applications/org.kde.kdf.desktop share/applications/org.kde.kwikdisk.desktop share/icons/hicolor/128x128/apps/kdf.png share/icons/hicolor/128x128/apps/kwikdisk.png share/icons/hicolor/16x16/apps/kcmdf.png share/icons/hicolor/16x16/apps/kdf.png share/icons/hicolor/16x16/apps/kwikdisk.png share/icons/hicolor/22x22/apps/kcmdf.png share/icons/hicolor/22x22/apps/kdf.png share/icons/hicolor/22x22/apps/kwikdisk.png share/icons/hicolor/32x32/apps/kcmdf.png share/icons/hicolor/32x32/apps/kdf.png share/icons/hicolor/32x32/apps/kwikdisk.png share/icons/hicolor/48x48/apps/kdf.png share/icons/hicolor/48x48/apps/kwikdisk.png share/icons/hicolor/64x64/apps/kdf.png share/icons/hicolor/64x64/apps/kwikdisk.png share/kservices5/kcmdf.desktop share/kxmlgui5/kdf/kdfui.rc share/locale/ar/LC_MESSAGES/kdf.mo +share/locale/be/LC_MESSAGES/kdf.mo share/locale/bg/LC_MESSAGES/kdf.mo share/locale/bs/LC_MESSAGES/kdf.mo share/locale/ca/LC_MESSAGES/kdf.mo share/locale/ca@valencia/LC_MESSAGES/kdf.mo share/locale/cs/LC_MESSAGES/kdf.mo share/locale/da/LC_MESSAGES/kdf.mo share/locale/de/LC_MESSAGES/kdf.mo share/locale/el/LC_MESSAGES/kdf.mo share/locale/en_GB/LC_MESSAGES/kdf.mo share/locale/eo/LC_MESSAGES/kdf.mo share/locale/es/LC_MESSAGES/kdf.mo share/locale/et/LC_MESSAGES/kdf.mo share/locale/eu/LC_MESSAGES/kdf.mo share/locale/fa/LC_MESSAGES/kdf.mo share/locale/fi/LC_MESSAGES/kdf.mo share/locale/fr/LC_MESSAGES/kdf.mo share/locale/ga/LC_MESSAGES/kdf.mo share/locale/gl/LC_MESSAGES/kdf.mo share/locale/he/LC_MESSAGES/kdf.mo share/locale/hi/LC_MESSAGES/kdf.mo share/locale/hr/LC_MESSAGES/kdf.mo share/locale/hu/LC_MESSAGES/kdf.mo share/locale/ia/LC_MESSAGES/kdf.mo share/locale/id/LC_MESSAGES/kdf.mo share/locale/is/LC_MESSAGES/kdf.mo share/locale/it/LC_MESSAGES/kdf.mo share/locale/ja/LC_MESSAGES/kdf.mo share/locale/kk/LC_MESSAGES/kdf.mo share/locale/km/LC_MESSAGES/kdf.mo share/locale/ko/LC_MESSAGES/kdf.mo share/locale/lt/LC_MESSAGES/kdf.mo share/locale/lv/LC_MESSAGES/kdf.mo share/locale/mr/LC_MESSAGES/kdf.mo share/locale/nb/LC_MESSAGES/kdf.mo share/locale/nds/LC_MESSAGES/kdf.mo share/locale/nl/LC_MESSAGES/kdf.mo share/locale/nn/LC_MESSAGES/kdf.mo share/locale/pa/LC_MESSAGES/kdf.mo share/locale/pl/LC_MESSAGES/kdf.mo share/locale/pt/LC_MESSAGES/kdf.mo share/locale/pt_BR/LC_MESSAGES/kdf.mo share/locale/ro/LC_MESSAGES/kdf.mo share/locale/ru/LC_MESSAGES/kdf.mo +share/locale/se/LC_MESSAGES/kdf.mo share/locale/sk/LC_MESSAGES/kdf.mo share/locale/sl/LC_MESSAGES/kdf.mo +share/locale/sq/LC_MESSAGES/kdf.mo share/locale/sr/LC_MESSAGES/kdf.mo share/locale/sv/LC_MESSAGES/kdf.mo +share/locale/ta/LC_MESSAGES/kdf.mo +share/locale/tg/LC_MESSAGES/kdf.mo share/locale/tr/LC_MESSAGES/kdf.mo share/locale/ug/LC_MESSAGES/kdf.mo share/locale/uk/LC_MESSAGES/kdf.mo share/locale/zh_CN/LC_MESSAGES/kdf.mo share/locale/zh_TW/LC_MESSAGES/kdf.mo share/metainfo/org.kde.kdf.appdata.xml diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 68d3ab478df7..9df23d9dba94 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741563 -SHA256 (KDE/release-service/21.04.1/kdialog-21.04.1.tar.xz) = a55889bc31b5c20859dd77c27904a47c4017eace6c722b0631681b02f55ae0d6 -SIZE (KDE/release-service/21.04.1/kdialog-21.04.1.tar.xz) = 109112 +TIMESTAMP = 1623521055 +SHA256 (KDE/release-service/21.04.2/kdialog-21.04.2.tar.xz) = 46466caf3395066b6210d81c04da61bb04f1b9b137e0c1d8c669a02c1da36a6f +SIZE (KDE/release-service/21.04.2/kdialog-21.04.2.tar.xz) = 114132 diff --git a/sysutils/kdialog/pkg-plist b/sysutils/kdialog/pkg-plist index 87a5998bf54d..6cc1a3b6295e 100644 --- a/sysutils/kdialog/pkg-plist +++ b/sysutils/kdialog/pkg-plist @@ -1,60 +1,66 @@ bin/kdialog bin/kdialog_progress_helper share/dbus-1/interfaces/org.kde.kdialog.ProgressDialog.xml share/locale/ar/LC_MESSAGES/kdialog.mo share/locale/ast/LC_MESSAGES/kdialog.mo +share/locale/be/LC_MESSAGES/kdialog.mo share/locale/bg/LC_MESSAGES/kdialog.mo share/locale/bs/LC_MESSAGES/kdialog.mo share/locale/ca/LC_MESSAGES/kdialog.mo share/locale/ca@valencia/LC_MESSAGES/kdialog.mo share/locale/cs/LC_MESSAGES/kdialog.mo share/locale/da/LC_MESSAGES/kdialog.mo share/locale/de/LC_MESSAGES/kdialog.mo share/locale/el/LC_MESSAGES/kdialog.mo share/locale/en_GB/LC_MESSAGES/kdialog.mo share/locale/eo/LC_MESSAGES/kdialog.mo share/locale/es/LC_MESSAGES/kdialog.mo share/locale/et/LC_MESSAGES/kdialog.mo share/locale/eu/LC_MESSAGES/kdialog.mo share/locale/fa/LC_MESSAGES/kdialog.mo share/locale/fi/LC_MESSAGES/kdialog.mo share/locale/fr/LC_MESSAGES/kdialog.mo share/locale/ga/LC_MESSAGES/kdialog.mo share/locale/gl/LC_MESSAGES/kdialog.mo share/locale/he/LC_MESSAGES/kdialog.mo share/locale/hi/LC_MESSAGES/kdialog.mo share/locale/hr/LC_MESSAGES/kdialog.mo share/locale/hu/LC_MESSAGES/kdialog.mo share/locale/ia/LC_MESSAGES/kdialog.mo share/locale/id/LC_MESSAGES/kdialog.mo share/locale/is/LC_MESSAGES/kdialog.mo share/locale/it/LC_MESSAGES/kdialog.mo share/locale/ja/LC_MESSAGES/kdialog.mo share/locale/kk/LC_MESSAGES/kdialog.mo share/locale/km/LC_MESSAGES/kdialog.mo share/locale/ko/LC_MESSAGES/kdialog.mo share/locale/lt/LC_MESSAGES/kdialog.mo share/locale/lv/LC_MESSAGES/kdialog.mo share/locale/ml/LC_MESSAGES/kdialog.mo share/locale/mr/LC_MESSAGES/kdialog.mo share/locale/nb/LC_MESSAGES/kdialog.mo share/locale/nds/LC_MESSAGES/kdialog.mo share/locale/nl/LC_MESSAGES/kdialog.mo share/locale/nn/LC_MESSAGES/kdialog.mo share/locale/pa/LC_MESSAGES/kdialog.mo share/locale/pl/LC_MESSAGES/kdialog.mo share/locale/pt/LC_MESSAGES/kdialog.mo share/locale/pt_BR/LC_MESSAGES/kdialog.mo share/locale/ro/LC_MESSAGES/kdialog.mo share/locale/ru/LC_MESSAGES/kdialog.mo +share/locale/se/LC_MESSAGES/kdialog.mo share/locale/sk/LC_MESSAGES/kdialog.mo share/locale/sl/LC_MESSAGES/kdialog.mo +share/locale/sq/LC_MESSAGES/kdialog.mo share/locale/sr/LC_MESSAGES/kdialog.mo share/locale/sv/LC_MESSAGES/kdialog.mo +share/locale/ta/LC_MESSAGES/kdialog.mo +share/locale/tg/LC_MESSAGES/kdialog.mo share/locale/tr/LC_MESSAGES/kdialog.mo share/locale/ug/LC_MESSAGES/kdialog.mo share/locale/uk/LC_MESSAGES/kdialog.mo +share/locale/vi/LC_MESSAGES/kdialog.mo share/locale/wa/LC_MESSAGES/kdialog.mo share/locale/zh_CN/LC_MESSAGES/kdialog.mo share/locale/zh_TW/LC_MESSAGES/kdialog.mo share/metainfo/org.kde.kdialog.metainfo.xml diff --git a/sysutils/kfloppy/distinfo b/sysutils/kfloppy/distinfo index 4bd5452b2c3a..32bad96a2cdb 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741564 -SHA256 (KDE/release-service/21.04.1/kfloppy-21.04.1.tar.xz) = d4c83857a153c63336659829871e22de7fd52310c3bd666d68cde149fca59d72 -SIZE (KDE/release-service/21.04.1/kfloppy-21.04.1.tar.xz) = 205100 +TIMESTAMP = 1623521056 +SHA256 (KDE/release-service/21.04.2/kfloppy-21.04.2.tar.xz) = fcd398deaab0314295885c8db9a0ed995da6039b12c58d97620c004f07899dcd +SIZE (KDE/release-service/21.04.2/kfloppy-21.04.2.tar.xz) = 210700 diff --git a/sysutils/kfloppy/pkg-plist b/sysutils/kfloppy/pkg-plist index b63e956e8d81..891b9ba98eb3 100644 --- a/sysutils/kfloppy/pkg-plist +++ b/sysutils/kfloppy/pkg-plist @@ -1,64 +1,69 @@ bin/kfloppy share/qlogging-categories5/kfloppy.categories share/applications/org.kde.kfloppy.desktop share/icons/hicolor/128x128/apps/kfloppy.png share/icons/hicolor/16x16/apps/kfloppy.png share/icons/hicolor/22x22/apps/kfloppy.png share/icons/hicolor/32x32/apps/kfloppy.png share/icons/hicolor/48x48/apps/kfloppy.png share/icons/hicolor/64x64/apps/kfloppy.png share/locale/ar/LC_MESSAGES/kfloppy.mo +share/locale/be/LC_MESSAGES/kfloppy.mo share/locale/bg/LC_MESSAGES/kfloppy.mo share/locale/bs/LC_MESSAGES/kfloppy.mo share/locale/ca/LC_MESSAGES/kfloppy.mo share/locale/ca@valencia/LC_MESSAGES/kfloppy.mo share/locale/cs/LC_MESSAGES/kfloppy.mo share/locale/da/LC_MESSAGES/kfloppy.mo share/locale/de/LC_MESSAGES/kfloppy.mo share/locale/el/LC_MESSAGES/kfloppy.mo share/locale/en_GB/LC_MESSAGES/kfloppy.mo share/locale/eo/LC_MESSAGES/kfloppy.mo share/locale/es/LC_MESSAGES/kfloppy.mo share/locale/et/LC_MESSAGES/kfloppy.mo share/locale/eu/LC_MESSAGES/kfloppy.mo share/locale/fa/LC_MESSAGES/kfloppy.mo share/locale/fi/LC_MESSAGES/kfloppy.mo share/locale/fr/LC_MESSAGES/kfloppy.mo share/locale/ga/LC_MESSAGES/kfloppy.mo share/locale/gl/LC_MESSAGES/kfloppy.mo share/locale/he/LC_MESSAGES/kfloppy.mo share/locale/hi/LC_MESSAGES/kfloppy.mo share/locale/hr/LC_MESSAGES/kfloppy.mo share/locale/hu/LC_MESSAGES/kfloppy.mo share/locale/ia/LC_MESSAGES/kfloppy.mo share/locale/id/LC_MESSAGES/kfloppy.mo share/locale/is/LC_MESSAGES/kfloppy.mo share/locale/it/LC_MESSAGES/kfloppy.mo share/locale/ja/LC_MESSAGES/kfloppy.mo share/locale/kk/LC_MESSAGES/kfloppy.mo share/locale/km/LC_MESSAGES/kfloppy.mo share/locale/ko/LC_MESSAGES/kfloppy.mo share/locale/lt/LC_MESSAGES/kfloppy.mo share/locale/lv/LC_MESSAGES/kfloppy.mo share/locale/mr/LC_MESSAGES/kfloppy.mo share/locale/nb/LC_MESSAGES/kfloppy.mo share/locale/nds/LC_MESSAGES/kfloppy.mo share/locale/nl/LC_MESSAGES/kfloppy.mo share/locale/nn/LC_MESSAGES/kfloppy.mo share/locale/pa/LC_MESSAGES/kfloppy.mo share/locale/pl/LC_MESSAGES/kfloppy.mo share/locale/pt/LC_MESSAGES/kfloppy.mo share/locale/pt_BR/LC_MESSAGES/kfloppy.mo share/locale/ro/LC_MESSAGES/kfloppy.mo share/locale/ru/LC_MESSAGES/kfloppy.mo +share/locale/se/LC_MESSAGES/kfloppy.mo share/locale/sk/LC_MESSAGES/kfloppy.mo share/locale/sl/LC_MESSAGES/kfloppy.mo +share/locale/sq/LC_MESSAGES/kfloppy.mo share/locale/sr/LC_MESSAGES/kfloppy.mo share/locale/sv/LC_MESSAGES/kfloppy.mo +share/locale/ta/LC_MESSAGES/kfloppy.mo +share/locale/tg/LC_MESSAGES/kfloppy.mo share/locale/tr/LC_MESSAGES/kfloppy.mo share/locale/ug/LC_MESSAGES/kfloppy.mo share/locale/uk/LC_MESSAGES/kfloppy.mo share/locale/wa/LC_MESSAGES/kfloppy.mo share/locale/zh_CN/LC_MESSAGES/kfloppy.mo share/locale/zh_TW/LC_MESSAGES/kfloppy.mo share/metainfo/org.kde.kfloppy.appdata.xml diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index db43b2caed07..dec7e0704d88 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741565 -SHA256 (KDE/release-service/21.04.1/khelpcenter-21.04.1.tar.xz) = bb0a42b891298ce77b32ee70f8a5768fdefce6b3cc0cb00365cc83803ec6c736 -SIZE (KDE/release-service/21.04.1/khelpcenter-21.04.1.tar.xz) = 4269604 +TIMESTAMP = 1623521058 +SHA256 (KDE/release-service/21.04.2/khelpcenter-21.04.2.tar.xz) = 4fd1e0eaf4ed69bd3583025cd6c5e7fc487b1bd5634cd938609fe0ef8794f88e +SIZE (KDE/release-service/21.04.2/khelpcenter-21.04.2.tar.xz) = 4279204 diff --git a/sysutils/khelpcenter/pkg-plist b/sysutils/khelpcenter/pkg-plist index 86322f944f22..b3167972ac7a 100644 --- a/sysutils/khelpcenter/pkg-plist +++ b/sysutils/khelpcenter/pkg-plist @@ -1,97 +1,103 @@ bin/khelpcenter share/qlogging-categories5/khelpcenter.categories lib/libexec/khc_mansearch.pl lib/libexec/khc_xapianindexer lib/libexec/khc_xapiansearch lib/libkdeinit5_khelpcenter.so share/applications/org.kde.Help.desktop share/config.kcfg/khelpcenter.kcfg share/kde4/services/khelpcenter.desktop %%DATADIR%%/glossary.xslt %%DATADIR%%/plugins/Applications/.directory %%DATADIR%%/plugins/Manpages/.directory %%DATADIR%%/plugins/Manpages/man1.desktop %%DATADIR%%/plugins/Manpages/man2.desktop %%DATADIR%%/plugins/Manpages/man3.desktop %%DATADIR%%/plugins/Manpages/man4.desktop %%DATADIR%%/plugins/Manpages/man5.desktop %%DATADIR%%/plugins/Manpages/man6.desktop %%DATADIR%%/plugins/Manpages/man7.desktop %%DATADIR%%/plugins/Manpages/man8.desktop %%DATADIR%%/plugins/Scrollkeeper/.directory %%DATADIR%%/plugins/browsercontrolmodules.desktop %%DATADIR%%/plugins/filemanagercontrolmodules.desktop %%DATADIR%%/plugins/fundamentals.desktop %%DATADIR%%/plugins/info.desktop %%DATADIR%%/plugins/kcontrolmodules.desktop %%DATADIR%%/plugins/kicmodules.desktop %%DATADIR%%/plugins/kioslaves.desktop %%DATADIR%%/plugins/konquerorcontrolmodules.desktop %%DATADIR%%/plugins/onlinehelp.desktop %%DATADIR%%/plugins/othercontrolmodules.desktop %%DATADIR%%/plugins/plasma.desktop %%DATADIR%%/searchhandlers/man.desktop %%DATADIR%%/searchhandlers/xapian.desktop %%DATADIR%%/table-of-contents.xslt %%DATADIR%%/templates/glossary.html %%DATADIR%%/templates/index.html %%DATADIR%%/templates/search.html share/kservices5/khelpcenter.desktop share/kxmlgui5/khelpcenter/khelpcenterui.rc share/locale/ar/LC_MESSAGES/khelpcenter5.mo share/locale/ast/LC_MESSAGES/khelpcenter5.mo +share/locale/be/LC_MESSAGES/khelpcenter5.mo share/locale/bg/LC_MESSAGES/khelpcenter5.mo share/locale/bs/LC_MESSAGES/khelpcenter5.mo share/locale/ca/LC_MESSAGES/khelpcenter5.mo share/locale/ca@valencia/LC_MESSAGES/khelpcenter5.mo share/locale/cs/LC_MESSAGES/khelpcenter5.mo share/locale/da/LC_MESSAGES/khelpcenter5.mo share/locale/de/LC_MESSAGES/khelpcenter5.mo share/locale/el/LC_MESSAGES/khelpcenter5.mo share/locale/en_GB/LC_MESSAGES/khelpcenter5.mo share/locale/eo/LC_MESSAGES/khelpcenter5.mo share/locale/es/LC_MESSAGES/khelpcenter5.mo share/locale/et/LC_MESSAGES/khelpcenter5.mo share/locale/eu/LC_MESSAGES/khelpcenter5.mo share/locale/fa/LC_MESSAGES/khelpcenter5.mo share/locale/fi/LC_MESSAGES/khelpcenter5.mo share/locale/fr/LC_MESSAGES/khelpcenter5.mo share/locale/ga/LC_MESSAGES/khelpcenter5.mo share/locale/gl/LC_MESSAGES/khelpcenter5.mo share/locale/he/LC_MESSAGES/khelpcenter5.mo share/locale/hi/LC_MESSAGES/khelpcenter5.mo share/locale/hr/LC_MESSAGES/khelpcenter5.mo share/locale/hu/LC_MESSAGES/khelpcenter5.mo share/locale/ia/LC_MESSAGES/khelpcenter5.mo share/locale/id/LC_MESSAGES/khelpcenter5.mo share/locale/is/LC_MESSAGES/khelpcenter5.mo share/locale/it/LC_MESSAGES/khelpcenter5.mo share/locale/ja/LC_MESSAGES/khelpcenter5.mo share/locale/kk/LC_MESSAGES/khelpcenter5.mo share/locale/km/LC_MESSAGES/khelpcenter5.mo share/locale/ko/LC_MESSAGES/khelpcenter5.mo share/locale/lt/LC_MESSAGES/khelpcenter5.mo share/locale/lv/LC_MESSAGES/khelpcenter5.mo share/locale/ml/LC_MESSAGES/khelpcenter5.mo share/locale/mr/LC_MESSAGES/khelpcenter5.mo share/locale/nb/LC_MESSAGES/khelpcenter5.mo share/locale/nds/LC_MESSAGES/khelpcenter5.mo share/locale/nl/LC_MESSAGES/khelpcenter5.mo share/locale/nn/LC_MESSAGES/khelpcenter5.mo share/locale/pa/LC_MESSAGES/khelpcenter5.mo share/locale/pl/LC_MESSAGES/khelpcenter5.mo share/locale/pt/LC_MESSAGES/khelpcenter5.mo share/locale/pt_BR/LC_MESSAGES/khelpcenter5.mo share/locale/ro/LC_MESSAGES/khelpcenter5.mo share/locale/ru/LC_MESSAGES/khelpcenter5.mo +share/locale/se/LC_MESSAGES/khelpcenter5.mo share/locale/sk/LC_MESSAGES/khelpcenter5.mo share/locale/sl/LC_MESSAGES/khelpcenter5.mo +share/locale/sq/LC_MESSAGES/khelpcenter5.mo share/locale/sr/LC_MESSAGES/khelpcenter5.mo share/locale/sv/LC_MESSAGES/khelpcenter5.mo +share/locale/ta/LC_MESSAGES/khelpcenter5.mo +share/locale/tg/LC_MESSAGES/khelpcenter5.mo share/locale/tr/LC_MESSAGES/khelpcenter5.mo share/locale/ug/LC_MESSAGES/khelpcenter5.mo share/locale/uk/LC_MESSAGES/khelpcenter5.mo +share/locale/vi/LC_MESSAGES/khelpcenter5.mo share/locale/wa/LC_MESSAGES/khelpcenter5.mo share/locale/zh_CN/LC_MESSAGES/khelpcenter5.mo share/locale/zh_TW/LC_MESSAGES/khelpcenter5.mo share/metainfo/org.kde.Help.appdata.xml diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index b17a4d7842c5..e7629eb63391 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741566 -SHA256 (KDE/release-service/21.04.1/ksystemlog-21.04.1.tar.xz) = 8aeeeccc8d35361db170ecbcd64535e96e3a2fb4daacb276db2e14bb389458ef -SIZE (KDE/release-service/21.04.1/ksystemlog-21.04.1.tar.xz) = 1954352 +TIMESTAMP = 1623521060 +SHA256 (KDE/release-service/21.04.2/ksystemlog-21.04.2.tar.xz) = f54cc34c6c19f8d23cdf31741602fa878d2ddc73f1ec6285aed2615695050567 +SIZE (KDE/release-service/21.04.2/ksystemlog-21.04.2.tar.xz) = 1957732 diff --git a/sysutils/ksystemlog/pkg-plist b/sysutils/ksystemlog/pkg-plist index d4d1e6781d15..e8e6bec9864a 100644 --- a/sysutils/ksystemlog/pkg-plist +++ b/sysutils/ksystemlog/pkg-plist @@ -1,54 +1,56 @@ bin/ksystemlog share/applications/org.kde.ksystemlog.desktop share/kxmlgui5/ksystemlog/ksystemlogui.rc share/locale/ar/LC_MESSAGES/ksystemlog.mo +share/locale/az/LC_MESSAGES/ksystemlog.mo +share/locale/be/LC_MESSAGES/ksystemlog.mo share/locale/bg/LC_MESSAGES/ksystemlog.mo share/locale/bs/LC_MESSAGES/ksystemlog.mo share/locale/ca/LC_MESSAGES/ksystemlog.mo share/locale/ca@valencia/LC_MESSAGES/ksystemlog.mo share/locale/cs/LC_MESSAGES/ksystemlog.mo share/locale/da/LC_MESSAGES/ksystemlog.mo share/locale/de/LC_MESSAGES/ksystemlog.mo share/locale/el/LC_MESSAGES/ksystemlog.mo share/locale/en_GB/LC_MESSAGES/ksystemlog.mo share/locale/eo/LC_MESSAGES/ksystemlog.mo share/locale/es/LC_MESSAGES/ksystemlog.mo share/locale/et/LC_MESSAGES/ksystemlog.mo share/locale/eu/LC_MESSAGES/ksystemlog.mo share/locale/fi/LC_MESSAGES/ksystemlog.mo share/locale/fr/LC_MESSAGES/ksystemlog.mo share/locale/ga/LC_MESSAGES/ksystemlog.mo share/locale/gl/LC_MESSAGES/ksystemlog.mo share/locale/hr/LC_MESSAGES/ksystemlog.mo share/locale/hu/LC_MESSAGES/ksystemlog.mo share/locale/ia/LC_MESSAGES/ksystemlog.mo share/locale/is/LC_MESSAGES/ksystemlog.mo share/locale/it/LC_MESSAGES/ksystemlog.mo share/locale/ja/LC_MESSAGES/ksystemlog.mo share/locale/kk/LC_MESSAGES/ksystemlog.mo share/locale/km/LC_MESSAGES/ksystemlog.mo share/locale/ko/LC_MESSAGES/ksystemlog.mo share/locale/lt/LC_MESSAGES/ksystemlog.mo share/locale/lv/LC_MESSAGES/ksystemlog.mo share/locale/mr/LC_MESSAGES/ksystemlog.mo share/locale/nb/LC_MESSAGES/ksystemlog.mo share/locale/nds/LC_MESSAGES/ksystemlog.mo share/locale/nl/LC_MESSAGES/ksystemlog.mo share/locale/nn/LC_MESSAGES/ksystemlog.mo share/locale/pa/LC_MESSAGES/ksystemlog.mo share/locale/pl/LC_MESSAGES/ksystemlog.mo share/locale/pt/LC_MESSAGES/ksystemlog.mo share/locale/pt_BR/LC_MESSAGES/ksystemlog.mo share/locale/ro/LC_MESSAGES/ksystemlog.mo share/locale/ru/LC_MESSAGES/ksystemlog.mo share/locale/sk/LC_MESSAGES/ksystemlog.mo share/locale/sl/LC_MESSAGES/ksystemlog.mo share/locale/sr/LC_MESSAGES/ksystemlog.mo share/locale/sv/LC_MESSAGES/ksystemlog.mo share/locale/tr/LC_MESSAGES/ksystemlog.mo share/locale/ug/LC_MESSAGES/ksystemlog.mo share/locale/uk/LC_MESSAGES/ksystemlog.mo share/locale/zh_CN/LC_MESSAGES/ksystemlog.mo share/locale/zh_TW/LC_MESSAGES/ksystemlog.mo share/metainfo/org.kde.ksystemlog.appdata.xml share/qlogging-categories5/ksystemlog.categories diff --git a/sysutils/signon-kwallet-extension/distinfo b/sysutils/signon-kwallet-extension/distinfo index d0572c42434b..cc3bf4e16d43 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741567 -SHA256 (KDE/release-service/21.04.1/signon-kwallet-extension-21.04.1.tar.xz) = 0db1d02237eabe9db521df34f6b76a9cc4e6790873af19c3cec782ef9039968a -SIZE (KDE/release-service/21.04.1/signon-kwallet-extension-21.04.1.tar.xz) = 10768 +TIMESTAMP = 1623521061 +SHA256 (KDE/release-service/21.04.2/signon-kwallet-extension-21.04.2.tar.xz) = 09a5d94e6c6d1ef0022e10605212f88d3fe7bcb4d73b499e89748dcdc54ec8df +SIZE (KDE/release-service/21.04.2/signon-kwallet-extension-21.04.2.tar.xz) = 10768 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f0773a2121a1..577b075acdb8 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741567 -SHA256 (KDE/release-service/21.04.1/sweeper-21.04.1.tar.xz) = c4dd351519442cd7699a749176a3f633587ad7b91b7448d779305b5490ccef12 -SIZE (KDE/release-service/21.04.1/sweeper-21.04.1.tar.xz) = 371888 +TIMESTAMP = 1623521062 +SHA256 (KDE/release-service/21.04.2/sweeper-21.04.2.tar.xz) = 2ded34fb847e4afc21dfff8957bf687bec9d2a2baa2585e17edaea240408fa86 +SIZE (KDE/release-service/21.04.2/sweeper-21.04.2.tar.xz) = 376420 diff --git a/sysutils/sweeper/pkg-plist b/sysutils/sweeper/pkg-plist index a3c1131f877c..cd97645d747d 100644 --- a/sysutils/sweeper/pkg-plist +++ b/sysutils/sweeper/pkg-plist @@ -1,59 +1,64 @@ bin/sweeper share/applications/org.kde.sweeper.desktop share/dbus-1/interfaces/org.kde.sweeper.xml share/kxmlgui5/sweeper/sweeperui.rc share/locale/ar/LC_MESSAGES/sweeper.mo +share/locale/be/LC_MESSAGES/sweeper.mo share/locale/bg/LC_MESSAGES/sweeper.mo share/locale/bs/LC_MESSAGES/sweeper.mo share/locale/ca/LC_MESSAGES/sweeper.mo share/locale/ca@valencia/LC_MESSAGES/sweeper.mo share/locale/cs/LC_MESSAGES/sweeper.mo share/locale/da/LC_MESSAGES/sweeper.mo share/locale/de/LC_MESSAGES/sweeper.mo share/locale/el/LC_MESSAGES/sweeper.mo share/locale/en_GB/LC_MESSAGES/sweeper.mo share/locale/eo/LC_MESSAGES/sweeper.mo share/locale/es/LC_MESSAGES/sweeper.mo share/locale/et/LC_MESSAGES/sweeper.mo share/locale/eu/LC_MESSAGES/sweeper.mo share/locale/fa/LC_MESSAGES/sweeper.mo share/locale/fi/LC_MESSAGES/sweeper.mo share/locale/fr/LC_MESSAGES/sweeper.mo share/locale/ga/LC_MESSAGES/sweeper.mo share/locale/gl/LC_MESSAGES/sweeper.mo share/locale/he/LC_MESSAGES/sweeper.mo share/locale/hi/LC_MESSAGES/sweeper.mo share/locale/hr/LC_MESSAGES/sweeper.mo share/locale/hu/LC_MESSAGES/sweeper.mo share/locale/ia/LC_MESSAGES/sweeper.mo share/locale/id/LC_MESSAGES/sweeper.mo share/locale/is/LC_MESSAGES/sweeper.mo share/locale/it/LC_MESSAGES/sweeper.mo share/locale/ja/LC_MESSAGES/sweeper.mo share/locale/kk/LC_MESSAGES/sweeper.mo share/locale/km/LC_MESSAGES/sweeper.mo share/locale/ko/LC_MESSAGES/sweeper.mo share/locale/lt/LC_MESSAGES/sweeper.mo share/locale/lv/LC_MESSAGES/sweeper.mo share/locale/mr/LC_MESSAGES/sweeper.mo share/locale/nb/LC_MESSAGES/sweeper.mo share/locale/nds/LC_MESSAGES/sweeper.mo share/locale/nl/LC_MESSAGES/sweeper.mo share/locale/nn/LC_MESSAGES/sweeper.mo share/locale/pa/LC_MESSAGES/sweeper.mo share/locale/pl/LC_MESSAGES/sweeper.mo share/locale/pt/LC_MESSAGES/sweeper.mo share/locale/pt_BR/LC_MESSAGES/sweeper.mo share/locale/ro/LC_MESSAGES/sweeper.mo share/locale/ru/LC_MESSAGES/sweeper.mo +share/locale/se/LC_MESSAGES/sweeper.mo share/locale/sk/LC_MESSAGES/sweeper.mo share/locale/sl/LC_MESSAGES/sweeper.mo +share/locale/sq/LC_MESSAGES/sweeper.mo share/locale/sr/LC_MESSAGES/sweeper.mo share/locale/sv/LC_MESSAGES/sweeper.mo +share/locale/ta/LC_MESSAGES/sweeper.mo +share/locale/tg/LC_MESSAGES/sweeper.mo share/locale/tr/LC_MESSAGES/sweeper.mo share/locale/ug/LC_MESSAGES/sweeper.mo share/locale/uk/LC_MESSAGES/sweeper.mo share/locale/zh_CN/LC_MESSAGES/sweeper.mo share/locale/zh_TW/LC_MESSAGES/sweeper.mo share/metainfo/org.kde.sweeper.appdata.xml share/qlogging-categories5/sweeper.categories diff --git a/textproc/kompare/distinfo b/textproc/kompare/distinfo index e31ae8c3d38b..aa1aec818486 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741568 -SHA256 (KDE/release-service/21.04.1/kompare-21.04.1.tar.xz) = f139f6db333ba6ec7f60d07f7e63353542c5c30d6193474ff037af3d8bdab696 -SIZE (KDE/release-service/21.04.1/kompare-21.04.1.tar.xz) = 927208 +TIMESTAMP = 1623521064 +SHA256 (KDE/release-service/21.04.2/kompare-21.04.2.tar.xz) = c52c12ac72a260b5efb99bfd21307553f9c66ba55123e23eca809b2c3b3af6af +SIZE (KDE/release-service/21.04.2/kompare-21.04.2.tar.xz) = 942848 diff --git a/textproc/kompare/pkg-plist b/textproc/kompare/pkg-plist index c704674d88b4..a3fafc60dfd6 100644 --- a/textproc/kompare/pkg-plist +++ b/textproc/kompare/pkg-plist @@ -1,71 +1,76 @@ bin/kompare include/kompare/kompareinterface.h lib/libkomparedialogpages.so.5 lib/libkompareinterface.so lib/libkompareinterface.so.5 %%QT_PLUGINDIR%%/kf5/parts/komparenavtreepart.so %%QT_PLUGINDIR%%/kf5/parts/komparepart.so share/applications/org.kde.kompare.desktop share/icons/hicolor/128x128/apps/kompare.png share/icons/hicolor/16x16/apps/kompare.png share/icons/hicolor/22x22/apps/kompare.png share/icons/hicolor/32x32/apps/kompare.png share/icons/hicolor/48x48/apps/kompare.png share/icons/hicolor/scalable/apps/kompare.svgz share/kservices5/ServiceMenus/kompare.desktop share/kservices5/komparenavtreepart.desktop share/kservices5/komparepart.desktop share/kservicetypes5/komparenavigationpart.desktop share/kservicetypes5/kompareviewpart.desktop share/locale/ar/LC_MESSAGES/kompare.mo +share/locale/be/LC_MESSAGES/kompare.mo share/locale/bg/LC_MESSAGES/kompare.mo share/locale/bs/LC_MESSAGES/kompare.mo share/locale/ca/LC_MESSAGES/kompare.mo share/locale/ca@valencia/LC_MESSAGES/kompare.mo share/locale/cs/LC_MESSAGES/kompare.mo share/locale/da/LC_MESSAGES/kompare.mo share/locale/de/LC_MESSAGES/kompare.mo share/locale/el/LC_MESSAGES/kompare.mo share/locale/en_GB/LC_MESSAGES/kompare.mo share/locale/eo/LC_MESSAGES/kompare.mo share/locale/es/LC_MESSAGES/kompare.mo share/locale/et/LC_MESSAGES/kompare.mo share/locale/eu/LC_MESSAGES/kompare.mo share/locale/fa/LC_MESSAGES/kompare.mo share/locale/fi/LC_MESSAGES/kompare.mo share/locale/fr/LC_MESSAGES/kompare.mo share/locale/ga/LC_MESSAGES/kompare.mo share/locale/gl/LC_MESSAGES/kompare.mo share/locale/hi/LC_MESSAGES/kompare.mo share/locale/hr/LC_MESSAGES/kompare.mo share/locale/hu/LC_MESSAGES/kompare.mo share/locale/is/LC_MESSAGES/kompare.mo share/locale/it/LC_MESSAGES/kompare.mo share/locale/ja/LC_MESSAGES/kompare.mo share/locale/kk/LC_MESSAGES/kompare.mo share/locale/km/LC_MESSAGES/kompare.mo share/locale/ko/LC_MESSAGES/kompare.mo share/locale/lt/LC_MESSAGES/kompare.mo share/locale/lv/LC_MESSAGES/kompare.mo share/locale/mr/LC_MESSAGES/kompare.mo share/locale/nb/LC_MESSAGES/kompare.mo share/locale/nds/LC_MESSAGES/kompare.mo share/locale/nl/LC_MESSAGES/kompare.mo share/locale/nn/LC_MESSAGES/kompare.mo share/locale/pa/LC_MESSAGES/kompare.mo share/locale/pl/LC_MESSAGES/kompare.mo share/locale/pt/LC_MESSAGES/kompare.mo share/locale/pt_BR/LC_MESSAGES/kompare.mo share/locale/ro/LC_MESSAGES/kompare.mo share/locale/ru/LC_MESSAGES/kompare.mo +share/locale/se/LC_MESSAGES/kompare.mo share/locale/sk/LC_MESSAGES/kompare.mo share/locale/sl/LC_MESSAGES/kompare.mo +share/locale/sq/LC_MESSAGES/kompare.mo share/locale/sr/LC_MESSAGES/kompare.mo share/locale/sv/LC_MESSAGES/kompare.mo +share/locale/ta/LC_MESSAGES/kompare.mo +share/locale/tg/LC_MESSAGES/kompare.mo share/locale/tr/LC_MESSAGES/kompare.mo share/locale/ug/LC_MESSAGES/kompare.mo share/locale/uk/LC_MESSAGES/kompare.mo share/locale/zh_CN/LC_MESSAGES/kompare.mo share/locale/zh_TW/LC_MESSAGES/kompare.mo share/metainfo/org.kde.kompare.appdata.xml share/qlogging-categories5/kompare.categories diff --git a/textproc/libkomparediff2/distinfo b/textproc/libkomparediff2/distinfo index d4885c84414c..54705ff35b8f 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741569 -SHA256 (KDE/release-service/21.04.1/libkomparediff2-21.04.1.tar.xz) = eced4e239b40278dcfff529db6f433c997c80da0c77faadf6a9b7c39d26ebdfe -SIZE (KDE/release-service/21.04.1/libkomparediff2-21.04.1.tar.xz) = 159348 +TIMESTAMP = 1623521066 +SHA256 (KDE/release-service/21.04.2/libkomparediff2-21.04.2.tar.xz) = 98bf6d165c4fef356a0b47d79864355cb1806bca0fb127443d445ce7f671570b +SIZE (KDE/release-service/21.04.2/libkomparediff2-21.04.2.tar.xz) = 172136 diff --git a/textproc/libkomparediff2/pkg-plist b/textproc/libkomparediff2/pkg-plist index 39788e565d16..3eeca720b884 100644 --- a/textproc/libkomparediff2/pkg-plist +++ b/textproc/libkomparediff2/pkg-plist @@ -1,68 +1,73 @@ include/libkomparediff2/diff2_export.h include/libkomparediff2/difference.h include/libkomparediff2/diffhunk.h include/libkomparediff2/diffmodel.h include/libkomparediff2/diffmodellist.h include/libkomparediff2/diffsettings.h include/libkomparediff2/kompare.h include/libkomparediff2/komparemodellist.h include/libkomparediff2/marker.h include/libkomparediff2/settingsbase.h lib/cmake/LibKompareDiff2/LibKompareDiff2Config.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2ConfigVersion.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/LibKompareDiff2/LibKompareDiff2Targets.cmake lib/libkomparediff2.so lib/libkomparediff2.so.5 lib/libkomparediff2.so.5.2 share/locale/ar/LC_MESSAGES/libkomparediff2.mo +share/locale/be/LC_MESSAGES/libkomparediff2.mo share/locale/bg/LC_MESSAGES/libkomparediff2.mo share/locale/bs/LC_MESSAGES/libkomparediff2.mo share/locale/ca/LC_MESSAGES/libkomparediff2.mo share/locale/ca@valencia/LC_MESSAGES/libkomparediff2.mo share/locale/cs/LC_MESSAGES/libkomparediff2.mo share/locale/da/LC_MESSAGES/libkomparediff2.mo share/locale/de/LC_MESSAGES/libkomparediff2.mo share/locale/el/LC_MESSAGES/libkomparediff2.mo share/locale/en_GB/LC_MESSAGES/libkomparediff2.mo share/locale/eo/LC_MESSAGES/libkomparediff2.mo share/locale/es/LC_MESSAGES/libkomparediff2.mo share/locale/et/LC_MESSAGES/libkomparediff2.mo share/locale/eu/LC_MESSAGES/libkomparediff2.mo share/locale/fa/LC_MESSAGES/libkomparediff2.mo share/locale/fi/LC_MESSAGES/libkomparediff2.mo share/locale/fr/LC_MESSAGES/libkomparediff2.mo share/locale/ga/LC_MESSAGES/libkomparediff2.mo share/locale/gl/LC_MESSAGES/libkomparediff2.mo share/locale/hi/LC_MESSAGES/libkomparediff2.mo share/locale/hr/LC_MESSAGES/libkomparediff2.mo share/locale/hu/LC_MESSAGES/libkomparediff2.mo share/locale/is/LC_MESSAGES/libkomparediff2.mo share/locale/it/LC_MESSAGES/libkomparediff2.mo share/locale/ja/LC_MESSAGES/libkomparediff2.mo share/locale/kk/LC_MESSAGES/libkomparediff2.mo share/locale/km/LC_MESSAGES/libkomparediff2.mo share/locale/ko/LC_MESSAGES/libkomparediff2.mo share/locale/lt/LC_MESSAGES/libkomparediff2.mo share/locale/lv/LC_MESSAGES/libkomparediff2.mo share/locale/mr/LC_MESSAGES/libkomparediff2.mo share/locale/nb/LC_MESSAGES/libkomparediff2.mo share/locale/nds/LC_MESSAGES/libkomparediff2.mo share/locale/nl/LC_MESSAGES/libkomparediff2.mo share/locale/nn/LC_MESSAGES/libkomparediff2.mo share/locale/pa/LC_MESSAGES/libkomparediff2.mo share/locale/pl/LC_MESSAGES/libkomparediff2.mo share/locale/pt/LC_MESSAGES/libkomparediff2.mo share/locale/pt_BR/LC_MESSAGES/libkomparediff2.mo share/locale/ro/LC_MESSAGES/libkomparediff2.mo share/locale/ru/LC_MESSAGES/libkomparediff2.mo +share/locale/se/LC_MESSAGES/libkomparediff2.mo share/locale/sk/LC_MESSAGES/libkomparediff2.mo share/locale/sl/LC_MESSAGES/libkomparediff2.mo +share/locale/sq/LC_MESSAGES/libkomparediff2.mo share/locale/sr/LC_MESSAGES/libkomparediff2.mo share/locale/sv/LC_MESSAGES/libkomparediff2.mo +share/locale/ta/LC_MESSAGES/libkomparediff2.mo +share/locale/tg/LC_MESSAGES/libkomparediff2.mo share/locale/tr/LC_MESSAGES/libkomparediff2.mo share/locale/ug/LC_MESSAGES/libkomparediff2.mo share/locale/uk/LC_MESSAGES/libkomparediff2.mo share/locale/zh_CN/LC_MESSAGES/libkomparediff2.mo share/locale/zh_TW/LC_MESSAGES/libkomparediff2.mo share/qlogging-categories5/libkomparediff2.categories diff --git a/textproc/markdownpart/distinfo b/textproc/markdownpart/distinfo index 56bacec3524c..0dfc5dc97858 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741570 -SHA256 (KDE/release-service/21.04.1/markdownpart-21.04.1.tar.xz) = 4dbc67d11eb44189575aa4c4ecd424d30202d686ff0efbbe14dd4724c07a19ac -SIZE (KDE/release-service/21.04.1/markdownpart-21.04.1.tar.xz) = 27268 +TIMESTAMP = 1623521067 +SHA256 (KDE/release-service/21.04.2/markdownpart-21.04.2.tar.xz) = 11208d8e0da9415f4d44d1d900ca5c04d6cfab88cfa01cb5312bb4e0a2ce3f9a +SIZE (KDE/release-service/21.04.2/markdownpart-21.04.2.tar.xz) = 27708 diff --git a/textproc/markdownpart/pkg-plist b/textproc/markdownpart/pkg-plist index 7948bf234dc1..6d6413f4473f 100644 --- a/textproc/markdownpart/pkg-plist +++ b/textproc/markdownpart/pkg-plist @@ -1,27 +1,29 @@ %%QT_PLUGINDIR%%/kf5/parts/markdownpart.so share/kservices5/markdownpart.desktop share/locale/ca/LC_MESSAGES/markdownpart.mo share/locale/ca@valencia/LC_MESSAGES/markdownpart.mo share/locale/cs/LC_MESSAGES/markdownpart.mo share/locale/de/LC_MESSAGES/markdownpart.mo share/locale/el/LC_MESSAGES/markdownpart.mo share/locale/en_GB/LC_MESSAGES/markdownpart.mo share/locale/es/LC_MESSAGES/markdownpart.mo share/locale/et/LC_MESSAGES/markdownpart.mo share/locale/fi/LC_MESSAGES/markdownpart.mo share/locale/fr/LC_MESSAGES/markdownpart.mo share/locale/it/LC_MESSAGES/markdownpart.mo +share/locale/ja/LC_MESSAGES/markdownpart.mo share/locale/ko/LC_MESSAGES/markdownpart.mo share/locale/lt/LC_MESSAGES/markdownpart.mo share/locale/nl/LC_MESSAGES/markdownpart.mo share/locale/nn/LC_MESSAGES/markdownpart.mo share/locale/pl/LC_MESSAGES/markdownpart.mo share/locale/pt/LC_MESSAGES/markdownpart.mo share/locale/pt_BR/LC_MESSAGES/markdownpart.mo +share/locale/ro/LC_MESSAGES/markdownpart.mo share/locale/ru/LC_MESSAGES/markdownpart.mo share/locale/sk/LC_MESSAGES/markdownpart.mo share/locale/sl/LC_MESSAGES/markdownpart.mo share/locale/sv/LC_MESSAGES/markdownpart.mo share/locale/uk/LC_MESSAGES/markdownpart.mo share/locale/zh_CN/LC_MESSAGES/markdownpart.mo share/metainfo/org.kde.markdownpart.metainfo.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index 6bb03217d8e4..7ddae6b39e41 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741570 -SHA256 (KDE/release-service/21.04.1/kteatime-21.04.1.tar.xz) = 8271458689a93589fd8b272e158a26a8ae2d4d5f4bd6e3ee1d5e8653a68932c0 -SIZE (KDE/release-service/21.04.1/kteatime-21.04.1.tar.xz) = 295328 +TIMESTAMP = 1623521068 +SHA256 (KDE/release-service/21.04.2/kteatime-21.04.2.tar.xz) = 26e8bbb8f4bd0dc112d9ca09b67f8e8bd1f236059e2cd474ae8678ea144dcd1b +SIZE (KDE/release-service/21.04.2/kteatime-21.04.2.tar.xz) = 298396 diff --git a/x11-clocks/kteatime/pkg-plist b/x11-clocks/kteatime/pkg-plist index afed18b764b1..f03564ac2afa 100644 --- a/x11-clocks/kteatime/pkg-plist +++ b/x11-clocks/kteatime/pkg-plist @@ -1,64 +1,68 @@ bin/kteatime share/applications/org.kde.kteatime.desktop share/icons/hicolor/16x16/apps/kteatime.png share/icons/hicolor/22x22/apps/kteatime.png share/icons/hicolor/32x32/apps/kteatime.png share/icons/hicolor/48x48/apps/kteatime.png share/icons/hicolor/64x64/apps/kteatime.png share/icons/hicolor/scalable/apps/kteatime.svgz share/knotifications5/kteatime.notifyrc share/locale/ar/LC_MESSAGES/kteatime.mo +share/locale/be/LC_MESSAGES/kteatime.mo share/locale/bg/LC_MESSAGES/kteatime.mo share/locale/bs/LC_MESSAGES/kteatime.mo share/locale/ca/LC_MESSAGES/kteatime.mo share/locale/ca@valencia/LC_MESSAGES/kteatime.mo share/locale/cs/LC_MESSAGES/kteatime.mo share/locale/da/LC_MESSAGES/kteatime.mo share/locale/de/LC_MESSAGES/kteatime.mo share/locale/el/LC_MESSAGES/kteatime.mo share/locale/en_GB/LC_MESSAGES/kteatime.mo share/locale/eo/LC_MESSAGES/kteatime.mo share/locale/es/LC_MESSAGES/kteatime.mo share/locale/et/LC_MESSAGES/kteatime.mo share/locale/eu/LC_MESSAGES/kteatime.mo share/locale/fa/LC_MESSAGES/kteatime.mo share/locale/fi/LC_MESSAGES/kteatime.mo share/locale/fr/LC_MESSAGES/kteatime.mo share/locale/ga/LC_MESSAGES/kteatime.mo share/locale/gl/LC_MESSAGES/kteatime.mo share/locale/he/LC_MESSAGES/kteatime.mo share/locale/hi/LC_MESSAGES/kteatime.mo share/locale/hr/LC_MESSAGES/kteatime.mo share/locale/hu/LC_MESSAGES/kteatime.mo share/locale/ia/LC_MESSAGES/kteatime.mo share/locale/is/LC_MESSAGES/kteatime.mo share/locale/it/LC_MESSAGES/kteatime.mo share/locale/ja/LC_MESSAGES/kteatime.mo share/locale/kk/LC_MESSAGES/kteatime.mo share/locale/km/LC_MESSAGES/kteatime.mo share/locale/ko/LC_MESSAGES/kteatime.mo share/locale/lt/LC_MESSAGES/kteatime.mo share/locale/lv/LC_MESSAGES/kteatime.mo share/locale/ml/LC_MESSAGES/kteatime.mo share/locale/mr/LC_MESSAGES/kteatime.mo share/locale/nb/LC_MESSAGES/kteatime.mo share/locale/nds/LC_MESSAGES/kteatime.mo share/locale/nl/LC_MESSAGES/kteatime.mo share/locale/nn/LC_MESSAGES/kteatime.mo share/locale/pa/LC_MESSAGES/kteatime.mo share/locale/pl/LC_MESSAGES/kteatime.mo share/locale/pt/LC_MESSAGES/kteatime.mo share/locale/pt_BR/LC_MESSAGES/kteatime.mo share/locale/ro/LC_MESSAGES/kteatime.mo share/locale/ru/LC_MESSAGES/kteatime.mo +share/locale/se/LC_MESSAGES/kteatime.mo share/locale/sk/LC_MESSAGES/kteatime.mo share/locale/sl/LC_MESSAGES/kteatime.mo share/locale/sr/LC_MESSAGES/kteatime.mo share/locale/sv/LC_MESSAGES/kteatime.mo +share/locale/ta/LC_MESSAGES/kteatime.mo +share/locale/tg/LC_MESSAGES/kteatime.mo share/locale/tr/LC_MESSAGES/kteatime.mo share/locale/ug/LC_MESSAGES/kteatime.mo share/locale/uk/LC_MESSAGES/kteatime.mo share/locale/wa/LC_MESSAGES/kteatime.mo share/locale/zh_CN/LC_MESSAGES/kteatime.mo share/locale/zh_TW/LC_MESSAGES/kteatime.mo share/metainfo/org.kde.kteatime.appdata.xml diff --git a/x11-clocks/ktimer/distinfo b/x11-clocks/ktimer/distinfo index 83b23a6acb60..91f63f9370f1 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741571 -SHA256 (KDE/release-service/21.04.1/ktimer-21.04.1.tar.xz) = 16c56fec6b5adbc9ed633a2280e3bfbb8c7b985a5d562045ecfa8fde7f544c3b -SIZE (KDE/release-service/21.04.1/ktimer-21.04.1.tar.xz) = 385912 +TIMESTAMP = 1623521070 +SHA256 (KDE/release-service/21.04.2/ktimer-21.04.2.tar.xz) = c87abda82c37705cc7df95a04bb2955234da2d673d1e4ff83ade4bc2f892d42f +SIZE (KDE/release-service/21.04.2/ktimer-21.04.2.tar.xz) = 388028 diff --git a/x11-clocks/ktimer/pkg-plist b/x11-clocks/ktimer/pkg-plist index 804b0655256d..6a5a1213c0e6 100644 --- a/x11-clocks/ktimer/pkg-plist +++ b/x11-clocks/ktimer/pkg-plist @@ -1,60 +1,65 @@ bin/ktimer share/applications/org.kde.ktimer.desktop share/icons/hicolor/128x128/apps/ktimer.png share/icons/hicolor/16x16/apps/ktimer.png share/icons/hicolor/32x32/apps/ktimer.png share/icons/hicolor/48x48/apps/ktimer.png share/locale/ar/LC_MESSAGES/ktimer.mo +share/locale/be/LC_MESSAGES/ktimer.mo share/locale/bg/LC_MESSAGES/ktimer.mo share/locale/bs/LC_MESSAGES/ktimer.mo share/locale/ca/LC_MESSAGES/ktimer.mo share/locale/ca@valencia/LC_MESSAGES/ktimer.mo share/locale/cs/LC_MESSAGES/ktimer.mo share/locale/da/LC_MESSAGES/ktimer.mo share/locale/de/LC_MESSAGES/ktimer.mo share/locale/el/LC_MESSAGES/ktimer.mo share/locale/en_GB/LC_MESSAGES/ktimer.mo share/locale/eo/LC_MESSAGES/ktimer.mo share/locale/es/LC_MESSAGES/ktimer.mo share/locale/et/LC_MESSAGES/ktimer.mo share/locale/eu/LC_MESSAGES/ktimer.mo share/locale/fa/LC_MESSAGES/ktimer.mo share/locale/fi/LC_MESSAGES/ktimer.mo share/locale/fr/LC_MESSAGES/ktimer.mo share/locale/ga/LC_MESSAGES/ktimer.mo share/locale/gl/LC_MESSAGES/ktimer.mo share/locale/he/LC_MESSAGES/ktimer.mo share/locale/hi/LC_MESSAGES/ktimer.mo share/locale/hr/LC_MESSAGES/ktimer.mo share/locale/hu/LC_MESSAGES/ktimer.mo share/locale/ia/LC_MESSAGES/ktimer.mo share/locale/id/LC_MESSAGES/ktimer.mo share/locale/is/LC_MESSAGES/ktimer.mo share/locale/it/LC_MESSAGES/ktimer.mo share/locale/ja/LC_MESSAGES/ktimer.mo share/locale/kk/LC_MESSAGES/ktimer.mo share/locale/km/LC_MESSAGES/ktimer.mo share/locale/ko/LC_MESSAGES/ktimer.mo share/locale/lt/LC_MESSAGES/ktimer.mo share/locale/lv/LC_MESSAGES/ktimer.mo share/locale/mr/LC_MESSAGES/ktimer.mo share/locale/nb/LC_MESSAGES/ktimer.mo share/locale/nds/LC_MESSAGES/ktimer.mo share/locale/nl/LC_MESSAGES/ktimer.mo share/locale/nn/LC_MESSAGES/ktimer.mo share/locale/pa/LC_MESSAGES/ktimer.mo share/locale/pl/LC_MESSAGES/ktimer.mo share/locale/pt/LC_MESSAGES/ktimer.mo share/locale/pt_BR/LC_MESSAGES/ktimer.mo share/locale/ro/LC_MESSAGES/ktimer.mo share/locale/ru/LC_MESSAGES/ktimer.mo +share/locale/se/LC_MESSAGES/ktimer.mo share/locale/sk/LC_MESSAGES/ktimer.mo share/locale/sl/LC_MESSAGES/ktimer.mo +share/locale/sq/LC_MESSAGES/ktimer.mo share/locale/sr/LC_MESSAGES/ktimer.mo share/locale/sv/LC_MESSAGES/ktimer.mo +share/locale/ta/LC_MESSAGES/ktimer.mo +share/locale/tg/LC_MESSAGES/ktimer.mo share/locale/tr/LC_MESSAGES/ktimer.mo share/locale/ug/LC_MESSAGES/ktimer.mo share/locale/uk/LC_MESSAGES/ktimer.mo share/locale/zh_CN/LC_MESSAGES/ktimer.mo share/locale/zh_TW/LC_MESSAGES/ktimer.mo share/metainfo/org.kde.ktimer.appdata.xml diff --git a/x11-fm/dolphin/distinfo b/x11-fm/dolphin/distinfo index 818f974c6e18..11a1f3e60141 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741572 -SHA256 (KDE/release-service/21.04.1/dolphin-21.04.1.tar.xz) = 292377aca0454189186d4046ed69785d7fda672270362c3b538a001c9daa826e -SIZE (KDE/release-service/21.04.1/dolphin-21.04.1.tar.xz) = 5163736 +TIMESTAMP = 1623521071 +SHA256 (KDE/release-service/21.04.2/dolphin-21.04.2.tar.xz) = 4fb3d6c15725fc86f78d6f6fb305f32d94ba95bf6d02480f3c06feaeb6e5c553 +SIZE (KDE/release-service/21.04.2/dolphin-21.04.2.tar.xz) = 5229140 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index dfc2929a3945..d79bd05a2964 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,135 +1,144 @@ 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%% lib/libkdeinit%%SHLIB_SHVER%%_dolphin.so %%QT_PLUGINDIR%%/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/kcm_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/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/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/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/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/Makefile b/x11-fm/konqueror/Makefile index f66295b45967..a4d6191543ab 100644 --- a/x11-fm/konqueror/Makefile +++ b/x11-fm/konqueror/Makefile @@ -1,29 +1,25 @@ PORTNAME= konqueror DISTVERSION= ${KDE_APPLICATIONS_VERSION} -PORTREVISION= 1 CATEGORIES= x11-fm www kde kde-applications -PATCH_SITES= https://invent.kde.org/network/konqueror/-/commit/ -PATCHFILES= 1003724180b3a758f7f4f42b247261ac95234e1b.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= KDE system log application DEPRECATED= Uses EOL Python 2.7 via www/qt5-webengine EXPIRATION_DATE=2021-06-23 USES= cmake compiler:c++11-lang desktop-file-utils gettext \ localbase:ldflags kde:5 pkgconfig qt:5 tar:xz xorg USE_KDE= activities archive auth bookmarks codecs completion config configwidgets \ coreaddons crash dbusaddons guiaddons i18n iconthemes \ init itemviews jobwidgets js kcmutils kdelibs4support \ kdesu khtml kio notifications parts pty service solid sonnet \ textwidgets unitconversion wallet widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui location network printsupport script \ speech webchannel webengine widgets x11extras xml \ buildtools_build qmake_build USE_XORG= ice sm x11 xext OPTIONS_DEFINE= DOCS .include diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index 9b376b97f549..cabaaff70798 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,5 +1,3 @@ -TIMESTAMP = 1622363274 -SHA256 (KDE/release-service/21.04.1/konqueror-21.04.1.tar.xz) = cf1987573b4efd8510525cc88d36eab33e76e95e0c3166e11c29ad3d00dab726 -SIZE (KDE/release-service/21.04.1/konqueror-21.04.1.tar.xz) = 7256176 -SHA256 (KDE/release-service/21.04.1/1003724180b3a758f7f4f42b247261ac95234e1b.diff) = 65918e76ab3e4db54d30031cb865770ff4cd5ce4244bc8bada621b8d2b81bc33 -SIZE (KDE/release-service/21.04.1/1003724180b3a758f7f4f42b247261ac95234e1b.diff) = 2974 +TIMESTAMP = 1623559958 +SHA256 (KDE/release-service/21.04.2/konqueror-21.04.2.tar.xz) = ac62db8364071267027e63548480df99818fe3fcc536ed71642482ea26dc20d4 +SIZE (KDE/release-service/21.04.2/konqueror-21.04.2.tar.xz) = 7410200 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index d8c24ed08b18..35b265fed9f4 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1274 +1,1383 @@ bin/kcreatewebarchive bin/fsview 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_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.%%KDE_APPLICATIONS_VERSION%% lib/libkonqsidebarplugin.so.5 lib/libkonquerorprivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonquerorprivate.so.5 lib/libkwebenginepart.so %%QT_PLUGINDIR%%/akregatorkonqfeedicon.so %%QT_PLUGINDIR%%/autorefresh.so %%QT_PLUGINDIR%%/babelfishplugin.so %%QT_PLUGINDIR%%/dirfilterplugin.so %%QT_PLUGINDIR%%/kcm_bookmarks.so %%QT_PLUGINDIR%%/kcm_history.so %%QT_PLUGINDIR%%/kcm_konq.so %%QT_PLUGINDIR%%/kcm_konqhtml.so %%QT_PLUGINDIR%%/kcm_performance.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%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/kimgallery.so %%QT_PLUGINDIR%%/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/searchbarplugin.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%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/22x22/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%%/kpartplugins/searchbar.desktop %%DATADIR%%/kpartplugins/searchbar.rc %%DATADIR%%/opensearch/google.xml %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png 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/dolphinpart/kpartplugins/dirfilterplugin.desktop share/dolphinpart/kpartplugins/dirfilterplugin.rc share/dolphinpart/kpartplugins/kimgalleryplugin.desktop share/dolphinpart/kpartplugins/kimgalleryplugin.rc share/dolphinpart/kpartplugins/kshellcmdplugin.desktop share/dolphinpart/kpartplugins/kshellcmdplugin.rc share/icons/hicolor/128x128/apps/konqueror.png share/icons/hicolor/128x128/apps/webengine.png 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/22x22/actions/babelfish.png share/icons/hicolor/22x22/actions/imagegallery.png share/icons/hicolor/22x22/actions/webarchiver.png share/icons/hicolor/22x22/apps/fsview.png share/icons/hicolor/22x22/apps/konqueror.png share/icons/hicolor/22x22/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/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/khtml/kpartplugins/akregator_konqfeedicon.desktop share/khtml/kpartplugins/akregator_konqfeedicon.rc share/khtml/kpartplugins/autorefresh.desktop share/khtml/kpartplugins/autorefresh.rc share/khtml/kpartplugins/khtmlsettingsplugin.desktop share/khtml/kpartplugins/khtmlsettingsplugin.rc share/khtml/kpartplugins/khtmltts.desktop share/khtml/kpartplugins/khtmltts.rc share/khtml/kpartplugins/plugin_babelfish.rc share/khtml/kpartplugins/plugin_translator.desktop share/khtml/kpartplugins/plugin_webarchiver.desktop share/khtml/kpartplugins/plugin_webarchiver.rc share/khtml/kpartplugins/uachangerplugin.desktop share/khtml/kpartplugins/uachangerplugin.rc 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/entries/settings.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 share/kservices5/akregator_konqplugin.desktop share/kservices5/bookmarks.desktop share/kservices5/filebehavior.desktop share/kservices5/fsview_part.desktop share/kservices5/kcmhistory.desktop share/kservices5/kcmkonqyperformance.desktop share/kservices5/kcmperformance.desktop share/kservices5/khtml_appearance.desktop share/kservices5/khtml_behavior.desktop share/kservices5/khtml_filter.desktop share/kservices5/khtml_general.desktop share/kservices5/khtml_java_js.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.desktop share/kwebkitpart/kpartplugins/akregator_konqfeedicon.rc share/kwebkitpart/kpartplugins/autorefresh.desktop share/kwebkitpart/kpartplugins/autorefresh.rc share/kwebkitpart/kpartplugins/khtmlsettingsplugin.desktop share/kwebkitpart/kpartplugins/khtmlsettingsplugin.rc share/kwebkitpart/kpartplugins/khtmltts.desktop share/kwebkitpart/kpartplugins/khtmltts.rc share/kwebkitpart/kpartplugins/plugin_babelfish.rc share/kwebkitpart/kpartplugins/plugin_translator.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.desktop share/kwebkitpart/kpartplugins/plugin_webarchiver.rc share/kwebkitpart/kpartplugins/uachangerplugin.desktop share/kwebkitpart/kpartplugins/uachangerplugin.rc 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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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 share/webenginepart/kpartplugins/akregator_konqfeedicon.desktop share/webenginepart/kpartplugins/akregator_konqfeedicon.rc share/webenginepart/kpartplugins/autorefresh.desktop share/webenginepart/kpartplugins/autorefresh.rc share/webenginepart/kpartplugins/khtmlsettingsplugin.desktop share/webenginepart/kpartplugins/khtmlsettingsplugin.rc share/webenginepart/kpartplugins/khtmltts.desktop share/webenginepart/kpartplugins/khtmltts.rc share/webenginepart/kpartplugins/plugin_babelfish.rc share/webenginepart/kpartplugins/plugin_translator.desktop share/webenginepart/kpartplugins/plugin_webarchiver.desktop share/webenginepart/kpartplugins/plugin_webarchiver.rc share/webenginepart/kpartplugins/uachangerplugin.desktop share/webenginepart/kpartplugins/uachangerplugin.rc diff --git a/x11/konsole/Makefile b/x11/konsole/Makefile index 71845efa501f..aa80b7e16c29 100644 --- a/x11/konsole/Makefile +++ b/x11/konsole/Makefile @@ -1,34 +1,29 @@ 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+= 585f9a561a07ec1cf5c20af37229667a3009362a.diff:-p1 -PATCHFILES+= 34ad14c8cee4ab352481bf2ba190df9f8b744d29.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 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 71dce5304c96..410eeb9c8736 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1622802522 -SHA256 (KDE/release-service/21.04.1/konsole-21.04.1.tar.xz) = 46802bbddca8dd4c264107a411a58c86cc7707c9210ddfbd38d8a971ea735293 -SIZE (KDE/release-service/21.04.1/konsole-21.04.1.tar.xz) = 1277552 -SHA256 (KDE/release-service/21.04.1/585f9a561a07ec1cf5c20af37229667a3009362a.diff) = f2fb1a996459e5092dabeb142ffc095be9d321bdefaae664369510683cc892de -SIZE (KDE/release-service/21.04.1/585f9a561a07ec1cf5c20af37229667a3009362a.diff) = 644 -SHA256 (KDE/release-service/21.04.1/34ad14c8cee4ab352481bf2ba190df9f8b744d29.diff) = f991e65519328df95b53be5b184092df365ed2060a41b07733954af49e03f6ab -SIZE (KDE/release-service/21.04.1/34ad14c8cee4ab352481bf2ba190df9f8b744d29.diff) = 1042 +TIMESTAMP = 1623533617 +SHA256 (KDE/release-service/21.04.2/konsole-21.04.2.tar.xz) = 0b67b1b854b670f30e45a8613b6c9372de6817af17851e910cbec155d104f366 +SIZE (KDE/release-service/21.04.2/konsole-21.04.2.tar.xz) = 1336232 diff --git a/x11/konsole/pkg-plist b/x11/konsole/pkg-plist index 58a07098077f..9c4636ff6574 100644 --- a/x11/konsole/pkg-plist +++ b/x11/konsole/pkg-plist @@ -1,87 +1,94 @@ bin/konsole bin/konsoleprofile share/qlogging-categories5/konsole.categories lib/libkdeinit5_konsole.so lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/konsolepart.so share/applications/org.kde.konsole.desktop share/khotkeys/konsole.khotkeys share/knotifications5/konsole.notifyrc %%DATADIR%%/BlackOnLightYellow.colorscheme %%DATADIR%%/BlackOnRandomLight.colorscheme %%DATADIR%%/BlackOnWhite.colorscheme %%DATADIR%%/BlueOnBlack.colorscheme %%DATADIR%%/Breeze.colorscheme %%DATADIR%%/DarkPastels.colorscheme %%DATADIR%%/GreenOnBlack.colorscheme %%DATADIR%%/Linux.colorscheme %%DATADIR%%/RedOnBlack.colorscheme %%DATADIR%%/Solarized.colorscheme %%DATADIR%%/SolarizedLight.colorscheme %%DATADIR%%/WhiteOnBlack.colorscheme %%DATADIR%%/default.keytab %%DATADIR%%/linux.keytab %%DATADIR%%/macos.keytab %%DATADIR%%/solaris.keytab share/knsrcfiles/konsole.knsrc share/kservices5/ServiceMenus/konsolerun.desktop share/kservices5/konsolepart.desktop share/kservicetypes5/terminalemulator.desktop share/locale/ar/LC_MESSAGES/konsole.mo share/locale/ast/LC_MESSAGES/konsole.mo +share/locale/az/LC_MESSAGES/konsole.mo +share/locale/be/LC_MESSAGES/konsole.mo share/locale/bg/LC_MESSAGES/konsole.mo share/locale/bs/LC_MESSAGES/konsole.mo share/locale/ca/LC_MESSAGES/konsole.mo share/locale/ca@valencia/LC_MESSAGES/konsole.mo share/locale/cs/LC_MESSAGES/konsole.mo share/locale/da/LC_MESSAGES/konsole.mo share/locale/de/LC_MESSAGES/konsole.mo share/locale/el/LC_MESSAGES/konsole.mo share/locale/en_GB/LC_MESSAGES/konsole.mo share/locale/eo/LC_MESSAGES/konsole.mo share/locale/es/LC_MESSAGES/konsole.mo share/locale/et/LC_MESSAGES/konsole.mo share/locale/eu/LC_MESSAGES/konsole.mo share/locale/fa/LC_MESSAGES/konsole.mo share/locale/fi/LC_MESSAGES/konsole.mo share/locale/fr/LC_MESSAGES/konsole.mo share/locale/ga/LC_MESSAGES/konsole.mo share/locale/gl/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/hi/LC_MESSAGES/konsole.mo share/locale/hr/LC_MESSAGES/konsole.mo share/locale/hu/LC_MESSAGES/konsole.mo share/locale/ia/LC_MESSAGES/konsole.mo share/locale/id/LC_MESSAGES/konsole.mo share/locale/is/LC_MESSAGES/konsole.mo share/locale/it/LC_MESSAGES/konsole.mo share/locale/ja/LC_MESSAGES/konsole.mo share/locale/kk/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lv/LC_MESSAGES/konsole.mo share/locale/ml/LC_MESSAGES/konsole.mo share/locale/mr/LC_MESSAGES/konsole.mo share/locale/nb/LC_MESSAGES/konsole.mo share/locale/nds/LC_MESSAGES/konsole.mo share/locale/nl/LC_MESSAGES/konsole.mo share/locale/nn/LC_MESSAGES/konsole.mo share/locale/pa/LC_MESSAGES/konsole.mo share/locale/pl/LC_MESSAGES/konsole.mo share/locale/pt/LC_MESSAGES/konsole.mo share/locale/pt_BR/LC_MESSAGES/konsole.mo share/locale/ro/LC_MESSAGES/konsole.mo share/locale/ru/LC_MESSAGES/konsole.mo +share/locale/se/LC_MESSAGES/konsole.mo share/locale/sk/LC_MESSAGES/konsole.mo share/locale/sl/LC_MESSAGES/konsole.mo +share/locale/sq/LC_MESSAGES/konsole.mo share/locale/sr/LC_MESSAGES/konsole.mo share/locale/sv/LC_MESSAGES/konsole.mo +share/locale/ta/LC_MESSAGES/konsole.mo +share/locale/tg/LC_MESSAGES/konsole.mo share/locale/tr/LC_MESSAGES/konsole.mo share/locale/ug/LC_MESSAGES/konsole.mo share/locale/uk/LC_MESSAGES/konsole.mo +share/locale/vi/LC_MESSAGES/konsole.mo share/locale/wa/LC_MESSAGES/konsole.mo share/locale/zh_CN/LC_MESSAGES/konsole.mo share/locale/zh_TW/LC_MESSAGES/konsole.mo share/metainfo/org.kde.konsole.appdata.xml diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index ac6246bab836..6d8379343a76 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1620741574 -SHA256 (KDE/release-service/21.04.1/yakuake-21.04.1.tar.xz) = 001cfd978197e2cd6f3fb688f645785b61517b6ccc7d7c89a27d1f9111f4a04a -SIZE (KDE/release-service/21.04.1/yakuake-21.04.1.tar.xz) = 391696 +TIMESTAMP = 1623521079 +SHA256 (KDE/release-service/21.04.2/yakuake-21.04.2.tar.xz) = d9db5632b9546b20604b1deaf500bc27cea6404c7cb9229d966ae1ace19219ed +SIZE (KDE/release-service/21.04.2/yakuake-21.04.2.tar.xz) = 393032 diff --git a/x11/yakuake/pkg-plist b/x11/yakuake/pkg-plist index 1a75b9d71268..941eca46a59b 100644 --- a/x11/yakuake/pkg-plist +++ b/x11/yakuake/pkg-plist @@ -1,182 +1,183 @@ bin/yakuake share/applications/org.kde.yakuake.desktop share/dbus-1/services/org.kde.yakuake.service share/icons/hicolor/128x128/apps/yakuake.png share/icons/hicolor/16x16/apps/yakuake.png share/icons/hicolor/22x22/apps/yakuake.png share/icons/hicolor/256x256/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/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/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/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