diff --git a/Mk/Uses/kde.mk b/Mk/Uses/kde.mk index 4419c8ba916a..c728c2c81463 100644 --- a/Mk/Uses/kde.mk +++ b/Mk/Uses/kde.mk @@ -1,912 +1,912 @@ # Provides support for KDE and KF5-based ports. # # Feature: kde # Valid ARGS: 5 # # 5: Depend on KDE Frameworks 5 components and variables. # # Variables that can be set by a port: # # USE_KDE List of KF5/Plasma5 components (other ports) that this # port depends on. # * foo:build Add a build-time dependency (BUILD_DEPENDS) # * foo:run Add a run-time dependency (RUN_DEPENDS) # * foo (default) Add both dependencies on component , or # a LIB_DEPENDS if applicable. # # To simplify the ports, also: # CATEGORIES If the port is part of one of the KDE Software distribution, # it can add, in addition to 'kde' one of the following: # kde-applications: part of applications release # kde-frameworks: part of frameworks release # kde-plasma: part of plasma release # this will then set default values for MASTER_SITES and DIST_SUBDIR # as well as CPE_VENDOR and LICENSE. # # option DOCS If the port is part of kde-applications (see CATEGORIES, # above) and has an option defined for DOCS then a dependency # for doctools:build is added. The option itself doesn't # have to do anything -- the dependency is always there. # # KDE_INVENT If the port does not have a regular release, and should # be fetched from KDE Invent (a GitLab instance) it can set # KDE_INVENT to 3 space-separated values: # * a full 40-character commit hash # * a category name inside KDE Invent # * a repository name inside KDE Invent # Default values for category and name are: # * the first item in CATEGORIES that is not "kde"; this # is useful when the FreeBSD ports category and the KDE # category are the same (which happens sometimes) # * PORTNAME, often the FreeBSD port name is the same # as the upstream name and it will not need to be specified. # Sometimes `KDE_INVENT=` will do and often # `KDE_INVENT= ` is enough. # # Setting KDE_INVENT is the equivalent of a handful of USE_GITLAB # and related settings. # # MAINTAINER: kde@FreeBSD.org .if !defined(_INCLUDE_USES_KDE_MK) _INCLUDE_USES_KDE_MK= yes _KDE_SUPPORTED= 5 . if empty(kde_ARGS) IGNORE= kde needs a version (${_KDE_SUPPORTED}) . endif . for ver in ${_KDE_SUPPORTED:O:u} . if ${kde_ARGS:M${ver}} . if !defined(_KDE_VERSION) _KDE_VERSION= ${ver} . else IGNORE?= cannot be installed: different KDE versions specified via kde:[${_KDE_SUPPORTED:S/ //g}] #' . endif . endif . endfor . if empty(_KDE_VERSION) IGNORE?= kde:[${_KDE_SUPPORTED:S/ //g}] needs an argument #' . else _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. KDE_PLASMA_VERSION?= 5.24.6 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. KDE_FRAMEWORKS_VERSION?= 5.100.0 KDE_FRAMEWORKS_BRANCH?= stable # Current KDE applications. -KDE_APPLICATIONS_VERSION?= 22.08.3 -KDE_APPLICATIONS_SHLIB_VER?= 5.21.3 +KDE_APPLICATIONS_VERSION?= 22.12.0 +KDE_APPLICATIONS_SHLIB_VER?= 5.22.0 # G as in KDE Gear, and as in "don't make the variable name longer than required" -KDE_APPLICATIONS_SHLIB_G_VER?= 22.8.3 +KDE_APPLICATIONS_SHLIB_G_VER?= 22.12.0 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- WWW?= https://api.kde.org/frameworks/${PORTNAME}/html/index.html # This is a slight duplication of _USE_FRAMEWORKS_PORTING -- it maybe would be # better to rely on ${_USE_FRAMEWORKS_PORTING:S/^/k/g} _PORTINGAIDS= kjs kjsembed kdelibs4support kdesignerplugin kdewebkit khtml kmediaplayer kross kxmlrpcclient . if ${_PORTINGAIDS:M*${PORTNAME}*} MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R}/portingAids . else MASTER_SITES?= KDE/${KDE_FRAMEWORKS_BRANCH}/frameworks/${KDE_FRAMEWORKS_VERSION:R} . endif DIST_SUBDIR?= KDE/frameworks/${KDE_FRAMEWORKS_VERSION} . else IGNORE?= unknown CATEGORY value '${_KDE_CATEGORY}' #' . endif . endif #defined(_KDE_CATEGORY) # ============================================================================== # === SET UP CMAKE ENVIRONMENT ================================================= # Help cmake to find files when testing ports with non-default PREFIX. CMAKE_ARGS+= -DCMAKE_PREFIX_PATH="${LOCALBASE}" # We set KDE_INSTALL_USE_QT_SYS_PATHS to install mkspecs files, plugins and # imports to the Qt 5 install directory. CMAKE_ARGS+= -DCMAKE_MODULE_PATH="${LOCALBASE};${KDE_PREFIX}" \ -DCMAKE_INSTALL_PREFIX="${KDE_PREFIX}" \ -DKDE_INSTALL_USE_QT_SYS_PATHS:BOOL=true # Set man-page installation prefix. CMAKE_ARGS+= -DKDE_INSTALL_MANDIR:PATH="${KDE_PREFIX}/man" \ -DMAN_INSTALL_DIR:PATH="${KDE_PREFIX}/man" # Disable autotests unless TEST_TARGET is defined. . if !defined(TEST_TARGET) CMAKE_ARGS+= -DBUILD_TESTING:BOOL=false . endif # ============================================================================== # === SET UP PLIST_SUB ========================================================= # Prefix and include directory. PLIST_SUB+= KDE_PREFIX="${KDE_PREFIX}" # KDE Applications version. PLIST_SUB+= KDE_APPLICATIONS_VERSION="${KDE_APPLICATIONS_VERSION}" \ KDE_FRAMEWORKS_VERSION="${KDE_FRAMEWORKS_VERSION}" \ KDE_PLASMA_VERSION="${KDE_PLASMA_VERSION}" # ============================================================================== _USE_KDE_BOTH= akonadi attica libkcddb libkcompactdisc libkdcraw libkdegames \ libkeduvocdocument libkexiv2 libkipi libksane okular \ baloo baloo-widgets kate marble # List of components of the KDE Frameworks distribution. # The *_TIER variables are internal, primarily for checking # that our list of frameworks matches the structure offered upstream. _USE_FRAMEWORKS_TIER1= apidox archive attica5 breeze-icons codecs config \ coreaddons dbusaddons dnssd holidays i18n idletime itemmodels \ itemviews kirigami2 kquickcharts oxygen-icons5 plotting prison \ qqc2-desktop-style solid sonnet syntaxhighlighting \ threadweaver wayland widgetsaddons windowsystem # NOT LISTED TIER1: modemmanagerqt networkmanagerqt (not applicable) _USE_FRAMEWORKS_TIER2= auth completion crash doctools \ filemetadata kimageformats jobwidgets notifications \ package pty syndication unitconversion _USE_FRAMEWORKS_TIER3= activities activities-stats baloo5 bookmarks configwidgets \ designerplugin emoticons globalaccel guiaddons \ iconthemes init kcmutils kdav kdeclarative \ kded kdesu kdewebkit kio kwayland-server newstuff notifyconfig parts \ people plasma-framework purpose runner service texteditor \ textwidgets wallet xmlgui xmlrpcclient _USE_FRAMEWORKS_TIER4= frameworkintegration calendarcore contacts # Porting Aids frameworks provide code and utilities to ease the transition from # kdelibs 4 to KDE Frameworks 5. Code should aim to port away from this framework, # new projects should avoid using these libraries. _USE_FRAMEWORKS_PORTING=js jsembed kdelibs4support khtml mediaplayer kross _USE_FRAMEWORKS_ALL= ecm \ ${_USE_FRAMEWORKS_TIER1} \ ${_USE_FRAMEWORKS_TIER2} \ ${_USE_FRAMEWORKS_TIER3} \ ${_USE_FRAMEWORKS_TIER4} \ ${_USE_FRAMEWORKS_PORTING} \ ${_USE_FRAMEWORKS_EXTRA} \ kpublictransport kosm \ plasma-wayland-protocols # List of components of the KDE Plasma distribution. _USE_PLASMA_ALL= activitymanagerd breeze breeze-gtk \ decoration discover drkonqi hotkeys \ infocenter kde-cli-tools kde-gtk-config \ kdeplasma-addons kgamma5 kmenuedit kscreen \ kscreenlocker ksshaskpass ksysguard ksystemstats kwallet-pam \ kwayland-integration kwin kwrited layer-shell-qt libkscreen \ libksysguard milou oxygen plasma-browser-integration \ plasma-desktop plasma-disks plasma-integration plasma-pa \ plasma-sdk plasma-workspace plasma-workspace-wallpapers \ polkit-kde-agent-1 powerdevil systemsettings # List of components of the KDE PIM distribution (part of applications). _USE_KDEPIM5_ALL= akonadicontacts akonadiimportwizard akonadimime akonadinotes \ akonadicalendar akonadisearch \ calendarcore calendarsupport calendarutils \ contacts eventviews gapi grantleetheme \ gravatar identitymanagement imap \ incidenceeditor kdepim-addons \ kdepim-runtime5 kitinerary kontactinterface kpkpass \ ksmtp ldap libkdepim libkleo libksieve mailcommon \ mailimporter mailtransport mbox messagelib \ mime pimcommon pimtextedit tnef \ kalarm kontact kmail mbox-importer \ akonadiconsole akregator grantlee-editor kaddressbook \ kalarm kmail-account-wizard kmail knotes kontact \ korganizer pim-data-exporter _USE_KDE5_ALL= ${_USE_FRAMEWORKS_ALL} \ ${_USE_PLASMA_ALL} \ ${_USE_KDEPIM5_ALL} \ ${_USE_KDE_BOTH} # ====================== frameworks components ================================= kde-activities_PORT= x11/kf5-kactivities kde-activities_LIB= libKF5Activities.so kde-activities-stats_PORT= x11/kf5-kactivities-stats kde-activities-stats_LIB= libKF5ActivitiesStats.so kde-apidox_PORT= devel/kf5-kapidox kde-apidox_PATH= ${KDE_PREFIX}/bin/kapidox-generate kde-apidox_TYPE= run kde-archive_PORT= archivers/kf5-karchive kde-archive_LIB= libKF5Archive.so kde-attica5_PORT= x11-toolkits/kf5-attica kde-attica5_LIB= libKF5Attica.so kde-auth_PORT= devel/kf5-kauth kde-auth_LIB= libKF5Auth.so kde-baloo5_PORT= sysutils/kf5-baloo kde-baloo5_LIB= libKF5Baloo.so kde-bookmarks_PORT= devel/kf5-kbookmarks kde-bookmarks_LIB= libKF5Bookmarks.so kde-breeze-icons_PORT= x11-themes/kf5-breeze-icons kde-breeze-icons_PATH= ${KDE_PREFIX}/share/icons/breeze/index.theme kde-breeze-icons_TYPE= run kde-codecs_PORT= textproc/kf5-kcodecs kde-codecs_LIB= libKF5Codecs.so kde-completion_PORT= x11-toolkits/kf5-kcompletion kde-completion_LIB= libKF5Completion.so kde-config_PORT= devel/kf5-kconfig kde-config_LIB= libKF5ConfigCore.so kde-configwidgets_PORT= x11-toolkits/kf5-kconfigwidgets kde-configwidgets_LIB= libKF5ConfigWidgets.so kde-coreaddons_PORT= devel/kf5-kcoreaddons kde-coreaddons_LIB= libKF5CoreAddons.so kde-crash_PORT= devel/kf5-kcrash kde-crash_LIB= libKF5Crash.so kde-dbusaddons_PORT= devel/kf5-kdbusaddons kde-dbusaddons_LIB= libKF5DBusAddons.so kde-designerplugin_PORT= x11-toolkits/kf5-kdesignerplugin kde-designerplugin_PATH= ${KDE_PREFIX}/bin/kgendesignerplugin kde-designerplugin_TYPE= run kde-dnssd_PORT= dns/kf5-kdnssd kde-dnssd_LIB= libKF5DNSSD.so kde-doctools_PORT= devel/kf5-kdoctools kde-doctools_PATH= ${KDE_PREFIX}/bin/meinproc5 kde-ecm_PORT= devel/kf5-extra-cmake-modules kde-ecm_PATH= ${LOCALBASE}/share/ECM/cmake/ECMConfig.cmake kde-emoticons_PORT= x11-themes/kf5-kemoticons kde-emoticons_LIB= libKF5Emoticons.so kde-filemetadata_PORT= devel/kf5-kfilemetadata kde-filemetadata_LIB= libKF5FileMetaData.so kde-frameworkintegration_PORT= x11/kf5-frameworkintegration kde-frameworkintegration_LIB= libKF5Style.so kde-globalaccel_PORT= x11/kf5-kglobalaccel kde-globalaccel_LIB= libKF5GlobalAccel.so kde-guiaddons_PORT= x11-toolkits/kf5-kguiaddons kde-guiaddons_LIB= libKF5GuiAddons.so kde-holidays_PORT= net/kf5-kholidays kde-holidays_LIB= libKF5Holidays.so kde-i18n_PORT= devel/kf5-ki18n kde-i18n_LIB= libKF5I18n.so kde-iconthemes_PORT= x11-themes/kf5-kiconthemes kde-iconthemes_LIB= libKF5IconThemes.so kde-idletime_PORT= devel/kf5-kidletime kde-idletime_LIB= libKF5IdleTime.so kde-init_PORT= x11/kf5-kinit kde-init_PATH= ${KDE_PREFIX}/bin/kdeinit5 kde-itemmodels_PORT= devel/kf5-kitemmodels kde-itemmodels_LIB= libKF5ItemModels.so kde-itemviews_PORT= x11-toolkits/kf5-kitemviews kde-itemviews_LIB= libKF5ItemViews.so kde-jobwidgets_PORT= x11-toolkits/kf5-kjobwidgets kde-jobwidgets_LIB= libKF5JobWidgets.so kde-js_PORT= www/kf5-kjs kde-js_LIB= libKF5JS.so kde-jsembed_PORT= www/kf5-kjsembed kde-jsembed_LIB= libKF5JsEmbed.so kde-kcmutils_PORT= devel/kf5-kcmutils kde-kcmutils_LIB= libKF5KCMUtils.so kde-kdeclarative_PORT= devel/kf5-kdeclarative kde-kdeclarative_LIB= libKF5Declarative.so kde-kded_PORT= x11/kf5-kded kde-kded_PATH= ${KDE_PREFIX}/bin/kded5 kde-kdelibs4support_PORT= x11/kf5-kdelibs4support kde-kdelibs4support_LIB= libKF5KDELibs4Support.so kde-kdesu_PORT= security/kf5-kdesu kde-kdesu_LIB= libKF5Su.so kde-kdewebkit_PORT= www/kf5-kdewebkit kde-kdewebkit_LIB= libKF5WebKit.so kde-khtml_PORT= www/kf5-khtml kde-khtml_LIB= libKF5KHtml.so kde-kimageformats_PORT= graphics/kf5-kimageformats kde-kimageformats_PATH= ${QT_PLUGINDIR}/imageformats/kimg_xcf.so kde-kimageformats_TYPE= run kde-kio_PORT= devel/kf5-kio kde-kio_LIB= libKF5KIOCore.so kde-kirigami2_PORT= x11-toolkits/kf5-kirigami2 kde-kirigami2_PATH= ${QT_QMLDIR}/org/kde/kirigami.2/libKirigamiPlugin.so kde-kquickcharts_PORT= graphics/kf5-kquickcharts kde-kquickcharts_PATH= ${QT_QMLDIR}/org/kde/quickcharts/libQuickCharts.so kde-kross_PORT= lang/kf5-kross kde-kross_LIB= libKF5KrossCore.so kde-kwayland-server_PORT= x11/plasma5-kwayland-server kde-kwayland-server_LIB= libKWaylandServer.so kde-layer-shell-qt_PORT= x11/plasma5-layer-shell-qt kde-layer-shell-qt_LIB= libLayerShellQtInterface.so kde-mediaplayer_PORT= multimedia/kf5-kmediaplayer kde-mediaplayer_LIB= libKF5MediaPlayer.so.5 kde-newstuff_PORT= devel/kf5-knewstuff kde-newstuff_LIB= libKF5NewStuff.so kde-notifications_PORT= devel/kf5-knotifications kde-notifications_LIB= libKF5Notifications.so kde-notifyconfig_PORT= devel/kf5-knotifyconfig kde-notifyconfig_LIB= libKF5NotifyConfig.so kde-oxygen-icons5_PORT= x11-themes/kf5-oxygen-icons5 kde-oxygen-icons5_PATH= ${KDE_PREFIX}/share/icons/oxygen/index.theme kde-oxygen-icons5_TYPE= run kde-package_PORT= devel/kf5-kpackage kde-package_LIB= libKF5Package.so kde-parts_PORT= devel/kf5-kparts kde-parts_LIB= libKF5Parts.so kde-people_PORT= devel/kf5-kpeople kde-people_LIB= libKF5People.so kde-plasma-framework_PORT= x11/kf5-plasma-framework kde-plasma-framework_LIB= libKF5Plasma.so kde-plasma-wayland-protocols_PORT= x11/plasma-wayland-protocols kde-plasma-wayland-protocols_PATH= ${KDE_PREFIX}/lib/cmake/PlasmaWaylandProtocols/PlasmaWaylandProtocolsConfig.cmake kde-plotting_PORT= graphics/kf5-kplotting kde-plotting_LIB= libKF5Plotting.so kde-prison_PORT= graphics/kf5-prison kde-prison_LIB= libKF5Prison.so kde-pty_PORT= devel/kf5-kpty kde-pty_LIB= libKF5Pty.so kde-purpose_PORT= misc/kf5-purpose kde-purpose_LIB= libKF5Purpose.so kde-qqc2-desktop-style_PORT= x11-themes/kf5-qqc2-desktop-style kde-qqc2-desktop-style_PATH= ${QT_PLUGINDIR}/kf5/kirigami/org.kde.desktop.so kde-runner_PORT= x11/kf5-krunner kde-runner_LIB= libKF5Runner.so kde-service_PORT= devel/kf5-kservice kde-service_PATH= ${KDE_PREFIX}/bin/kbuildsycoca5 kde-solid_PORT= devel/kf5-solid kde-solid_LIB= libKF5Solid.so kde-sonnet_PORT= textproc/kf5-sonnet kde-sonnet_LIB= libKF5SonnetCore.so kde-syndication_PORT= net/kf5-syndication kde-syndication_LIB= libKF5Syndication.so kde-syntaxhighlighting_PORT= textproc/kf5-syntax-highlighting kde-syntaxhighlighting_LIB= libKF5SyntaxHighlighting.so kde-texteditor_PORT= devel/kf5-ktexteditor kde-texteditor_LIB= libKF5TextEditor.so kde-textwidgets_PORT= x11-toolkits/kf5-ktextwidgets kde-textwidgets_LIB= libKF5TextWidgets.so kde-threadweaver_PORT= devel/kf5-threadweaver kde-threadweaver_LIB= libKF5ThreadWeaver.so kde-unitconversion_PORT= devel/kf5-kunitconversion kde-unitconversion_LIB= libKF5UnitConversion.so kde-wallet_PORT= sysutils/kf5-kwallet kde-wallet_LIB= libKF5Wallet.so kde-wayland_PORT= x11/kf5-kwayland kde-wayland_LIB= libKF5WaylandClient.so kde-widgetsaddons_PORT= x11-toolkits/kf5-kwidgetsaddons kde-widgetsaddons_LIB= libKF5WidgetsAddons.so kde-windowsystem_PORT= x11/kf5-kwindowsystem kde-windowsystem_LIB= libKF5WindowSystem.so kde-xmlgui_PORT= x11-toolkits/kf5-kxmlgui kde-xmlgui_LIB= libKF5XmlGui.so kde-xmlrpcclient_PORT= net/kf5-kxmlrpcclient kde-xmlrpcclient_LIB= libKF5XmlRpcClient.so # ====================== end of frameworks components ========================== # ====================== plasma components ===================================== kde-activitymanagerd_PORT= x11/plasma5-kactivitymanagerd kde-activitymanagerd_LIB= libkactivitymanagerd_plugin.so kde-breeze_PORT= x11-themes/plasma5-breeze kde-breeze_PATH= ${KDE_PREFIX}/share/QtCurve/Breeze.qtcurve kde-breeze-gtk_PORT= x11-themes/plasma5-breeze-gtk kde-breeze-gtk_PATH= ${KDE_PREFIX}/share/themes/Breeze/gtk-2.0/gtkrc kde-decoration_PORT= x11-wm/plasma5-kdecoration kde-decoration_LIB= libkdecorations2.so kde-discover_PORT= sysutils/plasma5-discover kde-discover_PATH= ${KDE_PREFIX}/bin/plasma-discover kde-drkonqi_PORT= sysutils/plasma5-drkonqi kde-drkonqi_PATH= ${KDE_PREFIX}/lib/libexec/drkonqi kde-hotkeys_PORT= devel/plasma5-khotkeys kde-hotkeys_LIB= libkhotkeysprivate.so.5 kde-infocenter_PORT= sysutils/plasma5-kinfocenter kde-infocenter_PATH= ${KDE_PREFIX}/bin/kinfocenter kde-kde-cli-tools_PORT= sysutils/plasma5-kde-cli-tools kde-kde-cli-tools_PATH= ${KDE_PREFIX}/bin/kcmshell5 kde-kde-gtk-config_PORT= x11-themes/plasma5-kde-gtk-config kde-kde-gtk-config_PATH= ${KDE_PREFIX}/lib/kconf_update_bin/gtk_theme kde-kdeplasma-addons_PORT= x11-toolkits/plasma5-kdeplasma-addons kde-kdeplasma-addons_LIB= libplasmapotdprovidercore.so kde-kgamma5_PORT= x11/plasma5-kgamma5 kde-kgamma5_PATH= ${QT_PLUGINDIR}/plasma/kcms/systemsettings/kcm_kgamma.so kde-kmenuedit_PORT= sysutils/plasma5-kmenuedit kde-kmenuedit_PATH= ${KDE_PREFIX}/bin/kmenuedit kde-kscreen_PORT= x11/plasma5-kscreen kde-kscreen_PATH= ${KDE_PREFIX}/bin/kscreen-console kde-kscreenlocker_PORT= security/plasma5-kscreenlocker kde-kscreenlocker_LIB= libKScreenLocker.so kde-ksshaskpass_PORT= security/plasma5-ksshaskpass kde-ksshaskpass_PATH= ${KDE_PREFIX}/bin/ksshaskpass kde-ksysguard_PORT= sysutils/plasma5-ksysguard kde-ksysguard_PATH= ${KDE_PREFIX}/bin/ksysguard kde-ksystemstats_PORT= sysutils/plasma5-ksystemstats kde-ksystemstats_PATH= ${KDE_PREFIX}/bin/ksystemstats kde-kwallet-pam_PORT= security/plasma5-kwallet-pam kde-kwallet-pam_PATH= ${KDE_PREFIX}/lib/pam_kwallet5.so kde-kwayland-integration_PORT= x11/plasma5-kwayland-integration kde-kwayland-integration_PATH= ${QT_PLUGINDIR}/kf5/org.kde.kidletime.platforms/KF5IdleTimeKWaylandPlugin.so kde-kwin_PORT= x11-wm/plasma5-kwin kde-kwin_PATH= ${KDE_PREFIX}/bin/kwin_x11 kde-kwrited_PORT= devel/plasma5-kwrited kde-kwrited_PATH= ${QT_PLUGINDIR}/kf5/kded/kwrited.so kde-libkscreen_PORT= x11/plasma5-libkscreen kde-libkscreen_LIB= libKF5Screen.so kde-libksysguard_PORT= sysutils/plasma5-libksysguard kde-libksysguard_LIB= libksgrd.so kde-milou_PORT= deskutils/plasma5-milou kde-milou_LIB= libmilou.so.5 kde-oxygen_PORT= x11-themes/plasma5-oxygen kde-oxygen_PATH= ${QT_PLUGINDIR}/styles/oxygen.so kde-plasma-browser-integration_PORT= www/plasma5-plasma-browser-integration kde-plasma-browser-integration_PATH= ${KDE_PREFIX}/bin/plasma-browser-integration-host kde-plasma-desktop_PORT= x11/plasma5-plasma-desktop kde-plasma-desktop_PATH= ${KDE_PREFIX}/bin/kaccess kde-plasma-disks_PORT= sysutils/plasma5-plasma-disks kde-plasma-disks_PATH= ${KDE_PREFIX}/lib/libexec/kauth/kded-smart-helper kde-plasma-integration_PORT= x11/plasma5-plasma-integration kde-plasma-integration_PATH= ${QT_PLUGINDIR}/platformthemes/KDEPlasmaPlatformTheme.so kde-plasma-pa_PORT= audio/plasma5-plasma-pa kde-plasma-pa_PATH= ${QT_PLUGINDIR}/kcms/kcm_pulseaudio.so kde-plasma-sdk_PORT= devel/plasma5-plasma-sdk kde-plasma-sdk_PATH= ${KDE_PREFIX}/bin/plasmoidviewer kde-plasma-workspace_PORT= x11/plasma5-plasma-workspace kde-plasma-workspace_LIB= libkworkspace5.so kde-plasma-workspace-wallpapers_PORT= x11-themes/plasma5-plasma-workspace-wallpapers kde-plasma-workspace-wallpapers_PATH= ${KDE_PREFIX}/share/wallpapers/Autumn/contents/images/1280x1024.jpg kde-polkit-kde-agent-1_PORT= sysutils/plasma5-polkit-kde-agent-1 kde-polkit-kde-agent-1_PATH= ${KDE_PREFIX}/lib/libexec/polkit-kde-authentication-agent-1 kde-powerdevil_PORT= sysutils/plasma5-powerdevil kde-powerdevil_LIB= libpowerdevilcore.so kde-systemsettings_PORT= sysutils/plasma5-systemsettings kde-systemsettings_PATH= ${KDE_PREFIX}/bin/systemsettings5 # ====================== end of plasma components ============================== # ====================== pim5 components ======================================= kde-akonadicontacts_PORT= net/akonadi-contacts kde-akonadicontacts_LIB= libKF5AkonadiContact.so kde-akonadiimportwizard_PORT= deskutils/akonadi-import-wizard kde-akonadiimportwizard_LIB= libKPimImportWizard.so kde-akonadimime_PORT= net/akonadi-mime kde-akonadimime_LIB= libKF5AkonadiMime.so kde-akonadinotes_PORT= net/akonadi-notes kde-akonadinotes_LIB= libKF5AkonadiNotes.so kde-akonadicalendar_PORT= net/akonadi-calendar kde-akonadicalendar_LIB= libKF5AkonadiCalendar.so kde-akonadisearch_PORT= net/akonadi-search kde-akonadisearch_LIB= libKF5AkonadiSearchCore.so kde-calendarsupport_PORT= net/calendarsupport kde-calendarsupport_LIB= libKF5CalendarSupport.so kde-calendarcore_PORT= net/kf5-kcalendarcore kde-calendarcore_LIB= libKF5CalendarCore.so kde-calendarutils_PORT= net/kcalutils kde-calendarutils_LIB= libKF5CalendarUtils.so kde-contacts_PORT= net/kf5-kcontacts kde-contacts_LIB= libKF5Contacts.so kde-eventviews_PORT= net/eventviews kde-eventviews_LIB= libKF5EventViews.so kde-gapi_PORT= net/libkgapi kde-gapi_LIB= libKPimGAPICore.so kde-grantleetheme_PORT= deskutils/grantleetheme kde-grantleetheme_LIB= libKF5GrantleeTheme.so kde-gravatar_PORT= net/libgravatar kde-gravatar_LIB= libKF5Gravatar.so kde-identitymanagement_PORT= net/kidentitymanagement kde-identitymanagement_LIB= libKF5IdentityManagement.so kde-imap_PORT= net/kimap kde-imap_LIB= libKF5IMAP.so kde-incidenceeditor_PORT= net/incidenceeditor kde-incidenceeditor_LIB= libKF5IncidenceEditor.so kde-kdav_PORT= net/kf5-kdav kde-kdav_LIB= libKF5DAV.so kde-kdepim-addons_PORT= deskutils/kdepim-addons kde-kdepim-addons_PATH= ${QT_PLUGINDIR}/pim5/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 80e5f443d5b2..a888dd54ed78 100644 --- a/accessibility/kmag/distinfo +++ b/accessibility/kmag/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539634 -SHA256 (KDE/release-service/22.08.3/kmag-22.08.3.tar.xz) = 16916858bf4a7be97db2e4d8205e9b88772a05328b35db9993910106d6391627 -SIZE (KDE/release-service/22.08.3/kmag-22.08.3.tar.xz) = 710500 +TIMESTAMP = 1670513290 +SHA256 (KDE/release-service/22.12.0/kmag-22.12.0.tar.xz) = c3d07878c34c0e413c4dc3f648e68d780903b9b5d8711250caafc2af1641c23e +SIZE (KDE/release-service/22.12.0/kmag-22.12.0.tar.xz) = 722556 diff --git a/accessibility/kmag/pkg-plist b/accessibility/kmag/pkg-plist index c7760876567c..c3e5fc269aad 100644 --- a/accessibility/kmag/pkg-plist +++ b/accessibility/kmag/pkg-plist @@ -1,81 +1,93 @@ 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/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/kmag.mo share/locale/lt/LC_MESSAGES/kmag.mo share/locale/lv/LC_MESSAGES/kmag.mo +share/locale/mk/LC_MESSAGES/kmag.mo share/locale/ml/LC_MESSAGES/kmag.mo share/locale/mr/LC_MESSAGES/kmag.mo +share/locale/ms/LC_MESSAGES/kmag.mo share/locale/nb/LC_MESSAGES/kmag.mo share/locale/nds/LC_MESSAGES/kmag.mo +share/locale/ne/LC_MESSAGES/kmag.mo share/locale/nl/LC_MESSAGES/kmag.mo share/locale/nn/LC_MESSAGES/kmag.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kmag.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmag.mo +share/locale/sr@latin/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/th/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 db64215b7230..f132a736654d 100644 --- a/accessibility/kmousetool/distinfo +++ b/accessibility/kmousetool/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539635 -SHA256 (KDE/release-service/22.08.3/kmousetool-22.08.3.tar.xz) = 6d153a2e4fb03628540604bad99ed9f3ca1cff51a9b326b544f380c5083a9b49 -SIZE (KDE/release-service/22.08.3/kmousetool-22.08.3.tar.xz) = 122212 +TIMESTAMP = 1670513291 +SHA256 (KDE/release-service/22.12.0/kmousetool-22.12.0.tar.xz) = 47f1e2dec1e9452cb4b81561d204ebc84080130475af0aee940a4507fd1619aa +SIZE (KDE/release-service/22.12.0/kmousetool-22.12.0.tar.xz) = 129244 diff --git a/accessibility/kmousetool/pkg-plist b/accessibility/kmousetool/pkg-plist index c865b7fbd8c3..cb456dce7326 100644 --- a/accessibility/kmousetool/pkg-plist +++ b/accessibility/kmousetool/pkg-plist @@ -1,81 +1,94 @@ 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/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/kmousetool.mo share/locale/lt/LC_MESSAGES/kmousetool.mo share/locale/lv/LC_MESSAGES/kmousetool.mo +share/locale/mk/LC_MESSAGES/kmousetool.mo share/locale/ml/LC_MESSAGES/kmousetool.mo share/locale/mr/LC_MESSAGES/kmousetool.mo +share/locale/ms/LC_MESSAGES/kmousetool.mo share/locale/nb/LC_MESSAGES/kmousetool.mo share/locale/nds/LC_MESSAGES/kmousetool.mo +share/locale/ne/LC_MESSAGES/kmousetool.mo share/locale/nl/LC_MESSAGES/kmousetool.mo share/locale/nn/LC_MESSAGES/kmousetool.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kmousetool.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmousetool.mo +share/locale/sr@latin/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/th/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 ade2ba81fbbf..0c0991011e2a 100644 --- a/accessibility/kmouth/distinfo +++ b/accessibility/kmouth/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539637 -SHA256 (KDE/release-service/22.08.3/kmouth-22.08.3.tar.xz) = ec68ce3b58ed6e7c79270cfaa5693182c81d218fbc8ea82dda798586a6e92b47 -SIZE (KDE/release-service/22.08.3/kmouth-22.08.3.tar.xz) = 2055140 +TIMESTAMP = 1670513293 +SHA256 (KDE/release-service/22.12.0/kmouth-22.12.0.tar.xz) = 94e1343d3d07b0b5c022bd8a506f5d047cd9c201410603436e6c59e350aabddd +SIZE (KDE/release-service/22.12.0/kmouth-22.12.0.tar.xz) = 2087008 diff --git a/accessibility/kmouth/pkg-plist b/accessibility/kmouth/pkg-plist index 65ef76e22f00..d28e5533553d 100644 --- a/accessibility/kmouth/pkg-plist +++ b/accessibility/kmouth/pkg-plist @@ -1,109 +1,123 @@ bin/kmouth etc/xdg/kmouthrc man/ca/man1/kmouth.1.gz man/da/man1/kmouth.1.gz man/de/man1/kmouth.1.gz man/es/man1/kmouth.1.gz man/et/man1/kmouth.1.gz man/fr/man1/kmouth.1.gz man/it/man1/kmouth.1.gz man/man1/kmouth.1.gz man/nl/man1/kmouth.1.gz man/pt/man1/kmouth.1.gz man/pt_BR/man1/kmouth.1.gz man/ru/man1/kmouth.1.gz man/sv/man1/kmouth.1.gz man/uk/man1/kmouth.1.gz share/applications/org.kde.kmouth.desktop share/icons/hicolor/16x16/actions/phrase.png share/icons/hicolor/16x16/actions/phrasebook.png share/icons/hicolor/16x16/apps/kmouth.png share/icons/hicolor/22x22/actions/phrase.png share/icons/hicolor/22x22/actions/phrasebook.png share/icons/hicolor/22x22/apps/kmouth.png share/icons/hicolor/32x32/actions/phrase.png share/icons/hicolor/32x32/actions/phrasebook.png share/icons/hicolor/32x32/apps/kmouth.png share/icons/hicolor/48x48/apps/kmouth.png %%DATADIR%%/books/ca/ca-courteousness.phrasebook %%DATADIR%%/books/ca/ca-greetings.phrasebook %%DATADIR%%/books/ca/ca-howareyou.phrasebook %%DATADIR%%/books/ca/ca-personal.phrasebook %%DATADIR%%/books/ca/ca.desktop %%DATADIR%%/books/de/de-courteousness.phrasebook %%DATADIR%%/books/de/de-greetings.phrasebook %%DATADIR%%/books/de/de-howareyou.phrasebook %%DATADIR%%/books/de/de-personal.phrasebook %%DATADIR%%/books/de/de.desktop %%DATADIR%%/books/en/en-courteousness.phrasebook %%DATADIR%%/books/en/en-greetings.phrasebook %%DATADIR%%/books/en/en-howareyou.phrasebook %%DATADIR%%/books/en/en-personal.phrasebook %%DATADIR%%/books/en/en.desktop %%DATADIR%%/books/sv/sv-courteousness.phrasebook %%DATADIR%%/books/sv/sv-greetings.phrasebook %%DATADIR%%/books/sv/sv-howareyou.phrasebook %%DATADIR%%/books/sv/sv-personal.phrasebook %%DATADIR%%/books/sv/sv.desktop share/kxmlgui5/kmouth/kmouthui.rc share/kxmlgui5/kmouth/phrasebookdialogui.rc share/locale/ar/LC_MESSAGES/kmouth.mo share/locale/be/LC_MESSAGES/kmouth.mo share/locale/bg/LC_MESSAGES/kmouth.mo +share/locale/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/kmouth.mo share/locale/lt/LC_MESSAGES/kmouth.mo share/locale/lv/LC_MESSAGES/kmouth.mo +share/locale/mai/LC_MESSAGES/kmouth.mo +share/locale/mk/LC_MESSAGES/kmouth.mo share/locale/ml/LC_MESSAGES/kmouth.mo share/locale/mr/LC_MESSAGES/kmouth.mo +share/locale/ms/LC_MESSAGES/kmouth.mo share/locale/nb/LC_MESSAGES/kmouth.mo share/locale/nds/LC_MESSAGES/kmouth.mo +share/locale/ne/LC_MESSAGES/kmouth.mo share/locale/nl/LC_MESSAGES/kmouth.mo share/locale/nn/LC_MESSAGES/kmouth.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kmouth.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmouth.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kmouth.mo share/locale/tr/LC_MESSAGES/kmouth.mo share/locale/ug/LC_MESSAGES/kmouth.mo share/locale/uk/LC_MESSAGES/kmouth.mo share/locale/vi/LC_MESSAGES/kmouth.mo share/locale/zh_CN/LC_MESSAGES/kmouth.mo share/locale/zh_TW/LC_MESSAGES/kmouth.mo share/metainfo/org.kde.kmouth.appdata.xml diff --git a/archivers/ark/distinfo b/archivers/ark/distinfo index c9cea5305266..e1e14f06696a 100644 --- a/archivers/ark/distinfo +++ b/archivers/ark/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539484 -SHA256 (KDE/release-service/22.08.3/ark-22.08.3.tar.xz) = 9cc79811d95eb61e491a8ff6f0aebbab9b38b739ac4a5f66fe3807cd22a78065 -SIZE (KDE/release-service/22.08.3/ark-22.08.3.tar.xz) = 2785944 +TIMESTAMP = 1670513090 +SHA256 (KDE/release-service/22.12.0/ark-22.12.0.tar.xz) = ad1009b6651542046ce20e4bcb697430cb7d0138b046454fb38afd243c04ea51 +SIZE (KDE/release-service/22.12.0/ark-22.12.0.tar.xz) = 2871412 diff --git a/archivers/ark/pkg-plist b/archivers/ark/pkg-plist index bb1aca5a3f5c..17fa7904d57a 100644 --- a/archivers/ark/pkg-plist +++ b/archivers/ark/pkg-plist @@ -1,100 +1,118 @@ bin/ark +etc/xdg/arkrc +man/sr@latin/man1/ark.1.gz lib/libkerfuffle.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkerfuffle.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cli7z.so +%%QT_PLUGINDIR%%/kerfuffle/kerfuffle_cliarj.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 %%QT_PLUGINDIR%%/kf5/parts/arkpart.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/128x128/apps/ark.png share/icons/hicolor/scalable/apps/ark.svgz -share/kservices5/ark_part.desktop -share/kservicetypes5/kerfufflePlugin.desktop +share/kconf_update/ark.upd +share/kconf_update/ark_add_hamburgermenu_to_toolbar.sh +share/locale/af/LC_MESSAGES/ark.mo 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/br/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/cy/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/hne/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/ie/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/ka/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/ku/LC_MESSAGES/ark.mo share/locale/lt/LC_MESSAGES/ark.mo share/locale/lv/LC_MESSAGES/ark.mo +share/locale/mk/LC_MESSAGES/ark.mo share/locale/mr/LC_MESSAGES/ark.mo +share/locale/ms/LC_MESSAGES/ark.mo share/locale/nb/LC_MESSAGES/ark.mo share/locale/nds/LC_MESSAGES/ark.mo +share/locale/ne/LC_MESSAGES/ark.mo share/locale/nl/LC_MESSAGES/ark.mo share/locale/nn/LC_MESSAGES/ark.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/ark.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ark.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/ark.mo +share/locale/uz@cyrillic/LC_MESSAGES/ark.mo +share/locale/xh/LC_MESSAGES/ark.mo share/locale/zh_CN/LC_MESSAGES/ark.mo +share/locale/zh_HK/LC_MESSAGES/ark.mo share/locale/zh_TW/LC_MESSAGES/ark.mo share/metainfo/org.kde.ark.appdata.xml share/qlogging-categories5/ark.categories diff --git a/astro/kosmindoormap/distinfo b/astro/kosmindoormap/distinfo index de14ef97002d..f4e1c25f115e 100644 --- a/astro/kosmindoormap/distinfo +++ b/astro/kosmindoormap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539617 -SHA256 (KDE/release-service/22.08.3/kosmindoormap-22.08.3.tar.xz) = 9b510a23987eb3c74a2feb85b8810bbbdd06c8028ef10056f44fc76dde1d06d5 -SIZE (KDE/release-service/22.08.3/kosmindoormap-22.08.3.tar.xz) = 358936 +TIMESTAMP = 1670513269 +SHA256 (KDE/release-service/22.12.0/kosmindoormap-22.12.0.tar.xz) = 7b8f9b7fa8323f621583a36566f48f080f090df7158b196d7527f1a3059b68d5 +SIZE (KDE/release-service/22.12.0/kosmindoormap-22.12.0.tar.xz) = 363272 diff --git a/astro/kosmindoormap/pkg-plist b/astro/kosmindoormap/pkg-plist index ff37da8f60eb..d96628206868 100644 --- a/astro/kosmindoormap/pkg-plist +++ b/astro/kosmindoormap/pkg-plist @@ -1,83 +1,84 @@ 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/kosm/stringpool.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_VERSION%% lib/libKOSMIndoorMap.so lib/libKOSMIndoorMap.so.1 lib/libKOSMIndoorMap.so.%%KDE_APPLICATIONS_VERSION%% %%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/fi/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/ka/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/ru/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/tr/LC_MESSAGES/kosmindoormap.mo share/locale/uk/LC_MESSAGES/kosmindoormap.mo share/locale/zh_CN/LC_MESSAGES/kosmindoormap.mo share/locale/zh_TW/LC_MESSAGES/kosmindoormap.mo share/qlogging-categories5/org_kde_kosmindoormap.categories diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 9e503d71006a..f64e0a492e3e 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -1,53 +1,49 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= astro education kde kde-applications -PATCH_SITES= https://invent.kde.org/education/marble/-/commit/ -PATCHFILES= 677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff:-p1 \ - 78a351ad21832a2ec3ae3c3917573241c2ea396b.diff:-p1 - MAINTAINER= kde@FreeBSD.org COMMENT= Virtual globe and world atlas for KDE WWW= https://marble.kde.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libquazip1-qt5.so:archivers/quazip USES= cmake compiler:c++11-lang desktop-file-utils gettext \ kde:5 qt:5 shared-mime-info tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ crash doctools i18n jobwidgets kio newstuff package parts \ plasma-framework plasma-workspace-wallpapers runner service solid \ sonnet textwidgets wallet widgetsaddons windowsystem xmlgui \ ecm:build USE_QT= concurrent core dbus declarative designer gui location network opengl \ phonon4 printsupport script serialport sql svg webchannel widgets xml \ buildtools:build qmake:build testlib:build USE_XORG= x11 USE_LDCONFIG= yes MAKE_ENV= XDG_CONFIG_HOME=/dev/null # We have to set QT_IMPORTS_PATH, as it does not get picked up CMAKE_ARGS= -DMOBILE:BOOL=FALSE \ -DQT_IMPORTS_DIR:PATH=${QT_IMPORTDIR} # Override shared library version KDE_APPLICATIONS_SHLIB_VER= ${KDE_APPLICATIONS_SHLIB_G_VER} OPTIONS_DEFINE= GPS DOCS WEBENGINE OPTIONS_DEFAULT=GPS OPTIONS_DEFAULT_amd64= WEBENGINE OPTIONS_DEFAULT_i386= WEBENGINE OPTIONS_SUB= yes GPS_DESC= Support for GPS position provider GPS_LIB_DEPENDS= libgps.so:astro/gpsd GPS_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_libgps WEBENGINE_DESC= Add dependency on qt5-webengine WEBENGINE_USE= QT=webengine WEBENGINE_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets .include diff --git a/astro/marble/distinfo b/astro/marble/distinfo index 10e794ca1b75..78f61a9a7df5 100644 --- a/astro/marble/distinfo +++ b/astro/marble/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1667539616 -SHA256 (KDE/release-service/22.08.3/marble-22.08.3.tar.xz) = 5b7777fda9401e41b6340ffb56b4a7e6fd27996a71684b29c6d4ebfe4baaf60b -SIZE (KDE/release-service/22.08.3/marble-22.08.3.tar.xz) = 53675664 -SHA256 (KDE/release-service/22.08.3/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 97b3e42d94091d0d7ba07f7ec1718e386080e613a8d051ed9872c2f012fa0820 -SIZE (KDE/release-service/22.08.3/677153cc8c1450a8a370fbd1c7505dd7e4ea50fc.diff) = 4767 -SHA256 (KDE/release-service/22.08.3/78a351ad21832a2ec3ae3c3917573241c2ea396b.diff) = 51552b975406cd6f1182a3c002f550455812867bc6107e61b18e3dea665d6d91 -SIZE (KDE/release-service/22.08.3/78a351ad21832a2ec3ae3c3917573241c2ea396b.diff) = 825 +TIMESTAMP = 1670568446 +SHA256 (KDE/release-service/22.12.0/marble-22.12.0.tar.xz) = c24c2da0c70771e1fb54c3379f88ef84ece9a2f691d46f2680261487e080e016 +SIZE (KDE/release-service/22.12.0/marble-22.12.0.tar.xz) = 53747624 diff --git a/astro/marble/pkg-plist b/astro/marble/pkg-plist index 96ef635c0d32..653b308c112c 100644 --- a/astro/marble/pkg-plist +++ b/astro/marble/pkg-plist @@ -1,1794 +1,1812 @@ bin/marble bin/marble-qt include/astro/astr2lib.h include/astro/astro_version.h include/astro/astrolib.h include/astro/astrolib_export.h include/astro/attlib.h include/astro/eclsolar.h include/astro/planetarySats.h include/astro/solarsystem.h include/marble/AbstractDataPlugin.h include/marble/AbstractDataPluginItem.h include/marble/AbstractDataPluginModel.h include/marble/AbstractFloatItem.h include/marble/AbstractMarbleGraphicsLayout.h include/marble/AbstractProjection.h include/marble/AbstractWorkerThread.h include/marble/AddLinkDialog.h include/marble/AlternativeRoutesModel.h include/marble/AutoNavigation.h include/marble/BillboardGraphicsItem.h include/marble/BookmarkManager.h include/marble/CelestialSortFilterProxyModel.h include/marble/ClipPainter.h include/marble/CurrentLocationWidget.h include/marble/DialogConfigurationInterface.h include/marble/DownloadRegion.h include/marble/DownloadRegionDialog.h include/marble/EditPlacemarkDialog.h include/marble/ElevationModel.h include/marble/FileManager.h include/marble/FileViewWidget.h include/marble/FlyToEditWidget.h include/marble/FormattedTextWidget.h include/marble/FrameGraphicsItem.h include/marble/GeoDataAbstractView.h include/marble/GeoDataAccuracy.h include/marble/GeoDataBalloonStyle.h include/marble/GeoDataColorStyle.h include/marble/GeoDataContainer.h include/marble/GeoDataCoordinates.h include/marble/GeoDataDocument.h include/marble/GeoDataFeature.h include/marble/GeoDataFolder.h include/marble/GeoDataGeometry.h include/marble/GeoDataGroundOverlay.h include/marble/GeoDataHotSpot.h include/marble/GeoDataIconStyle.h include/marble/GeoDataItemIcon.h include/marble/GeoDataLabelStyle.h include/marble/GeoDataLatLonAltBox.h include/marble/GeoDataLatLonBox.h include/marble/GeoDataLatLonQuad.h include/marble/GeoDataLineString.h include/marble/GeoDataLineStyle.h include/marble/GeoDataLinearRing.h include/marble/GeoDataListStyle.h include/marble/GeoDataLod.h include/marble/GeoDataLookAt.h include/marble/GeoDataMultiGeometry.h include/marble/GeoDataObject.h include/marble/GeoDataOverlay.h include/marble/GeoDataPlacemark.h include/marble/GeoDataPoint.h include/marble/GeoDataPolyStyle.h include/marble/GeoDataPolygon.h include/marble/GeoDataRegion.h include/marble/GeoDataRelation.h include/marble/GeoDataSnippet.h include/marble/GeoDataStyle.h include/marble/GeoDataStyleMap.h include/marble/GeoDataStyleSelector.h include/marble/GeoDataTimePrimitive.h include/marble/GeoDataTimeSpan.h include/marble/GeoDataTimeStamp.h include/marble/GeoDataTrack.h include/marble/GeoDataTreeModel.h include/marble/GeoDataTypes.h include/marble/GeoDocument.h include/marble/GeoGraphicsItem.h include/marble/GeoGraphicsScene.h include/marble/GeoPainter.h include/marble/GeoWriter.h include/marble/HttpDownloadManager.h include/marble/LabelGraphicsItem.h include/marble/LatLonBoxWidget.h include/marble/LatLonEdit.h include/marble/LayerInterface.h include/marble/LegendWidget.h include/marble/Maneuver.h include/marble/MapThemeDownloadDialog.h include/marble/MapThemeManager.h include/marble/MapViewItemDelegate.h include/marble/MapViewWidget.h include/marble/MapWizard.h include/marble/MarbleAboutDialog.h include/marble/MarbleColors.h include/marble/MarbleDebug.h include/marble/MarbleDeclarativePlugin.h include/marble/MarbleDirs.h include/marble/MarbleGlobal.h include/marble/MarbleGraphicsGridLayout.h include/marble/MarbleGraphicsItem.h include/marble/MarbleInputHandler.h include/marble/MarbleLocale.h include/marble/MarbleMap.h include/marble/MarbleMath.h include/marble/MarbleModel.h include/marble/MarbleNavigator.h %%WEBENGINE%%include/marble/MarbleWebView.h include/marble/MarbleWidget.h include/marble/MarbleWidgetInputHandler.h include/marble/MarbleWidgetPopupMenu.h %%NO_WEBENGINE%%include/marble/NullMarbleWebView.h %%NO_WEBENGINE%%include/marble/NullTinyWebBrowser.h include/marble/OsmcSymbol.h include/marble/ParseRunnerPlugin.h include/marble/ParsingRunner.h include/marble/ParsingRunnerManager.h include/marble/PlacemarkEditHeader.h include/marble/Planet.h include/marble/PlanetFactory.h include/marble/PluginAboutDialog.h include/marble/PluginInterface.h include/marble/PluginManager.h include/marble/PositionProviderPlugin.h include/marble/PositionProviderPluginInterface.h include/marble/PositionTracking.h include/marble/QtMarbleConfigDialog.h include/marble/Quaternion.h include/marble/RemoveItemEditWidget.h include/marble/RenderPlugin.h include/marble/RenderPluginInterface.h include/marble/RenderState.h include/marble/ReverseGeocodingRunner.h include/marble/ReverseGeocodingRunnerManager.h include/marble/ReverseGeocodingRunnerPlugin.h include/marble/Route.h include/marble/RouteRequest.h include/marble/RouteSegment.h include/marble/RoutingManager.h include/marble/RoutingModel.h include/marble/RoutingProfile.h include/marble/RoutingRunner.h include/marble/RoutingRunnerManager.h include/marble/RoutingRunnerPlugin.h include/marble/RoutingWidget.h include/marble/ScreenGraphicsItem.h include/marble/SearchRunner.h include/marble/SearchRunnerManager.h include/marble/SearchRunnerPlugin.h include/marble/Serializable.h include/marble/SoundCueEditWidget.h include/marble/SunLocator.h include/marble/TileCoordsPyramid.h include/marble/TileCreator.h include/marble/TileCreatorDialog.h include/marble/TileId.h include/marble/TileLevelRangeWidget.h %%WEBENGINE%%include/marble/TinyWebBrowser.h include/marble/TourControlEditWidget.h include/marble/TourItemDelegate.h include/marble/TourPlayback.h include/marble/TourWidget.h include/marble/ViewportParams.h include/marble/WaitEditWidget.h include/marble/WidgetGraphicsItem.h include/marble/geodata_export.h include/marble/marble_declarative_export.h include/marble/marble_export.h include/marble/marble_version.h lib/cmake/Astro/AstroConfig.cmake lib/cmake/Astro/AstroConfigVersion.cmake lib/cmake/Astro/AstroTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Astro/AstroTargets.cmake lib/cmake/Marble/MarbleConfig.cmake lib/cmake/Marble/MarbleConfigVersion.cmake lib/cmake/Marble/MarbleTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Marble/MarbleTargets.cmake lib/libastro.so lib/libastro.so.1 lib/libastro.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarbledeclarative.so lib/libmarblewidget-qt5.so lib/libmarblewidget-qt5.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmarblewidget-qt5.so.28 lib/marble/plugins/AnnotatePlugin.so lib/marble/plugins/AprsPlugin.so lib/marble/plugins/AtmospherePlugin.so lib/marble/plugins/CachePlugin.so lib/marble/plugins/CompassFloatItem.so lib/marble/plugins/CrosshairsPlugin.so lib/marble/plugins/CycleStreetsPlugin.so lib/marble/plugins/EarthquakePlugin.so lib/marble/plugins/EclipsesPlugin.so lib/marble/plugins/ElevationProfileFloatItem.so lib/marble/plugins/ElevationProfileMarker.so lib/marble/plugins/FlightGearPositionProviderPlugin.so lib/marble/plugins/FoursquarePlugin.so lib/marble/plugins/GeoUriPlugin.so lib/marble/plugins/GosmoreReverseGeocodingPlugin.so lib/marble/plugins/GosmoreRoutingPlugin.so lib/marble/plugins/GpsInfo.so lib/marble/plugins/GpsbabelPlugin.so %%GPS%%lib/marble/plugins/GpsdPositionProviderPlugin.so lib/marble/plugins/GpxPlugin.so lib/marble/plugins/GraticulePlugin.so lib/marble/plugins/HostipPlugin.so lib/marble/plugins/JsonPlugin.so lib/marble/plugins/KmlPlugin.so lib/marble/plugins/LatLonPlugin.so lib/marble/plugins/License.so lib/marble/plugins/LocalDatabasePlugin.so lib/marble/plugins/LocalOsmSearchPlugin.so lib/marble/plugins/LogPlugin.so lib/marble/plugins/MapQuestPlugin.so lib/marble/plugins/MapScaleFloatItem.so lib/marble/plugins/MeasureTool.so lib/marble/plugins/MonavPlugin.so lib/marble/plugins/NavigationFloatItem.so lib/marble/plugins/NominatimReverseGeocodingPlugin.so lib/marble/plugins/NominatimSearchPlugin.so lib/marble/plugins/NotesPlugin.so lib/marble/plugins/OSRMPlugin.so %%WEBENGINE%%lib/marble/plugins/OpenDesktopPlugin.so lib/marble/plugins/OpenLocationCodeSearchPlugin.so lib/marble/plugins/OpenRouteServicePlugin.so lib/marble/plugins/OsmPlugin.so lib/marble/plugins/OverviewMap.so %%WEBENGINE%%lib/marble/plugins/Photo.so lib/marble/plugins/Pn2Plugin.so lib/marble/plugins/PntPlugin.so lib/marble/plugins/PositionMarker.so lib/marble/plugins/PostalCode.so lib/marble/plugins/ProgressFloatItem.so %%GPS%%lib/marble/plugins/QtPositioningPositionProviderPlugin.so lib/marble/plugins/RoutingPlugin.so lib/marble/plugins/RoutinoPlugin.so lib/marble/plugins/SatellitesPlugin.so lib/marble/plugins/Speedometer.so lib/marble/plugins/StarsPlugin.so lib/marble/plugins/SunPlugin.so %%WEBENGINE%%lib/marble/plugins/Weather.so %%WEBENGINE%%lib/marble/plugins/Wikipedia.so lib/marble/plugins/YoursPlugin.so lib/plugins/designer/LatLonEditPlugin.so lib/plugins/designer/MarbleNavigatorPlugin.so lib/plugins/designer/MarbleWidgetPlugin.so %%QT_MKSPECDIR%%/modules/qt_Marble.pri %%QT_PLUGINDIR%%/kf5/krunner/plasma_runner_marble.so %%QT_PLUGINDIR%%/libmarble_part.so %%QT_PLUGINDIR%%/marblethumbnail.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/libmarblequick.so %%QT_QMLDIR%%/org/kde/marble/private/plasma/qmldir share/applications/marble_geo.desktop share/applications/marble_geojson.desktop share/applications/marble_gpx.desktop share/applications/marble_kml.desktop share/applications/marble_kmz.desktop share/applications/marble_worldwind.desktop share/applications/org.kde.marble-qt.desktop share/applications/org.kde.marble.desktop share/config.kcfg/marble.kcfg share/icons/hicolor/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/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ar/LC_MESSAGES/plasma_runner_marble.mo share/locale/ar/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/be/LC_MESSAGES/marble.mo share/locale/be/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/marble.mo share/locale/bg/LC_MESSAGES/marble_qt.qm share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/bg/LC_MESSAGES/plasma_runner_marble.mo share/locale/bg/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/bs/LC_MESSAGES/marble.mo share/locale/bs/LC_MESSAGES/marble_qt.qm share/locale/bs/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/marble.mo share/locale/ca/LC_MESSAGES/marble_qt.qm share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ca@valencia/LC_MESSAGES/marble.mo share/locale/ca@valencia/LC_MESSAGES/marble_qt.qm share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_marble.mo share/locale/ca@valencia/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/cs/LC_MESSAGES/marble.mo share/locale/cs/LC_MESSAGES/marble_qt.qm share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/cs/LC_MESSAGES/plasma_runner_marble.mo share/locale/cs/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/da/LC_MESSAGES/marble.mo share/locale/da/LC_MESSAGES/marble_qt.qm share/locale/da/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/da/LC_MESSAGES/plasma_runner_marble.mo share/locale/da/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/de/LC_MESSAGES/marble.mo share/locale/de/LC_MESSAGES/marble_qt.qm share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/de/LC_MESSAGES/plasma_runner_marble.mo share/locale/de/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/el/LC_MESSAGES/marble.mo share/locale/el/LC_MESSAGES/marble_qt.qm share/locale/el/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/el/LC_MESSAGES/plasma_runner_marble.mo share/locale/el/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo +share/locale/en/LC_MESSAGES/marble_qt.qm 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/gu/LC_MESSAGES/marble.mo +share/locale/gu/LC_MESSAGES/marble_qt.qm 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/hne/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble.mo share/locale/hr/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/marble.mo share/locale/hu/LC_MESSAGES/marble_qt.qm share/locale/hu/LC_MESSAGES/plasma_runner_marble.mo share/locale/id/LC_MESSAGES/marble.mo share/locale/id/LC_MESSAGES/marble_qt.qm share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/id/LC_MESSAGES/plasma_runner_marble.mo share/locale/id/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/is/LC_MESSAGES/marble.mo share/locale/is/LC_MESSAGES/marble_qt.qm +share/locale/is/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo +share/locale/is/LC_MESSAGES/plasma_runner_marble.mo +share/locale/is/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo 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/ka/LC_MESSAGES/marble.mo +share/locale/ka/LC_MESSAGES/marble_qt.qm +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo +share/locale/ka/LC_MESSAGES/plasma_runner_marble.mo +share/locale/ka/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/kk/LC_MESSAGES/marble.mo share/locale/kk/LC_MESSAGES/marble_qt.qm share/locale/kk/LC_MESSAGES/plasma_runner_marble.mo share/locale/km/LC_MESSAGES/marble.mo share/locale/km/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/marble.mo share/locale/ko/LC_MESSAGES/marble_qt.qm share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ko/LC_MESSAGES/plasma_runner_marble.mo share/locale/ko/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lt/LC_MESSAGES/marble.mo share/locale/lt/LC_MESSAGES/marble_qt.qm share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/lt/LC_MESSAGES/plasma_runner_marble.mo share/locale/lt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/lv/LC_MESSAGES/marble.mo share/locale/lv/LC_MESSAGES/marble_qt.qm share/locale/lv/LC_MESSAGES/plasma_runner_marble.mo +share/locale/mai/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble.mo share/locale/ml/LC_MESSAGES/marble_qt.qm share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ml/LC_MESSAGES/plasma_runner_marble.mo share/locale/ml/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/mr/LC_MESSAGES/marble.mo share/locale/mr/LC_MESSAGES/marble_qt.qm share/locale/mr/LC_MESSAGES/plasma_runner_marble.mo share/locale/nb/LC_MESSAGES/marble.mo share/locale/nb/LC_MESSAGES/marble_qt.qm share/locale/nb/LC_MESSAGES/plasma_runner_marble.mo share/locale/nds/LC_MESSAGES/marble.mo share/locale/nds/LC_MESSAGES/marble_qt.qm share/locale/nds/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/marble.mo share/locale/nl/LC_MESSAGES/marble_qt.qm share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nl/LC_MESSAGES/plasma_runner_marble.mo share/locale/nl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/nn/LC_MESSAGES/marble.mo share/locale/nn/LC_MESSAGES/marble_qt.qm share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/nn/LC_MESSAGES/plasma_runner_marble.mo share/locale/nn/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo +share/locale/oc/LC_MESSAGES/marble.mo +share/locale/oc/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/marble.mo share/locale/pa/LC_MESSAGES/marble_qt.qm share/locale/pa/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/marble.mo share/locale/pl/LC_MESSAGES/marble_qt.qm share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pl/LC_MESSAGES/plasma_runner_marble.mo share/locale/pl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt/LC_MESSAGES/marble.mo share/locale/pt/LC_MESSAGES/marble_qt.qm share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/pt_BR/LC_MESSAGES/marble.mo share/locale/pt_BR/LC_MESSAGES/marble_qt.qm share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_marble.mo share/locale/pt_BR/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/ro/LC_MESSAGES/marble.mo share/locale/ro/LC_MESSAGES/marble_qt.qm share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/marble.mo share/locale/ru/LC_MESSAGES/marble_qt.qm share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/ru/LC_MESSAGES/plasma_runner_marble.mo share/locale/ru/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/se/LC_MESSAGES/marble.mo share/locale/se/LC_MESSAGES/marble_qt.qm +share/locale/si/LC_MESSAGES/marble.mo +share/locale/si/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/marble.mo share/locale/sk/LC_MESSAGES/marble_qt.qm share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sk/LC_MESSAGES/plasma_runner_marble.mo share/locale/sk/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sl/LC_MESSAGES/marble.mo share/locale/sl/LC_MESSAGES/marble_qt.qm share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sl/LC_MESSAGES/plasma_runner_marble.mo share/locale/sl/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo share/locale/sv/LC_MESSAGES/marble.mo share/locale/sv/LC_MESSAGES/marble_qt.qm share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.plasma.worldclock.mo share/locale/sv/LC_MESSAGES/plasma_runner_marble.mo share/locale/sv/LC_MESSAGES/plasma_wallpaper_org.kde.plasma.worldmap.mo +share/locale/th/LC_MESSAGES/marble.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.worldclock.appdata.xml share/metainfo/org.kde.plasma.worldmap.appdata.xml share/mime/packages/geo.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/config.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/config/main.xml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configMapDisplay.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/configTimeZones.qml share/plasma/plasmoids/org.kde.plasma.worldclock/contents/ui/main.qml share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.desktop share/plasma/plasmoids/org.kde.plasma.worldclock/metadata.json share/plasma/wallpapers/org.kde.plasma.worldmap/contents/config/main.xml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/config.qml share/plasma/wallpapers/org.kde.plasma.worldmap/contents/ui/main.qml share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.desktop share/plasma/wallpapers/org.kde.plasma.worldmap/metadata.json diff --git a/audio/audiocd-kio/distinfo b/audio/audiocd-kio/distinfo index 36900ca33c7e..bc022d3e92a3 100644 --- a/audio/audiocd-kio/distinfo +++ b/audio/audiocd-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539491 -SHA256 (KDE/release-service/22.08.3/audiocd-kio-22.08.3.tar.xz) = 568928dafe508057484e1b86de4676793173c591a4e0024d26afa207dee99f4b -SIZE (KDE/release-service/22.08.3/audiocd-kio-22.08.3.tar.xz) = 527308 +TIMESTAMP = 1670513100 +SHA256 (KDE/release-service/22.12.0/audiocd-kio-22.12.0.tar.xz) = b2275ff04f0f086395ee23d3f295b78d0ab281f3d3039b5cd72dfd30220865a9 +SIZE (KDE/release-service/22.12.0/audiocd-kio-22.12.0.tar.xz) = 560608 diff --git a/audio/audiocd-kio/pkg-plist b/audio/audiocd-kio/pkg-plist index 726c908caf98..b80703dd132c 100644 --- a/audio/audiocd-kio/pkg-plist +++ b/audio/audiocd-kio/pkg-plist @@ -1,330 +1,396 @@ include/audiocdencoder.h include/audiocdplugins_export.h lib/libaudiocdplugins.so lib/libaudiocdplugins.so.5 lib/libaudiocdplugins.so.5.0.0 %%QT_PLUGINDIR%%/kcm_audiocd.so %%QT_PLUGINDIR%%/kf5/kio/audiocd.so %%QT_PLUGINDIR%%/libaudiocd_encoder_flac.so %%QT_PLUGINDIR%%/libaudiocd_encoder_lame.so %%QT_PLUGINDIR%%/libaudiocd_encoder_opus.so %%QT_PLUGINDIR%%/libaudiocd_encoder_wav.so share/config.kcfg/audiocd_flac_encoder.kcfg share/config.kcfg/audiocd_lame_encoder.kcfg share/config.kcfg/audiocd_opus_encoder.kcfg share/konqsidebartng/virtual_folders/services/audiocd.desktop share/kservices5/audiocd.desktop +share/locale/af/LC_MESSAGES/kcmaudiocd.mo +share/locale/af/LC_MESSAGES/kio_audiocd.mo +share/locale/ar/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ar/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ar/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ar/LC_MESSAGES/kcmaudiocd.mo share/locale/ar/LC_MESSAGES/kio_audiocd.mo -share/locale/ast/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/az/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/az/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/az/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/az/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/az/LC_MESSAGES/kcmaudiocd.mo share/locale/az/LC_MESSAGES/kio_audiocd.mo share/locale/be/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/be/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/be/LC_MESSAGES/kcmaudiocd.mo share/locale/be/LC_MESSAGES/kio_audiocd.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/bg/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/bg/LC_MESSAGES/kcmaudiocd.mo share/locale/bg/LC_MESSAGES/kio_audiocd.mo +share/locale/bn/LC_MESSAGES/kio_audiocd.mo +share/locale/br/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/br/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/br/LC_MESSAGES/kcmaudiocd.mo +share/locale/br/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/csb/LC_MESSAGES/kio_audiocd.mo +share/locale/cy/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/cy/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/cy/LC_MESSAGES/kcmaudiocd.mo +share/locale/cy/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/hne/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/hne/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/hne/LC_MESSAGES/kcmaudiocd.mo +share/locale/hne/LC_MESSAGES/kio_audiocd.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hr/LC_MESSAGES/kcmaudiocd.mo share/locale/hr/LC_MESSAGES/kio_audiocd.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/hu/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/hu/LC_MESSAGES/kcmaudiocd.mo share/locale/hu/LC_MESSAGES/kio_audiocd.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ia/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ia/LC_MESSAGES/kcmaudiocd.mo share/locale/ia/LC_MESSAGES/kio_audiocd.mo share/locale/id/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/id/LC_MESSAGES/kio_audiocd.mo +share/locale/is/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/is/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/is/LC_MESSAGES/audiocd_encoder_opus.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/ka/LC_MESSAGES/audiocd_encoder_flac.mo +share/locale/ka/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ka/LC_MESSAGES/audiocd_encoder_opus.mo +share/locale/ka/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/ka/LC_MESSAGES/kcmaudiocd.mo +share/locale/ka/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/mk/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/mk/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/mk/LC_MESSAGES/kcmaudiocd.mo +share/locale/mk/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/ms/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ms/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/ms/LC_MESSAGES/kcmaudiocd.mo +share/locale/ms/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/ne/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/ne/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/ne/LC_MESSAGES/kcmaudiocd.mo +share/locale/ne/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/oc/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/oc/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/oc/LC_MESSAGES/kcmaudiocd.mo +share/locale/oc/LC_MESSAGES/kio_audiocd.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pa/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pa/LC_MESSAGES/kcmaudiocd.mo share/locale/pa/LC_MESSAGES/kio_audiocd.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pl/LC_MESSAGES/kcmaudiocd.mo share/locale/pl/LC_MESSAGES/kio_audiocd.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt/LC_MESSAGES/kcmaudiocd.mo share/locale/pt/LC_MESSAGES/kio_audiocd.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/pt_BR/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/pt_BR/LC_MESSAGES/kcmaudiocd.mo share/locale/pt_BR/LC_MESSAGES/kio_audiocd.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ro/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ro/LC_MESSAGES/kcmaudiocd.mo share/locale/ro/LC_MESSAGES/kio_audiocd.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/ru/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/ru/LC_MESSAGES/kcmaudiocd.mo share/locale/ru/LC_MESSAGES/kio_audiocd.mo share/locale/se/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/se/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/se/LC_MESSAGES/kcmaudiocd.mo share/locale/se/LC_MESSAGES/kio_audiocd.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sk/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sk/LC_MESSAGES/kcmaudiocd.mo share/locale/sk/LC_MESSAGES/kio_audiocd.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/sl/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sl/LC_MESSAGES/kcmaudiocd.mo share/locale/sl/LC_MESSAGES/kio_audiocd.mo share/locale/sq/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sq/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sq/LC_MESSAGES/kcmaudiocd.mo share/locale/sq/LC_MESSAGES/kio_audiocd.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/sr/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/sr/LC_MESSAGES/kcmaudiocd.mo share/locale/sr/LC_MESSAGES/kio_audiocd.mo +share/locale/sr@ijekavian/LC_MESSAGES/audiocd_encoder_flac.mo +share/locale/sr@ijekavian/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sr@ijekavian/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmaudiocd.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio_audiocd.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_flac.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmaudiocd.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_audiocd.mo +share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_flac.mo +share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/sr@latin/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/sr@latin/LC_MESSAGES/kcmaudiocd.mo +share/locale/sr@latin/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/th/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/th/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/th/LC_MESSAGES/kcmaudiocd.mo +share/locale/th/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_opus.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/xh/LC_MESSAGES/kcmaudiocd.mo +share/locale/xh/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_HK/LC_MESSAGES/audiocd_encoder_lame.mo +share/locale/zh_HK/LC_MESSAGES/audiocd_encoder_vorbis.mo +share/locale/zh_HK/LC_MESSAGES/kcmaudiocd.mo +share/locale/zh_HK/LC_MESSAGES/kio_audiocd.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_flac.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_lame.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_opus.mo share/locale/zh_TW/LC_MESSAGES/audiocd_encoder_vorbis.mo share/locale/zh_TW/LC_MESSAGES/kcmaudiocd.mo share/locale/zh_TW/LC_MESSAGES/kio_audiocd.mo share/metainfo/org.kde.kio_audiocd.metainfo.xml share/qlogging-categories5/kio_audiocd.categories share/qlogging-categories5/kio_audiocd.renamecategories share/solid/actions/solid_audiocd.desktop diff --git a/audio/elisa/distinfo b/audio/elisa/distinfo index 83d8ae38e3d5..4b2c04aa73ee 100644 --- a/audio/elisa/distinfo +++ b/audio/elisa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539487 -SHA256 (KDE/release-service/22.08.3/elisa-22.08.3.tar.xz) = 82ceddc3d4afd076271abe356f51291301069f420e9a28b34200f388674eab1d -SIZE (KDE/release-service/22.08.3/elisa-22.08.3.tar.xz) = 1768380 +TIMESTAMP = 1670513093 +SHA256 (KDE/release-service/22.12.0/elisa-22.12.0.tar.xz) = 481533d2c28fcdc081cd41e748ef5bf2d8eec7b1f6bf58c175a70cb8fa6700c5 +SIZE (KDE/release-service/22.12.0/elisa-22.12.0.tar.xz) = 1797932 diff --git a/audio/elisa/pkg-plist b/audio/elisa/pkg-plist index f5ab719b8614..28e5744a638d 100644 --- a/audio/elisa/pkg-plist +++ b/audio/elisa/pkg-plist @@ -1,59 +1,59 @@ 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/plugins.qmltypes %%QT_QMLDIR%%/org/kde/elisa/qmldir share/applications/org.kde.elisa.desktop share/dbus-1/services/org.kde.elisa.service share/icons/hicolor/128x128/apps/elisa.png share/icons/hicolor/16x16/apps/elisa.png share/icons/hicolor/22x22/apps/elisa.png share/icons/hicolor/32x32/apps/elisa.png share/icons/hicolor/48x48/apps/elisa.png share/icons/hicolor/64x64/apps/elisa.png share/icons/hicolor/scalable/apps/elisa.svg share/locale/ar/LC_MESSAGES/elisa.mo -share/locale/ast/LC_MESSAGES/elisa.mo share/locale/az/LC_MESSAGES/elisa.mo share/locale/bg/LC_MESSAGES/elisa.mo share/locale/bs/LC_MESSAGES/elisa.mo share/locale/ca/LC_MESSAGES/elisa.mo share/locale/ca@valencia/LC_MESSAGES/elisa.mo share/locale/cs/LC_MESSAGES/elisa.mo share/locale/da/LC_MESSAGES/elisa.mo share/locale/de/LC_MESSAGES/elisa.mo share/locale/el/LC_MESSAGES/elisa.mo share/locale/en_GB/LC_MESSAGES/elisa.mo share/locale/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/ka/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/ro/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/ta/LC_MESSAGES/elisa.mo share/locale/tr/LC_MESSAGES/elisa.mo share/locale/uk/LC_MESSAGES/elisa.mo share/locale/zh_CN/LC_MESSAGES/elisa.mo share/locale/zh_TW/LC_MESSAGES/elisa.mo share/metainfo/org.kde.elisa.appdata.xml share/qlogging-categories5/elisa.categories diff --git a/audio/juk/distinfo b/audio/juk/distinfo index 1cb06569d8cb..e0a4bbc25ee7 100644 --- a/audio/juk/distinfo +++ b/audio/juk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539493 -SHA256 (KDE/release-service/22.08.3/juk-22.08.3.tar.xz) = dc012803a57edaffdd4f8a8ec5d96796d4885b9fbc52d04bc59a0261fed02613 -SIZE (KDE/release-service/22.08.3/juk-22.08.3.tar.xz) = 2016196 +TIMESTAMP = 1670513103 +SHA256 (KDE/release-service/22.12.0/juk-22.12.0.tar.xz) = 2f33473644a5d012970d34fae37321e78700048623385b2db45123769926dc01 +SIZE (KDE/release-service/22.12.0/juk-22.12.0.tar.xz) = 2075268 diff --git a/audio/juk/pkg-plist b/audio/juk/pkg-plist index 66dec2fa28a0..a70a058217ad 100644 --- a/audio/juk/pkg-plist +++ b/audio/juk/pkg-plist @@ -1,75 +1,90 @@ 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 -share/icons/hicolor/128x128/apps/juk.png %%DATADIR%%/pics/playing.png %%DATADIR%%/pics/theme.svg share/kio/servicemenus/jukservicemenu.desktop share/knotifications5/juk.notifyrc 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/bn/LC_MESSAGES/juk.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/juk.mo share/locale/mr/LC_MESSAGES/juk.mo +share/locale/ms/LC_MESSAGES/juk.mo share/locale/nb/LC_MESSAGES/juk.mo share/locale/nds/LC_MESSAGES/juk.mo +share/locale/ne/LC_MESSAGES/juk.mo share/locale/nl/LC_MESSAGES/juk.mo share/locale/nn/LC_MESSAGES/juk.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/juk.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/juk.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/juk.mo +share/locale/uz@cyrillic/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 5e6ffc0c1126..1a2b72abf82a 100644 --- a/audio/kmix/distinfo +++ b/audio/kmix/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539490 -SHA256 (KDE/release-service/22.08.3/kmix-22.08.3.tar.xz) = 2aaf379dcb0bdd3a6b53364cf643f36581a66cd4ef656643846dfe5dfabf206b -SIZE (KDE/release-service/22.08.3/kmix-22.08.3.tar.xz) = 1164040 +TIMESTAMP = 1670513099 +SHA256 (KDE/release-service/22.12.0/kmix-22.12.0.tar.xz) = 0cfbc12f7f505b1754b19e3c864413b0e6becd0dd3a187dfaabac85617153604 +SIZE (KDE/release-service/22.12.0/kmix-22.12.0.tar.xz) = 1193396 diff --git a/audio/kmix/pkg-plist b/audio/kmix/pkg-plist index 8b10e448b66f..30830a55fcdf 100644 --- a/audio/kmix/pkg-plist +++ b/audio/kmix/pkg-plist @@ -1,105 +1,122 @@ 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%% +lib/libkmixcore.so.5 %%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/icons/hicolor/128x128/actions/kmix.png %%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%%/pics/show-mixer.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/knotifications5/kmix.notifyrc share/kservices5/kmixctrl_restore.desktop share/kxmlgui5/kmix/kmixui.rc +share/locale/af/LC_MESSAGES/kmix.mo share/locale/ar/LC_MESSAGES/kmix.mo share/locale/be/LC_MESSAGES/kmix.mo share/locale/bg/LC_MESSAGES/kmix.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/kmix.mo share/locale/mr/LC_MESSAGES/kmix.mo +share/locale/ms/LC_MESSAGES/kmix.mo share/locale/nb/LC_MESSAGES/kmix.mo share/locale/nds/LC_MESSAGES/kmix.mo +share/locale/ne/LC_MESSAGES/kmix.mo share/locale/nl/LC_MESSAGES/kmix.mo share/locale/nn/LC_MESSAGES/kmix.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kmix.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmix.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kmix.mo +share/locale/uz@cyrillic/LC_MESSAGES/kmix.mo +share/locale/xh/LC_MESSAGES/kmix.mo share/locale/zh_CN/LC_MESSAGES/kmix.mo +share/locale/zh_HK/LC_MESSAGES/kmix.mo share/locale/zh_TW/LC_MESSAGES/kmix.mo share/metainfo/org.kde.kmix.appdata.xml share/qlogging-categories5/kmix.categories diff --git a/audio/kwave/distinfo b/audio/kwave/distinfo index 614080046502..a1efa871b37d 100644 --- a/audio/kwave/distinfo +++ b/audio/kwave/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539485 -SHA256 (KDE/release-service/22.08.3/kwave-22.08.3.tar.xz) = aba6ae7be857afbb5383d60c407acba90a2aa4e352272747ebd98af6f3465bb8 -SIZE (KDE/release-service/22.08.3/kwave-22.08.3.tar.xz) = 6957180 +TIMESTAMP = 1670513092 +SHA256 (KDE/release-service/22.12.0/kwave-22.12.0.tar.xz) = 8f11be842902bd02a31afa01158a2d861ee59928a969a92a077170d5fd8364f0 +SIZE (KDE/release-service/22.12.0/kwave-22.12.0.tar.xz) = 6964772 diff --git a/audio/kwave/pkg-plist b/audio/kwave/pkg-plist index aa0718d88b82..8e0e0714d100 100644 --- a/audio/kwave/pkg-plist +++ b/audio/kwave/pkg-plist @@ -1,100 +1,100 @@ 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/ka/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/sl/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 a3f922189af8..95d53f6d9898 100644 --- a/audio/libkcddb/distinfo +++ b/audio/libkcddb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539488 -SHA256 (KDE/release-service/22.08.3/libkcddb-22.08.3.tar.xz) = 6100d19aa4a8e8349a779d00ecb0ddbc680a1da483aef9bb978c90d161c47405 -SIZE (KDE/release-service/22.08.3/libkcddb-22.08.3.tar.xz) = 435708 +TIMESTAMP = 1670513095 +SHA256 (KDE/release-service/22.12.0/libkcddb-22.12.0.tar.xz) = 5150623351c9be4f4a0c44a3e33475650627accd5d9d3d4cfcc74e115fe0d4d4 +SIZE (KDE/release-service/22.12.0/libkcddb-22.12.0.tar.xz) = 458020 diff --git a/audio/libkcddb/pkg-plist b/audio/libkcddb/pkg-plist index 5dee11ab4a16..dd6661906a2e 100644 --- a/audio/libkcddb/pkg-plist +++ b/audio/libkcddb/pkg-plist @@ -1,154 +1,179 @@ include/KCddb5/KCDDB/CDInfo include/KCddb5/KCDDB/Categories include/KCddb5/KCDDB/Client include/KCddb5/KCDDB/Config include/KCddb5/KCDDB/Genres include/KCddb5/KCDDB/KCDDB include/KCddb5/kcddb/categories.h include/KCddb5/kcddb/cdinfo.h include/KCddb5/kcddb/client.h include/KCddb5/kcddb/config.h include/KCddb5/kcddb/configbase.h include/KCddb5/kcddb/genres.h include/KCddb5/kcddb/kcddb.h include/KCddb5/kcddb/kcddb_export.h 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/genres.h include/KF5/KCddb/kcddb.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.1.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/br/LC_MESSAGES/kcmcddb.mo +share/locale/br/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/cy/LC_MESSAGES/kcmcddb.mo +share/locale/cy/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/hne/LC_MESSAGES/kcmcddb.mo +share/locale/hne/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/ka/LC_MESSAGES/kcmcddb.mo +share/locale/ka/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/mk/LC_MESSAGES/kcmcddb.mo +share/locale/mk/LC_MESSAGES/libkcddb.mo share/locale/mr/LC_MESSAGES/kcmcddb.mo share/locale/mr/LC_MESSAGES/libkcddb.mo +share/locale/ms/LC_MESSAGES/kcmcddb.mo +share/locale/ms/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/ne/LC_MESSAGES/kcmcddb.mo +share/locale/ne/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/oc/LC_MESSAGES/kcmcddb.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kcmcddb.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkcddb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmcddb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcddb.mo +share/locale/sr@latin/LC_MESSAGES/kcmcddb.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kcmcddb.mo +share/locale/th/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/xh/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/kcmcddb.mo share/locale/zh_CN/LC_MESSAGES/libkcddb.mo +share/locale/zh_HK/LC_MESSAGES/kcmcddb.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 d8239072b8ac..7f2ee2d9995e 100644 --- a/audio/libkcompactdisc/distinfo +++ b/audio/libkcompactdisc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539489 -SHA256 (KDE/release-service/22.08.3/libkcompactdisc-22.08.3.tar.xz) = 6611c8f2cc2cd642f03b5b84457ecec76fd26ecd151d14698dbbceef7ed8a439 -SIZE (KDE/release-service/22.08.3/libkcompactdisc-22.08.3.tar.xz) = 97412 +TIMESTAMP = 1670513096 +SHA256 (KDE/release-service/22.12.0/libkcompactdisc-22.12.0.tar.xz) = 5cabdde7e49a94a4d24a5a4b6817f1c4a7d29b5e5c08cbcc1ebfbbe908cf4cd6 +SIZE (KDE/release-service/22.12.0/libkcompactdisc-22.12.0.tar.xz) = 98704 diff --git a/audio/libkcompactdisc/pkg-plist b/audio/libkcompactdisc/pkg-plist index ea3558b455d7..76fa481831c9 100644 --- a/audio/libkcompactdisc/pkg-plist +++ b/audio/libkcompactdisc/pkg-plist @@ -1,66 +1,75 @@ 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 share/locale/ar/LC_MESSAGES/libkcompactdisc.mo share/locale/be/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/csb/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/hne/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/is/LC_MESSAGES/libkcompactdisc.mo share/locale/it/LC_MESSAGES/libkcompactdisc.mo share/locale/ja/LC_MESSAGES/libkcompactdisc.mo +share/locale/ka/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/mk/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/oc/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/sr@ijekavian/LC_MESSAGES/libkcompactdisc.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcompactdisc.mo +share/locale/sr@latin/LC_MESSAGES/libkcompactdisc.mo share/locale/sv/LC_MESSAGES/libkcompactdisc.mo +share/locale/th/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 b6dc9108e415..576ed8f393c1 100644 --- a/databases/akonadi/distinfo +++ b/databases/akonadi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539495 -SHA256 (KDE/release-service/22.08.3/akonadi-22.08.3.tar.xz) = a2ba2284f440e7c2dc150b763d84029bd92a96176ad0214dd30bda1d81309974 -SIZE (KDE/release-service/22.08.3/akonadi-22.08.3.tar.xz) = 1631348 +TIMESTAMP = 1670513107 +SHA256 (KDE/release-service/22.12.0/akonadi-22.12.0.tar.xz) = 2ae1eb7d4438b47487cceaba88aacd246b1b6db87f3787615ef23d0fccd03243 +SIZE (KDE/release-service/22.12.0/akonadi-22.12.0.tar.xz) = 1657352 diff --git a/databases/akonadi/pkg-plist b/databases/akonadi/pkg-plist index 6e703b822f28..d982f768c386 100644 --- a/databases/akonadi/pkg-plist +++ b/databases/akonadi/pkg-plist @@ -1,482 +1,497 @@ bin/akonadi2xml bin/akonadi_agent_launcher bin/akonadi_agent_server bin/akonadi_control bin/akonadi_knut_resource bin/akonadi_rds bin/akonadictl bin/akonadiselftest bin/akonadiserver bin/akonaditest bin/asapcat etc/apparmor.d/mariadbd_akonadi etc/apparmor.d/mysqld_akonadi etc/apparmor.d/postgresql_akonadi etc/apparmor.d/usr.bin.akonadiserver etc/xdg/akonadi/mysql-global-mobile.conf etc/xdg/akonadi/mysql-global.conf include/KF5/Akonadi/akonadi/private/akonadiprivate_export.h include/KF5/Akonadi/akonadi/private/capabilities_p.h include/KF5/Akonadi/akonadi/private/compressionstream_p.h include/KF5/Akonadi/akonadi/private/dbus_p.h include/KF5/Akonadi/akonadi/private/externalpartstorage_p.h include/KF5/Akonadi/akonadi/private/imapparser_p.h include/KF5/Akonadi/akonadi/private/imapset_p.h include/KF5/Akonadi/akonadi/private/instance_p.h include/KF5/Akonadi/akonadi/private/protocol_exception_p.h include/KF5/Akonadi/akonadi/private/protocol_gen.h include/KF5/Akonadi/akonadi/private/protocol_p.h include/KF5/Akonadi/akonadi/private/scope_p.h include/KF5/Akonadi/akonadi/private/standarddirs_p.h include/KF5/Akonadi/akonadi/private/tristate_p.h include/KF5/AkonadiAgentBase/Akonadi/AccountsIntegration include/KF5/AkonadiAgentBase/Akonadi/AgentBase include/KF5/AkonadiAgentBase/Akonadi/AgentSearchInterface include/KF5/AkonadiAgentBase/Akonadi/PreprocessorBase include/KF5/AkonadiAgentBase/Akonadi/ResourceBase include/KF5/AkonadiAgentBase/Akonadi/ResourceSettings include/KF5/AkonadiAgentBase/Akonadi/TransportResourceBase include/KF5/AkonadiAgentBase/akonadi/accountsintegration.h include/KF5/AkonadiAgentBase/akonadi/agentbase.h include/KF5/AkonadiAgentBase/akonadi/agentsearchinterface.h include/KF5/AkonadiAgentBase/akonadi/akonadiagentbase_export.h include/KF5/AkonadiAgentBase/akonadi/preprocessorbase.h include/KF5/AkonadiAgentBase/akonadi/resourcebase.h include/KF5/AkonadiAgentBase/akonadi/resourcebasesettings.h include/KF5/AkonadiAgentBase/akonadi/resourcesettings.h include/KF5/AkonadiAgentBase/akonadi/transportresourcebase.h include/KF5/AkonadiCore/Akonadi/AbstractDifferencesReporter include/KF5/AkonadiCore/Akonadi/AgentConfigurationBase include/KF5/AkonadiCore/Akonadi/AgentConfigurationFactoryBase include/KF5/AkonadiCore/Akonadi/AgentFilterProxyModel include/KF5/AkonadiCore/Akonadi/AgentInstance include/KF5/AkonadiCore/Akonadi/AgentInstanceCreateJob include/KF5/AkonadiCore/Akonadi/AgentInstanceModel include/KF5/AkonadiCore/Akonadi/AgentManager include/KF5/AkonadiCore/Akonadi/AgentType include/KF5/AkonadiCore/Akonadi/AgentTypeModel include/KF5/AkonadiCore/Akonadi/Attribute include/KF5/AkonadiCore/Akonadi/AttributeFactory include/KF5/AkonadiCore/Akonadi/CachePolicy include/KF5/AkonadiCore/Akonadi/ChangeNotification include/KF5/AkonadiCore/Akonadi/ChangeRecorder include/KF5/AkonadiCore/Akonadi/Collection include/KF5/AkonadiCore/Akonadi/CollectionAttributesSynchronizationJob include/KF5/AkonadiCore/Akonadi/CollectionColorAttribute include/KF5/AkonadiCore/Akonadi/CollectionCopyJob include/KF5/AkonadiCore/Akonadi/CollectionCreateJob include/KF5/AkonadiCore/Akonadi/CollectionDeleteJob include/KF5/AkonadiCore/Akonadi/CollectionFetchJob include/KF5/AkonadiCore/Akonadi/CollectionFetchScope include/KF5/AkonadiCore/Akonadi/CollectionFilterProxyModel include/KF5/AkonadiCore/Akonadi/CollectionIdentificationAttribute include/KF5/AkonadiCore/Akonadi/CollectionModifyJob include/KF5/AkonadiCore/Akonadi/CollectionMoveJob include/KF5/AkonadiCore/Akonadi/CollectionPathResolver include/KF5/AkonadiCore/Akonadi/CollectionQuotaAttribute include/KF5/AkonadiCore/Akonadi/CollectionStatistics include/KF5/AkonadiCore/Akonadi/CollectionStatisticsJob include/KF5/AkonadiCore/Akonadi/CollectionUtils include/KF5/AkonadiCore/Akonadi/Control include/KF5/AkonadiCore/Akonadi/DifferencesAlgorithmInterface include/KF5/AkonadiCore/Akonadi/EntityAnnotationsAttribute include/KF5/AkonadiCore/Akonadi/EntityDeletedAttribute include/KF5/AkonadiCore/Akonadi/EntityDisplayAttribute include/KF5/AkonadiCore/Akonadi/EntityHiddenAttribute include/KF5/AkonadiCore/Akonadi/EntityMimeTypeFilterModel include/KF5/AkonadiCore/Akonadi/EntityOrderProxyModel include/KF5/AkonadiCore/Akonadi/EntityRightsFilterModel include/KF5/AkonadiCore/Akonadi/EntityTreeModel include/KF5/AkonadiCore/Akonadi/ExceptionBase include/KF5/AkonadiCore/Akonadi/FavoriteCollectionAttribute include/KF5/AkonadiCore/Akonadi/FavoriteCollectionsModel include/KF5/AkonadiCore/Akonadi/GidExtractorInterface include/KF5/AkonadiCore/Akonadi/IndexPolicyAttribute include/KF5/AkonadiCore/Akonadi/Item include/KF5/AkonadiCore/Akonadi/ItemCopyJob include/KF5/AkonadiCore/Akonadi/ItemCreateJob include/KF5/AkonadiCore/Akonadi/ItemDeleteJob include/KF5/AkonadiCore/Akonadi/ItemFetchJob include/KF5/AkonadiCore/Akonadi/ItemFetchScope include/KF5/AkonadiCore/Akonadi/ItemModifyJob include/KF5/AkonadiCore/Akonadi/ItemMonitor include/KF5/AkonadiCore/Akonadi/ItemMoveJob include/KF5/AkonadiCore/Akonadi/ItemSearchJob include/KF5/AkonadiCore/Akonadi/ItemSerializerPlugin include/KF5/AkonadiCore/Akonadi/ItemSync include/KF5/AkonadiCore/Akonadi/Job include/KF5/AkonadiCore/Akonadi/LinkJob include/KF5/AkonadiCore/Akonadi/MimeTypeChecker include/KF5/AkonadiCore/Akonadi/Monitor include/KF5/AkonadiCore/Akonadi/NotificationSubscriber include/KF5/AkonadiCore/Akonadi/PartFetcher include/KF5/AkonadiCore/Akonadi/PersistentSearchAttribute include/KF5/AkonadiCore/Akonadi/RecursiveCollectionFilterProxyModel include/KF5/AkonadiCore/Akonadi/RecursiveItemFetchJob include/KF5/AkonadiCore/Akonadi/Relation include/KF5/AkonadiCore/Akonadi/RelationCreateJob include/KF5/AkonadiCore/Akonadi/RelationDeleteJob include/KF5/AkonadiCore/Akonadi/RelationFetchJob include/KF5/AkonadiCore/Akonadi/ResourceSynchronizationJob include/KF5/AkonadiCore/Akonadi/SearchCreateJob include/KF5/AkonadiCore/Akonadi/SearchQuery include/KF5/AkonadiCore/Akonadi/SelectionProxyModel include/KF5/AkonadiCore/Akonadi/ServerManager include/KF5/AkonadiCore/Akonadi/Session include/KF5/AkonadiCore/Akonadi/SpecialCollectionAttribute include/KF5/AkonadiCore/Akonadi/SpecialCollections include/KF5/AkonadiCore/Akonadi/SpecialCollectionsDiscoveryJob include/KF5/AkonadiCore/Akonadi/SpecialCollectionsRequestJob include/KF5/AkonadiCore/Akonadi/StatisticsProxyModel include/KF5/AkonadiCore/Akonadi/Supertrait include/KF5/AkonadiCore/Akonadi/Tag include/KF5/AkonadiCore/Akonadi/TagAttribute include/KF5/AkonadiCore/Akonadi/TagCache include/KF5/AkonadiCore/Akonadi/TagCreateJob include/KF5/AkonadiCore/Akonadi/TagDeleteJob include/KF5/AkonadiCore/Akonadi/TagFetchJob include/KF5/AkonadiCore/Akonadi/TagFetchScope include/KF5/AkonadiCore/Akonadi/TagModel include/KF5/AkonadiCore/Akonadi/TagModifyJob include/KF5/AkonadiCore/Akonadi/TransactionJobs include/KF5/AkonadiCore/Akonadi/TransactionSequence include/KF5/AkonadiCore/Akonadi/TrashFilterProxyModel include/KF5/AkonadiCore/Akonadi/TrashJob include/KF5/AkonadiCore/Akonadi/TrashRestoreJob include/KF5/AkonadiCore/Akonadi/TrashSettings include/KF5/AkonadiCore/Akonadi/UnlinkJob include/KF5/AkonadiCore/Akonadi/VectorHelper include/KF5/AkonadiCore/akonadi/abstractdifferencesreporter.h include/KF5/AkonadiCore/akonadi/abstractsearchplugin.h include/KF5/AkonadiCore/akonadi/agentconfigurationbase.h include/KF5/AkonadiCore/akonadi/agentconfigurationfactorybase.h include/KF5/AkonadiCore/akonadi/agentfilterproxymodel.h include/KF5/AkonadiCore/akonadi/agentinstance.h include/KF5/AkonadiCore/akonadi/agentinstancecreatejob.h include/KF5/AkonadiCore/akonadi/agentinstancemodel.h include/KF5/AkonadiCore/akonadi/agentmanager.h include/KF5/AkonadiCore/akonadi/agenttype.h include/KF5/AkonadiCore/akonadi/agenttypemodel.h include/KF5/AkonadiCore/akonadi/akonadicore_export.h include/KF5/AkonadiCore/akonadi/attribute.h include/KF5/AkonadiCore/akonadi/attributefactory.h include/KF5/AkonadiCore/akonadi/cachepolicy.h include/KF5/AkonadiCore/akonadi/changenotification.h include/KF5/AkonadiCore/akonadi/changerecorder.h include/KF5/AkonadiCore/akonadi/collection.h include/KF5/AkonadiCore/akonadi/collectionattributessynchronizationjob.h include/KF5/AkonadiCore/akonadi/collectioncolorattribute.h include/KF5/AkonadiCore/akonadi/collectioncopyjob.h include/KF5/AkonadiCore/akonadi/collectioncreatejob.h include/KF5/AkonadiCore/akonadi/collectiondeletejob.h include/KF5/AkonadiCore/akonadi/collectionfetchjob.h include/KF5/AkonadiCore/akonadi/collectionfetchscope.h include/KF5/AkonadiCore/akonadi/collectionfilterproxymodel.h include/KF5/AkonadiCore/akonadi/collectionidentificationattribute.h include/KF5/AkonadiCore/akonadi/collectionmodifyjob.h include/KF5/AkonadiCore/akonadi/collectionmovejob.h include/KF5/AkonadiCore/akonadi/collectionpathresolver.h include/KF5/AkonadiCore/akonadi/collectionquotaattribute.h include/KF5/AkonadiCore/akonadi/collectionstatistics.h include/KF5/AkonadiCore/akonadi/collectionstatisticsjob.h include/KF5/AkonadiCore/akonadi/collectionutils.h include/KF5/AkonadiCore/akonadi/config-akonadi.h include/KF5/AkonadiCore/akonadi/control.h include/KF5/AkonadiCore/akonadi/differencesalgorithminterface.h include/KF5/AkonadiCore/akonadi/entityannotationsattribute.h include/KF5/AkonadiCore/akonadi/entitydeletedattribute.h include/KF5/AkonadiCore/akonadi/entitydisplayattribute.h include/KF5/AkonadiCore/akonadi/entityhiddenattribute.h include/KF5/AkonadiCore/akonadi/entitymimetypefiltermodel.h include/KF5/AkonadiCore/akonadi/entityorderproxymodel.h include/KF5/AkonadiCore/akonadi/entityrightsfiltermodel.h include/KF5/AkonadiCore/akonadi/entitytreemodel.h include/KF5/AkonadiCore/akonadi/exceptionbase.h include/KF5/AkonadiCore/akonadi/favoritecollectionattribute.h include/KF5/AkonadiCore/akonadi/favoritecollectionsmodel.h include/KF5/AkonadiCore/akonadi/gidextractorinterface.h include/KF5/AkonadiCore/akonadi/indexpolicyattribute.h include/KF5/AkonadiCore/akonadi/item.h include/KF5/AkonadiCore/akonadi/itemcopyjob.h include/KF5/AkonadiCore/akonadi/itemcreatejob.h include/KF5/AkonadiCore/akonadi/itemdeletejob.h include/KF5/AkonadiCore/akonadi/itemfetchjob.h include/KF5/AkonadiCore/akonadi/itemfetchscope.h include/KF5/AkonadiCore/akonadi/itemmodifyjob.h include/KF5/AkonadiCore/akonadi/itemmonitor.h include/KF5/AkonadiCore/akonadi/itemmovejob.h include/KF5/AkonadiCore/akonadi/itempayloadinternals_p.h include/KF5/AkonadiCore/akonadi/itemsearchjob.h include/KF5/AkonadiCore/akonadi/itemserializerplugin.h include/KF5/AkonadiCore/akonadi/itemsync.h include/KF5/AkonadiCore/akonadi/job.h include/KF5/AkonadiCore/akonadi/linkjob.h include/KF5/AkonadiCore/akonadi/mimetypechecker.h include/KF5/AkonadiCore/akonadi/monitor.h include/KF5/AkonadiCore/akonadi/notificationsubscriber.h include/KF5/AkonadiCore/akonadi/partfetcher.h include/KF5/AkonadiCore/akonadi/persistentsearchattribute.h include/KF5/AkonadiCore/akonadi/qtest_akonadi.h include/KF5/AkonadiCore/akonadi/recursivecollectionfilterproxymodel.h include/KF5/AkonadiCore/akonadi/recursiveitemfetchjob.h include/KF5/AkonadiCore/akonadi/relation.h include/KF5/AkonadiCore/akonadi/relationcreatejob.h include/KF5/AkonadiCore/akonadi/relationdeletejob.h include/KF5/AkonadiCore/akonadi/relationfetchjob.h include/KF5/AkonadiCore/akonadi/resourcesynchronizationjob.h include/KF5/AkonadiCore/akonadi/searchcreatejob.h include/KF5/AkonadiCore/akonadi/searchquery.h include/KF5/AkonadiCore/akonadi/selectionproxymodel.h include/KF5/AkonadiCore/akonadi/servermanager.h include/KF5/AkonadiCore/akonadi/session.h include/KF5/AkonadiCore/akonadi/specialcollectionattribute.h include/KF5/AkonadiCore/akonadi/specialcollections.h include/KF5/AkonadiCore/akonadi/specialcollectionsdiscoveryjob.h include/KF5/AkonadiCore/akonadi/specialcollectionsrequestjob.h include/KF5/AkonadiCore/akonadi/statisticsproxymodel.h include/KF5/AkonadiCore/akonadi/supertrait.h include/KF5/AkonadiCore/akonadi/tag.h include/KF5/AkonadiCore/akonadi/tagattribute.h include/KF5/AkonadiCore/akonadi/tagcache.h include/KF5/AkonadiCore/akonadi/tagcreatejob.h include/KF5/AkonadiCore/akonadi/tagdeletejob.h include/KF5/AkonadiCore/akonadi/tagfetchjob.h include/KF5/AkonadiCore/akonadi/tagfetchscope.h include/KF5/AkonadiCore/akonadi/tagmodel.h include/KF5/AkonadiCore/akonadi/tagmodifyjob.h include/KF5/AkonadiCore/akonadi/transactionjobs.h include/KF5/AkonadiCore/akonadi/transactionsequence.h include/KF5/AkonadiCore/akonadi/trashfilterproxymodel.h include/KF5/AkonadiCore/akonadi/trashjob.h include/KF5/AkonadiCore/akonadi/trashrestorejob.h include/KF5/AkonadiCore/akonadi/trashsettings.h include/KF5/AkonadiCore/akonadi/unlinkjob.h include/KF5/AkonadiCore/akonadi/vectorhelper.h include/KF5/AkonadiCore/akonadi_version.h include/KF5/AkonadiWidgets/Akonadi/AgentActionManager include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationDialog include/KF5/AkonadiWidgets/Akonadi/AgentConfigurationWidget include/KF5/AkonadiWidgets/Akonadi/AgentInstanceWidget include/KF5/AkonadiWidgets/Akonadi/AgentTypeDialog include/KF5/AkonadiWidgets/Akonadi/AgentTypeWidget include/KF5/AkonadiWidgets/Akonadi/ClearCacheJob include/KF5/AkonadiWidgets/Akonadi/CollectionComboBox include/KF5/AkonadiWidgets/Akonadi/CollectionDialog include/KF5/AkonadiWidgets/Akonadi/CollectionMaintenancePage include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesDialog include/KF5/AkonadiWidgets/Akonadi/CollectionPropertiesPage include/KF5/AkonadiWidgets/Akonadi/CollectionRequester include/KF5/AkonadiWidgets/Akonadi/CollectionStatisticsDelegate include/KF5/AkonadiWidgets/Akonadi/ControlGui include/KF5/AkonadiWidgets/Akonadi/DbAccess include/KF5/AkonadiWidgets/Akonadi/ETMViewStateSaver include/KF5/AkonadiWidgets/Akonadi/EntityListView include/KF5/AkonadiWidgets/Akonadi/EntityTreeView include/KF5/AkonadiWidgets/Akonadi/ManageAccountWidget include/KF5/AkonadiWidgets/Akonadi/StandardActionManager include/KF5/AkonadiWidgets/Akonadi/SubscriptionDialog include/KF5/AkonadiWidgets/Akonadi/TagEditWidget include/KF5/AkonadiWidgets/Akonadi/TagManagementDialog include/KF5/AkonadiWidgets/Akonadi/TagSelectWidget include/KF5/AkonadiWidgets/Akonadi/TagSelectionComboBox include/KF5/AkonadiWidgets/Akonadi/TagSelectionDialog include/KF5/AkonadiWidgets/Akonadi/TagWidget include/KF5/AkonadiWidgets/akonadi/agentactionmanager.h include/KF5/AkonadiWidgets/akonadi/agentconfigurationdialog.h include/KF5/AkonadiWidgets/akonadi/agentconfigurationwidget.h include/KF5/AkonadiWidgets/akonadi/agentinstancewidget.h include/KF5/AkonadiWidgets/akonadi/agenttypedialog.h include/KF5/AkonadiWidgets/akonadi/agenttypewidget.h include/KF5/AkonadiWidgets/akonadi/akonadiwidgets_export.h include/KF5/AkonadiWidgets/akonadi/clearcachejob.h include/KF5/AkonadiWidgets/akonadi/collectioncombobox.h include/KF5/AkonadiWidgets/akonadi/collectiondialog.h include/KF5/AkonadiWidgets/akonadi/collectionmaintenancepage.h include/KF5/AkonadiWidgets/akonadi/collectionpropertiesdialog.h include/KF5/AkonadiWidgets/akonadi/collectionpropertiespage.h include/KF5/AkonadiWidgets/akonadi/collectionrequester.h include/KF5/AkonadiWidgets/akonadi/collectionstatisticsdelegate.h include/KF5/AkonadiWidgets/akonadi/controlgui.h include/KF5/AkonadiWidgets/akonadi/dbaccess.h include/KF5/AkonadiWidgets/akonadi/entitylistview.h include/KF5/AkonadiWidgets/akonadi/entitytreeview.h include/KF5/AkonadiWidgets/akonadi/etmviewstatesaver.h include/KF5/AkonadiWidgets/akonadi/manageaccountwidget.h include/KF5/AkonadiWidgets/akonadi/standardactionmanager.h include/KF5/AkonadiWidgets/akonadi/subscriptiondialog.h include/KF5/AkonadiWidgets/akonadi/tageditwidget.h include/KF5/AkonadiWidgets/akonadi/tagmanagementdialog.h include/KF5/AkonadiWidgets/akonadi/tagselectioncombobox.h include/KF5/AkonadiWidgets/akonadi/tagselectiondialog.h include/KF5/AkonadiWidgets/akonadi/tagselectwidget.h include/KF5/AkonadiWidgets/akonadi/tagwidget.h include/KF5/AkonadiXml/Akonadi/XmlDocument include/KF5/AkonadiXml/Akonadi/XmlReader include/KF5/AkonadiXml/Akonadi/XmlWriteJob include/KF5/AkonadiXml/Akonadi/XmlWriter include/KF5/AkonadiXml/akonadi/akonadi-xml_export.h include/KF5/AkonadiXml/akonadi/xmldocument.h include/KF5/AkonadiXml/akonadi/xmlreader.h include/KF5/AkonadiXml/akonadi/xmlwritejob.h include/KF5/AkonadiXml/akonadi/xmlwriter.h 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%%/designer/akonadiwidgets.so %%QT_PLUGINDIR%%/pim5/akonadi/akonadi_test_searchplugin.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/bg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bg/LC_MESSAGES/libakonadi5.mo share/locale/bs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/bs/LC_MESSAGES/libakonadi5.mo share/locale/ca/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca/LC_MESSAGES/libakonadi5.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi5.mo share/locale/cs/LC_MESSAGES/akonadi_knut_resource.mo share/locale/cs/LC_MESSAGES/libakonadi5.mo share/locale/da/LC_MESSAGES/akonadi_knut_resource.mo share/locale/da/LC_MESSAGES/libakonadi5.mo share/locale/de/LC_MESSAGES/akonadi_knut_resource.mo share/locale/de/LC_MESSAGES/libakonadi5.mo share/locale/el/LC_MESSAGES/akonadi_knut_resource.mo share/locale/el/LC_MESSAGES/libakonadi5.mo share/locale/en_GB/LC_MESSAGES/akonadi_knut_resource.mo share/locale/en_GB/LC_MESSAGES/libakonadi5.mo share/locale/eo/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eo/LC_MESSAGES/libakonadi5.mo share/locale/es/LC_MESSAGES/akonadi_knut_resource.mo share/locale/es/LC_MESSAGES/libakonadi5.mo share/locale/et/LC_MESSAGES/akonadi_knut_resource.mo share/locale/et/LC_MESSAGES/libakonadi5.mo share/locale/eu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/eu/LC_MESSAGES/libakonadi5.mo share/locale/fi/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fi/LC_MESSAGES/libakonadi5.mo share/locale/fr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/fr/LC_MESSAGES/libakonadi5.mo share/locale/ga/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ga/LC_MESSAGES/libakonadi5.mo share/locale/gl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/gl/LC_MESSAGES/libakonadi5.mo +share/locale/hsb/LC_MESSAGES/libakonadi5.mo share/locale/hu/LC_MESSAGES/akonadi_knut_resource.mo share/locale/hu/LC_MESSAGES/libakonadi5.mo share/locale/ia/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ia/LC_MESSAGES/libakonadi5.mo share/locale/id/LC_MESSAGES/akonadi_knut_resource.mo share/locale/id/LC_MESSAGES/libakonadi5.mo share/locale/it/LC_MESSAGES/akonadi_knut_resource.mo share/locale/it/LC_MESSAGES/libakonadi5.mo share/locale/ja/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ja/LC_MESSAGES/libakonadi5.mo +share/locale/ka/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/ka/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/mai/LC_MESSAGES/libakonadi5.mo share/locale/mr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/mr/LC_MESSAGES/libakonadi5.mo +share/locale/my/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/my/LC_MESSAGES/libakonadi5.mo share/locale/nb/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nb/LC_MESSAGES/libakonadi5.mo share/locale/nds/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nds/LC_MESSAGES/libakonadi5.mo share/locale/nl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nl/LC_MESSAGES/libakonadi5.mo share/locale/nn/LC_MESSAGES/akonadi_knut_resource.mo share/locale/nn/LC_MESSAGES/libakonadi5.mo share/locale/pa/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pa/LC_MESSAGES/libakonadi5.mo share/locale/pl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pl/LC_MESSAGES/libakonadi5.mo share/locale/pt/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt/LC_MESSAGES/libakonadi5.mo share/locale/pt_BR/LC_MESSAGES/akonadi_knut_resource.mo share/locale/pt_BR/LC_MESSAGES/libakonadi5.mo share/locale/ro/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ro/LC_MESSAGES/libakonadi5.mo share/locale/ru/LC_MESSAGES/akonadi_knut_resource.mo share/locale/ru/LC_MESSAGES/libakonadi5.mo share/locale/se/LC_MESSAGES/libakonadi5.mo share/locale/sk/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sk/LC_MESSAGES/libakonadi5.mo share/locale/sl/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sl/LC_MESSAGES/libakonadi5.mo share/locale/sq/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sr/LC_MESSAGES/libakonadi5.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/libakonadi5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi5.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_knut_resource.mo +share/locale/sr@latin/LC_MESSAGES/libakonadi5.mo share/locale/sv/LC_MESSAGES/akonadi_knut_resource.mo share/locale/sv/LC_MESSAGES/libakonadi5.mo share/locale/tg/LC_MESSAGES/akonadi_knut_resource.mo share/locale/tg/LC_MESSAGES/libakonadi5.mo +share/locale/th/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 b7f866a402c7..2b772fa05795 100644 --- a/deskutils/akonadi-calendar-tools/distinfo +++ b/deskutils/akonadi-calendar-tools/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539606 -SHA256 (KDE/release-service/22.08.3/akonadi-calendar-tools-22.08.3.tar.xz) = 7997c5a1d807530024385f194d058a2abb25e285ac18953aa55adc85026f30e5 -SIZE (KDE/release-service/22.08.3/akonadi-calendar-tools-22.08.3.tar.xz) = 238252 +TIMESTAMP = 1670513254 +SHA256 (KDE/release-service/22.12.0/akonadi-calendar-tools-22.12.0.tar.xz) = 0985dce216c66ef2f4ffd689b142dfcb865de622e7056410029bebdb3fe204a1 +SIZE (KDE/release-service/22.12.0/akonadi-calendar-tools-22.12.0.tar.xz) = 252144 diff --git a/deskutils/akonadi-calendar-tools/pkg-plist b/deskutils/akonadi-calendar-tools/pkg-plist index ddef7f9c88e0..35ddafe701b3 100644 --- a/deskutils/akonadi-calendar-tools/pkg-plist +++ b/deskutils/akonadi-calendar-tools/pkg-plist @@ -1,105 +1,117 @@ bin/calendarjanitor bin/konsolekalendar 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/icons/hicolor/128x128/apps/konsolekalendar.png share/locale/ar/LC_MESSAGES/calendarjanitor.mo share/locale/ar/LC_MESSAGES/konsolekalendar.mo share/locale/az/LC_MESSAGES/calendarjanitor.mo share/locale/az/LC_MESSAGES/konsolekalendar.mo share/locale/be/LC_MESSAGES/konsolekalendar.mo share/locale/bg/LC_MESSAGES/calendarjanitor.mo share/locale/bg/LC_MESSAGES/konsolekalendar.mo +share/locale/br/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/cy/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/fy/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/hne/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/ka/LC_MESSAGES/calendarjanitor.mo +share/locale/ka/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/mk/LC_MESSAGES/konsolekalendar.mo share/locale/mr/LC_MESSAGES/konsolekalendar.mo +share/locale/ms/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/ne/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/uz/LC_MESSAGES/konsolekalendar.mo +share/locale/uz@cyrillic/LC_MESSAGES/konsolekalendar.mo +share/locale/xh/LC_MESSAGES/konsolekalendar.mo share/locale/zh_CN/LC_MESSAGES/calendarjanitor.mo share/locale/zh_CN/LC_MESSAGES/konsolekalendar.mo share/locale/zh_TW/LC_MESSAGES/calendarjanitor.mo share/locale/zh_TW/LC_MESSAGES/konsolekalendar.mo share/qlogging-categories5/console.categories share/qlogging-categories5/console.renamecategories diff --git a/deskutils/akonadi-import-wizard/distinfo b/deskutils/akonadi-import-wizard/distinfo index 6b6fc221f755..8dc3876498db 100644 --- a/deskutils/akonadi-import-wizard/distinfo +++ b/deskutils/akonadi-import-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539583 -SHA256 (KDE/release-service/22.08.3/akonadi-import-wizard-22.08.3.tar.xz) = 9b1a39ff9ba354211a16f6f1a91ebcb839ad159ff4dfc012bb68259531d225a5 -SIZE (KDE/release-service/22.08.3/akonadi-import-wizard-22.08.3.tar.xz) = 512920 +TIMESTAMP = 1670513219 +SHA256 (KDE/release-service/22.12.0/akonadi-import-wizard-22.12.0.tar.xz) = 2fb664895e023ffaaa320f53d1da4e8c75968777d828478e466dd94cbfe84107 +SIZE (KDE/release-service/22.12.0/akonadi-import-wizard-22.12.0.tar.xz) = 514376 diff --git a/deskutils/akonadi-import-wizard/pkg-plist b/deskutils/akonadi-import-wizard/pkg-plist index 248455cdc8ec..0bab828a3e11 100644 --- a/deskutils/akonadi-import-wizard/pkg-plist +++ b/deskutils/akonadi-import-wizard/pkg-plist @@ -1,83 +1,84 @@ bin/akonadiimportwizard include/KF5/KPim/ImportWizard/AbstractAddressBook include/KF5/KPim/ImportWizard/AbstractBase include/KF5/KPim/ImportWizard/AbstractCalendar include/KF5/KPim/ImportWizard/AbstractDisplayInfo include/KF5/KPim/ImportWizard/AbstractImporter include/KF5/KPim/ImportWizard/AbstractSettings include/KF5/KPim/ImportWizard/ImportWizardUtil include/KF5/KPim/importwizard/abstractaddressbook.h include/KF5/KPim/importwizard/abstractbase.h include/KF5/KPim/importwizard/abstractcalendar.h include/KF5/KPim/importwizard/abstractdisplayinfo.h include/KF5/KPim/importwizard/abstractimporter.h include/KF5/KPim/importwizard/abstractsettings.h include/KF5/KPim/importwizard/importwizardutil.h include/KF5/KPim/importwizard/libimportwizard_export.h include/KPim/importwizard_version.h lib/cmake/KPimImportWizard/KPimImportWizardConfig.cmake lib/cmake/KPimImportWizard/KPimImportWizardConfigVersion.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimImportWizard/KPimImportWizardTargets.cmake lib/libKPimImportWizard.so lib/libKPimImportWizard.so.5 lib/libKPimImportWizard.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/importwizard/balsaimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/clawsmailimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv3importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/icedoveimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/seamonkeyimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/sylpheedimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/thunderbirdimporterplugin.so %%QT_PLUGINDIR%%/pim5/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/locale/ar/LC_MESSAGES/akonadiimportwizard.mo share/locale/az/LC_MESSAGES/akonadiimportwizard.mo share/locale/bg/LC_MESSAGES/akonadiimportwizard.mo share/locale/bs/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca/LC_MESSAGES/akonadiimportwizard.mo share/locale/ca@valencia/LC_MESSAGES/akonadiimportwizard.mo share/locale/cs/LC_MESSAGES/akonadiimportwizard.mo share/locale/da/LC_MESSAGES/akonadiimportwizard.mo share/locale/de/LC_MESSAGES/akonadiimportwizard.mo share/locale/el/LC_MESSAGES/akonadiimportwizard.mo share/locale/en_GB/LC_MESSAGES/akonadiimportwizard.mo share/locale/es/LC_MESSAGES/akonadiimportwizard.mo share/locale/et/LC_MESSAGES/akonadiimportwizard.mo share/locale/eu/LC_MESSAGES/akonadiimportwizard.mo share/locale/fi/LC_MESSAGES/akonadiimportwizard.mo share/locale/fr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ga/LC_MESSAGES/akonadiimportwizard.mo share/locale/gl/LC_MESSAGES/akonadiimportwizard.mo share/locale/hu/LC_MESSAGES/akonadiimportwizard.mo share/locale/ia/LC_MESSAGES/akonadiimportwizard.mo share/locale/it/LC_MESSAGES/akonadiimportwizard.mo share/locale/ja/LC_MESSAGES/akonadiimportwizard.mo +share/locale/ka/LC_MESSAGES/akonadiimportwizard.mo share/locale/kk/LC_MESSAGES/akonadiimportwizard.mo share/locale/km/LC_MESSAGES/akonadiimportwizard.mo share/locale/ko/LC_MESSAGES/akonadiimportwizard.mo share/locale/lt/LC_MESSAGES/akonadiimportwizard.mo share/locale/mr/LC_MESSAGES/akonadiimportwizard.mo share/locale/nb/LC_MESSAGES/akonadiimportwizard.mo share/locale/nds/LC_MESSAGES/akonadiimportwizard.mo share/locale/nl/LC_MESSAGES/akonadiimportwizard.mo share/locale/nn/LC_MESSAGES/akonadiimportwizard.mo share/locale/pl/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt/LC_MESSAGES/akonadiimportwizard.mo share/locale/pt_BR/LC_MESSAGES/akonadiimportwizard.mo share/locale/ro/LC_MESSAGES/akonadiimportwizard.mo share/locale/ru/LC_MESSAGES/akonadiimportwizard.mo share/locale/sk/LC_MESSAGES/akonadiimportwizard.mo share/locale/sl/LC_MESSAGES/akonadiimportwizard.mo share/locale/sv/LC_MESSAGES/akonadiimportwizard.mo share/locale/tr/LC_MESSAGES/akonadiimportwizard.mo share/locale/ug/LC_MESSAGES/akonadiimportwizard.mo share/locale/uk/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_CN/LC_MESSAGES/akonadiimportwizard.mo share/locale/zh_TW/LC_MESSAGES/akonadiimportwizard.mo share/qlogging-categories5/importwizard.categories share/qlogging-categories5/importwizard.renamecategories diff --git a/deskutils/akonadiconsole/distinfo b/deskutils/akonadiconsole/distinfo index db2f0df63fe9..ea0cbe3544be 100644 --- a/deskutils/akonadiconsole/distinfo +++ b/deskutils/akonadiconsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539600 -SHA256 (KDE/release-service/22.08.3/akonadiconsole-22.08.3.tar.xz) = 6bc1b54112fa8995253b0e4dd8af2e3351119a1289f74bf11d665a75be695094 -SIZE (KDE/release-service/22.08.3/akonadiconsole-22.08.3.tar.xz) = 200196 +TIMESTAMP = 1670513245 +SHA256 (KDE/release-service/22.12.0/akonadiconsole-22.12.0.tar.xz) = 23f33dc5b55d8f13c1f713bddbdc153eada9dd33dbbe86df84b82f3b3cef09de +SIZE (KDE/release-service/22.12.0/akonadiconsole-22.12.0.tar.xz) = 200304 diff --git a/deskutils/akregator/distinfo b/deskutils/akregator/distinfo index c2810aa6be40..c6444530e667 100644 --- a/deskutils/akregator/distinfo +++ b/deskutils/akregator/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539604 -SHA256 (KDE/release-service/22.08.3/akregator-22.08.3.tar.xz) = 7ea8ed9380b11d42b7726b386746ac26cf66e92544cee945f35b48fce28b0317 -SIZE (KDE/release-service/22.08.3/akregator-22.08.3.tar.xz) = 2254316 +TIMESTAMP = 1670513253 +SHA256 (KDE/release-service/22.12.0/akregator-22.12.0.tar.xz) = 02ab2c5d49fc4461662871d88cf24032f4400f9745267683bf488ff42cbde74e +SIZE (KDE/release-service/22.12.0/akregator-22.12.0.tar.xz) = 2318392 diff --git a/deskutils/akregator/pkg-plist b/deskutils/akregator/pkg-plist index 309a80ca5260..0423d8f93fd6 100644 --- a/deskutils/akregator/pkg-plist +++ b/deskutils/akregator/pkg-plist @@ -1,92 +1,107 @@ bin/akregator bin/akregatorstorageexporter lib/libakregatorinterfaces.so.5 lib/libakregatorinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakregatorprivate.so.5 lib/libakregatorprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/akregatorpart.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_advanced.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_appearance.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_archive.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_browser.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_general.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_plugins.so %%QT_PLUGINDIR%%/pim5/kcms/akregator/akregator_config_security.so %%QT_PLUGINDIR%%/pim5/kontact/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/knotifications5/akregator.notifyrc 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/br/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/cy/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/fy/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/hne/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/id/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/ka/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/mk/LC_MESSAGES/akregator.mo share/locale/mr/LC_MESSAGES/akregator.mo +share/locale/ms/LC_MESSAGES/akregator.mo share/locale/nb/LC_MESSAGES/akregator.mo share/locale/nds/LC_MESSAGES/akregator.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/akregator.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akregator.mo +share/locale/sr@latin/LC_MESSAGES/akregator.mo share/locale/sv/LC_MESSAGES/akregator.mo share/locale/ta/LC_MESSAGES/akregator.mo +share/locale/th/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/uz/LC_MESSAGES/akregator.mo +share/locale/uz@cyrillic/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 share/qlogging-categories5/akregator.categories share/qlogging-categories5/akregator.renamecategories diff --git a/deskutils/grantlee-editor/distinfo b/deskutils/grantlee-editor/distinfo index 05a11d7432d7..fb6a5d8a44aa 100644 --- a/deskutils/grantlee-editor/distinfo +++ b/deskutils/grantlee-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539613 -SHA256 (KDE/release-service/22.08.3/grantlee-editor-22.08.3.tar.xz) = b08e99453a0cd33ea099a7a46b7ebd545e800be2d1428c28900e4e8e92f9730f -SIZE (KDE/release-service/22.08.3/grantlee-editor-22.08.3.tar.xz) = 112780 +TIMESTAMP = 1670513265 +SHA256 (KDE/release-service/22.12.0/grantlee-editor-22.12.0.tar.xz) = b9a152f3b7262436a42d12bfcfe1453d51233529d23692ad8428d309fa963312 +SIZE (KDE/release-service/22.12.0/grantlee-editor-22.12.0.tar.xz) = 117668 diff --git a/deskutils/grantlee-editor/pkg-plist b/deskutils/grantlee-editor/pkg-plist index 821ff5ee4ee8..8789703579f6 100644 --- a/deskutils/grantlee-editor/pkg-plist +++ b/deskutils/grantlee-editor/pkg-plist @@ -1,156 +1,170 @@ bin/contactprintthemeeditor bin/contactthemeeditor bin/headerthemeeditor lib/libgrantleethemeeditor.so.5 lib/libgrantleethemeeditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.contactprintthemeeditor.desktop share/applications/org.kde.contactthemeeditor.desktop share/applications/org.kde.headerthemeeditor.desktop share/config.kcfg/grantleethemeeditor.kcfg share/locale/ar/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ar/LC_MESSAGES/contactthemeeditor.mo share/locale/ar/LC_MESSAGES/headerthemeeditor.mo share/locale/ar/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/bg/LC_MESSAGES/contactprintthemeeditor.mo share/locale/bg/LC_MESSAGES/contactthemeeditor.mo share/locale/bg/LC_MESSAGES/headerthemeeditor.mo share/locale/bg/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/bs/LC_MESSAGES/contactprintthemeeditor.mo share/locale/bs/LC_MESSAGES/contactthemeeditor.mo share/locale/bs/LC_MESSAGES/headerthemeeditor.mo share/locale/bs/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ca/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ca/LC_MESSAGES/contactthemeeditor.mo share/locale/ca/LC_MESSAGES/headerthemeeditor.mo share/locale/ca/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/contactthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/headerthemeeditor.mo share/locale/ca@valencia/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/cs/LC_MESSAGES/contactprintthemeeditor.mo share/locale/cs/LC_MESSAGES/contactthemeeditor.mo share/locale/cs/LC_MESSAGES/headerthemeeditor.mo share/locale/cs/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/da/LC_MESSAGES/contactprintthemeeditor.mo share/locale/da/LC_MESSAGES/contactthemeeditor.mo share/locale/da/LC_MESSAGES/headerthemeeditor.mo share/locale/da/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/de/LC_MESSAGES/contactprintthemeeditor.mo share/locale/de/LC_MESSAGES/contactthemeeditor.mo share/locale/de/LC_MESSAGES/headerthemeeditor.mo share/locale/de/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/el/LC_MESSAGES/headerthemeeditor.mo share/locale/en_GB/LC_MESSAGES/contactprintthemeeditor.mo share/locale/en_GB/LC_MESSAGES/contactthemeeditor.mo share/locale/en_GB/LC_MESSAGES/headerthemeeditor.mo share/locale/en_GB/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/es/LC_MESSAGES/contactprintthemeeditor.mo share/locale/es/LC_MESSAGES/contactthemeeditor.mo share/locale/es/LC_MESSAGES/headerthemeeditor.mo share/locale/es/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/et/LC_MESSAGES/contactprintthemeeditor.mo share/locale/et/LC_MESSAGES/contactthemeeditor.mo share/locale/et/LC_MESSAGES/headerthemeeditor.mo share/locale/et/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/eu/LC_MESSAGES/contactprintthemeeditor.mo +share/locale/eu/LC_MESSAGES/contactthemeeditor.mo +share/locale/eu/LC_MESSAGES/headerthemeeditor.mo +share/locale/eu/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/fi/LC_MESSAGES/contactprintthemeeditor.mo share/locale/fi/LC_MESSAGES/contactthemeeditor.mo share/locale/fi/LC_MESSAGES/headerthemeeditor.mo share/locale/fi/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/fr/LC_MESSAGES/contactprintthemeeditor.mo share/locale/fr/LC_MESSAGES/contactthemeeditor.mo share/locale/fr/LC_MESSAGES/headerthemeeditor.mo share/locale/fr/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/gl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/gl/LC_MESSAGES/contactthemeeditor.mo share/locale/gl/LC_MESSAGES/headerthemeeditor.mo share/locale/gl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/hu/LC_MESSAGES/contactthemeeditor.mo share/locale/hu/LC_MESSAGES/headerthemeeditor.mo share/locale/hu/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ia/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ia/LC_MESSAGES/contactthemeeditor.mo share/locale/ia/LC_MESSAGES/headerthemeeditor.mo share/locale/ia/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/it/LC_MESSAGES/contactprintthemeeditor.mo share/locale/it/LC_MESSAGES/contactthemeeditor.mo share/locale/it/LC_MESSAGES/headerthemeeditor.mo share/locale/it/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ja/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ja/LC_MESSAGES/contactthemeeditor.mo share/locale/ja/LC_MESSAGES/headerthemeeditor.mo share/locale/ja/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/ka/LC_MESSAGES/contactprintthemeeditor.mo +share/locale/ka/LC_MESSAGES/contactthemeeditor.mo +share/locale/ka/LC_MESSAGES/headerthemeeditor.mo +share/locale/ka/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/kk/LC_MESSAGES/contactthemeeditor.mo share/locale/kk/LC_MESSAGES/headerthemeeditor.mo share/locale/kk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ko/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ko/LC_MESSAGES/contactthemeeditor.mo share/locale/ko/LC_MESSAGES/headerthemeeditor.mo share/locale/ko/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/lt/LC_MESSAGES/contactprintthemeeditor.mo share/locale/lt/LC_MESSAGES/contactthemeeditor.mo share/locale/lt/LC_MESSAGES/headerthemeeditor.mo share/locale/lt/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/mr/LC_MESSAGES/headerthemeeditor.mo share/locale/nb/LC_MESSAGES/contactprintthemeeditor.mo share/locale/nb/LC_MESSAGES/contactthemeeditor.mo share/locale/nb/LC_MESSAGES/headerthemeeditor.mo share/locale/nb/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/nds/LC_MESSAGES/contactthemeeditor.mo share/locale/nds/LC_MESSAGES/headerthemeeditor.mo share/locale/nds/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/nl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/nl/LC_MESSAGES/contactthemeeditor.mo share/locale/nl/LC_MESSAGES/headerthemeeditor.mo share/locale/nl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pl/LC_MESSAGES/contactthemeeditor.mo share/locale/pl/LC_MESSAGES/headerthemeeditor.mo share/locale/pl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pt/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pt/LC_MESSAGES/contactthemeeditor.mo share/locale/pt/LC_MESSAGES/headerthemeeditor.mo share/locale/pt/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/pt_BR/LC_MESSAGES/contactprintthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/contactthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/headerthemeeditor.mo share/locale/pt_BR/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ro/LC_MESSAGES/headerthemeeditor.mo share/locale/ru/LC_MESSAGES/contactprintthemeeditor.mo share/locale/ru/LC_MESSAGES/contactthemeeditor.mo share/locale/ru/LC_MESSAGES/headerthemeeditor.mo share/locale/ru/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sk/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sk/LC_MESSAGES/contactthemeeditor.mo share/locale/sk/LC_MESSAGES/headerthemeeditor.mo share/locale/sk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sl/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sl/LC_MESSAGES/contactthemeeditor.mo share/locale/sl/LC_MESSAGES/headerthemeeditor.mo share/locale/sl/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sr/LC_MESSAGES/headerthemeeditor.mo share/locale/sr/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/sr@ijekavian/LC_MESSAGES/headerthemeeditor.mo +share/locale/sr@ijekavian/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/headerthemeeditor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libgrantleethemeeditor.mo +share/locale/sr@latin/LC_MESSAGES/headerthemeeditor.mo +share/locale/sr@latin/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/sv/LC_MESSAGES/contactprintthemeeditor.mo share/locale/sv/LC_MESSAGES/contactthemeeditor.mo share/locale/sv/LC_MESSAGES/headerthemeeditor.mo share/locale/sv/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/tr/LC_MESSAGES/contactprintthemeeditor.mo share/locale/tr/LC_MESSAGES/contactthemeeditor.mo share/locale/tr/LC_MESSAGES/headerthemeeditor.mo share/locale/tr/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/ug/LC_MESSAGES/contactthemeeditor.mo share/locale/ug/LC_MESSAGES/headerthemeeditor.mo share/locale/ug/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/uk/LC_MESSAGES/contactprintthemeeditor.mo share/locale/uk/LC_MESSAGES/contactthemeeditor.mo share/locale/uk/LC_MESSAGES/headerthemeeditor.mo share/locale/uk/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/zh_CN/LC_MESSAGES/contactprintthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/contactthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/headerthemeeditor.mo share/locale/zh_CN/LC_MESSAGES/libgrantleethemeeditor.mo share/locale/zh_TW/LC_MESSAGES/contactprintthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/contactthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/headerthemeeditor.mo share/locale/zh_TW/LC_MESSAGES/libgrantleethemeeditor.mo share/qlogging-categories5/grantleeditor.categories share/qlogging-categories5/grantleeditor.renamecategories diff --git a/deskutils/grantleetheme/distinfo b/deskutils/grantleetheme/distinfo index a75df0471114..8af8d95dd3d3 100644 --- a/deskutils/grantleetheme/distinfo +++ b/deskutils/grantleetheme/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539602 -SHA256 (KDE/release-service/22.08.3/grantleetheme-22.08.3.tar.xz) = 7377df6b464697927fada61515de8c22d6a6f8759adf5e125e80d51c50ab6d24 -SIZE (KDE/release-service/22.08.3/grantleetheme-22.08.3.tar.xz) = 61932 +TIMESTAMP = 1670513249 +SHA256 (KDE/release-service/22.12.0/grantleetheme-22.12.0.tar.xz) = b3f6c768c54c5c97cbf2297aca05d4efbcf1599f756b3023173c0566f1087c47 +SIZE (KDE/release-service/22.12.0/grantleetheme-22.12.0.tar.xz) = 62392 diff --git a/deskutils/grantleetheme/pkg-plist b/deskutils/grantleetheme/pkg-plist index a4a1d14b880b..6084ec68c7ce 100644 --- a/deskutils/grantleetheme/pkg-plist +++ b/deskutils/grantleetheme/pkg-plist @@ -1,73 +1,77 @@ include/KF5/GrantleeTheme/GrantleeTheme/GenericFormatter include/KF5/GrantleeTheme/GrantleeTheme/GrantleeKi18nLocalizer include/KF5/GrantleeTheme/GrantleeTheme/GrantleeTheme include/KF5/GrantleeTheme/GrantleeTheme/GrantleeThemeEngine include/KF5/GrantleeTheme/GrantleeTheme/GrantleeThemeManager include/KF5/GrantleeTheme/GrantleeTheme/QtResourceTemplateLoader include/KF5/GrantleeTheme/grantleetheme/GenericFormatter include/KF5/GrantleeTheme/grantleetheme/GrantleeKi18nLocalizer include/KF5/GrantleeTheme/grantleetheme/GrantleeTheme include/KF5/GrantleeTheme/grantleetheme/GrantleeThemeEngine include/KF5/GrantleeTheme/grantleetheme/GrantleeThemeManager include/KF5/GrantleeTheme/grantleetheme/QtResourceTemplateLoader include/KF5/GrantleeTheme/grantleetheme/genericformatter.h include/KF5/GrantleeTheme/grantleetheme/grantleeki18nlocalizer.h include/KF5/GrantleeTheme/grantleetheme/grantleetheme.h include/KF5/GrantleeTheme/grantleetheme/grantleetheme_export.h include/KF5/GrantleeTheme/grantleetheme/grantleethemeengine.h include/KF5/GrantleeTheme/grantleetheme/grantleethememanager.h include/KF5/GrantleeTheme/grantleetheme/qtresourcetemplateloader.h include/KF5/GrantleeTheme/grantleetheme_version.h lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfig.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeConfigVersion.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5GrantleeTheme/KF5GrantleeThemeTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kde_grantlee_plugin.so lib/libKF5GrantleeTheme.so lib/libKF5GrantleeTheme.so.5 lib/libKF5GrantleeTheme.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_GrantleeTheme.pri share/locale/ar/LC_MESSAGES/libgrantleetheme.mo share/locale/bg/LC_MESSAGES/libgrantleetheme.mo share/locale/bs/LC_MESSAGES/libgrantleetheme.mo share/locale/ca/LC_MESSAGES/libgrantleetheme.mo share/locale/ca@valencia/LC_MESSAGES/libgrantleetheme.mo share/locale/cs/LC_MESSAGES/libgrantleetheme.mo share/locale/da/LC_MESSAGES/libgrantleetheme.mo share/locale/de/LC_MESSAGES/libgrantleetheme.mo share/locale/el/LC_MESSAGES/libgrantleetheme.mo share/locale/en_GB/LC_MESSAGES/libgrantleetheme.mo share/locale/es/LC_MESSAGES/libgrantleetheme.mo share/locale/et/LC_MESSAGES/libgrantleetheme.mo share/locale/eu/LC_MESSAGES/libgrantleetheme.mo share/locale/fi/LC_MESSAGES/libgrantleetheme.mo share/locale/fr/LC_MESSAGES/libgrantleetheme.mo share/locale/gl/LC_MESSAGES/libgrantleetheme.mo share/locale/hi/LC_MESSAGES/libgrantleetheme.mo share/locale/hu/LC_MESSAGES/libgrantleetheme.mo share/locale/ia/LC_MESSAGES/libgrantleetheme.mo share/locale/it/LC_MESSAGES/libgrantleetheme.mo share/locale/ja/LC_MESSAGES/libgrantleetheme.mo +share/locale/ka/LC_MESSAGES/libgrantleetheme.mo share/locale/kk/LC_MESSAGES/libgrantleetheme.mo share/locale/ko/LC_MESSAGES/libgrantleetheme.mo share/locale/lt/LC_MESSAGES/libgrantleetheme.mo share/locale/nb/LC_MESSAGES/libgrantleetheme.mo share/locale/nds/LC_MESSAGES/libgrantleetheme.mo share/locale/nl/LC_MESSAGES/libgrantleetheme.mo share/locale/nn/LC_MESSAGES/libgrantleetheme.mo share/locale/pl/LC_MESSAGES/libgrantleetheme.mo share/locale/pt/LC_MESSAGES/libgrantleetheme.mo share/locale/pt_BR/LC_MESSAGES/libgrantleetheme.mo share/locale/ro/LC_MESSAGES/libgrantleetheme.mo share/locale/ru/LC_MESSAGES/libgrantleetheme.mo share/locale/sk/LC_MESSAGES/libgrantleetheme.mo share/locale/sl/LC_MESSAGES/libgrantleetheme.mo share/locale/sr/LC_MESSAGES/libgrantleetheme.mo +share/locale/sr@ijekavian/LC_MESSAGES/libgrantleetheme.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libgrantleetheme.mo +share/locale/sr@latin/LC_MESSAGES/libgrantleetheme.mo share/locale/sv/LC_MESSAGES/libgrantleetheme.mo share/locale/tr/LC_MESSAGES/libgrantleetheme.mo share/locale/ug/LC_MESSAGES/libgrantleetheme.mo share/locale/uk/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_CN/LC_MESSAGES/libgrantleetheme.mo share/locale/zh_TW/LC_MESSAGES/libgrantleetheme.mo share/qlogging-categories5/grantleetheme.categories share/qlogging-categories5/grantleetheme.renamecategories diff --git a/deskutils/itinerary/distinfo b/deskutils/itinerary/distinfo index a1bc8cfe54a5..6842feda7ffe 100644 --- a/deskutils/itinerary/distinfo +++ b/deskutils/itinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539584 -SHA256 (KDE/release-service/22.08.3/itinerary-22.08.3.tar.xz) = 58700598b7468f65002b8ff388a34eeede10e40ca7f05fad4cd4f72deca3f8b3 -SIZE (KDE/release-service/22.08.3/itinerary-22.08.3.tar.xz) = 571372 +TIMESTAMP = 1670513221 +SHA256 (KDE/release-service/22.12.0/itinerary-22.12.0.tar.xz) = 109483f84a654235cadc9606264c9d8630372bf4163d18c6fffa4d76d0c33007 +SIZE (KDE/release-service/22.12.0/itinerary-22.12.0.tar.xz) = 577816 diff --git a/deskutils/itinerary/pkg-plist b/deskutils/itinerary/pkg-plist index fcb75c3dba5c..ffb3ec4b2be2 100644 --- a/deskutils/itinerary/pkg-plist +++ b/deskutils/itinerary/pkg-plist @@ -1,76 +1,53 @@ bin/itinerary lib/libSolidExtras.so -%%QT_PLUGINDIR%%/itinerarythumbnail.so -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/ClockElement.qml +%%QT_PLUGINDIR%%/kf5/thumbcreator/itinerarythumbnail.so %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/ClockFace.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePicker.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DatePopup.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/DesktopDateInput.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/Hand.qml -%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/MobileDateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimeLabel.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/TimePicker.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/libitinerary-dateandtimeplugin.so +%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/ClockElement.qml +%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/DesktopDateInput.qml +%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/Hand.qml +%%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/private/MobileDateInput.qml %%QT_QMLDIR%%/org/kde/itinerary/kirigamiaddons/dateandtime/qmldir %%QT_QMLDIR%%/org/kde/solidextras/libsolidextrasqmlplugin.so %%QT_QMLDIR%%/org/kde/solidextras/qmldir share/applications/org.kde.itinerary.desktop share/icons/hicolor/scalable/apps/org.kde.itinerary.svg share/knotifications5/itinerary.notifyrc -share/kservices5/itinerarythumbnail.desktop -share/locale/ca/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/ca/LC_MESSAGES/kde-itinerary.mo -share/locale/ca@valencia/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/ca@valencia/LC_MESSAGES/kde-itinerary.mo -share/locale/cs/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/cs/LC_MESSAGES/kde-itinerary.mo -share/locale/de/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/de/LC_MESSAGES/kde-itinerary.mo -share/locale/en_GB/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/en_GB/LC_MESSAGES/kde-itinerary.mo -share/locale/es/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/es/LC_MESSAGES/kde-itinerary.mo share/locale/et/LC_MESSAGES/kde-itinerary.mo share/locale/eu/LC_MESSAGES/kde-itinerary.mo -share/locale/fi/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/fi/LC_MESSAGES/kde-itinerary.mo -share/locale/fr/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/fr/LC_MESSAGES/kde-itinerary.mo share/locale/gl/LC_MESSAGES/kde-itinerary.mo -share/locale/ia/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/ia/LC_MESSAGES/kde-itinerary.mo -share/locale/it/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/it/LC_MESSAGES/kde-itinerary.mo -share/locale/ja/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/ja/LC_MESSAGES/kde-itinerary.mo -share/locale/ko/LC_MESSAGES/kde-itinerary-android._static_.mo +share/locale/ka/LC_MESSAGES/kde-itinerary-android.mo +share/locale/ka/LC_MESSAGES/kde-itinerary.mo share/locale/ko/LC_MESSAGES/kde-itinerary.mo share/locale/lt/LC_MESSAGES/kde-itinerary.mo -share/locale/nl/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/nl/LC_MESSAGES/kde-itinerary.mo -share/locale/pl/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/pl/LC_MESSAGES/kde-itinerary.mo -share/locale/pt/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/pt/LC_MESSAGES/kde-itinerary.mo -share/locale/pt_BR/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/pt_BR/LC_MESSAGES/kde-itinerary.mo -share/locale/ru/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/ru/LC_MESSAGES/kde-itinerary.mo -share/locale/sk/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/sk/LC_MESSAGES/kde-itinerary.mo -share/locale/sl/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/sl/LC_MESSAGES/kde-itinerary.mo -share/locale/sv/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/sv/LC_MESSAGES/kde-itinerary.mo -share/locale/tr/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/tr/LC_MESSAGES/kde-itinerary.mo -share/locale/uk/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/uk/LC_MESSAGES/kde-itinerary.mo -share/locale/zh_CN/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/zh_CN/LC_MESSAGES/kde-itinerary.mo -share/locale/zh_TW/LC_MESSAGES/kde-itinerary-android._static_.mo share/locale/zh_TW/LC_MESSAGES/kde-itinerary.mo share/metainfo/org.kde.itinerary.appdata.xml share/qlogging-categories5/org_kde_itinerary.categories diff --git a/deskutils/kaddressbook/distinfo b/deskutils/kaddressbook/distinfo index 5e93c910761f..272a5c26e4cb 100644 --- a/deskutils/kaddressbook/distinfo +++ b/deskutils/kaddressbook/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539603 -SHA256 (KDE/release-service/22.08.3/kaddressbook-22.08.3.tar.xz) = 8373c20df9125cc392b524916f236da6b5e6641b6dc5d3640dd4f878a5580d87 -SIZE (KDE/release-service/22.08.3/kaddressbook-22.08.3.tar.xz) = 3336612 +TIMESTAMP = 1670513251 +SHA256 (KDE/release-service/22.12.0/kaddressbook-22.12.0.tar.xz) = a3affc1e601a1501b0134f872924075881c858a16183302e360dfc57ec51c488 +SIZE (KDE/release-service/22.12.0/kaddressbook-22.12.0.tar.xz) = 3457104 diff --git a/deskutils/kaddressbook/pkg-plist b/deskutils/kaddressbook/pkg-plist index df89d90592e9..3bc15519335d 100644 --- a/deskutils/kaddressbook/pkg-plist +++ b/deskutils/kaddressbook/pkg-plist @@ -1,123 +1,140 @@ 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%% lib/libkaddressbookprivate.so.5 lib/libkaddressbookprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KAddressbookImportExport.pri %%QT_PLUGINDIR%%/kaddressbookpart.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kaddressbook_config_plugins.so %%QT_PLUGINDIR%%/pim5/kontact/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/locale/af/LC_MESSAGES/kaddressbook.mo 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/bn/LC_MESSAGES/kaddressbook.mo +share/locale/br/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/cy/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/fy/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/ka/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/mai/LC_MESSAGES/kaddressbook.mo +share/locale/mk/LC_MESSAGES/kaddressbook.mo share/locale/mr/LC_MESSAGES/kaddressbook.mo +share/locale/ms/LC_MESSAGES/kaddressbook.mo share/locale/nb/LC_MESSAGES/kaddressbook.mo share/locale/nds/LC_MESSAGES/kaddressbook.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/kaddressbook.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kaddressbook.mo +share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook.mo share/locale/vi/LC_MESSAGES/kaddressbook.mo +share/locale/xh/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 a28383f2c95c..cf6fac03d346 100644 --- a/deskutils/kalarm/distinfo +++ b/deskutils/kalarm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539608 -SHA256 (KDE/release-service/22.08.3/kalarm-22.08.3.tar.xz) = c7dc11e78cefbdd238c7bb6bb9798893ac5277bb0c26142012e043b13644000e -SIZE (KDE/release-service/22.08.3/kalarm-22.08.3.tar.xz) = 2371056 +TIMESTAMP = 1670513259 +SHA256 (KDE/release-service/22.12.0/kalarm-22.12.0.tar.xz) = ebd417a1877b1ac1ac1e6a3b800a2d65dfdfd6af3219777caff453fe0469b423 +SIZE (KDE/release-service/22.12.0/kalarm-22.12.0.tar.xz) = 2573676 diff --git a/deskutils/kalarm/pkg-plist b/deskutils/kalarm/pkg-plist index 0bde3afe2565..4e2f49de856a 100644 --- a/deskutils/kalarm/pkg-plist +++ b/deskutils/kalarm/pkg-plist @@ -1,93 +1,110 @@ bin/kalarm bin/kalarmautostart etc/xdg/autostart/kalarm.autostart.desktop lib/libexec/kauth/kalarm_helper lib/libkalarmcalendar.so.5 lib/libkalarmcalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkalarmplugin.so.5 lib/libkalarmplugin.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/kalarm/akonadiplugin.so 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/knotifications5/kalarm.notifyrc share/kxmlgui5/kalarm/kalarmui.rc +share/locale/af/LC_MESSAGES/kalarm.mo share/locale/ar/LC_MESSAGES/kalarm.mo share/locale/be/LC_MESSAGES/kalarm.mo share/locale/bg/LC_MESSAGES/kalarm.mo +share/locale/br/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/cy/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/fy/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/hne/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/ka/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/mai/LC_MESSAGES/kalarm.mo +share/locale/mk/LC_MESSAGES/kalarm.mo share/locale/mr/LC_MESSAGES/kalarm.mo +share/locale/ms/LC_MESSAGES/kalarm.mo share/locale/nb/LC_MESSAGES/kalarm.mo share/locale/nds/LC_MESSAGES/kalarm.mo +share/locale/ne/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/si/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/sr@ijekavian/LC_MESSAGES/kalarm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kalarm.mo +share/locale/sr@latin/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/uz/LC_MESSAGES/kalarm.mo +share/locale/uz@cyrillic/LC_MESSAGES/kalarm.mo share/locale/wa/LC_MESSAGES/kalarm.mo +share/locale/xh/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 share/qlogging-categories5/kalarm.categories share/qlogging-categories5/kalarm.renamecategories diff --git a/deskutils/kalendar/Makefile b/deskutils/kalendar/Makefile index 90a753c08cef..47540aad4299 100644 --- a/deskutils/kalendar/Makefile +++ b/deskutils/kalendar/Makefile @@ -1,27 +1,27 @@ PORTNAME= kalendar DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Calendar application using Akonadi and QML for online calendars WWW= https://invent.kde.org/pim/kalendar LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSES/GPL-3.0-only.txt USES= cmake compiler:c++17-lang desktop-file-utils grantlee:5 kde:5 \ qt:5 tar:xz xorg USE_QT= concurrent core dbus declarative gui location multimedia \ network printsupport quickcontrols2 svg widgets xml \ buildtools:build declarative-test:build linguist:build \ qmake:build testlib:build USE_KDE= akonadi akonadicalendar akonadicontacts auth calendarcore \ calendarsupport calendarutils codecs config configwidgets \ contacts coreaddons dbusaddons eventviews grantleetheme i18n \ - identitymanagement itemmodels kio kirigami2 mime notifications \ + identitymanagement itemmodels kio kirigami2 mailcommon mime notifications \ people pimtextedit qqc2-desktop-style service sonnet \ textwidgets widgetsaddons windowsystem xmlgui \ ecm:build USE_XORG= x11 .include diff --git a/deskutils/kalendar/distinfo b/deskutils/kalendar/distinfo index 4db42e2b2a79..4b037ede3296 100644 --- a/deskutils/kalendar/distinfo +++ b/deskutils/kalendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539589 -SHA256 (KDE/release-service/22.08.3/kalendar-22.08.3.tar.xz) = 8c7c07a422323a586b87dd578afd9696a5bb13bcd3fc5966a4c239321ef1a7a0 -SIZE (KDE/release-service/22.08.3/kalendar-22.08.3.tar.xz) = 469052 +TIMESTAMP = 1670513229 +SHA256 (KDE/release-service/22.12.0/kalendar-22.12.0.tar.xz) = 49a25f4a5ae2d04b9b1feb7d51affe9fcbf922d019fcc801dd54c400c9d59ed1 +SIZE (KDE/release-service/22.12.0/kalendar-22.12.0.tar.xz) = 800204 diff --git a/deskutils/kalendar/pkg-plist b/deskutils/kalendar/pkg-plist index dfc582e90c09..b9bde76a97e6 100644 --- a/deskutils/kalendar/pkg-plist +++ b/deskutils/kalendar/pkg-plist @@ -1,95 +1,113 @@ bin/kalendar +%%QT_QMLDIR%%/org/kde/akonadi/AgentConfigurationForm.qml %%QT_QMLDIR%%/org/kde/akonadi/CollectionComboBox.qml %%QT_QMLDIR%%/org/kde/akonadi/libakonadi_quick_plugin.so %%QT_QMLDIR%%/org/kde/akonadi/qmldir %%QT_QMLDIR%%/org/kde/kalendar/contact/AddressBookCollectionHandler.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactChooserPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/ContactView.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/libkalendar_contact_plugin.so %%QT_QMLDIR%%/org/kde/kalendar/contact/private/AddressBookMenu.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupEditorPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactGroupPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactListItem.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/ContactsPage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/DeleteContactAction.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/Header.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/PhoneNumberDialog.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/private/QrCodePage.qml %%QT_QMLDIR%%/org/kde/kalendar/contact/qmldir +%%QT_QMLDIR%%/org/kde/kalendar/mail/ConversationViewer.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/FolderView.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/MailSidebar.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/MailViewer.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/libkalendar_mail_plugin.so +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailboxselector/MailBoxList.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailboxselector/MailBoxListPage.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/HtmlPart.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/ICalPart.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPart.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPartModel.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/MailPartView.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/mailpartview/TextPart.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/private/AttachmentDelegate.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/private/MailDelegate.qml +%%QT_QMLDIR%%/org/kde/kalendar/mail/qmldir share/applications/org.kde.kalendar.desktop share/icons/hicolor/scalable/apps/org.kde.kalendar.svg -share/kservices5/plasma-applet-org.kde.kalendar.contact.desktop share/locale/ar/LC_MESSAGES/kalendar.mo +share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/az/LC_MESSAGES/kalendar.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca/LC_MESSAGES/kalendar.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ca@valencia/LC_MESSAGES/kalendar.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/cs/LC_MESSAGES/kalendar.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/de/LC_MESSAGES/kalendar.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/el/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/kalendar.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/es/LC_MESSAGES/kalendar.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/eu/LC_MESSAGES/kalendar.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fi/LC_MESSAGES/kalendar.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/fr/LC_MESSAGES/kalendar.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/hu/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/kalendar.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ja/LC_MESSAGES/kalendar.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo +share/locale/ka/LC_MESSAGES/kalendar.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ko/LC_MESSAGES/kalendar.mo share/locale/lv/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/kalendar.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pl/LC_MESSAGES/kalendar.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt/LC_MESSAGES/kalendar.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/pt_BR/LC_MESSAGES/kalendar.mo -share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ru/LC_MESSAGES/kalendar.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sk/LC_MESSAGES/kalendar.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sl/LC_MESSAGES/kalendar.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/sv/LC_MESSAGES/kalendar.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/ta/LC_MESSAGES/kalendar.mo share/locale/ta/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/tr/LC_MESSAGES/kalendar.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/uk/LC_MESSAGES/kalendar.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_CN/LC_MESSAGES/kalendar.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/locale/zh_TW/LC_MESSAGES/kalendar.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kalendar.contact.mo share/metainfo/org.kde.kalendar.appdata.xml share/metainfo/org.kde.kalendar.contact.appdata.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/config/main.xml share/plasma/plasmoids/org.kde.kalendar.contact/contents/resources/fallbackBackground.png share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactListItem.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/ContactsPage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/Header.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/QrCodePage.qml share/plasma/plasmoids/org.kde.kalendar.contact/contents/ui/main.qml -share/plasma/plasmoids/org.kde.kalendar.contact/metadata.desktop share/plasma/plasmoids/org.kde.kalendar.contact/metadata.json +share/plasma/plasmoids/org.kde.kalendar.contact/metadata.json.license share/qlogging-categories5/akonadi.quick.categories share/qlogging-categories5/kalendar.categories share/qlogging-categories5/kalendar.contact.categories diff --git a/deskutils/kcharselect/distinfo b/deskutils/kcharselect/distinfo index 343faf750253..6fe77bba5c93 100644 --- a/deskutils/kcharselect/distinfo +++ b/deskutils/kcharselect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539598 -SHA256 (KDE/release-service/22.08.3/kcharselect-22.08.3.tar.xz) = 063ba99e3eba8988316633b31eb0e10a98b349efa4df7a04f1a548b9bad5f490 -SIZE (KDE/release-service/22.08.3/kcharselect-22.08.3.tar.xz) = 375128 +TIMESTAMP = 1670513244 +SHA256 (KDE/release-service/22.12.0/kcharselect-22.12.0.tar.xz) = 81fc8967c01aa80ab588202215929b20f2534d94eed9ba6a1290f85413bc5b91 +SIZE (KDE/release-service/22.12.0/kcharselect-22.12.0.tar.xz) = 381276 diff --git a/deskutils/kcharselect/pkg-plist b/deskutils/kcharselect/pkg-plist index d31abcbdecc5..f8feb6eff18b 100644 --- a/deskutils/kcharselect/pkg-plist +++ b/deskutils/kcharselect/pkg-plist @@ -1,61 +1,79 @@ bin/kcharselect share/applications/org.kde.kcharselect.desktop +share/locale/af/LC_MESSAGES/kcharselect.mo share/locale/ar/LC_MESSAGES/kcharselect.mo share/locale/be/LC_MESSAGES/kcharselect.mo share/locale/bg/LC_MESSAGES/kcharselect.mo +share/locale/br/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/cy/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/hne/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/ie/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/ka/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/mk/LC_MESSAGES/kcharselect.mo share/locale/mr/LC_MESSAGES/kcharselect.mo +share/locale/ms/LC_MESSAGES/kcharselect.mo share/locale/nb/LC_MESSAGES/kcharselect.mo share/locale/nds/LC_MESSAGES/kcharselect.mo +share/locale/ne/LC_MESSAGES/kcharselect.mo share/locale/nl/LC_MESSAGES/kcharselect.mo share/locale/nn/LC_MESSAGES/kcharselect.mo +share/locale/oc/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/si/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/sr@ijekavian/LC_MESSAGES/kcharselect.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcharselect.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kcharselect.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcharselect.mo +share/locale/xh/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/distinfo b/deskutils/kdeconnect-kde/distinfo index 8e7f3447efff..a702e5c924d3 100644 --- a/deskutils/kdeconnect-kde/distinfo +++ b/deskutils/kdeconnect-kde/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539591 -SHA256 (KDE/release-service/22.08.3/kdeconnect-kde-22.08.3.tar.xz) = 4429a28a93d2f137e7cb8a35d5014afbc4f287cf9c831fbe882b26baf6e1eb7a -SIZE (KDE/release-service/22.08.3/kdeconnect-kde-22.08.3.tar.xz) = 625488 +TIMESTAMP = 1670513233 +SHA256 (KDE/release-service/22.12.0/kdeconnect-kde-22.12.0.tar.xz) = a652994b4d7280effb384483ee41d022827efd17f6dc7c5f748b9f95e8d47688 +SIZE (KDE/release-service/22.12.0/kdeconnect-kde-22.12.0.tar.xz) = 634508 diff --git a/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp b/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp index 1d7ee57c379e..3681f8fbef67 100644 --- a/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp +++ b/deskutils/kdeconnect-kde/files/patch-core_backends_lan_lanlinkprovider.cpp @@ -1,20 +1,19 @@ ---- core/backends/lan/lanlinkprovider.cpp.orig 2018-05-30 21:41:03 UTC +--- core/backends/lan/lanlinkprovider.cpp.orig 2022-11-30 00:45:32 UTC +++ core/backends/lan/lanlinkprovider.cpp -@@ -196,6 +196,17 @@ void LanLinkProvider::newUdpConnection() //udpBroadcas +@@ -255,6 +255,16 @@ void LanLinkProvider::udpBroadcastReceived() + } int tcpPort = receivedPacket->get(QStringLiteral("tcpPort")); - -+ // convert IPv6 addresses of type "v4-mapped" to IPv4 ++ // convert IPv6 addresses of type "v4-mapped" to IPv4 + QHostAddress addr = sender; + if (addr.protocol() == QAbstractSocket::IPv6Protocol) { + bool success; + QHostAddress convertedAddr = QHostAddress(addr.toIPv4Address(&success)); + if (success) { + // qCDebug(KDECONNECT_CORE) << "Converting IPv6" << addr << "to IPv4" << convertedAddr; + sender = convertedAddr; + } + } -+ - //qCDebug(KDECONNECT_CORE) << "Received Udp identity packet from" << sender << " asking for a tcp connection on port " << tcpPort; - - QSslSocket* socket = new QSslSocket(this); + if (tcpPort < MIN_TCP_PORT || tcpPort > MAX_TCP_PORT) { + qCDebug(KDECONNECT_CORE) << "TCP port outside of kdeconnect's range"; + delete receivedPacket; diff --git a/deskutils/kdeconnect-kde/files/patch-plugins_sftp_mounter.cpp b/deskutils/kdeconnect-kde/files/patch-plugins_sftp_mounter.cpp index 6c0e3c6ceda2..99fa7009b2dc 100644 --- a/deskutils/kdeconnect-kde/files/patch-plugins_sftp_mounter.cpp +++ b/deskutils/kdeconnect-kde/files/patch-plugins_sftp_mounter.cpp @@ -1,22 +1,22 @@ ---- plugins/sftp/mounter.cpp.orig 2018-11-06 14:32:08.000000000 +0100 -+++ plugins/sftp/mounter.cpp 2019-01-29 18:43:47.324002000 +0100 -@@ -139,7 +139,7 @@ - << QStringLiteral("-o") << QStringLiteral("gid=") + QString::number(getgid()) - << QStringLiteral("-o") << QStringLiteral("reconnect") - << QStringLiteral("-o") << QStringLiteral("ServerAliveInterval=30") -- << QStringLiteral("-o") << QStringLiteral("password_stdin") -+ << QStringLiteral("-o") << QStringLiteral("ssh_command=sshpass -p %1 %2").arg(np.get(QStringLiteral("password")), QStringLiteral("ssh")) - ; +--- plugins/sftp/mounter.cpp.orig 2022-11-30 00:45:32 UTC ++++ plugins/sftp/mounter.cpp +@@ -129,7 +129,7 @@ void Mounter::onPackageReceived(const NetworkPacket &n + << QStringLiteral("-o") << QStringLiteral("HostKeyAlgorithms=+ssh-dss\\,ssh-rsa") // https://bugs.kde.org/show_bug.cgi?id=351725 + << QStringLiteral("-o") << QStringLiteral("uid=") + QString::number(getuid()) << QStringLiteral("-o") + << QStringLiteral("gid=") + QString::number(getgid()) << QStringLiteral("-o") << QStringLiteral("reconnect") << QStringLiteral("-o") +- << QStringLiteral("ServerAliveInterval=30") << QStringLiteral("-o") << QStringLiteral("password_stdin"); ++ << QStringLiteral("-o") << QStringLiteral("ssh_command=sshpass -p %1 %2").arg(np.get(QStringLiteral("password")), QStringLiteral("ssh")); m_proc->setProgram(program, arguments); -@@ -148,8 +148,8 @@ + +@@ -137,8 +137,8 @@ void Mounter::onPackageReceived(const NetworkPacket &n m_proc->start(); - //qCDebug(KDECONNECT_PLUGIN_SFTP) << "Passing password: " << np.get("password").toLatin1(); + // qCDebug(KDECONNECT_PLUGIN_SFTP) << "Passing password: " << np.get("password").toLatin1(); - m_proc->write(np.get(QStringLiteral("password")).toLatin1()); - m_proc->write("\n"); + //m_proc->write(np.get(QStringLiteral("password")).toLatin1()); -+ // m_proc->write("\n"); - ++ //m_proc->write("\n"); } + void Mounter::onStarted() diff --git a/deskutils/kdeconnect-kde/pkg-plist b/deskutils/kdeconnect-kde/pkg-plist index c6956f2eb1da..cd155fedfca1 100644 --- a/deskutils/kdeconnect-kde/pkg-plist +++ b/deskutils/kdeconnect-kde/pkg-plist @@ -1,755 +1,796 @@ bin/kdeconnect-app bin/kdeconnect-cli bin/kdeconnect-handler bin/kdeconnect-indicator bin/kdeconnect-settings bin/kdeconnect-sms etc/xdg/autostart/org.kde.kdeconnect.daemon.desktop lib/libexec/kdeconnectd lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectcore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectinterfaces.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_VERSION_SHORT%% lib/libkdeconnectpluginkcm.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kcm_kdeconnect.so +%%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_clipboard_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_findthisdevice_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_pausemusic_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_runcommand_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_sendnotifications_config.so %%QT_PLUGINDIR%%/kdeconnect/kcms/kdeconnect_share_config.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_battery.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_bigscreen.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_clipboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_connectivity_report.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_contacts.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findmyphone.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_findthisdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_lockdevice.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mousepad.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mpriscontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_mprisremote.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_notifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_pausemusic.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_photo.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_ping.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_presenter.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecommands.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotecontrol.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotekeyboard.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_remotesystemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_runcommand.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_screensaver_inhibit.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sendnotifications.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sftp.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_share.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_sms.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_systemvolume.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_telephony.so %%QT_PLUGINDIR%%/kdeconnect/kdeconnect_virtualmonitor.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kdeconnectfileitemaction.so %%QT_PLUGINDIR%%/kf5/kio/kdeconnect.so +%%QT_QMLDIR%%/org/kde/kdeconnect/DBusProperty.qml +%%QT_QMLDIR%%/org/kde/kdeconnect/PluginChecker.qml +%%QT_QMLDIR%%/org/kde/kdeconnect/RemoteKeyboard.qml %%QT_QMLDIR%%/org/kde/kdeconnect/libkdeconnectdeclarativeplugin.so -%%QT_QMLDIR%%/org/kde/kdeconnect/plugins.qmltypes %%QT_QMLDIR%%/org/kde/kdeconnect/qmldir share/Thunar/sendto/kdeconnect-thunar.desktop share/applications/org.kde.kdeconnect-settings.desktop share/applications/org.kde.kdeconnect.app.desktop share/applications/org.kde.kdeconnect.daemon.desktop share/applications/org.kde.kdeconnect.handler.desktop share/applications/org.kde.kdeconnect.nonplasma.desktop share/applications/org.kde.kdeconnect.sms.desktop share/applications/org.kde.kdeconnect_open.desktop share/contractor/kdeconnect.contract share/dbus-1/services/org.kde.kdeconnect.service share/deepin/dde-file-manager/oem-menuextensions/kdeconnect-dde.desktop share/icons/hicolor/16x16/status/laptopconnected.svg share/icons/hicolor/16x16/status/laptopdisconnected.svg share/icons/hicolor/16x16/status/laptoptrusted.svg share/icons/hicolor/16x16/status/smartphoneconnected.svg share/icons/hicolor/16x16/status/smartphonedisconnected.svg share/icons/hicolor/16x16/status/smartphonetrusted.svg share/icons/hicolor/16x16/status/tabletconnected.svg share/icons/hicolor/16x16/status/tabletdisconnected.svg share/icons/hicolor/16x16/status/tablettrusted.svg share/icons/hicolor/16x16/status/tvconnected.svg share/icons/hicolor/16x16/status/tvdisconnected.svg share/icons/hicolor/16x16/status/tvtrusted.svg share/icons/hicolor/22x22/status/laptopconnected.svg share/icons/hicolor/22x22/status/laptopdisconnected.svg share/icons/hicolor/22x22/status/laptoptrusted.svg share/icons/hicolor/22x22/status/smartphoneconnected.svg share/icons/hicolor/22x22/status/smartphonedisconnected.svg share/icons/hicolor/22x22/status/smartphonetrusted.svg share/icons/hicolor/22x22/status/tabletconnected.svg share/icons/hicolor/22x22/status/tabletdisconnected.svg share/icons/hicolor/22x22/status/tablettrusted.svg share/icons/hicolor/22x22/status/tvconnected.svg share/icons/hicolor/22x22/status/tvdisconnected.svg share/icons/hicolor/22x22/status/tvtrusted.svg share/icons/hicolor/32x32/status/laptopconnected.svg share/icons/hicolor/32x32/status/laptopdisconnected.svg share/icons/hicolor/32x32/status/laptoptrusted.svg share/icons/hicolor/32x32/status/smartphoneconnected.svg share/icons/hicolor/32x32/status/smartphonedisconnected.svg share/icons/hicolor/32x32/status/smartphonetrusted.svg share/icons/hicolor/32x32/status/tabletconnected.svg share/icons/hicolor/32x32/status/tabletdisconnected.svg share/icons/hicolor/32x32/status/tablettrusted.svg share/icons/hicolor/32x32/status/tvconnected.svg share/icons/hicolor/32x32/status/tvdisconnected.svg share/icons/hicolor/32x32/status/tvtrusted.svg share/icons/hicolor/scalable/apps/kdeconnect.svg share/icons/hicolor/scalable/apps/kdeconnectindicator.svg share/icons/hicolor/scalable/apps/kdeconnectindicatordark.svg +share/kdeconnect/kdeconnect_clipboard_config.qml share/kdeconnect/kdeconnect_findthisdevice_config.qml share/kdeconnect/kdeconnect_pausemusic_config.qml share/kdeconnect/kdeconnect_runcommand_config.qml share/kdeconnect/kdeconnect_sendnotifications_config.qml share/kdeconnect/kdeconnect_share_config.qml share/knotifications5/kdeconnect.notifyrc share/kservices5/kcm_kdeconnect.desktop share/kservices5/plasma-kdeconnect.desktop +share/locale/ar/LC_MESSAGES/kdeconnect-app.mo share/locale/ar/LC_MESSAGES/kdeconnect-cli.mo share/locale/ar/LC_MESSAGES/kdeconnect-core.mo +share/locale/ar/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/ar/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/ar/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ar/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ar/LC_MESSAGES/kdeconnect-kded.mo share/locale/ar/LC_MESSAGES/kdeconnect-kio.mo +share/locale/ar/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ar/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/ar/LC_MESSAGES/kdeconnect-settings.mo +share/locale/ar/LC_MESSAGES/kdeconnect-sms.mo +share/locale/ar/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo -share/locale/ast/LC_MESSAGES/kdeconnect-app.mo -share/locale/ast/LC_MESSAGES/kdeconnect-cli.mo -share/locale/ast/LC_MESSAGES/kdeconnect-fileitemaction.mo -share/locale/ast/LC_MESSAGES/kdeconnect-interfaces.mo -share/locale/ast/LC_MESSAGES/kdeconnect-kcm.mo -share/locale/ast/LC_MESSAGES/kdeconnect-kded.mo -share/locale/ast/LC_MESSAGES/kdeconnect-kio.mo -share/locale/ast/LC_MESSAGES/kdeconnect-nautilus-extension.mo -share/locale/ast/LC_MESSAGES/kdeconnect-settings.mo -share/locale/ast/LC_MESSAGES/kdeconnect-sms.mo -share/locale/ast/LC_MESSAGES/kdeconnect-urlhandler.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/az/LC_MESSAGES/kdeconnect-app.mo share/locale/az/LC_MESSAGES/kdeconnect-cli.mo share/locale/az/LC_MESSAGES/kdeconnect-core.mo share/locale/az/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/az/LC_MESSAGES/kdeconnect-indicator.mo share/locale/az/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/az/LC_MESSAGES/kdeconnect-kcm.mo share/locale/az/LC_MESSAGES/kdeconnect-kded.mo share/locale/az/LC_MESSAGES/kdeconnect-kio.mo share/locale/az/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/az/LC_MESSAGES/kdeconnect-plugins.mo share/locale/az/LC_MESSAGES/kdeconnect-settings.mo share/locale/az/LC_MESSAGES/kdeconnect-sms.mo share/locale/az/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/az/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bg/LC_MESSAGES/kdeconnect-app.mo share/locale/bg/LC_MESSAGES/kdeconnect-cli.mo share/locale/bg/LC_MESSAGES/kdeconnect-core.mo share/locale/bg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/bg/LC_MESSAGES/kdeconnect-indicator.mo share/locale/bg/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/bg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bg/LC_MESSAGES/kdeconnect-kded.mo share/locale/bg/LC_MESSAGES/kdeconnect-kio.mo share/locale/bg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/bg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bg/LC_MESSAGES/kdeconnect-settings.mo share/locale/bg/LC_MESSAGES/kdeconnect-sms.mo share/locale/bg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/bs/LC_MESSAGES/kdeconnect-cli.mo share/locale/bs/LC_MESSAGES/kdeconnect-core.mo share/locale/bs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/bs/LC_MESSAGES/kdeconnect-kded.mo share/locale/bs/LC_MESSAGES/kdeconnect-kio.mo share/locale/bs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/bs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca/LC_MESSAGES/kdeconnect-app.mo share/locale/ca/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca/LC_MESSAGES/kdeconnect-core.mo share/locale/ca/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-app.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-core.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ca@valencia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/cs/LC_MESSAGES/kdeconnect-app.mo share/locale/cs/LC_MESSAGES/kdeconnect-cli.mo share/locale/cs/LC_MESSAGES/kdeconnect-core.mo share/locale/cs/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/cs/LC_MESSAGES/kdeconnect-indicator.mo share/locale/cs/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/cs/LC_MESSAGES/kdeconnect-kcm.mo share/locale/cs/LC_MESSAGES/kdeconnect-kded.mo share/locale/cs/LC_MESSAGES/kdeconnect-kio.mo share/locale/cs/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/cs/LC_MESSAGES/kdeconnect-plugins.mo share/locale/cs/LC_MESSAGES/kdeconnect-settings.mo share/locale/cs/LC_MESSAGES/kdeconnect-sms.mo share/locale/cs/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/da/LC_MESSAGES/kdeconnect-app.mo share/locale/da/LC_MESSAGES/kdeconnect-cli.mo share/locale/da/LC_MESSAGES/kdeconnect-core.mo share/locale/da/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/da/LC_MESSAGES/kdeconnect-indicator.mo share/locale/da/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/da/LC_MESSAGES/kdeconnect-kcm.mo share/locale/da/LC_MESSAGES/kdeconnect-kded.mo share/locale/da/LC_MESSAGES/kdeconnect-kio.mo share/locale/da/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/da/LC_MESSAGES/kdeconnect-plugins.mo share/locale/da/LC_MESSAGES/kdeconnect-settings.mo share/locale/da/LC_MESSAGES/kdeconnect-sms.mo share/locale/da/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/de/LC_MESSAGES/kdeconnect-app.mo share/locale/de/LC_MESSAGES/kdeconnect-cli.mo share/locale/de/LC_MESSAGES/kdeconnect-core.mo share/locale/de/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/de/LC_MESSAGES/kdeconnect-indicator.mo share/locale/de/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/de/LC_MESSAGES/kdeconnect-kcm.mo share/locale/de/LC_MESSAGES/kdeconnect-kded.mo share/locale/de/LC_MESSAGES/kdeconnect-kio.mo share/locale/de/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/de/LC_MESSAGES/kdeconnect-plugins.mo share/locale/de/LC_MESSAGES/kdeconnect-settings.mo share/locale/de/LC_MESSAGES/kdeconnect-sms.mo share/locale/de/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/el/LC_MESSAGES/kdeconnect-app.mo share/locale/el/LC_MESSAGES/kdeconnect-cli.mo share/locale/el/LC_MESSAGES/kdeconnect-core.mo share/locale/el/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/el/LC_MESSAGES/kdeconnect-indicator.mo share/locale/el/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/el/LC_MESSAGES/kdeconnect-kcm.mo share/locale/el/LC_MESSAGES/kdeconnect-kded.mo share/locale/el/LC_MESSAGES/kdeconnect-kio.mo share/locale/el/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/el/LC_MESSAGES/kdeconnect-plugins.mo share/locale/el/LC_MESSAGES/kdeconnect-settings.mo share/locale/el/LC_MESSAGES/kdeconnect-sms.mo share/locale/el/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-app.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-cli.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-core.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-indicator.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kcm.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kded.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-kio.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-plugins.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-settings.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-sms.mo share/locale/en_GB/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/es/LC_MESSAGES/kdeconnect-app.mo share/locale/es/LC_MESSAGES/kdeconnect-cli.mo share/locale/es/LC_MESSAGES/kdeconnect-core.mo share/locale/es/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/es/LC_MESSAGES/kdeconnect-indicator.mo share/locale/es/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/es/LC_MESSAGES/kdeconnect-kcm.mo share/locale/es/LC_MESSAGES/kdeconnect-kded.mo share/locale/es/LC_MESSAGES/kdeconnect-kio.mo share/locale/es/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/es/LC_MESSAGES/kdeconnect-plugins.mo share/locale/es/LC_MESSAGES/kdeconnect-settings.mo share/locale/es/LC_MESSAGES/kdeconnect-sms.mo share/locale/es/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/et/LC_MESSAGES/kdeconnect-app.mo share/locale/et/LC_MESSAGES/kdeconnect-cli.mo share/locale/et/LC_MESSAGES/kdeconnect-core.mo share/locale/et/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/et/LC_MESSAGES/kdeconnect-indicator.mo share/locale/et/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/et/LC_MESSAGES/kdeconnect-kcm.mo share/locale/et/LC_MESSAGES/kdeconnect-kded.mo share/locale/et/LC_MESSAGES/kdeconnect-kio.mo share/locale/et/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/et/LC_MESSAGES/kdeconnect-plugins.mo share/locale/et/LC_MESSAGES/kdeconnect-settings.mo share/locale/et/LC_MESSAGES/kdeconnect-sms.mo share/locale/et/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/eu/LC_MESSAGES/kdeconnect-app.mo share/locale/eu/LC_MESSAGES/kdeconnect-cli.mo share/locale/eu/LC_MESSAGES/kdeconnect-core.mo share/locale/eu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/eu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/eu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/eu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/eu/LC_MESSAGES/kdeconnect-kded.mo share/locale/eu/LC_MESSAGES/kdeconnect-kio.mo share/locale/eu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/eu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/eu/LC_MESSAGES/kdeconnect-settings.mo share/locale/eu/LC_MESSAGES/kdeconnect-sms.mo share/locale/eu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fi/LC_MESSAGES/kdeconnect-app.mo share/locale/fi/LC_MESSAGES/kdeconnect-cli.mo share/locale/fi/LC_MESSAGES/kdeconnect-core.mo share/locale/fi/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fi/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fi/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fi/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fi/LC_MESSAGES/kdeconnect-kded.mo share/locale/fi/LC_MESSAGES/kdeconnect-kio.mo share/locale/fi/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fi/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fi/LC_MESSAGES/kdeconnect-settings.mo share/locale/fi/LC_MESSAGES/kdeconnect-sms.mo share/locale/fi/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/fr/LC_MESSAGES/kdeconnect-app.mo share/locale/fr/LC_MESSAGES/kdeconnect-cli.mo share/locale/fr/LC_MESSAGES/kdeconnect-core.mo share/locale/fr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/fr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/fr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/fr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/fr/LC_MESSAGES/kdeconnect-kded.mo share/locale/fr/LC_MESSAGES/kdeconnect-kio.mo share/locale/fr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/fr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/fr/LC_MESSAGES/kdeconnect-settings.mo share/locale/fr/LC_MESSAGES/kdeconnect-sms.mo share/locale/fr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/gl/LC_MESSAGES/kdeconnect-app.mo share/locale/gl/LC_MESSAGES/kdeconnect-cli.mo share/locale/gl/LC_MESSAGES/kdeconnect-core.mo share/locale/gl/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/gl/LC_MESSAGES/kdeconnect-indicator.mo share/locale/gl/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/gl/LC_MESSAGES/kdeconnect-kcm.mo share/locale/gl/LC_MESSAGES/kdeconnect-kded.mo share/locale/gl/LC_MESSAGES/kdeconnect-kio.mo share/locale/gl/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/gl/LC_MESSAGES/kdeconnect-plugins.mo share/locale/gl/LC_MESSAGES/kdeconnect-settings.mo share/locale/gl/LC_MESSAGES/kdeconnect-sms.mo share/locale/gl/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/he/LC_MESSAGES/kdeconnect-core.mo share/locale/he/LC_MESSAGES/kdeconnect-kcm.mo share/locale/he/LC_MESSAGES/kdeconnect-kded.mo share/locale/he/LC_MESSAGES/kdeconnect-kio.mo share/locale/he/LC_MESSAGES/kdeconnect-plugins.mo share/locale/he/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/hu/LC_MESSAGES/kdeconnect-app.mo share/locale/hu/LC_MESSAGES/kdeconnect-cli.mo share/locale/hu/LC_MESSAGES/kdeconnect-core.mo share/locale/hu/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/hu/LC_MESSAGES/kdeconnect-indicator.mo share/locale/hu/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/hu/LC_MESSAGES/kdeconnect-kcm.mo share/locale/hu/LC_MESSAGES/kdeconnect-kded.mo share/locale/hu/LC_MESSAGES/kdeconnect-kio.mo share/locale/hu/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/hu/LC_MESSAGES/kdeconnect-plugins.mo share/locale/hu/LC_MESSAGES/kdeconnect-settings.mo share/locale/hu/LC_MESSAGES/kdeconnect-sms.mo share/locale/hu/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/hu/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ia/LC_MESSAGES/kdeconnect-app.mo share/locale/ia/LC_MESSAGES/kdeconnect-cli.mo share/locale/ia/LC_MESSAGES/kdeconnect-core.mo share/locale/ia/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ia/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ia/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ia/LC_MESSAGES/kdeconnect-kcm.mo share/locale/ia/LC_MESSAGES/kdeconnect-kded.mo share/locale/ia/LC_MESSAGES/kdeconnect-kio.mo share/locale/ia/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/ia/LC_MESSAGES/kdeconnect-plugins.mo share/locale/ia/LC_MESSAGES/kdeconnect-settings.mo share/locale/ia/LC_MESSAGES/kdeconnect-sms.mo share/locale/ia/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/id/LC_MESSAGES/kdeconnect-app.mo share/locale/id/LC_MESSAGES/kdeconnect-cli.mo share/locale/id/LC_MESSAGES/kdeconnect-core.mo share/locale/id/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/id/LC_MESSAGES/kdeconnect-indicator.mo share/locale/id/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/id/LC_MESSAGES/kdeconnect-kcm.mo share/locale/id/LC_MESSAGES/kdeconnect-kded.mo share/locale/id/LC_MESSAGES/kdeconnect-kio.mo share/locale/id/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/id/LC_MESSAGES/kdeconnect-plugins.mo share/locale/id/LC_MESSAGES/kdeconnect-settings.mo share/locale/id/LC_MESSAGES/kdeconnect-sms.mo share/locale/id/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/id/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/is/LC_MESSAGES/kdeconnect-app.mo share/locale/is/LC_MESSAGES/kdeconnect-cli.mo share/locale/is/LC_MESSAGES/kdeconnect-core.mo share/locale/is/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/is/LC_MESSAGES/kdeconnect-indicator.mo share/locale/is/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/is/LC_MESSAGES/kdeconnect-kcm.mo share/locale/is/LC_MESSAGES/kdeconnect-kded.mo share/locale/is/LC_MESSAGES/kdeconnect-kio.mo share/locale/is/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/is/LC_MESSAGES/kdeconnect-plugins.mo share/locale/is/LC_MESSAGES/kdeconnect-settings.mo share/locale/is/LC_MESSAGES/kdeconnect-sms.mo share/locale/is/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/is/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/it/LC_MESSAGES/kdeconnect-app.mo share/locale/it/LC_MESSAGES/kdeconnect-cli.mo share/locale/it/LC_MESSAGES/kdeconnect-core.mo share/locale/it/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/it/LC_MESSAGES/kdeconnect-indicator.mo share/locale/it/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/it/LC_MESSAGES/kdeconnect-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/ka/LC_MESSAGES/kdeconnect-app.mo +share/locale/ka/LC_MESSAGES/kdeconnect-cli.mo +share/locale/ka/LC_MESSAGES/kdeconnect-core.mo +share/locale/ka/LC_MESSAGES/kdeconnect-fileitemaction.mo +share/locale/ka/LC_MESSAGES/kdeconnect-indicator.mo +share/locale/ka/LC_MESSAGES/kdeconnect-interfaces.mo +share/locale/ka/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/ka/LC_MESSAGES/kdeconnect-kded.mo +share/locale/ka/LC_MESSAGES/kdeconnect-kio.mo +share/locale/ka/LC_MESSAGES/kdeconnect-nautilus-extension.mo +share/locale/ka/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/ka/LC_MESSAGES/kdeconnect-sms.mo +share/locale/ka/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/ko/LC_MESSAGES/kdeconnect-app.mo share/locale/ko/LC_MESSAGES/kdeconnect-cli.mo share/locale/ko/LC_MESSAGES/kdeconnect-core.mo share/locale/ko/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/ko/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ko/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ko/LC_MESSAGES/kdeconnect-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/sr@ijekavian/LC_MESSAGES/kdeconnect-cli.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-core.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kded.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-kio.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-cli.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-core.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kded.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-kio.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-cli.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-core.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-kded.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-kio.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-plugins.mo +share/locale/sr@latin/LC_MESSAGES/kdeconnect-urlhandler.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/sv/LC_MESSAGES/kdeconnect-app.mo share/locale/sv/LC_MESSAGES/kdeconnect-cli.mo share/locale/sv/LC_MESSAGES/kdeconnect-core.mo share/locale/sv/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/sv/LC_MESSAGES/kdeconnect-indicator.mo share/locale/sv/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/sv/LC_MESSAGES/kdeconnect-kcm.mo share/locale/sv/LC_MESSAGES/kdeconnect-kded.mo share/locale/sv/LC_MESSAGES/kdeconnect-kio.mo share/locale/sv/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/sv/LC_MESSAGES/kdeconnect-plugins.mo share/locale/sv/LC_MESSAGES/kdeconnect-settings.mo share/locale/sv/LC_MESSAGES/kdeconnect-sms.mo share/locale/sv/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo +share/locale/ta/LC_MESSAGES/kdeconnect-app.mo share/locale/ta/LC_MESSAGES/kdeconnect-core.mo share/locale/ta/LC_MESSAGES/kdeconnect-indicator.mo share/locale/ta/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/ta/LC_MESSAGES/kdeconnect-kcm.mo +share/locale/ta/LC_MESSAGES/kdeconnect-kio.mo share/locale/ta/LC_MESSAGES/kdeconnect-settings.mo share/locale/ta/LC_MESSAGES/kdeconnect-sms.mo share/locale/tg/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tg/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tg/LC_MESSAGES/kdeconnect-kded.mo share/locale/tg/LC_MESSAGES/kdeconnect-kio.mo share/locale/tg/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tg/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tg/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tg/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/tr/LC_MESSAGES/kdeconnect-app.mo share/locale/tr/LC_MESSAGES/kdeconnect-cli.mo share/locale/tr/LC_MESSAGES/kdeconnect-core.mo share/locale/tr/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/tr/LC_MESSAGES/kdeconnect-indicator.mo share/locale/tr/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/tr/LC_MESSAGES/kdeconnect-kcm.mo share/locale/tr/LC_MESSAGES/kdeconnect-kded.mo share/locale/tr/LC_MESSAGES/kdeconnect-kio.mo share/locale/tr/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/tr/LC_MESSAGES/kdeconnect-plugins.mo share/locale/tr/LC_MESSAGES/kdeconnect-settings.mo share/locale/tr/LC_MESSAGES/kdeconnect-sms.mo share/locale/tr/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/uk/LC_MESSAGES/kdeconnect-app.mo share/locale/uk/LC_MESSAGES/kdeconnect-cli.mo share/locale/uk/LC_MESSAGES/kdeconnect-core.mo share/locale/uk/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/uk/LC_MESSAGES/kdeconnect-indicator.mo share/locale/uk/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/uk/LC_MESSAGES/kdeconnect-kcm.mo share/locale/uk/LC_MESSAGES/kdeconnect-kded.mo share/locale/uk/LC_MESSAGES/kdeconnect-kio.mo share/locale/uk/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/uk/LC_MESSAGES/kdeconnect-plugins.mo share/locale/uk/LC_MESSAGES/kdeconnect-settings.mo share/locale/uk/LC_MESSAGES/kdeconnect-sms.mo share/locale/uk/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_CN/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-app.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-cli.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-core.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-fileitemaction.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-indicator.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-interfaces.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kcm.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kded.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-kio.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-nautilus-extension.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-plugins.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-settings.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-sms.mo share/locale/zh_TW/LC_MESSAGES/kdeconnect-urlhandler.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.kdeconnect.mo share/metainfo/org.kde.kdeconnect.appdata.xml share/metainfo/org.kde.kdeconnect.metainfo.xml share/nautilus-python/extensions/kdeconnect-share.py share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Battery.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/CompactRepresentation.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Connectivity.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/DeviceDelegate.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FindMyPhone.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/FullRepresentation.qml +share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Photo.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/RemoteCommands.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/SMS.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Sftp.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/Share.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/VirtualMonitor.qml share/plasma/plasmoids/org.kde.kdeconnect/contents/ui/main.qml share/plasma/plasmoids/org.kde.kdeconnect/metadata.desktop share/plasma/plasmoids/org.kde.kdeconnect/metadata.json share/qlogging-categories5/kdeconnect-kde.categories share/zsh/site-functions/_kdeconnect diff --git a/deskutils/kdepim-addons/distinfo b/deskutils/kdepim-addons/distinfo index ae8e0a0ffc3f..c459461cd049 100644 --- a/deskutils/kdepim-addons/distinfo +++ b/deskutils/kdepim-addons/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539601 -SHA256 (KDE/release-service/22.08.3/kdepim-addons-22.08.3.tar.xz) = 4e012cb11a1c5f2105f84e95acb094dd8ef7d4a8c35b10fd268f40fba64f8e72 -SIZE (KDE/release-service/22.08.3/kdepim-addons-22.08.3.tar.xz) = 2301376 +TIMESTAMP = 1670513247 +SHA256 (KDE/release-service/22.12.0/kdepim-addons-22.12.0.tar.xz) = 90471f1a0e1076064bed0efa3e4e261db0dc893ba9243c7eaab95426695ea2b0 +SIZE (KDE/release-service/22.12.0/kdepim-addons-22.12.0.tar.xz) = 2663352 diff --git a/deskutils/kdepim-addons/pkg-plist b/deskutils/kdepim-addons/pkg-plist index bcb515bbb8ec..19dd157db466 100644 --- a/deskutils/kdepim-addons/pkg-plist +++ b/deskutils/kdepim-addons/pkg-plist @@ -1,1085 +1,1235 @@ 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/libadblocklibprivate.so.5 lib/libadblocklibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadidatasetools.so.5 lib/libakonadidatasetools.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libdkimverifyconfigure.so.5 lib/libdkimverifyconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexpireaccounttrashfolderconfig.so.5 lib/libexpireaccounttrashfolderconfig.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderconfiguresettings.so.5 lib/libfolderconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libgrammarcommon.so.5 lib/libgrammarcommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkaddressbookmergelibprivate.so.5 lib/libkaddressbookmergelibprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailconfirmbeforedeleting.so.5 lib/libkmailconfirmbeforedeleting.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailgrammalecte.so.5 lib/libkmailgrammalecte.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmaillanguagetool.so.5 lib/libkmaillanguagetool.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailmarkdown.so.5 lib/libkmailmarkdown.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmailquicktextpluginprivate.so.5 lib/libkmailquicktextpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libopenurlwithconfigure.so.5 lib/libopenurlwithconfigure.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libscamconfiguresettings.so.5 lib/libscamconfiguresettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libshorturlpluginprivate.so.5 lib/libshorturlpluginprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% -%%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim5/akonadi/emailaddressselectionldapdialogplugin.so %%QT_PLUGINDIR%%/pim5/contacteditor/editorpageplugins/cryptopageplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv1importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/evolutionv2importerplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/gearyimporterplugin.so %%QT_PLUGINDIR%%/pim5/importwizard/operaimporterplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportcsvplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportgmxplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportldapplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportldifplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportvcardplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/importexportplugin/kaddressbook_importexportwindowscontactplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_checkgravatarplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_mergecontactsplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_searchduplicatesplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_sendmailplugin.so %%QT_PLUGINDIR%%/pim5/kaddressbook/mainview/kaddressbook_sendvcardsplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_akonadidatabasetoolplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_antispamplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_antivirusplugin.so %%QT_PLUGINDIR%%/pim5/kmail/mainview/kmail_expertplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_automaticaddcontactseditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_checkbeforesendeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugincheckbeforesend/kmail_confirmaddresseditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_autocorrectioneditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_changecaseeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertemaileditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertshorturleditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_insertspecialcharactereditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_nonbreakingspaceeditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_quicktextplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_sharetexteditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditor/kmail_zoomtexteditorplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorconverttext/kmail_markdownplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorgrammar/kmail_grammalecteplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorgrammar/kmail_languagetoolplugin.so %%QT_PLUGINDIR%%/pim5/kmail/plugineditorinit/kmail_externalcomposereditorplugin.so %%QT_PLUGINDIR%%/pim5/korganizer/datenums.so %%QT_PLUGINDIR%%/pim5/korganizer/lunarphases.so %%QT_PLUGINDIR%%/pim5/korganizer/picoftheday.so %%QT_PLUGINDIR%%/pim5/korganizer/thisdayinhistory.so %%QT_PLUGINDIR%%/pim5/libksieve/emaillineeditplugin.so %%QT_PLUGINDIR%%/pim5/libksieve/imapfoldercompletionplugin.so +%%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_sendplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_gnupgwks.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_application_mstnef.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_pkpass.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_semantic.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_calendar.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_highlighter.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_markdown.so %%QT_PLUGINDIR%%/pim5/messageviewer/bodypartformatter/messageviewer_bodypartformatter_text_vcard.so %%QT_PLUGINDIR%%/pim5/messageviewer/checkbeforedeleting/kmail_confirmbeforedeletingplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_dkimconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_expireaccounttrashfolderconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_folderconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_gravatarconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_openurlwithconfigplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/configuresettings/messageviewer_scamconfiguresettingsplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/grantlee/5.0/kitinerary_grantlee_extension.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_briefheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_fancyheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_grantleeheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_longheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_standardsheaderstyleplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewercommonplugin/messageviewer_expandurlplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewercommonplugin/messageviewer_translatorplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createeventplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createnoteplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_createtodoplugin.so %%QT_PLUGINDIR%%/pim5/messageviewer/viewerplugin/messageviewer_externalscriptplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/customtools/pimcommon_translatorplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_isgdshorturlengineplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_tinyurlengineplugin.so %%QT_PLUGINDIR%%/pim5/pimcommon/shorturlengine/pimcommon_triopabshorturlengineplugin.so %%QT_PLUGINDIR%%/pim5/templateparser/templateparseraddressrequesterplugin.so %%QT_PLUGINDIR%%/pim5/webengineviewer/urlinterceptor/webengineviewer_adblockplugin.so %%QT_PLUGINDIR%%/pim5/webengineviewer/urlinterceptor/webengineviewer_donottrackplugin.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents.so %%QT_PLUGINDIR%%/plasmacalendarplugins/pimevents/PimEventsConfig.qml %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/libpimcalendarsplugin.so %%QT_QMLDIR%%/org/kde/plasma/PimCalendars/qmldir share/icons/hicolor/scalable/status/moon-phase-first-quarter.svg share/icons/hicolor/scalable/status/moon-phase-full.svg share/icons/hicolor/scalable/status/moon-phase-last-quarter.svg share/icons/hicolor/scalable/status/moon-phase-new.svg share/kconf_update/languagetool_kmail.upd share/kconf_update/webengineurlinterceptoradblock.upd +share/locale/af/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/af/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/cryptopageplugin.mo share/locale/ar/LC_MESSAGES/customtoolsplugin.mo share/locale/ar/LC_MESSAGES/importwizard_plugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ar/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/ar/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ar/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ar/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ar/LC_MESSAGES/kmail_plugins.mo share/locale/ar/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ar/LC_MESSAGES/korganizer_plugins.mo share/locale/ar/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ar/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ar/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ar/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ar/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ar/LC_MESSAGES/messageviewerplugins.mo share/locale/ar/LC_MESSAGES/pimeventsplugin.mo share/locale/ar/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ar/LC_MESSAGES/webengineurlinterceptor.mo share/locale/az/LC_MESSAGES/cryptopageplugin.mo share/locale/az/LC_MESSAGES/customtoolsplugin.mo share/locale/az/LC_MESSAGES/importwizard_plugins.mo share/locale/az/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/az/LC_MESSAGES/kaddressbook_plugins.mo share/locale/az/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/az/LC_MESSAGES/kmail_editor_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/az/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/az/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/az/LC_MESSAGES/kmail_plugins.mo +share/locale/az/LC_MESSAGES/kmailtransport_plugins.mo share/locale/az/LC_MESSAGES/korganizer_plugins.mo +share/locale/az/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo +share/locale/az/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/az/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/az/LC_MESSAGES/messageviewer_semantic_plugin.mo +share/locale/az/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/az/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/az/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo +share/locale/az/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/az/LC_MESSAGES/messageviewerplugins.mo share/locale/az/LC_MESSAGES/pimeventsplugin.mo +share/locale/az/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/az/LC_MESSAGES/webengineurlinterceptor.mo share/locale/be/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/be/LC_MESSAGES/korganizer_plugins.mo share/locale/be/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/be/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/cryptopageplugin.mo share/locale/bg/LC_MESSAGES/customtoolsplugin.mo share/locale/bg/LC_MESSAGES/importwizard_plugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bg/LC_MESSAGES/kaddressbook_plugins.mo share/locale/bg/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editor_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/bg/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/bg/LC_MESSAGES/kmail_plugins.mo share/locale/bg/LC_MESSAGES/kmailtransport_plugins.mo share/locale/bg/LC_MESSAGES/korganizer_plugins.mo share/locale/bg/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/bg/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bg/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/bg/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/bg/LC_MESSAGES/messageviewerplugins.mo share/locale/bg/LC_MESSAGES/pimeventsplugin.mo share/locale/bg/LC_MESSAGES/sieveeditor_plugins.mo share/locale/bg/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/bn/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/br/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/br/LC_MESSAGES/korganizer_plugins.mo +share/locale/br/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/br/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/bs/LC_MESSAGES/cryptopageplugin.mo share/locale/bs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/bs/LC_MESSAGES/korganizer_plugins.mo share/locale/bs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/bs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/cryptopageplugin.mo share/locale/ca/LC_MESSAGES/customtoolsplugin.mo share/locale/ca/LC_MESSAGES/importwizard_plugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca/LC_MESSAGES/kmail_plugins.mo share/locale/ca/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca/LC_MESSAGES/korganizer_plugins.mo share/locale/ca/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca/LC_MESSAGES/messageviewerplugins.mo share/locale/ca/LC_MESSAGES/pimeventsplugin.mo share/locale/ca/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ca@valencia/LC_MESSAGES/cryptopageplugin.mo share/locale/ca@valencia/LC_MESSAGES/customtoolsplugin.mo share/locale/ca@valencia/LC_MESSAGES/importwizard_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ca@valencia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmail_plugins.mo share/locale/ca@valencia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ca@valencia/LC_MESSAGES/korganizer_plugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ca@valencia/LC_MESSAGES/messageviewerplugins.mo share/locale/ca@valencia/LC_MESSAGES/pimeventsplugin.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ca@valencia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/cs/LC_MESSAGES/cryptopageplugin.mo share/locale/cs/LC_MESSAGES/customtoolsplugin.mo share/locale/cs/LC_MESSAGES/importwizard_plugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/cs/LC_MESSAGES/kaddressbook_plugins.mo share/locale/cs/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editor_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/cs/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/cs/LC_MESSAGES/kmail_plugins.mo share/locale/cs/LC_MESSAGES/kmailtransport_plugins.mo share/locale/cs/LC_MESSAGES/korganizer_plugins.mo share/locale/cs/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/cs/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/cs/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/cs/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/cs/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/cs/LC_MESSAGES/messageviewerplugins.mo share/locale/cs/LC_MESSAGES/pimeventsplugin.mo share/locale/cs/LC_MESSAGES/sieveeditor_plugins.mo share/locale/cs/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/cy/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/cy/LC_MESSAGES/korganizer_plugins.mo +share/locale/cy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/cryptopageplugin.mo share/locale/da/LC_MESSAGES/customtoolsplugin.mo share/locale/da/LC_MESSAGES/importwizard_plugins.mo share/locale/da/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/da/LC_MESSAGES/kaddressbook_plugins.mo share/locale/da/LC_MESSAGES/kmail_editor_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/da/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/da/LC_MESSAGES/kmail_plugins.mo share/locale/da/LC_MESSAGES/kmailtransport_plugins.mo share/locale/da/LC_MESSAGES/korganizer_plugins.mo share/locale/da/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/da/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/da/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/da/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/da/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/da/LC_MESSAGES/messageviewerplugins.mo share/locale/da/LC_MESSAGES/pimeventsplugin.mo share/locale/da/LC_MESSAGES/sieveeditor_plugins.mo share/locale/da/LC_MESSAGES/webengineurlinterceptor.mo share/locale/de/LC_MESSAGES/cryptopageplugin.mo share/locale/de/LC_MESSAGES/customtoolsplugin.mo share/locale/de/LC_MESSAGES/importwizard_plugins.mo share/locale/de/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/de/LC_MESSAGES/kaddressbook_plugins.mo share/locale/de/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/de/LC_MESSAGES/kmail_editor_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/de/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/de/LC_MESSAGES/kmail_plugins.mo share/locale/de/LC_MESSAGES/kmailtransport_plugins.mo share/locale/de/LC_MESSAGES/korganizer_plugins.mo share/locale/de/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/de/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/de/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/de/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/de/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/de/LC_MESSAGES/messageviewerplugins.mo share/locale/de/LC_MESSAGES/pimeventsplugin.mo share/locale/de/LC_MESSAGES/sieveeditor_plugins.mo share/locale/de/LC_MESSAGES/webengineurlinterceptor.mo share/locale/el/LC_MESSAGES/cryptopageplugin.mo share/locale/el/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/el/LC_MESSAGES/korganizer_plugins.mo share/locale/el/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/el/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/cryptopageplugin.mo share/locale/en_GB/LC_MESSAGES/customtoolsplugin.mo share/locale/en_GB/LC_MESSAGES/importwizard_plugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/en_GB/LC_MESSAGES/kaddressbook_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editor_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/en_GB/LC_MESSAGES/kmail_plugins.mo share/locale/en_GB/LC_MESSAGES/kmailtransport_plugins.mo share/locale/en_GB/LC_MESSAGES/korganizer_plugins.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/en_GB/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/en_GB/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/en_GB/LC_MESSAGES/messageviewerplugins.mo share/locale/en_GB/LC_MESSAGES/pimeventsplugin.mo share/locale/en_GB/LC_MESSAGES/sieveeditor_plugins.mo share/locale/en_GB/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eo/LC_MESSAGES/cryptopageplugin.mo share/locale/eo/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eo/LC_MESSAGES/korganizer_plugins.mo share/locale/eo/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/eo/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/cryptopageplugin.mo share/locale/es/LC_MESSAGES/customtoolsplugin.mo share/locale/es/LC_MESSAGES/importwizard_plugins.mo share/locale/es/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/es/LC_MESSAGES/kaddressbook_plugins.mo share/locale/es/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/es/LC_MESSAGES/kmail_editor_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/es/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/es/LC_MESSAGES/kmail_plugins.mo share/locale/es/LC_MESSAGES/kmailtransport_plugins.mo share/locale/es/LC_MESSAGES/korganizer_plugins.mo share/locale/es/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/es/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/es/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/es/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/es/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/es/LC_MESSAGES/messageviewerplugins.mo share/locale/es/LC_MESSAGES/pimeventsplugin.mo share/locale/es/LC_MESSAGES/sieveeditor_plugins.mo share/locale/es/LC_MESSAGES/webengineurlinterceptor.mo share/locale/et/LC_MESSAGES/cryptopageplugin.mo share/locale/et/LC_MESSAGES/customtoolsplugin.mo share/locale/et/LC_MESSAGES/importwizard_plugins.mo share/locale/et/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/et/LC_MESSAGES/kaddressbook_plugins.mo share/locale/et/LC_MESSAGES/kmail_editor_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/et/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/et/LC_MESSAGES/kmail_plugins.mo share/locale/et/LC_MESSAGES/kmailtransport_plugins.mo share/locale/et/LC_MESSAGES/korganizer_plugins.mo share/locale/et/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/et/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/et/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/et/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/et/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/et/LC_MESSAGES/messageviewerplugins.mo share/locale/et/LC_MESSAGES/pimeventsplugin.mo share/locale/et/LC_MESSAGES/sieveeditor_plugins.mo share/locale/et/LC_MESSAGES/webengineurlinterceptor.mo share/locale/eu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/eu/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/eu/LC_MESSAGES/kmail_plugins.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/eu/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/eu/LC_MESSAGES/messageviewerplugins.mo share/locale/eu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fa/LC_MESSAGES/korganizer_plugins.mo share/locale/fa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/cryptopageplugin.mo share/locale/fi/LC_MESSAGES/customtoolsplugin.mo share/locale/fi/LC_MESSAGES/importwizard_plugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fi/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fi/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fi/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fi/LC_MESSAGES/kmail_plugins.mo share/locale/fi/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fi/LC_MESSAGES/korganizer_plugins.mo share/locale/fi/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fi/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fi/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fi/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fi/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fi/LC_MESSAGES/messageviewerplugins.mo share/locale/fi/LC_MESSAGES/pimeventsplugin.mo share/locale/fi/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fi/LC_MESSAGES/webengineurlinterceptor.mo share/locale/fr/LC_MESSAGES/cryptopageplugin.mo share/locale/fr/LC_MESSAGES/customtoolsplugin.mo share/locale/fr/LC_MESSAGES/importwizard_plugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/fr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/fr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/fr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/fr/LC_MESSAGES/kmail_plugins.mo share/locale/fr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/fr/LC_MESSAGES/korganizer_plugins.mo share/locale/fr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/fr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/fr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/fr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/fr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/fr/LC_MESSAGES/messageviewerplugins.mo share/locale/fr/LC_MESSAGES/pimeventsplugin.mo share/locale/fr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/fr/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/fy/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/fy/LC_MESSAGES/korganizer_plugins.mo +share/locale/fy/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/fy/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ga/LC_MESSAGES/cryptopageplugin.mo share/locale/ga/LC_MESSAGES/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/hne/LC_MESSAGES/korganizer_plugins.mo +share/locale/hne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/hne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hr/LC_MESSAGES/korganizer_plugins.mo +share/locale/hsb/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/cryptopageplugin.mo share/locale/hu/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/hu/LC_MESSAGES/korganizer_plugins.mo share/locale/hu/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/hu/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/hu/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ia/LC_MESSAGES/cryptopageplugin.mo share/locale/ia/LC_MESSAGES/customtoolsplugin.mo share/locale/ia/LC_MESSAGES/importwizard_plugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ia/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ia/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ia/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ia/LC_MESSAGES/kmail_plugins.mo share/locale/ia/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ia/LC_MESSAGES/korganizer_plugins.mo share/locale/ia/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ia/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ia/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ia/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ia/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ia/LC_MESSAGES/messageviewerplugins.mo share/locale/ia/LC_MESSAGES/pimeventsplugin.mo share/locale/ia/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ia/LC_MESSAGES/webengineurlinterceptor.mo share/locale/is/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/is/LC_MESSAGES/korganizer_plugins.mo share/locale/is/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/is/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/cryptopageplugin.mo share/locale/it/LC_MESSAGES/customtoolsplugin.mo share/locale/it/LC_MESSAGES/importwizard_plugins.mo share/locale/it/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/it/LC_MESSAGES/kaddressbook_plugins.mo share/locale/it/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/it/LC_MESSAGES/kmail_editor_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/it/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/it/LC_MESSAGES/kmail_plugins.mo share/locale/it/LC_MESSAGES/kmailtransport_plugins.mo share/locale/it/LC_MESSAGES/korganizer_plugins.mo share/locale/it/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/it/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/it/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/it/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/it/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/it/LC_MESSAGES/messageviewerplugins.mo share/locale/it/LC_MESSAGES/pimeventsplugin.mo share/locale/it/LC_MESSAGES/sieveeditor_plugins.mo share/locale/it/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ja/LC_MESSAGES/cryptopageplugin.mo share/locale/ja/LC_MESSAGES/customtoolsplugin.mo share/locale/ja/LC_MESSAGES/importwizard_plugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ja/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ja/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ja/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ja/LC_MESSAGES/kmail_plugins.mo share/locale/ja/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ja/LC_MESSAGES/korganizer_plugins.mo share/locale/ja/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ja/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ja/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ja/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ja/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ja/LC_MESSAGES/messageviewerplugins.mo share/locale/ja/LC_MESSAGES/pimeventsplugin.mo share/locale/ja/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ja/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/ka/LC_MESSAGES/cryptopageplugin.mo +share/locale/ka/LC_MESSAGES/customtoolsplugin.mo +share/locale/ka/LC_MESSAGES/importwizard_plugins.mo +share/locale/ka/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/ka/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_editorconvertertext_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_editorgrammar_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/ka/LC_MESSAGES/kmail_plugins.mo +share/locale/ka/LC_MESSAGES/kmailtransport_plugins.mo +share/locale/ka/LC_MESSAGES/korganizer_plugins.mo +share/locale/ka/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo +share/locale/ka/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/ka/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/ka/LC_MESSAGES/messageviewer_semantic_plugin.mo +share/locale/ka/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/ka/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ka/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo +share/locale/ka/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/ka/LC_MESSAGES/messageviewerplugins.mo +share/locale/ka/LC_MESSAGES/pimeventsplugin.mo +share/locale/ka/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/ka/LC_MESSAGES/webengineurlinterceptor.mo share/locale/kk/LC_MESSAGES/cryptopageplugin.mo share/locale/kk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/kk/LC_MESSAGES/korganizer_plugins.mo share/locale/kk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/kk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/km/LC_MESSAGES/cryptopageplugin.mo share/locale/km/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/km/LC_MESSAGES/korganizer_plugins.mo share/locale/km/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/km/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/cryptopageplugin.mo share/locale/ko/LC_MESSAGES/customtoolsplugin.mo share/locale/ko/LC_MESSAGES/importwizard_plugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ko/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ko/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ko/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ko/LC_MESSAGES/kmail_plugins.mo share/locale/ko/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ko/LC_MESSAGES/korganizer_plugins.mo share/locale/ko/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ko/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ko/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ko/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ko/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ko/LC_MESSAGES/messageviewerplugins.mo share/locale/ko/LC_MESSAGES/pimeventsplugin.mo share/locale/ko/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ko/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lt/LC_MESSAGES/cryptopageplugin.mo share/locale/lt/LC_MESSAGES/customtoolsplugin.mo share/locale/lt/LC_MESSAGES/importwizard_plugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/lt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/lt/LC_MESSAGES/kmail_plugins.mo share/locale/lt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/lt/LC_MESSAGES/korganizer_plugins.mo share/locale/lt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/lt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/lt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/lt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/lt/LC_MESSAGES/messageviewerplugins.mo share/locale/lt/LC_MESSAGES/pimeventsplugin.mo share/locale/lt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/lt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/lv/LC_MESSAGES/cryptopageplugin.mo share/locale/lv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/lv/LC_MESSAGES/korganizer_plugins.mo share/locale/lv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/lv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/mai/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/mai/LC_MESSAGES/korganizer_plugins.mo +share/locale/mk/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/mk/LC_MESSAGES/korganizer_plugins.mo +share/locale/mk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/mk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/mr/LC_MESSAGES/cryptopageplugin.mo share/locale/mr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/mr/LC_MESSAGES/korganizer_plugins.mo share/locale/mr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/mr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ms/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/ms/LC_MESSAGES/korganizer_plugins.mo +share/locale/ms/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/ms/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nb/LC_MESSAGES/cryptopageplugin.mo share/locale/nb/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nb/LC_MESSAGES/korganizer_plugins.mo share/locale/nb/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nb/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nds/LC_MESSAGES/cryptopageplugin.mo share/locale/nds/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nds/LC_MESSAGES/korganizer_plugins.mo share/locale/nds/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nds/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/ne/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/ne/LC_MESSAGES/korganizer_plugins.mo +share/locale/ne/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/ne/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/cryptopageplugin.mo share/locale/nl/LC_MESSAGES/customtoolsplugin.mo share/locale/nl/LC_MESSAGES/importwizard_plugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/nl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/nl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/nl/LC_MESSAGES/kmail_plugins.mo share/locale/nl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/nl/LC_MESSAGES/korganizer_plugins.mo share/locale/nl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/nl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/nl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/nl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/nl/LC_MESSAGES/messageviewerplugins.mo share/locale/nl/LC_MESSAGES/pimeventsplugin.mo share/locale/nl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/nl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/nn/LC_MESSAGES/cryptopageplugin.mo share/locale/nn/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/nn/LC_MESSAGES/korganizer_plugins.mo share/locale/nn/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/nn/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pa/LC_MESSAGES/cryptopageplugin.mo share/locale/pa/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pa/LC_MESSAGES/korganizer_plugins.mo share/locale/pa/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pa/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/cryptopageplugin.mo share/locale/pl/LC_MESSAGES/customtoolsplugin.mo share/locale/pl/LC_MESSAGES/importwizard_plugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pl/LC_MESSAGES/kmail_plugins.mo share/locale/pl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pl/LC_MESSAGES/korganizer_plugins.mo share/locale/pl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pl/LC_MESSAGES/messageviewerplugins.mo share/locale/pl/LC_MESSAGES/pimeventsplugin.mo share/locale/pl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt/LC_MESSAGES/cryptopageplugin.mo share/locale/pt/LC_MESSAGES/customtoolsplugin.mo share/locale/pt/LC_MESSAGES/importwizard_plugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt/LC_MESSAGES/kmail_plugins.mo share/locale/pt/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt/LC_MESSAGES/korganizer_plugins.mo share/locale/pt/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt/LC_MESSAGES/messageviewerplugins.mo share/locale/pt/LC_MESSAGES/pimeventsplugin.mo share/locale/pt/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt/LC_MESSAGES/webengineurlinterceptor.mo share/locale/pt_BR/LC_MESSAGES/cryptopageplugin.mo share/locale/pt_BR/LC_MESSAGES/customtoolsplugin.mo share/locale/pt_BR/LC_MESSAGES/importwizard_plugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/pt_BR/LC_MESSAGES/kaddressbook_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editor_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmail_plugins.mo share/locale/pt_BR/LC_MESSAGES/kmailtransport_plugins.mo share/locale/pt_BR/LC_MESSAGES/korganizer_plugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/pt_BR/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/pt_BR/LC_MESSAGES/messageviewerplugins.mo share/locale/pt_BR/LC_MESSAGES/pimeventsplugin.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor_plugins.mo share/locale/pt_BR/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ro/LC_MESSAGES/cryptopageplugin.mo share/locale/ro/LC_MESSAGES/customtoolsplugin.mo share/locale/ro/LC_MESSAGES/importwizard_plugins.mo share/locale/ro/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ro/LC_MESSAGES/korganizer_plugins.mo share/locale/ro/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ro/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ro/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/cryptopageplugin.mo share/locale/ru/LC_MESSAGES/customtoolsplugin.mo share/locale/ru/LC_MESSAGES/importwizard_plugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ru/LC_MESSAGES/kaddressbook_plugins.mo share/locale/ru/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editor_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/ru/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/ru/LC_MESSAGES/kmail_plugins.mo share/locale/ru/LC_MESSAGES/kmailtransport_plugins.mo share/locale/ru/LC_MESSAGES/korganizer_plugins.mo share/locale/ru/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/ru/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ru/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ru/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/ru/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/ru/LC_MESSAGES/messageviewerplugins.mo share/locale/ru/LC_MESSAGES/pimeventsplugin.mo share/locale/ru/LC_MESSAGES/sieveeditor_plugins.mo share/locale/ru/LC_MESSAGES/webengineurlinterceptor.mo share/locale/se/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/se/LC_MESSAGES/korganizer_plugins.mo share/locale/se/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/se/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/cryptopageplugin.mo share/locale/sk/LC_MESSAGES/customtoolsplugin.mo share/locale/sk/LC_MESSAGES/importwizard_plugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sk/LC_MESSAGES/kmail_plugins.mo share/locale/sk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sk/LC_MESSAGES/korganizer_plugins.mo share/locale/sk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sk/LC_MESSAGES/messageviewerplugins.mo share/locale/sk/LC_MESSAGES/pimeventsplugin.mo share/locale/sk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sk/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sl/LC_MESSAGES/cryptopageplugin.mo share/locale/sl/LC_MESSAGES/customtoolsplugin.mo share/locale/sl/LC_MESSAGES/importwizard_plugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sl/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sl/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sl/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sl/LC_MESSAGES/kmail_plugins.mo share/locale/sl/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sl/LC_MESSAGES/korganizer_plugins.mo share/locale/sl/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sl/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sl/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sl/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sl/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sl/LC_MESSAGES/messageviewerplugins.mo share/locale/sl/LC_MESSAGES/pimeventsplugin.mo share/locale/sl/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sl/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sq/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sq/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/cryptopageplugin.mo share/locale/sr/LC_MESSAGES/customtoolsplugin.mo share/locale/sr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sr/LC_MESSAGES/kmail_plugins.mo share/locale/sr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sr/LC_MESSAGES/korganizer_plugins.mo share/locale/sr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sr/LC_MESSAGES/messageviewerplugins.mo share/locale/sr/LC_MESSAGES/pimeventsplugin.mo share/locale/sr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sr/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/sr@ijekavian/LC_MESSAGES/cryptopageplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/customtoolsplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmail_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmailtransport_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/korganizer_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_semantic_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/messageviewerplugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/pimeventsplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/sr@ijekavian/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/cryptopageplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/customtoolsplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmailtransport_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/korganizer_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_semantic_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/messageviewerplugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/pimeventsplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/sr@latin/LC_MESSAGES/cryptopageplugin.mo +share/locale/sr@latin/LC_MESSAGES/customtoolsplugin.mo +share/locale/sr@latin/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/sr@latin/LC_MESSAGES/kaddressbook_plugins.mo +share/locale/sr@latin/LC_MESSAGES/kmail_editor_plugins.mo +share/locale/sr@latin/LC_MESSAGES/kmail_editorinit_plugins.mo +share/locale/sr@latin/LC_MESSAGES/kmail_editorsendcheck_plugins.mo +share/locale/sr@latin/LC_MESSAGES/kmail_plugins.mo +share/locale/sr@latin/LC_MESSAGES/kmailtransport_plugins.mo +share/locale/sr@latin/LC_MESSAGES/korganizer_plugins.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_semantic_plugin.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/sr@latin/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/sr@latin/LC_MESSAGES/messageviewerheaderplugins.mo +share/locale/sr@latin/LC_MESSAGES/messageviewerplugins.mo +share/locale/sr@latin/LC_MESSAGES/pimeventsplugin.mo +share/locale/sr@latin/LC_MESSAGES/sieveeditor_plugins.mo +share/locale/sr@latin/LC_MESSAGES/webengineurlinterceptor.mo share/locale/sv/LC_MESSAGES/cryptopageplugin.mo share/locale/sv/LC_MESSAGES/customtoolsplugin.mo share/locale/sv/LC_MESSAGES/importwizard_plugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/sv/LC_MESSAGES/kaddressbook_plugins.mo share/locale/sv/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editor_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/sv/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/sv/LC_MESSAGES/kmail_plugins.mo share/locale/sv/LC_MESSAGES/kmailtransport_plugins.mo share/locale/sv/LC_MESSAGES/korganizer_plugins.mo share/locale/sv/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/sv/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/sv/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/sv/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/sv/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/sv/LC_MESSAGES/messageviewerplugins.mo share/locale/sv/LC_MESSAGES/pimeventsplugin.mo share/locale/sv/LC_MESSAGES/sieveeditor_plugins.mo share/locale/sv/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ta/LC_MESSAGES/importwizard_plugins.mo share/locale/ta/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ta/LC_MESSAGES/korganizer_plugins.mo share/locale/ta/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ta/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/ta/LC_MESSAGES/pimeventsplugin.mo share/locale/tg/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tg/LC_MESSAGES/korganizer_plugins.mo share/locale/tg/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tg/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/th/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/th/LC_MESSAGES/korganizer_plugins.mo +share/locale/th/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/th/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/cryptopageplugin.mo share/locale/tr/LC_MESSAGES/customtoolsplugin.mo share/locale/tr/LC_MESSAGES/importwizard_plugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/tr/LC_MESSAGES/kaddressbook_plugins.mo share/locale/tr/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editor_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/tr/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/tr/LC_MESSAGES/kmail_plugins.mo share/locale/tr/LC_MESSAGES/kmailtransport_plugins.mo share/locale/tr/LC_MESSAGES/korganizer_plugins.mo share/locale/tr/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/tr/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/tr/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/tr/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/tr/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/tr/LC_MESSAGES/messageviewerplugins.mo share/locale/tr/LC_MESSAGES/pimeventsplugin.mo share/locale/tr/LC_MESSAGES/sieveeditor_plugins.mo share/locale/tr/LC_MESSAGES/webengineurlinterceptor.mo share/locale/ug/LC_MESSAGES/cryptopageplugin.mo share/locale/ug/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/ug/LC_MESSAGES/korganizer_plugins.mo share/locale/ug/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/ug/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/cryptopageplugin.mo share/locale/uk/LC_MESSAGES/customtoolsplugin.mo share/locale/uk/LC_MESSAGES/importwizard_plugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/uk/LC_MESSAGES/kaddressbook_plugins.mo share/locale/uk/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editor_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/uk/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/uk/LC_MESSAGES/kmail_plugins.mo share/locale/uk/LC_MESSAGES/kmailtransport_plugins.mo share/locale/uk/LC_MESSAGES/korganizer_plugins.mo share/locale/uk/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/uk/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/uk/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/uk/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/uk/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/uk/LC_MESSAGES/messageviewerplugins.mo share/locale/uk/LC_MESSAGES/pimeventsplugin.mo share/locale/uk/LC_MESSAGES/sieveeditor_plugins.mo share/locale/uk/LC_MESSAGES/webengineurlinterceptor.mo +share/locale/uz/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/uz/LC_MESSAGES/korganizer_plugins.mo +share/locale/uz/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/uz/LC_MESSAGES/messageviewer_text_vcard_plugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/uz@cyrillic/LC_MESSAGES/korganizer_plugins.mo +share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_calendar_plugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/vi/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/wa/LC_MESSAGES/korganizer_plugins.mo +share/locale/xh/LC_MESSAGES/kaddressbook_importexportplugins.mo +share/locale/xh/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_CN/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_CN/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_CN/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmail_plugins.mo share/locale/zh_CN/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_CN/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_gnupgwks_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_application_mstnef_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_bodypartformatter_pkpass.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_semantic_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_calendar_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewer_text_vcard_plugin.mo share/locale/zh_CN/LC_MESSAGES/messageviewerconfiguresettingsplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerheaderplugins.mo share/locale/zh_CN/LC_MESSAGES/messageviewerplugins.mo share/locale/zh_CN/LC_MESSAGES/pimeventsplugin.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor_plugins.mo share/locale/zh_CN/LC_MESSAGES/webengineurlinterceptor.mo share/locale/zh_TW/LC_MESSAGES/cryptopageplugin.mo share/locale/zh_TW/LC_MESSAGES/customtoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/importwizard_plugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_importexportplugins.mo share/locale/zh_TW/LC_MESSAGES/kaddressbook_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_checkbeforedeleting_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editor_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorconvertertext_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorgrammar_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorinit_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_editorsendcheck_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmail_plugins.mo share/locale/zh_TW/LC_MESSAGES/kmailtransport_plugins.mo share/locale/zh_TW/LC_MESSAGES/korganizer_plugins.mo share/locale/zh_TW/LC_MESSAGES/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 95eea7bb06d3..59e1c3b68af1 100644 --- a/deskutils/kdepim-runtime/distinfo +++ b/deskutils/kdepim-runtime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539595 -SHA256 (KDE/release-service/22.08.3/kdepim-runtime-22.08.3.tar.xz) = 2313003026c756f51bc53b679cba513ed97e47b4cf2d6cfb812526e3b0f4af25 -SIZE (KDE/release-service/22.08.3/kdepim-runtime-22.08.3.tar.xz) = 1819576 +TIMESTAMP = 1670513238 +SHA256 (KDE/release-service/22.12.0/kdepim-runtime-22.12.0.tar.xz) = aba4d241def58300a19ae89e7fe732d04e7e16e878f3eb9830cd027d5003daba +SIZE (KDE/release-service/22.12.0/kdepim-runtime-22.12.0.tar.xz) = 1855304 diff --git a/deskutils/kdepim-runtime/pkg-plist b/deskutils/kdepim-runtime/pkg-plist index 07dba7517596..f5319c593979 100644 --- a/deskutils/kdepim-runtime/pkg-plist +++ b/deskutils/kdepim-runtime/pkg-plist @@ -1,1694 +1,1844 @@ bin/akonadi_akonotes_resource bin/akonadi_birthdays_resource bin/akonadi_contacts_resource bin/akonadi_davgroupware_resource bin/akonadi_ews_resource bin/akonadi_ewsmta_resource bin/akonadi_google_resource bin/akonadi_ical_resource bin/akonadi_icaldir_resource bin/akonadi_imap_resource bin/akonadi_kolab_resource bin/akonadi_maildir_resource bin/akonadi_maildispatcher_agent bin/akonadi_mbox_resource bin/akonadi_migration_agent bin/akonadi_mixedmaildir_resource bin/akonadi_newmailnotifier_agent bin/akonadi_notes_resource bin/akonadi_openxchange_resource bin/akonadi_pop3_resource bin/akonadi_tomboynotes_resource bin/akonadi_vcard_resource bin/akonadi_vcarddir_resource bin/gidmigrator lib/libakonadi-filestore.so.5 lib/libakonadi-filestore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libakonadi-singlefileresource.so.5 lib/libakonadi-singlefileresource.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libfolderarchivesettings.so.5 lib/libfolderarchivesettings.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libkmindexreader.so.5 lib/libkmindexreader.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libmaildir.so.5 lib/libmaildir.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/kio/akonadi.so %%QT_PLUGINDIR%%/pim5/akonadi/config/akonotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/birthdaysconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/contactsconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icalconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/icaldirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/maildispatcherconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mboxconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/mixedmaildirconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/newmailnotifierconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/notesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/openxchangeconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/pop3config.so %%QT_PLUGINDIR%%/pim5/akonadi/config/tomboynotesconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcardconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/vcarddirconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_ldap.so share/akonadi/accountwizard/contacts/contactswizard.desktop share/akonadi/accountwizard/contacts/contactswizard.es share/akonadi/accountwizard/contacts/contactswizard.ui share/akonadi/accountwizard/ical/icalwizard.desktop share/akonadi/accountwizard/ical/icalwizard.es share/akonadi/accountwizard/ical/icalwizard.ui share/akonadi/accountwizard/imap/imapwizard.desktop share/akonadi/accountwizard/imap/imapwizard.es share/akonadi/accountwizard/imap/imapwizard.ui share/akonadi/accountwizard/kolab/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/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/applications/org.kde.akonadi_davgroupware_resource.desktop share/applications/org.kde.akonadi_google_resource.desktop share/applications/org.kde.akonadi_imap_resource.desktop share/applications/org.kde.akonadi_kolab_resource.desktop 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/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/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_etesync_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ar/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ar/LC_MESSAGES/akonadi_google_resource.mo share/locale/ar/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ar/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ar/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ar/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ar/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ar/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ar/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ar/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ar/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ar/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ar/LC_MESSAGES/gid-migrator.mo share/locale/ar/LC_MESSAGES/kio_akonadi.mo share/locale/ar/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bg/LC_MESSAGES/accountwizard_contacts.mo share/locale/bg/LC_MESSAGES/accountwizard_ews.mo share/locale/bg/LC_MESSAGES/accountwizard_ical.mo share/locale/bg/LC_MESSAGES/accountwizard_imap.mo share/locale/bg/LC_MESSAGES/accountwizard_kolab.mo share/locale/bg/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bg/LC_MESSAGES/accountwizard_maildir.mo share/locale/bg/LC_MESSAGES/accountwizard_pop3.mo share/locale/bg/LC_MESSAGES/accountwizard_vcard.mo share/locale/bg/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bg/LC_MESSAGES/akonadi-filestore.mo share/locale/bg/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bg/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bg/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bg/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ews_resource.mo share/locale/bg/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/bg/LC_MESSAGES/akonadi_google_resource.mo share/locale/bg/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bg/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bg/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bg/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bg/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bg/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bg/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bg/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bg/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bg/LC_MESSAGES/gid-migrator.mo share/locale/bg/LC_MESSAGES/kio_akonadi.mo share/locale/bg/LC_MESSAGES/libfolderarchivesettings.mo share/locale/bs/LC_MESSAGES/accountwizard_contacts.mo share/locale/bs/LC_MESSAGES/accountwizard_ical.mo share/locale/bs/LC_MESSAGES/accountwizard_imap.mo share/locale/bs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/bs/LC_MESSAGES/accountwizard_maildir.mo share/locale/bs/LC_MESSAGES/accountwizard_pop3.mo share/locale/bs/LC_MESSAGES/accountwizard_vcard.mo share/locale/bs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/bs/LC_MESSAGES/akonadi-filestore.mo share/locale/bs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/bs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/bs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/bs/LC_MESSAGES/akonadi_google_resource.mo share/locale/bs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/bs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/bs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/bs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/bs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/bs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/bs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/bs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/bs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/bs/LC_MESSAGES/gid-migrator.mo share/locale/bs/LC_MESSAGES/kio_akonadi.mo share/locale/bs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca/LC_MESSAGES/accountwizard_ews.mo share/locale/ca/LC_MESSAGES/accountwizard_ical.mo share/locale/ca/LC_MESSAGES/accountwizard_imap.mo share/locale/ca/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca/LC_MESSAGES/akonadi-filestore.mo share/locale/ca/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca/LC_MESSAGES/gid-migrator.mo share/locale/ca/LC_MESSAGES/kio_akonadi.mo share/locale/ca/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ews.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_ical.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_imap.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ca@valencia/LC_MESSAGES/akonadi-filestore.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ca@valencia/LC_MESSAGES/gid-migrator.mo share/locale/ca@valencia/LC_MESSAGES/kio_akonadi.mo share/locale/ca@valencia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/cs/LC_MESSAGES/accountwizard_contacts.mo share/locale/cs/LC_MESSAGES/accountwizard_ews.mo share/locale/cs/LC_MESSAGES/accountwizard_ical.mo share/locale/cs/LC_MESSAGES/accountwizard_imap.mo share/locale/cs/LC_MESSAGES/accountwizard_kolab.mo share/locale/cs/LC_MESSAGES/accountwizard_mailbox.mo share/locale/cs/LC_MESSAGES/accountwizard_maildir.mo share/locale/cs/LC_MESSAGES/accountwizard_pop3.mo share/locale/cs/LC_MESSAGES/accountwizard_vcard.mo share/locale/cs/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/cs/LC_MESSAGES/akonadi-filestore.mo share/locale/cs/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/cs/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/cs/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/cs/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ews_resource.mo share/locale/cs/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/cs/LC_MESSAGES/akonadi_google_resource.mo share/locale/cs/LC_MESSAGES/akonadi_ical_resource.mo share/locale/cs/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_imap_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/cs/LC_MESSAGES/akonadi_migration_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/cs/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/cs/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/cs/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/cs/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/cs/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/cs/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/cs/LC_MESSAGES/gid-migrator.mo share/locale/cs/LC_MESSAGES/kio_akonadi.mo share/locale/cs/LC_MESSAGES/libfolderarchivesettings.mo share/locale/da/LC_MESSAGES/accountwizard_contacts.mo share/locale/da/LC_MESSAGES/accountwizard_ews.mo share/locale/da/LC_MESSAGES/accountwizard_ical.mo share/locale/da/LC_MESSAGES/accountwizard_imap.mo share/locale/da/LC_MESSAGES/accountwizard_kolab.mo share/locale/da/LC_MESSAGES/accountwizard_mailbox.mo share/locale/da/LC_MESSAGES/accountwizard_maildir.mo share/locale/da/LC_MESSAGES/accountwizard_pop3.mo share/locale/da/LC_MESSAGES/accountwizard_vcard.mo share/locale/da/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/da/LC_MESSAGES/akonadi-filestore.mo share/locale/da/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/da/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/da/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/da/LC_MESSAGES/akonadi_ews_resource.mo share/locale/da/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/da/LC_MESSAGES/akonadi_google_resource.mo share/locale/da/LC_MESSAGES/akonadi_ical_resource.mo share/locale/da/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/da/LC_MESSAGES/akonadi_imap_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/da/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/da/LC_MESSAGES/akonadi_migration_agent.mo share/locale/da/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/da/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/da/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/da/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/da/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/da/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/da/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/da/LC_MESSAGES/gid-migrator.mo share/locale/da/LC_MESSAGES/kio_akonadi.mo share/locale/da/LC_MESSAGES/libfolderarchivesettings.mo share/locale/de/LC_MESSAGES/accountwizard_contacts.mo share/locale/de/LC_MESSAGES/accountwizard_ews.mo share/locale/de/LC_MESSAGES/accountwizard_ical.mo share/locale/de/LC_MESSAGES/accountwizard_imap.mo share/locale/de/LC_MESSAGES/accountwizard_kolab.mo share/locale/de/LC_MESSAGES/accountwizard_mailbox.mo share/locale/de/LC_MESSAGES/accountwizard_maildir.mo share/locale/de/LC_MESSAGES/accountwizard_pop3.mo share/locale/de/LC_MESSAGES/accountwizard_vcard.mo share/locale/de/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/de/LC_MESSAGES/akonadi-filestore.mo share/locale/de/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/de/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/de/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/de/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/de/LC_MESSAGES/akonadi_ews_resource.mo share/locale/de/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/de/LC_MESSAGES/akonadi_google_resource.mo share/locale/de/LC_MESSAGES/akonadi_ical_resource.mo share/locale/de/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/de/LC_MESSAGES/akonadi_imap_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/de/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/de/LC_MESSAGES/akonadi_migration_agent.mo share/locale/de/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/de/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/de/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/de/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/de/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/de/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/de/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/de/LC_MESSAGES/gid-migrator.mo share/locale/de/LC_MESSAGES/kio_akonadi.mo share/locale/de/LC_MESSAGES/libfolderarchivesettings.mo share/locale/el/LC_MESSAGES/accountwizard_contacts.mo share/locale/el/LC_MESSAGES/accountwizard_ical.mo share/locale/el/LC_MESSAGES/accountwizard_imap.mo share/locale/el/LC_MESSAGES/accountwizard_kolab.mo share/locale/el/LC_MESSAGES/accountwizard_mailbox.mo share/locale/el/LC_MESSAGES/accountwizard_maildir.mo share/locale/el/LC_MESSAGES/accountwizard_pop3.mo share/locale/el/LC_MESSAGES/accountwizard_vcard.mo share/locale/el/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/el/LC_MESSAGES/akonadi-filestore.mo share/locale/el/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/el/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/el/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/el/LC_MESSAGES/akonadi_google_resource.mo share/locale/el/LC_MESSAGES/akonadi_ical_resource.mo share/locale/el/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/el/LC_MESSAGES/akonadi_imap_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/el/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/el/LC_MESSAGES/akonadi_migration_agent.mo share/locale/el/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/el/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/el/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/el/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/el/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/el/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/el/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/el/LC_MESSAGES/gid-migrator.mo share/locale/el/LC_MESSAGES/kio_akonadi.mo share/locale/el/LC_MESSAGES/libfolderarchivesettings.mo share/locale/en_GB/LC_MESSAGES/accountwizard_contacts.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ews.mo share/locale/en_GB/LC_MESSAGES/accountwizard_ical.mo share/locale/en_GB/LC_MESSAGES/accountwizard_imap.mo share/locale/en_GB/LC_MESSAGES/accountwizard_kolab.mo share/locale/en_GB/LC_MESSAGES/accountwizard_mailbox.mo share/locale/en_GB/LC_MESSAGES/accountwizard_maildir.mo share/locale/en_GB/LC_MESSAGES/accountwizard_pop3.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/en_GB/LC_MESSAGES/akonadi-filestore.mo share/locale/en_GB/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ews_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_google_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_ical_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_imap_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_migration_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/en_GB/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/en_GB/LC_MESSAGES/gid-migrator.mo share/locale/en_GB/LC_MESSAGES/kio_akonadi.mo share/locale/en_GB/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eo/LC_MESSAGES/accountwizard_imap.mo share/locale/eo/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eo/LC_MESSAGES/accountwizard_maildir.mo share/locale/eo/LC_MESSAGES/accountwizard_pop3.mo share/locale/eo/LC_MESSAGES/akonadi-filestore.mo share/locale/eo/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eo/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eo/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eo/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eo/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eo/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eo/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eo/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eo/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eo/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eo/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eo/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/accountwizard_contacts.mo share/locale/es/LC_MESSAGES/accountwizard_ews.mo share/locale/es/LC_MESSAGES/accountwizard_ical.mo share/locale/es/LC_MESSAGES/accountwizard_imap.mo share/locale/es/LC_MESSAGES/accountwizard_kolab.mo share/locale/es/LC_MESSAGES/accountwizard_mailbox.mo share/locale/es/LC_MESSAGES/accountwizard_maildir.mo share/locale/es/LC_MESSAGES/accountwizard_pop3.mo share/locale/es/LC_MESSAGES/accountwizard_vcard.mo share/locale/es/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/es/LC_MESSAGES/akonadi-filestore.mo share/locale/es/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/es/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/es/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/es/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/es/LC_MESSAGES/akonadi_ews_resource.mo share/locale/es/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/es/LC_MESSAGES/akonadi_google_resource.mo share/locale/es/LC_MESSAGES/akonadi_ical_resource.mo share/locale/es/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/es/LC_MESSAGES/akonadi_imap_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/es/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/es/LC_MESSAGES/akonadi_migration_agent.mo share/locale/es/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/es/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/es/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/es/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/es/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/es/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/es/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/es/LC_MESSAGES/gid-migrator.mo share/locale/es/LC_MESSAGES/kio_akonadi.mo share/locale/es/LC_MESSAGES/libfolderarchivesettings.mo share/locale/et/LC_MESSAGES/accountwizard_contacts.mo share/locale/et/LC_MESSAGES/accountwizard_ews.mo share/locale/et/LC_MESSAGES/accountwizard_ical.mo share/locale/et/LC_MESSAGES/accountwizard_imap.mo share/locale/et/LC_MESSAGES/accountwizard_kolab.mo share/locale/et/LC_MESSAGES/accountwizard_mailbox.mo share/locale/et/LC_MESSAGES/accountwizard_maildir.mo share/locale/et/LC_MESSAGES/accountwizard_pop3.mo share/locale/et/LC_MESSAGES/accountwizard_vcard.mo share/locale/et/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/et/LC_MESSAGES/akonadi-filestore.mo share/locale/et/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/et/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/et/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/et/LC_MESSAGES/akonadi_ews_resource.mo share/locale/et/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/et/LC_MESSAGES/akonadi_google_resource.mo share/locale/et/LC_MESSAGES/akonadi_ical_resource.mo share/locale/et/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/et/LC_MESSAGES/akonadi_imap_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/et/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/et/LC_MESSAGES/akonadi_migration_agent.mo share/locale/et/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/et/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/et/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/et/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/et/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/et/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/et/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/et/LC_MESSAGES/gid-migrator.mo share/locale/et/LC_MESSAGES/kio_akonadi.mo share/locale/et/LC_MESSAGES/libfolderarchivesettings.mo share/locale/eu/LC_MESSAGES/accountwizard_contacts.mo share/locale/eu/LC_MESSAGES/accountwizard_ews.mo share/locale/eu/LC_MESSAGES/accountwizard_ical.mo share/locale/eu/LC_MESSAGES/accountwizard_imap.mo share/locale/eu/LC_MESSAGES/accountwizard_kolab.mo share/locale/eu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/eu/LC_MESSAGES/accountwizard_maildir.mo share/locale/eu/LC_MESSAGES/accountwizard_pop3.mo share/locale/eu/LC_MESSAGES/accountwizard_vcard.mo share/locale/eu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/eu/LC_MESSAGES/akonadi-filestore.mo share/locale/eu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/eu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/eu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/eu/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ews_resource.mo share/locale/eu/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/eu/LC_MESSAGES/akonadi_google_resource.mo share/locale/eu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/eu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/eu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/eu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/eu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/eu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/eu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/eu/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/eu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/eu/LC_MESSAGES/gid-migrator.mo share/locale/eu/LC_MESSAGES/kio_akonadi.mo share/locale/eu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fi/LC_MESSAGES/accountwizard_contacts.mo share/locale/fi/LC_MESSAGES/accountwizard_ews.mo share/locale/fi/LC_MESSAGES/accountwizard_ical.mo share/locale/fi/LC_MESSAGES/accountwizard_imap.mo share/locale/fi/LC_MESSAGES/accountwizard_kolab.mo share/locale/fi/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fi/LC_MESSAGES/accountwizard_maildir.mo share/locale/fi/LC_MESSAGES/accountwizard_pop3.mo share/locale/fi/LC_MESSAGES/accountwizard_vcard.mo share/locale/fi/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fi/LC_MESSAGES/akonadi-filestore.mo share/locale/fi/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fi/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fi/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fi/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fi/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fi/LC_MESSAGES/akonadi_google_resource.mo share/locale/fi/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fi/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fi/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fi/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fi/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fi/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fi/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fi/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fi/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fi/LC_MESSAGES/gid-migrator.mo share/locale/fi/LC_MESSAGES/kio_akonadi.mo share/locale/fi/LC_MESSAGES/libfolderarchivesettings.mo share/locale/fr/LC_MESSAGES/accountwizard_contacts.mo share/locale/fr/LC_MESSAGES/accountwizard_ews.mo share/locale/fr/LC_MESSAGES/accountwizard_ical.mo share/locale/fr/LC_MESSAGES/accountwizard_imap.mo share/locale/fr/LC_MESSAGES/accountwizard_kolab.mo share/locale/fr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/fr/LC_MESSAGES/accountwizard_maildir.mo share/locale/fr/LC_MESSAGES/accountwizard_pop3.mo share/locale/fr/LC_MESSAGES/accountwizard_vcard.mo share/locale/fr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/fr/LC_MESSAGES/akonadi-filestore.mo share/locale/fr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/fr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/fr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/fr/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/fr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/fr/LC_MESSAGES/akonadi_google_resource.mo share/locale/fr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/fr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/fr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/fr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/fr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/fr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/fr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/fr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/fr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/fr/LC_MESSAGES/gid-migrator.mo share/locale/fr/LC_MESSAGES/kio_akonadi.mo share/locale/fr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ga/LC_MESSAGES/accountwizard_ical.mo share/locale/ga/LC_MESSAGES/accountwizard_imap.mo share/locale/ga/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ga/LC_MESSAGES/accountwizard_maildir.mo share/locale/ga/LC_MESSAGES/accountwizard_pop3.mo share/locale/ga/LC_MESSAGES/akonadi-filestore.mo share/locale/ga/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ga/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ga/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ga/LC_MESSAGES/akonadi_google_resource.mo share/locale/ga/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ga/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ga/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ga/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ga/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ga/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ga/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ga/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ga/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ga/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/accountwizard_contacts.mo share/locale/gl/LC_MESSAGES/accountwizard_ews.mo share/locale/gl/LC_MESSAGES/accountwizard_ical.mo share/locale/gl/LC_MESSAGES/accountwizard_imap.mo share/locale/gl/LC_MESSAGES/accountwizard_kolab.mo share/locale/gl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/gl/LC_MESSAGES/accountwizard_maildir.mo share/locale/gl/LC_MESSAGES/accountwizard_pop3.mo share/locale/gl/LC_MESSAGES/accountwizard_vcard.mo share/locale/gl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/gl/LC_MESSAGES/akonadi-filestore.mo share/locale/gl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/gl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/gl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/gl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/gl/LC_MESSAGES/akonadi_google_resource.mo share/locale/gl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/gl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/gl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/gl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/gl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/gl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/gl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/gl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/gl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/gl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/gl/LC_MESSAGES/gid-migrator.mo share/locale/gl/LC_MESSAGES/kio_akonadi.mo share/locale/gl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/he/LC_MESSAGES/accountwizard_contacts.mo share/locale/hr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hr/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/hsb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/accountwizard_contacts.mo share/locale/hu/LC_MESSAGES/accountwizard_ical.mo share/locale/hu/LC_MESSAGES/accountwizard_imap.mo share/locale/hu/LC_MESSAGES/accountwizard_mailbox.mo share/locale/hu/LC_MESSAGES/accountwizard_maildir.mo share/locale/hu/LC_MESSAGES/accountwizard_pop3.mo share/locale/hu/LC_MESSAGES/accountwizard_vcard.mo share/locale/hu/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/hu/LC_MESSAGES/akonadi-filestore.mo share/locale/hu/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/hu/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/hu/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/hu/LC_MESSAGES/akonadi_google_resource.mo share/locale/hu/LC_MESSAGES/akonadi_ical_resource.mo share/locale/hu/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_imap_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/hu/LC_MESSAGES/akonadi_migration_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/hu/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/hu/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/hu/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/hu/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/hu/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/hu/LC_MESSAGES/gid-migrator.mo share/locale/hu/LC_MESSAGES/kio_akonadi.mo share/locale/hu/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ia/LC_MESSAGES/accountwizard_contacts.mo share/locale/ia/LC_MESSAGES/accountwizard_ews.mo share/locale/ia/LC_MESSAGES/accountwizard_ical.mo share/locale/ia/LC_MESSAGES/accountwizard_imap.mo share/locale/ia/LC_MESSAGES/accountwizard_kolab.mo share/locale/ia/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ia/LC_MESSAGES/accountwizard_maildir.mo share/locale/ia/LC_MESSAGES/accountwizard_pop3.mo share/locale/ia/LC_MESSAGES/accountwizard_vcard.mo share/locale/ia/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ia/LC_MESSAGES/akonadi-filestore.mo share/locale/ia/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ia/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ia/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ia/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ia/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ia/LC_MESSAGES/akonadi_google_resource.mo share/locale/ia/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ia/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ia/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ia/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ia/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ia/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ia/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ia/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ia/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ia/LC_MESSAGES/gid-migrator.mo share/locale/ia/LC_MESSAGES/kio_akonadi.mo share/locale/ia/LC_MESSAGES/libfolderarchivesettings.mo share/locale/id/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/accountwizard_contacts.mo share/locale/it/LC_MESSAGES/accountwizard_ews.mo share/locale/it/LC_MESSAGES/accountwizard_ical.mo share/locale/it/LC_MESSAGES/accountwizard_imap.mo share/locale/it/LC_MESSAGES/accountwizard_kolab.mo share/locale/it/LC_MESSAGES/accountwizard_mailbox.mo share/locale/it/LC_MESSAGES/accountwizard_maildir.mo share/locale/it/LC_MESSAGES/accountwizard_pop3.mo share/locale/it/LC_MESSAGES/accountwizard_vcard.mo share/locale/it/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/it/LC_MESSAGES/akonadi-filestore.mo share/locale/it/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/it/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/it/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/it/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/it/LC_MESSAGES/akonadi_ews_resource.mo share/locale/it/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/it/LC_MESSAGES/akonadi_google_resource.mo share/locale/it/LC_MESSAGES/akonadi_ical_resource.mo share/locale/it/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/it/LC_MESSAGES/akonadi_imap_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/it/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/it/LC_MESSAGES/akonadi_migration_agent.mo share/locale/it/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/it/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/it/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/it/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/it/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/it/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/it/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/it/LC_MESSAGES/gid-migrator.mo share/locale/it/LC_MESSAGES/kio_akonadi.mo share/locale/it/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ja/LC_MESSAGES/accountwizard_contacts.mo share/locale/ja/LC_MESSAGES/accountwizard_ews.mo share/locale/ja/LC_MESSAGES/accountwizard_ical.mo share/locale/ja/LC_MESSAGES/accountwizard_imap.mo share/locale/ja/LC_MESSAGES/accountwizard_kolab.mo share/locale/ja/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ja/LC_MESSAGES/accountwizard_maildir.mo share/locale/ja/LC_MESSAGES/accountwizard_pop3.mo share/locale/ja/LC_MESSAGES/accountwizard_vcard.mo share/locale/ja/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ja/LC_MESSAGES/akonadi-filestore.mo share/locale/ja/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ja/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ja/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ja/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ja/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ja/LC_MESSAGES/akonadi_google_resource.mo share/locale/ja/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ja/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ja/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ja/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ja/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ja/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ja/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ja/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ja/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ja/LC_MESSAGES/gid-migrator.mo share/locale/ja/LC_MESSAGES/kio_akonadi.mo share/locale/ja/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/ka/LC_MESSAGES/accountwizard_contacts.mo +share/locale/ka/LC_MESSAGES/accountwizard_ews.mo +share/locale/ka/LC_MESSAGES/accountwizard_ical.mo +share/locale/ka/LC_MESSAGES/accountwizard_imap.mo +share/locale/ka/LC_MESSAGES/accountwizard_kolab.mo +share/locale/ka/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/ka/LC_MESSAGES/accountwizard_maildir.mo +share/locale/ka/LC_MESSAGES/accountwizard_pop3.mo +share/locale/ka/LC_MESSAGES/accountwizard_vcard.mo +share/locale/ka/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/ka/LC_MESSAGES/akonadi-filestore.mo +share/locale/ka/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_etesync_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_ews_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_google_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_mixedmaildir_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/ka/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/ka/LC_MESSAGES/gid-migrator.mo +share/locale/ka/LC_MESSAGES/kio_akonadi.mo +share/locale/ka/LC_MESSAGES/libfolderarchivesettings.mo share/locale/kk/LC_MESSAGES/accountwizard_ical.mo share/locale/kk/LC_MESSAGES/accountwizard_imap.mo share/locale/kk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/kk/LC_MESSAGES/accountwizard_maildir.mo share/locale/kk/LC_MESSAGES/accountwizard_pop3.mo share/locale/kk/LC_MESSAGES/akonadi-filestore.mo share/locale/kk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/kk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/kk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/kk/LC_MESSAGES/akonadi_google_resource.mo share/locale/kk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/kk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/kk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/kk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/kk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/kk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/kk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/kk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/kk/LC_MESSAGES/gid-migrator.mo share/locale/kk/LC_MESSAGES/kio_akonadi.mo share/locale/km/LC_MESSAGES/accountwizard_ical.mo share/locale/km/LC_MESSAGES/accountwizard_imap.mo share/locale/km/LC_MESSAGES/accountwizard_mailbox.mo share/locale/km/LC_MESSAGES/accountwizard_maildir.mo share/locale/km/LC_MESSAGES/accountwizard_pop3.mo share/locale/km/LC_MESSAGES/akonadi-filestore.mo share/locale/km/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/km/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/km/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/km/LC_MESSAGES/akonadi_google_resource.mo share/locale/km/LC_MESSAGES/akonadi_ical_resource.mo share/locale/km/LC_MESSAGES/akonadi_imap_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/km/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/km/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/km/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/km/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/km/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/km/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/km/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/accountwizard_contacts.mo share/locale/ko/LC_MESSAGES/accountwizard_ews.mo share/locale/ko/LC_MESSAGES/accountwizard_ical.mo share/locale/ko/LC_MESSAGES/accountwizard_imap.mo share/locale/ko/LC_MESSAGES/accountwizard_kolab.mo share/locale/ko/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ko/LC_MESSAGES/accountwizard_maildir.mo share/locale/ko/LC_MESSAGES/accountwizard_pop3.mo share/locale/ko/LC_MESSAGES/accountwizard_vcard.mo share/locale/ko/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ko/LC_MESSAGES/akonadi-filestore.mo share/locale/ko/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ko/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ko/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ko/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ews_resource.mo share/locale/ko/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/ko/LC_MESSAGES/akonadi_google_resource.mo share/locale/ko/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ko/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ko/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ko/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ko/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ko/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ko/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ko/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ko/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ko/LC_MESSAGES/gid-migrator.mo share/locale/ko/LC_MESSAGES/kio_akonadi.mo share/locale/ko/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lt/LC_MESSAGES/accountwizard_contacts.mo share/locale/lt/LC_MESSAGES/accountwizard_ews.mo share/locale/lt/LC_MESSAGES/accountwizard_ical.mo share/locale/lt/LC_MESSAGES/accountwizard_imap.mo share/locale/lt/LC_MESSAGES/accountwizard_kolab.mo share/locale/lt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lt/LC_MESSAGES/accountwizard_maildir.mo share/locale/lt/LC_MESSAGES/accountwizard_pop3.mo share/locale/lt/LC_MESSAGES/accountwizard_vcard.mo share/locale/lt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/lt/LC_MESSAGES/akonadi-filestore.mo share/locale/lt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/lt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/lt/LC_MESSAGES/akonadi_google_resource.mo share/locale/lt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lt/LC_MESSAGES/gid-migrator.mo share/locale/lt/LC_MESSAGES/kio_akonadi.mo share/locale/lt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/lv/LC_MESSAGES/accountwizard_ical.mo share/locale/lv/LC_MESSAGES/accountwizard_imap.mo share/locale/lv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/lv/LC_MESSAGES/accountwizard_maildir.mo share/locale/lv/LC_MESSAGES/accountwizard_pop3.mo share/locale/lv/LC_MESSAGES/akonadi-filestore.mo share/locale/lv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/lv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/lv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/lv/LC_MESSAGES/akonadi_google_resource.mo share/locale/lv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/lv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/lv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/lv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/lv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/lv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/lv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/lv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/lv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/lv/LC_MESSAGES/kio_akonadi.mo +share/locale/mai/LC_MESSAGES/accountwizard_imap.mo +share/locale/mai/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/mai/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/mai/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/accountwizard_ical.mo share/locale/mr/LC_MESSAGES/accountwizard_imap.mo share/locale/mr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/mr/LC_MESSAGES/accountwizard_maildir.mo share/locale/mr/LC_MESSAGES/accountwizard_pop3.mo share/locale/mr/LC_MESSAGES/akonadi-filestore.mo share/locale/mr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/mr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/mr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/mr/LC_MESSAGES/akonadi_google_resource.mo share/locale/mr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/mr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/mr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/mr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/mr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/mr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/mr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/mr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/mr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/mr/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/accountwizard_contacts.mo share/locale/nb/LC_MESSAGES/accountwizard_ical.mo share/locale/nb/LC_MESSAGES/accountwizard_imap.mo share/locale/nb/LC_MESSAGES/accountwizard_kolab.mo share/locale/nb/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nb/LC_MESSAGES/accountwizard_maildir.mo share/locale/nb/LC_MESSAGES/accountwizard_pop3.mo share/locale/nb/LC_MESSAGES/accountwizard_vcard.mo share/locale/nb/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nb/LC_MESSAGES/akonadi-filestore.mo share/locale/nb/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nb/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nb/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nb/LC_MESSAGES/akonadi_google_resource.mo share/locale/nb/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nb/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nb/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nb/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nb/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nb/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nb/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nb/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nb/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nb/LC_MESSAGES/gid-migrator.mo share/locale/nb/LC_MESSAGES/kio_akonadi.mo share/locale/nb/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nds/LC_MESSAGES/accountwizard_contacts.mo share/locale/nds/LC_MESSAGES/accountwizard_ical.mo share/locale/nds/LC_MESSAGES/accountwizard_imap.mo share/locale/nds/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nds/LC_MESSAGES/accountwizard_maildir.mo share/locale/nds/LC_MESSAGES/accountwizard_pop3.mo share/locale/nds/LC_MESSAGES/accountwizard_vcard.mo share/locale/nds/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nds/LC_MESSAGES/akonadi-filestore.mo share/locale/nds/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nds/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nds/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nds/LC_MESSAGES/akonadi_google_resource.mo share/locale/nds/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nds/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nds/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nds/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nds/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nds/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nds/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nds/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nds/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nds/LC_MESSAGES/gid-migrator.mo share/locale/nds/LC_MESSAGES/kio_akonadi.mo share/locale/nds/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nl/LC_MESSAGES/accountwizard_contacts.mo share/locale/nl/LC_MESSAGES/accountwizard_ews.mo share/locale/nl/LC_MESSAGES/accountwizard_ical.mo share/locale/nl/LC_MESSAGES/accountwizard_imap.mo share/locale/nl/LC_MESSAGES/accountwizard_kolab.mo share/locale/nl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nl/LC_MESSAGES/accountwizard_maildir.mo share/locale/nl/LC_MESSAGES/accountwizard_pop3.mo share/locale/nl/LC_MESSAGES/accountwizard_vcard.mo share/locale/nl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/nl/LC_MESSAGES/akonadi-filestore.mo share/locale/nl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/nl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/nl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/nl/LC_MESSAGES/akonadi_google_resource.mo share/locale/nl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/nl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/nl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nl/LC_MESSAGES/gid-migrator.mo share/locale/nl/LC_MESSAGES/kio_akonadi.mo share/locale/nl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/nn/LC_MESSAGES/accountwizard_imap.mo share/locale/nn/LC_MESSAGES/accountwizard_kolab.mo share/locale/nn/LC_MESSAGES/accountwizard_mailbox.mo share/locale/nn/LC_MESSAGES/accountwizard_maildir.mo share/locale/nn/LC_MESSAGES/accountwizard_pop3.mo share/locale/nn/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/nn/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/nn/LC_MESSAGES/akonadi_ical_resource.mo share/locale/nn/LC_MESSAGES/akonadi_imap_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/nn/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/nn/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/nn/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/nn/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/nn/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/nn/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/nn/LC_MESSAGES/kio_akonadi.mo share/locale/pa/LC_MESSAGES/accountwizard_ical.mo share/locale/pa/LC_MESSAGES/accountwizard_imap.mo share/locale/pa/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pa/LC_MESSAGES/accountwizard_maildir.mo share/locale/pa/LC_MESSAGES/accountwizard_pop3.mo share/locale/pa/LC_MESSAGES/akonadi-filestore.mo share/locale/pa/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pa/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pa/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pa/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pa/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pa/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pa/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pa/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pa/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pa/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pa/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pa/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pa/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/accountwizard_contacts.mo share/locale/pl/LC_MESSAGES/accountwizard_ews.mo share/locale/pl/LC_MESSAGES/accountwizard_ical.mo share/locale/pl/LC_MESSAGES/accountwizard_imap.mo share/locale/pl/LC_MESSAGES/accountwizard_kolab.mo share/locale/pl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pl/LC_MESSAGES/accountwizard_maildir.mo share/locale/pl/LC_MESSAGES/accountwizard_pop3.mo share/locale/pl/LC_MESSAGES/accountwizard_vcard.mo share/locale/pl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pl/LC_MESSAGES/akonadi-filestore.mo share/locale/pl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pl/LC_MESSAGES/akonadi_google_resource.mo share/locale/pl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pl/LC_MESSAGES/gid-migrator.mo share/locale/pl/LC_MESSAGES/kio_akonadi.mo share/locale/pl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt/LC_MESSAGES/accountwizard_ews.mo share/locale/pt/LC_MESSAGES/accountwizard_ical.mo share/locale/pt/LC_MESSAGES/accountwizard_imap.mo share/locale/pt/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt/LC_MESSAGES/akonadi-filestore.mo share/locale/pt/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt/LC_MESSAGES/gid-migrator.mo share/locale/pt/LC_MESSAGES/kio_akonadi.mo share/locale/pt/LC_MESSAGES/libfolderarchivesettings.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_contacts.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ews.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_ical.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_imap.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_kolab.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_mailbox.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_maildir.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_pop3.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcard.mo share/locale/pt_BR/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/pt_BR/LC_MESSAGES/akonadi-filestore.mo share/locale/pt_BR/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ews_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_google_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_ical_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_imap_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_migration_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/pt_BR/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/pt_BR/LC_MESSAGES/gid-migrator.mo share/locale/pt_BR/LC_MESSAGES/kio_akonadi.mo share/locale/pt_BR/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ro/LC_MESSAGES/accountwizard_contacts.mo share/locale/ro/LC_MESSAGES/accountwizard_ical.mo share/locale/ro/LC_MESSAGES/accountwizard_imap.mo share/locale/ro/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ro/LC_MESSAGES/accountwizard_maildir.mo share/locale/ro/LC_MESSAGES/accountwizard_pop3.mo share/locale/ro/LC_MESSAGES/accountwizard_vcard.mo share/locale/ro/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ro/LC_MESSAGES/akonadi-filestore.mo share/locale/ro/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ro/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ro/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ro/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ro/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ro/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ro/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ro/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ro/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ro/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ro/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/accountwizard_contacts.mo share/locale/ru/LC_MESSAGES/accountwizard_ews.mo share/locale/ru/LC_MESSAGES/accountwizard_ical.mo share/locale/ru/LC_MESSAGES/accountwizard_imap.mo share/locale/ru/LC_MESSAGES/accountwizard_kolab.mo share/locale/ru/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ru/LC_MESSAGES/accountwizard_maildir.mo share/locale/ru/LC_MESSAGES/accountwizard_pop3.mo share/locale/ru/LC_MESSAGES/accountwizard_vcard.mo share/locale/ru/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/ru/LC_MESSAGES/akonadi-filestore.mo share/locale/ru/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ru/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ru/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/ru/LC_MESSAGES/akonadi_etesync_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_etesync_resource.mo share/locale/ru/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ru/LC_MESSAGES/akonadi_migration_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ru/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ru/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ru/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ru/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ru/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ru/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ru/LC_MESSAGES/gid-migrator.mo share/locale/ru/LC_MESSAGES/kio_akonadi.mo share/locale/ru/LC_MESSAGES/libfolderarchivesettings.mo share/locale/se/LC_MESSAGES/accountwizard_imap.mo share/locale/se/LC_MESSAGES/accountwizard_kolab.mo share/locale/se/LC_MESSAGES/accountwizard_mailbox.mo share/locale/se/LC_MESSAGES/accountwizard_maildir.mo share/locale/se/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_contacts.mo share/locale/sk/LC_MESSAGES/accountwizard_ews.mo share/locale/sk/LC_MESSAGES/accountwizard_ical.mo share/locale/sk/LC_MESSAGES/accountwizard_imap.mo share/locale/sk/LC_MESSAGES/accountwizard_kolab.mo share/locale/sk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sk/LC_MESSAGES/accountwizard_maildir.mo share/locale/sk/LC_MESSAGES/accountwizard_pop3.mo share/locale/sk/LC_MESSAGES/accountwizard_vcard.mo share/locale/sk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sk/LC_MESSAGES/akonadi-filestore.mo share/locale/sk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sk/LC_MESSAGES/akonadi_google_resource.mo share/locale/sk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sk/LC_MESSAGES/gid-migrator.mo share/locale/sk/LC_MESSAGES/kio_akonadi.mo share/locale/sk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sl/LC_MESSAGES/accountwizard_contacts.mo share/locale/sl/LC_MESSAGES/accountwizard_ews.mo share/locale/sl/LC_MESSAGES/accountwizard_ical.mo share/locale/sl/LC_MESSAGES/accountwizard_imap.mo share/locale/sl/LC_MESSAGES/accountwizard_kolab.mo share/locale/sl/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sl/LC_MESSAGES/accountwizard_maildir.mo share/locale/sl/LC_MESSAGES/accountwizard_pop3.mo share/locale/sl/LC_MESSAGES/accountwizard_vcard.mo share/locale/sl/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sl/LC_MESSAGES/akonadi-filestore.mo share/locale/sl/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sl/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sl/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sl/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sl/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sl/LC_MESSAGES/akonadi_google_resource.mo share/locale/sl/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sl/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sl/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sl/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sl/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sl/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sl/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sl/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sl/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sl/LC_MESSAGES/gid-migrator.mo share/locale/sl/LC_MESSAGES/kio_akonadi.mo share/locale/sl/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sq/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sq/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sq/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sq/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sq/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sq/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sq/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/accountwizard_contacts.mo share/locale/sr/LC_MESSAGES/accountwizard_ews.mo share/locale/sr/LC_MESSAGES/accountwizard_ical.mo share/locale/sr/LC_MESSAGES/accountwizard_imap.mo share/locale/sr/LC_MESSAGES/accountwizard_kolab.mo share/locale/sr/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sr/LC_MESSAGES/accountwizard_maildir.mo share/locale/sr/LC_MESSAGES/accountwizard_pop3.mo share/locale/sr/LC_MESSAGES/accountwizard_vcard.mo share/locale/sr/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sr/LC_MESSAGES/akonadi-filestore.mo share/locale/sr/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sr/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sr/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sr/LC_MESSAGES/akonadi_google_resource.mo share/locale/sr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sr/LC_MESSAGES/gid-migrator.mo share/locale/sr/LC_MESSAGES/kio_akonadi.mo share/locale/sr/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_contacts.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ews.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_ical.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_imap.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_kolab.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_maildir.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_pop3.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcard.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi-filestore.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_google_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mixedmaildir_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/sr@ijekavian/LC_MESSAGES/gid-migrator.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio_akonadi.mo +share/locale/sr@ijekavian/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_contacts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ews.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_ical.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_imap.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_kolab.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_maildir.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_pop3.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi-filestore.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_google_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/gid-migrator.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_akonadi.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_contacts.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_ews.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_ical.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_imap.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_kolab.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_maildir.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_pop3.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_vcard.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_vcarddir.mo +share/locale/sr@latin/LC_MESSAGES/akonadi-filestore.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_davgroupware_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_facebook_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_google_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_ical_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_icaldir_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_imap_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_maildir_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_maildispatcher_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_mbox_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_migration_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_mixedmaildir_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_newmailnotifier_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_openxchange_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_pop3_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_singlefile_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_tomboynotes_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_vcard_resource.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_vcarddir_resource.mo +share/locale/sr@latin/LC_MESSAGES/gid-migrator.mo +share/locale/sr@latin/LC_MESSAGES/kio_akonadi.mo +share/locale/sr@latin/LC_MESSAGES/libfolderarchivesettings.mo share/locale/sv/LC_MESSAGES/accountwizard_contacts.mo share/locale/sv/LC_MESSAGES/accountwizard_ews.mo share/locale/sv/LC_MESSAGES/accountwizard_ical.mo share/locale/sv/LC_MESSAGES/accountwizard_imap.mo share/locale/sv/LC_MESSAGES/accountwizard_kolab.mo share/locale/sv/LC_MESSAGES/accountwizard_mailbox.mo share/locale/sv/LC_MESSAGES/accountwizard_maildir.mo share/locale/sv/LC_MESSAGES/accountwizard_pop3.mo share/locale/sv/LC_MESSAGES/accountwizard_vcard.mo share/locale/sv/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/sv/LC_MESSAGES/akonadi-filestore.mo share/locale/sv/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/sv/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/sv/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/sv/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ews_resource.mo share/locale/sv/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/sv/LC_MESSAGES/akonadi_google_resource.mo share/locale/sv/LC_MESSAGES/akonadi_ical_resource.mo share/locale/sv/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_imap_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/sv/LC_MESSAGES/akonadi_migration_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/sv/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/sv/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/sv/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/sv/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/sv/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/sv/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/sv/LC_MESSAGES/gid-migrator.mo share/locale/sv/LC_MESSAGES/kio_akonadi.mo share/locale/sv/LC_MESSAGES/libfolderarchivesettings.mo +share/locale/th/LC_MESSAGES/accountwizard_imap.mo +share/locale/th/LC_MESSAGES/accountwizard_mailbox.mo +share/locale/th/LC_MESSAGES/accountwizard_maildir.mo +share/locale/th/LC_MESSAGES/accountwizard_pop3.mo +share/locale/th/LC_MESSAGES/akonadi_birthdays_resource.mo +share/locale/th/LC_MESSAGES/akonadi_contacts_resource.mo +share/locale/th/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/accountwizard_contacts.mo share/locale/tr/LC_MESSAGES/accountwizard_ews.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_etesync_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ews_resource.mo share/locale/tr/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/tr/LC_MESSAGES/akonadi_google_resource.mo share/locale/tr/LC_MESSAGES/akonadi_ical_resource.mo share/locale/tr/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_imap_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/tr/LC_MESSAGES/akonadi_migration_agent.mo share/locale/tr/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/tr/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/tr/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/tr/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/tr/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/tr/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/tr/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/tr/LC_MESSAGES/gid-migrator.mo share/locale/tr/LC_MESSAGES/kio_akonadi.mo share/locale/tr/LC_MESSAGES/libfolderarchivesettings.mo share/locale/ug/LC_MESSAGES/accountwizard_ical.mo share/locale/ug/LC_MESSAGES/accountwizard_imap.mo share/locale/ug/LC_MESSAGES/accountwizard_mailbox.mo share/locale/ug/LC_MESSAGES/accountwizard_maildir.mo share/locale/ug/LC_MESSAGES/accountwizard_pop3.mo share/locale/ug/LC_MESSAGES/akonadi-filestore.mo share/locale/ug/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/ug/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/ug/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/ug/LC_MESSAGES/akonadi_google_resource.mo share/locale/ug/LC_MESSAGES/akonadi_ical_resource.mo share/locale/ug/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_imap_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/ug/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/ug/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/ug/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/ug/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/ug/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/ug/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/ug/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/accountwizard_contacts.mo share/locale/uk/LC_MESSAGES/accountwizard_ews.mo share/locale/uk/LC_MESSAGES/accountwizard_ical.mo share/locale/uk/LC_MESSAGES/accountwizard_imap.mo share/locale/uk/LC_MESSAGES/accountwizard_kolab.mo share/locale/uk/LC_MESSAGES/accountwizard_mailbox.mo share/locale/uk/LC_MESSAGES/accountwizard_maildir.mo share/locale/uk/LC_MESSAGES/accountwizard_pop3.mo share/locale/uk/LC_MESSAGES/accountwizard_vcard.mo share/locale/uk/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/uk/LC_MESSAGES/akonadi-filestore.mo share/locale/uk/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/uk/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/uk/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/uk/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ews_resource.mo share/locale/uk/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/uk/LC_MESSAGES/akonadi_google_resource.mo share/locale/uk/LC_MESSAGES/akonadi_ical_resource.mo share/locale/uk/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_imap_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/uk/LC_MESSAGES/akonadi_migration_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/uk/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/uk/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/uk/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/uk/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/uk/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/uk/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/uk/LC_MESSAGES/gid-migrator.mo share/locale/uk/LC_MESSAGES/kio_akonadi.mo share/locale/uk/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_CN/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_CN/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_CN/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_CN/LC_MESSAGES/gid-migrator.mo share/locale/zh_CN/LC_MESSAGES/kio_akonadi.mo share/locale/zh_CN/LC_MESSAGES/libfolderarchivesettings.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_contacts.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ews.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_ical.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_imap.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_kolab.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_mailbox.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_maildir.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_pop3.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_vcarddir.mo share/locale/zh_TW/LC_MESSAGES/akonadi-filestore.mo share/locale/zh_TW/LC_MESSAGES/akonadi_birthdays_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_contacts_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_davgroupware_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_etesync_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ews_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_facebook_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_google_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_ical_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_icaldir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_imap_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_maildispatcher_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mbox_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_migration_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mixedmaildir_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_newmailnotifier_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_openxchange_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_pop3_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_singlefile_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_tomboynotes_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcard_resource.mo share/locale/zh_TW/LC_MESSAGES/akonadi_vcarddir_resource.mo share/locale/zh_TW/LC_MESSAGES/gid-migrator.mo share/locale/zh_TW/LC_MESSAGES/kio_akonadi.mo share/locale/zh_TW/LC_MESSAGES/libfolderarchivesettings.mo share/mime/packages/kdepim-mime.xml share/qlogging-categories5/kdepim-runtime.categories share/qlogging-categories5/kdepim-runtime.renamecategories diff --git a/deskutils/keditbookmarks/distinfo b/deskutils/keditbookmarks/distinfo index 709c7b3ca726..6f1af42def85 100644 --- a/deskutils/keditbookmarks/distinfo +++ b/deskutils/keditbookmarks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539588 -SHA256 (KDE/release-service/22.08.3/keditbookmarks-22.08.3.tar.xz) = b35eebf5639bf67a6614083a132a1a95fa9617d2ba852ebe691cf70e61995bb3 -SIZE (KDE/release-service/22.08.3/keditbookmarks-22.08.3.tar.xz) = 204308 +TIMESTAMP = 1670513228 +SHA256 (KDE/release-service/22.12.0/keditbookmarks-22.12.0.tar.xz) = 35b142ec34e4d7ffc9a19d641c49341ed403107158f4173dcd8d833a8a1e4719 +SIZE (KDE/release-service/22.12.0/keditbookmarks-22.12.0.tar.xz) = 235532 diff --git a/deskutils/keditbookmarks/pkg-plist b/deskutils/keditbookmarks/pkg-plist index a40639d19f2b..be3c85905fe8 100644 --- a/deskutils/keditbookmarks/pkg-plist +++ b/deskutils/keditbookmarks/pkg-plist @@ -1,89 +1,111 @@ 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/sr@latin/man1/kbookmarkmerger.1.gz man/sv/man1/kbookmarkmerger.1.gz man/uk/man1/kbookmarkmerger.1.gz man/zh_CN/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/be@latin/LC_MESSAGES/keditbookmarks.mo share/locale/bg/LC_MESSAGES/keditbookmarks.mo +share/locale/bn_IN/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/csb/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/fy/LC_MESSAGES/keditbookmarks.mo share/locale/ga/LC_MESSAGES/keditbookmarks.mo share/locale/gl/LC_MESSAGES/keditbookmarks.mo +share/locale/gu/LC_MESSAGES/keditbookmarks.mo share/locale/he/LC_MESSAGES/keditbookmarks.mo share/locale/hi/LC_MESSAGES/keditbookmarks.mo +share/locale/hne/LC_MESSAGES/keditbookmarks.mo share/locale/hr/LC_MESSAGES/keditbookmarks.mo +share/locale/hsb/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/ka/LC_MESSAGES/keditbookmarks.mo share/locale/kk/LC_MESSAGES/keditbookmarks.mo share/locale/km/LC_MESSAGES/keditbookmarks.mo +share/locale/kn/LC_MESSAGES/keditbookmarks.mo share/locale/ko/LC_MESSAGES/keditbookmarks.mo +share/locale/ku/LC_MESSAGES/keditbookmarks.mo share/locale/lt/LC_MESSAGES/keditbookmarks.mo share/locale/lv/LC_MESSAGES/keditbookmarks.mo +share/locale/mai/LC_MESSAGES/keditbookmarks.mo +share/locale/mk/LC_MESSAGES/keditbookmarks.mo share/locale/ml/LC_MESSAGES/keditbookmarks.mo share/locale/mr/LC_MESSAGES/keditbookmarks.mo +share/locale/ms/LC_MESSAGES/keditbookmarks.mo share/locale/nb/LC_MESSAGES/keditbookmarks.mo share/locale/nds/LC_MESSAGES/keditbookmarks.mo +share/locale/ne/LC_MESSAGES/keditbookmarks.mo share/locale/nl/LC_MESSAGES/keditbookmarks.mo share/locale/nn/LC_MESSAGES/keditbookmarks.mo +share/locale/oc/LC_MESSAGES/keditbookmarks.mo +share/locale/or/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/si/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/sr@ijekavian/LC_MESSAGES/keditbookmarks.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/keditbookmarks.mo +share/locale/sr@latin/LC_MESSAGES/keditbookmarks.mo share/locale/sv/LC_MESSAGES/keditbookmarks.mo share/locale/ta/LC_MESSAGES/keditbookmarks.mo +share/locale/te/LC_MESSAGES/keditbookmarks.mo share/locale/tg/LC_MESSAGES/keditbookmarks.mo +share/locale/th/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 7af6a86d667f..50bacb46cd11 100644 --- a/deskutils/kfind/distinfo +++ b/deskutils/kfind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539597 -SHA256 (KDE/release-service/22.08.3/kfind-22.08.3.tar.xz) = 3fcc78876f05d67eaecd55f1db2f2c8084824e787d107e4f6a87d2f335cd5ad7 -SIZE (KDE/release-service/22.08.3/kfind-22.08.3.tar.xz) = 290148 +TIMESTAMP = 1670513242 +SHA256 (KDE/release-service/22.12.0/kfind-22.12.0.tar.xz) = 86b8dc43a89811bf105bb01e84c980b41b167374ec5961c187b9c65ac9ae5f2e +SIZE (KDE/release-service/22.12.0/kfind-22.12.0.tar.xz) = 339092 diff --git a/deskutils/kfind/pkg-plist b/deskutils/kfind/pkg-plist index 454046a29c67..ec7d7b87bd6c 100644 --- a/deskutils/kfind/pkg-plist +++ b/deskutils/kfind/pkg-plist @@ -1,90 +1,120 @@ bin/kfind 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/sr@latin/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/af/LC_MESSAGES/kfind.mo share/locale/ar/LC_MESSAGES/kfind.mo -share/locale/ast/LC_MESSAGES/kfind.mo share/locale/az/LC_MESSAGES/kfind.mo share/locale/be/LC_MESSAGES/kfind.mo +share/locale/be@latin/LC_MESSAGES/kfind.mo share/locale/bg/LC_MESSAGES/kfind.mo +share/locale/bn/LC_MESSAGES/kfind.mo +share/locale/bn_IN/LC_MESSAGES/kfind.mo +share/locale/br/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/csb/LC_MESSAGES/kfind.mo +share/locale/cy/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/fy/LC_MESSAGES/kfind.mo share/locale/ga/LC_MESSAGES/kfind.mo share/locale/gl/LC_MESSAGES/kfind.mo +share/locale/gu/LC_MESSAGES/kfind.mo share/locale/he/LC_MESSAGES/kfind.mo share/locale/hi/LC_MESSAGES/kfind.mo +share/locale/hne/LC_MESSAGES/kfind.mo share/locale/hr/LC_MESSAGES/kfind.mo +share/locale/hsb/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/ie/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/ka/LC_MESSAGES/kfind.mo share/locale/kk/LC_MESSAGES/kfind.mo share/locale/km/LC_MESSAGES/kfind.mo +share/locale/kn/LC_MESSAGES/kfind.mo share/locale/ko/LC_MESSAGES/kfind.mo +share/locale/ku/LC_MESSAGES/kfind.mo share/locale/lt/LC_MESSAGES/kfind.mo share/locale/lv/LC_MESSAGES/kfind.mo +share/locale/mai/LC_MESSAGES/kfind.mo +share/locale/mk/LC_MESSAGES/kfind.mo share/locale/ml/LC_MESSAGES/kfind.mo share/locale/mr/LC_MESSAGES/kfind.mo +share/locale/ms/LC_MESSAGES/kfind.mo share/locale/nb/LC_MESSAGES/kfind.mo share/locale/nds/LC_MESSAGES/kfind.mo +share/locale/ne/LC_MESSAGES/kfind.mo share/locale/nl/LC_MESSAGES/kfind.mo share/locale/nn/LC_MESSAGES/kfind.mo +share/locale/oc/LC_MESSAGES/kfind.mo +share/locale/or/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/si/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/sr@ijekavian/LC_MESSAGES/kfind.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfind.mo +share/locale/sr@latin/LC_MESSAGES/kfind.mo share/locale/sv/LC_MESSAGES/kfind.mo share/locale/ta/LC_MESSAGES/kfind.mo +share/locale/te/LC_MESSAGES/kfind.mo share/locale/tg/LC_MESSAGES/kfind.mo +share/locale/th/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/uz/LC_MESSAGES/kfind.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfind.mo share/locale/vi/LC_MESSAGES/kfind.mo share/locale/wa/LC_MESSAGES/kfind.mo +share/locale/xh/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 share/qlogging-categories5/kfind.categories diff --git a/deskutils/kmail-account-wizard/distinfo b/deskutils/kmail-account-wizard/distinfo index 7686256e43cd..ec7d2d02fc4e 100644 --- a/deskutils/kmail-account-wizard/distinfo +++ b/deskutils/kmail-account-wizard/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539594 -SHA256 (KDE/release-service/22.08.3/kmail-account-wizard-22.08.3.tar.xz) = 27e5d92a7a7a7410e5cd3c658084dcc66a3469e966d2c795cff1a1893361c023 -SIZE (KDE/release-service/22.08.3/kmail-account-wizard-22.08.3.tar.xz) = 177792 +TIMESTAMP = 1670513236 +SHA256 (KDE/release-service/22.12.0/kmail-account-wizard-22.12.0.tar.xz) = 85ede3aa5b43cacca8f6c7b0443a66c0de1cf0f4fe3b0096fbef5c08333d431d +SIZE (KDE/release-service/22.12.0/kmail-account-wizard-22.12.0.tar.xz) = 182220 diff --git a/deskutils/kmail-account-wizard/pkg-plist b/deskutils/kmail-account-wizard/pkg-plist index 8534958e6683..e2a7ac29bfa8 100644 --- a/deskutils/kmail-account-wizard/pkg-plist +++ b/deskutils/kmail-account-wizard/pkg-plist @@ -1,106 +1,116 @@ bin/accountwizard bin/ispdb %%QT_PLUGINDIR%%/accountwizard_plugin.so share/akonadi/accountwizard/tine20/tine20wizard.desktop share/akonadi/accountwizard/tine20/tine20wizard.es share/akonadi/accountwizard/tine20/tine20wizard.ui share/applications/org.kde.accountwizard.desktop share/knsrcfiles/accountwizard.knsrc share/locale/ar/LC_MESSAGES/accountwizard.mo share/locale/ar/LC_MESSAGES/accountwizard_tine20.mo share/locale/az/LC_MESSAGES/accountwizard.mo share/locale/az/LC_MESSAGES/accountwizard_tine20.mo share/locale/bg/LC_MESSAGES/accountwizard.mo share/locale/bg/LC_MESSAGES/accountwizard_tine20.mo share/locale/bs/LC_MESSAGES/accountwizard.mo share/locale/bs/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca/LC_MESSAGES/accountwizard.mo share/locale/ca/LC_MESSAGES/accountwizard_tine20.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard.mo share/locale/ca@valencia/LC_MESSAGES/accountwizard_tine20.mo share/locale/cs/LC_MESSAGES/accountwizard.mo share/locale/cs/LC_MESSAGES/accountwizard_tine20.mo share/locale/da/LC_MESSAGES/accountwizard.mo share/locale/da/LC_MESSAGES/accountwizard_tine20.mo share/locale/de/LC_MESSAGES/accountwizard.mo share/locale/de/LC_MESSAGES/accountwizard_tine20.mo share/locale/el/LC_MESSAGES/accountwizard.mo share/locale/el/LC_MESSAGES/accountwizard_tine20.mo share/locale/en_GB/LC_MESSAGES/accountwizard.mo share/locale/en_GB/LC_MESSAGES/accountwizard_tine20.mo share/locale/eo/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard.mo share/locale/es/LC_MESSAGES/accountwizard_tine20.mo share/locale/et/LC_MESSAGES/accountwizard.mo share/locale/et/LC_MESSAGES/accountwizard_tine20.mo share/locale/eu/LC_MESSAGES/accountwizard.mo share/locale/eu/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/ka/LC_MESSAGES/accountwizard.mo +share/locale/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/accountwizard.mo +share/locale/sr@ijekavian/LC_MESSAGES/accountwizard_tine20.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/accountwizard_tine20.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard.mo +share/locale/sr@latin/LC_MESSAGES/accountwizard_tine20.mo share/locale/sv/LC_MESSAGES/accountwizard.mo share/locale/sv/LC_MESSAGES/accountwizard_tine20.mo +share/locale/th/LC_MESSAGES/accountwizard.mo share/locale/tr/LC_MESSAGES/accountwizard.mo share/locale/tr/LC_MESSAGES/accountwizard_tine20.mo share/locale/ug/LC_MESSAGES/accountwizard.mo share/locale/ug/LC_MESSAGES/accountwizard_tine20.mo share/locale/uk/LC_MESSAGES/accountwizard.mo share/locale/uk/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_CN/LC_MESSAGES/accountwizard.mo share/locale/zh_CN/LC_MESSAGES/accountwizard_tine20.mo share/locale/zh_TW/LC_MESSAGES/accountwizard.mo share/locale/zh_TW/LC_MESSAGES/accountwizard_tine20.mo share/mime/packages/accountwizard-mime.xml share/qlogging-categories5/accountwizard.categories share/qlogging-categories5/accountwizard.renamecategories diff --git a/deskutils/kmail/distinfo b/deskutils/kmail/distinfo index 1ca104802c82..b6763f7c3372 100644 --- a/deskutils/kmail/distinfo +++ b/deskutils/kmail/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539585 -SHA256 (KDE/release-service/22.08.3/kmail-22.08.3.tar.xz) = 20e3fba54c57f281fa4e48607cc624ecd3d6dc8407d9f0a874383384700b1896 -SIZE (KDE/release-service/22.08.3/kmail-22.08.3.tar.xz) = 7119980 +TIMESTAMP = 1670513223 +SHA256 (KDE/release-service/22.12.0/kmail-22.12.0.tar.xz) = 01a787062c689c4a3a5d7747bb73ff622a90062f65a915586b1ac7443f302de5 +SIZE (KDE/release-service/22.12.0/kmail-22.12.0.tar.xz) = 7655436 diff --git a/deskutils/kmail/pkg-plist b/deskutils/kmail/pkg-plist index 239cf5514984..630931a4e0d2 100644 --- a/deskutils/kmail/pkg-plist +++ b/deskutils/kmail/pkg-plist @@ -1,460 +1,499 @@ bin/akonadi_archivemail_agent bin/akonadi_followupreminder_agent bin/akonadi_mailfilter_agent bin/akonadi_mailmerge_agent bin/akonadi_sendlater_agent bin/akonadi_unifiedmailbox_agent bin/kmail bin/kmail-refresh-settings bin/ktnef lib/libkmailprivate.so.5 lib/libkmailprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kmailpart.so %%QT_PLUGINDIR%%/pim5/akonadi/config/archivemailagentconfig.so %%QT_PLUGINDIR%%/pim5/akonadi/config/followupreminderagentconfig.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_accounts.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_appearance.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_composer.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_misc.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_plugins.so %%QT_PLUGINDIR%%/pim5/kcms/kmail/kcm_kmail_security.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmkmailsummary.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmkontactsummary.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_kmailplugin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_summaryplugin.so share/akonadi/agents/archivemailagent.desktop share/akonadi/agents/followupreminder.desktop share/akonadi/agents/mailfilteragent.desktop share/akonadi/agents/mailmergeagent.desktop share/akonadi/agents/sendlateragent.desktop share/akonadi/agents/unifiedmailboxagent.desktop share/applications/kmail_view.desktop share/applications/org.kde.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/kmail2/pics/pgp-keys.png share/knotifications5/akonadi_archivemail_agent.notifyrc share/knotifications5/akonadi_followupreminder_agent.notifyrc share/knotifications5/akonadi_mailfilter_agent.notifyrc share/knotifications5/akonadi_mailmerge_agent.notifyrc share/knotifications5/akonadi_sendlater_agent.notifyrc share/knotifications5/kmail2.notifyrc share/kxmlgui5/kontactsummary/kontactsummary_part.rc +share/locale/af/LC_MESSAGES/kmail.mo 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_mailmerge_agent.mo share/locale/ar/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ar/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ar/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ar/LC_MESSAGES/kmail.mo share/locale/ar/LC_MESSAGES/ktnef.mo share/locale/az/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/az/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/az/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/az/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/az/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/az/LC_MESSAGES/kmail-refresh-settings.mo share/locale/az/LC_MESSAGES/kmail.mo share/locale/az/LC_MESSAGES/ktnef.mo share/locale/be/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/bg/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/bg/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/bg/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/bg/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/bg/LC_MESSAGES/kmail-refresh-settings.mo share/locale/bg/LC_MESSAGES/kmail.mo share/locale/bg/LC_MESSAGES/ktnef.mo +share/locale/bn/LC_MESSAGES/kmail.mo +share/locale/br/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_mailmerge_agent.mo share/locale/ca/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca/LC_MESSAGES/kmail.mo share/locale/ca/LC_MESSAGES/ktnef.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ca@valencia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ca@valencia/LC_MESSAGES/kmail.mo share/locale/ca@valencia/LC_MESSAGES/ktnef.mo share/locale/cs/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/cs/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/cs/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/cs/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/cs/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/cs/LC_MESSAGES/kmail-refresh-settings.mo share/locale/cs/LC_MESSAGES/kmail.mo share/locale/cs/LC_MESSAGES/ktnef.mo +share/locale/cy/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/da/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/da/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/da/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/da/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/da/LC_MESSAGES/kmail-refresh-settings.mo share/locale/da/LC_MESSAGES/kmail.mo share/locale/da/LC_MESSAGES/ktnef.mo share/locale/de/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/de/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/de/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/de/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/de/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/de/LC_MESSAGES/kmail-refresh-settings.mo share/locale/de/LC_MESSAGES/kmail.mo share/locale/de/LC_MESSAGES/ktnef.mo share/locale/el/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/el/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/el/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/el/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/el/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/el/LC_MESSAGES/kmail-refresh-settings.mo share/locale/el/LC_MESSAGES/kmail.mo share/locale/el/LC_MESSAGES/ktnef.mo share/locale/en_GB/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/en_GB/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/en_GB/LC_MESSAGES/kmail-refresh-settings.mo share/locale/en_GB/LC_MESSAGES/kmail.mo share/locale/en_GB/LC_MESSAGES/ktnef.mo share/locale/eo/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/es/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/es/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/es/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/es/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/es/LC_MESSAGES/kmail-refresh-settings.mo share/locale/es/LC_MESSAGES/kmail.mo share/locale/es/LC_MESSAGES/ktnef.mo share/locale/et/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/et/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/et/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/et/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/et/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/et/LC_MESSAGES/kmail-refresh-settings.mo share/locale/et/LC_MESSAGES/kmail.mo share/locale/et/LC_MESSAGES/ktnef.mo share/locale/eu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/eu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/eu/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/eu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/eu/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/eu/LC_MESSAGES/kmail-refresh-settings.mo share/locale/eu/LC_MESSAGES/kmail.mo share/locale/eu/LC_MESSAGES/ktnef.mo share/locale/fa/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fi/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fi/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fi/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fi/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fi/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fi/LC_MESSAGES/kmail.mo share/locale/fi/LC_MESSAGES/ktnef.mo share/locale/fr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/fr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/fr/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/fr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/fr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/fr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/fr/LC_MESSAGES/kmail.mo share/locale/fr/LC_MESSAGES/ktnef.mo +share/locale/fy/LC_MESSAGES/kmail.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/hne/LC_MESSAGES/kmail.mo share/locale/hr/LC_MESSAGES/kmail.mo +share/locale/hsb/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/hu/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/hu/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/hu/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/hu/LC_MESSAGES/kmail.mo share/locale/hu/LC_MESSAGES/ktnef.mo share/locale/ia/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ia/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ia/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ia/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ia/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ia/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ia/LC_MESSAGES/kmail.mo share/locale/ia/LC_MESSAGES/ktnef.mo share/locale/id/LC_MESSAGES/kmail-refresh-settings.mo share/locale/id/LC_MESSAGES/kmail.mo share/locale/is/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/it/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/it/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/it/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/it/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/it/LC_MESSAGES/kmail-refresh-settings.mo share/locale/it/LC_MESSAGES/kmail.mo share/locale/it/LC_MESSAGES/ktnef.mo share/locale/ja/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ja/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ja/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ja/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ja/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ja/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ja/LC_MESSAGES/kmail.mo share/locale/ja/LC_MESSAGES/ktnef.mo +share/locale/ka/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_mailmerge_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/ka/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo +share/locale/ka/LC_MESSAGES/kmail-refresh-settings.mo +share/locale/ka/LC_MESSAGES/kmail.mo +share/locale/ka/LC_MESSAGES/ktnef.mo share/locale/kk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/kk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/kk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/kk/LC_MESSAGES/kmail.mo share/locale/kk/LC_MESSAGES/ktnef.mo share/locale/km/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/km/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/km/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ko/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ko/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/ko/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ko/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ko/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ko/LC_MESSAGES/kmail.mo share/locale/ko/LC_MESSAGES/ktnef.mo share/locale/lt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/lt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/lt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/lt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/lt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/lt/LC_MESSAGES/kmail.mo share/locale/lt/LC_MESSAGES/ktnef.mo share/locale/lv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/lv/LC_MESSAGES/kmail.mo +share/locale/mk/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/ms/LC_MESSAGES/kmail.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/ne/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/nl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/nl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/nl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/nl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/nl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/nl/LC_MESSAGES/kmail.mo share/locale/nl/LC_MESSAGES/ktnef.mo share/locale/nn/LC_MESSAGES/kmail.mo share/locale/nn/LC_MESSAGES/ktnef.mo share/locale/pa/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pl/LC_MESSAGES/kmail.mo share/locale/pl/LC_MESSAGES/ktnef.mo share/locale/pt/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt/LC_MESSAGES/kmail.mo share/locale/pt/LC_MESSAGES/ktnef.mo share/locale/pt_BR/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/pt_BR/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/pt_BR/LC_MESSAGES/kmail-refresh-settings.mo share/locale/pt_BR/LC_MESSAGES/kmail.mo share/locale/pt_BR/LC_MESSAGES/ktnef.mo share/locale/ro/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ro/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ro/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ro/LC_MESSAGES/kmail.mo share/locale/ro/LC_MESSAGES/ktnef.mo share/locale/ru/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ru/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ru/LC_MESSAGES/akonadi_mailmerge_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/si/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sk/LC_MESSAGES/kmail.mo share/locale/sk/LC_MESSAGES/ktnef.mo share/locale/sl/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sl/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sl/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sl/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sl/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sl/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sl/LC_MESSAGES/kmail.mo share/locale/sl/LC_MESSAGES/ktnef.mo share/locale/sq/LC_MESSAGES/kmail.mo share/locale/sr/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sr/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sr/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sr/LC_MESSAGES/kmail.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmail.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmail.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_archivemail_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_followupreminder_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_mailfilter_agent.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_sendlater_agent.mo +share/locale/sr@latin/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/sv/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/sv/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/sv/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/sv/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/sv/LC_MESSAGES/kmail-refresh-settings.mo share/locale/sv/LC_MESSAGES/kmail.mo share/locale/sv/LC_MESSAGES/ktnef.mo share/locale/ta/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ta/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/ta/LC_MESSAGES/kmail-refresh-settings.mo share/locale/ta/LC_MESSAGES/kmail.mo share/locale/tg/LC_MESSAGES/kmail.mo +share/locale/th/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/akonadi_archivemail_agent.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_mailmerge_agent.mo share/locale/tr/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/tr/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/tr/LC_MESSAGES/kmail-refresh-settings.mo share/locale/tr/LC_MESSAGES/kmail.mo share/locale/tr/LC_MESSAGES/ktnef.mo share/locale/ug/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/ug/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/ug/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/ug/LC_MESSAGES/kmail.mo share/locale/ug/LC_MESSAGES/ktnef.mo share/locale/uk/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/uk/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/uk/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/uk/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/uk/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/uk/LC_MESSAGES/kmail-refresh-settings.mo share/locale/uk/LC_MESSAGES/kmail.mo share/locale/uk/LC_MESSAGES/ktnef.mo +share/locale/uz/LC_MESSAGES/kmail.mo +share/locale/uz@cyrillic/LC_MESSAGES/kmail.mo share/locale/wa/LC_MESSAGES/kmail.mo +share/locale/xh/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_CN/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_CN/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_CN/LC_MESSAGES/kmail.mo share/locale/zh_CN/LC_MESSAGES/ktnef.mo share/locale/zh_TW/LC_MESSAGES/akonadi_archivemail_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_followupreminder_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailfilter_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_mailmerge_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_sendlater_agent.mo share/locale/zh_TW/LC_MESSAGES/akonadi_unifiedmailbox_agent.mo share/locale/zh_TW/LC_MESSAGES/kmail-refresh-settings.mo share/locale/zh_TW/LC_MESSAGES/kmail.mo share/locale/zh_TW/LC_MESSAGES/ktnef.mo share/metainfo/org.kde.kmail2.appdata.xml share/qlogging-categories5/kmail.categories share/qlogging-categories5/kmail.renamecategories diff --git a/deskutils/knotes/distinfo b/deskutils/knotes/distinfo index 003e83a3c135..4501661959b4 100644 --- a/deskutils/knotes/distinfo +++ b/deskutils/knotes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539609 -SHA256 (KDE/release-service/22.08.3/knotes-22.08.3.tar.xz) = f5871649026fb11d8b62c75d1881978a6588ffd3c2928a0db687ac3842ad6c4f -SIZE (KDE/release-service/22.08.3/knotes-22.08.3.tar.xz) = 345652 +TIMESTAMP = 1670513260 +SHA256 (KDE/release-service/22.12.0/knotes-22.12.0.tar.xz) = 61ebb7fc0617fd453610d80ad9e8786d2ee85cf590feb13f7187bdc86f64f508 +SIZE (KDE/release-service/22.12.0/knotes-22.12.0.tar.xz) = 374208 diff --git a/deskutils/knotes/pkg-plist b/deskutils/knotes/pkg-plist index dc417af1283f..7884e9c23bbc 100644 --- a/deskutils/knotes/pkg-plist +++ b/deskutils/knotes/pkg-plist @@ -1,179 +1,202 @@ bin/akonadi_notes_agent bin/knotes lib/libknotesprivate.so.5 lib/libknotesprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libnotesharedprivate.so.5 lib/libnotesharedprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_action.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_collection.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_display.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_editor.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_misc.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_network.so %%QT_PLUGINDIR%%/pim5/kcms/knotes/kcm_knote_print.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmknotessummary.so %%QT_PLUGINDIR%%/pim5/kontact/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 %%DATADIR%%/print/themes/background-color/theme.desktop %%DATADIR%%/print/themes/background-color/theme.html %%DATADIR%%/print/themes/big-title/theme.desktop %%DATADIR%%/print/themes/big-title/theme.html %%DATADIR%%/print/themes/default/theme.desktop %%DATADIR%%/print/themes/default/theme.html share/knotifications5/akonadi_notes_agent.notifyrc share/knsrcfiles/knotes_printing_theme.knsrc share/kxmlgui5/knotes/knotes_part.rc share/kxmlgui5/knotes/knotesappui.rc share/kxmlgui5/knotes/knotesui.rc +share/locale/af/LC_MESSAGES/knotes.mo share/locale/ar/LC_MESSAGES/akonadi_notes_agent.mo share/locale/ar/LC_MESSAGES/knotes.mo share/locale/ar/LC_MESSAGES/libnoteshared.mo share/locale/be/LC_MESSAGES/knotes.mo share/locale/bg/LC_MESSAGES/akonadi_notes_agent.mo share/locale/bg/LC_MESSAGES/knotes.mo share/locale/bg/LC_MESSAGES/libnoteshared.mo +share/locale/br/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/cy/LC_MESSAGES/knotes.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/fy/LC_MESSAGES/knotes.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/hne/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/ka/LC_MESSAGES/akonadi_notes_agent.mo +share/locale/ka/LC_MESSAGES/knotes.mo +share/locale/ka/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/mai/LC_MESSAGES/knotes.mo +share/locale/mk/LC_MESSAGES/knotes.mo share/locale/mr/LC_MESSAGES/knotes.mo +share/locale/ms/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/ne/LC_MESSAGES/knotes.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/si/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/sr@ijekavian/LC_MESSAGES/akonadi_notes_agent.mo +share/locale/sr@ijekavian/LC_MESSAGES/libnoteshared.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_notes_agent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libnoteshared.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_notes_agent.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/knotes.mo +share/locale/uz@cyrillic/LC_MESSAGES/knotes.mo +share/locale/xh/LC_MESSAGES/knotes.mo share/locale/zh_CN/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_CN/LC_MESSAGES/knotes.mo share/locale/zh_CN/LC_MESSAGES/libnoteshared.mo share/locale/zh_TW/LC_MESSAGES/akonadi_notes_agent.mo share/locale/zh_TW/LC_MESSAGES/knotes.mo share/locale/zh_TW/LC_MESSAGES/libnoteshared.mo share/metainfo/org.kde.knotes.appdata.xml share/qlogging-categories5/knotes.categories share/qlogging-categories5/knotes.renamecategories diff --git a/deskutils/kontact/distinfo b/deskutils/kontact/distinfo index 73aa80851c72..5115b4c7ddf8 100644 --- a/deskutils/kontact/distinfo +++ b/deskutils/kontact/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539596 -SHA256 (KDE/release-service/22.08.3/kontact-22.08.3.tar.xz) = 08e0598234d67d5770ced62933094073811eed498d6964eca76763be05f14abb -SIZE (KDE/release-service/22.08.3/kontact-22.08.3.tar.xz) = 824820 +TIMESTAMP = 1670513240 +SHA256 (KDE/release-service/22.12.0/kontact-22.12.0.tar.xz) = 527d6341ee55b3d69c52e4883f99b6447b8717c878877efe6255f3e694d39e99 +SIZE (KDE/release-service/22.12.0/kontact-22.12.0.tar.xz) = 869820 diff --git a/deskutils/kontact/pkg-plist b/deskutils/kontact/pkg-plist index 691a98ec684e..1338a5d5fbbb 100644 --- a/deskutils/kontact/pkg-plist +++ b/deskutils/kontact/pkg-plist @@ -1,78 +1,91 @@ bin/kontact lib/libkontactprivate.so.5 lib/libkontactprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/pim5/kcms/kontact/kcm_kontact.so share/applications/org.kde.kontact.desktop share/config.kcfg/kontact.kcfg share/dbus-1/services/org.kde.kontact.service 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/locale/af/LC_MESSAGES/kontact.mo share/locale/ar/LC_MESSAGES/kontact.mo share/locale/az/LC_MESSAGES/kontact.mo share/locale/be/LC_MESSAGES/kontact.mo share/locale/bg/LC_MESSAGES/kontact.mo +share/locale/br/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/cy/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/fy/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/hne/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/id/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/ka/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/mk/LC_MESSAGES/kontact.mo share/locale/mr/LC_MESSAGES/kontact.mo +share/locale/ms/LC_MESSAGES/kontact.mo share/locale/nb/LC_MESSAGES/kontact.mo share/locale/nds/LC_MESSAGES/kontact.mo +share/locale/ne/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/si/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/th/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/uz/LC_MESSAGES/kontact.mo +share/locale/uz@cyrillic/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 share/qlogging-categories5/kontact.categories share/qlogging-categories5/kontact.renamecategories diff --git a/deskutils/korganizer/distinfo b/deskutils/korganizer/distinfo index 9ecb042391bc..5a7713fe3ea0 100644 --- a/deskutils/korganizer/distinfo +++ b/deskutils/korganizer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539607 -SHA256 (KDE/release-service/22.08.3/korganizer-22.08.3.tar.xz) = 94059b0feef671f38ae729237c6377fd44758f72cf83d9c0ae69848850923c2a -SIZE (KDE/release-service/22.08.3/korganizer-22.08.3.tar.xz) = 2323684 +TIMESTAMP = 1670513256 +SHA256 (KDE/release-service/22.12.0/korganizer-22.12.0.tar.xz) = 13664554f14aa03bd0cc463378fbe2b80954e1afcde2104d27209c25edd32e70 +SIZE (KDE/release-service/22.12.0/korganizer-22.12.0.tar.xz) = 2571760 diff --git a/deskutils/korganizer/pkg-plist b/deskutils/korganizer/pkg-plist index 6a012d7cec6c..2ba52ab531cb 100644 --- a/deskutils/korganizer/pkg-plist +++ b/deskutils/korganizer/pkg-plist @@ -1,130 +1,144 @@ bin/korganizer lib/libkorganizer_core.so lib/libkorganizer_core.so.5 lib/libkorganizer_core.so.%%KDE_APPLICATIONS_SHLIB_VER%% 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%%/korganizerpart.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configcolorsandfonts.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configdesignerfields.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configfreebusy.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configgroupscheduling.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configmain.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configplugins.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configtime.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_configviews.so %%QT_PLUGINDIR%%/pim5/kcms/korganizer/korganizer_userfeedback.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmapptsummary.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmsdsummary.so %%QT_PLUGINDIR%%/pim5/kcms/summary/kcmtodosummary.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_journalplugin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_korganizerplugin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_specialdatesplugin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_todoplugin.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.Korganizer.xml share/dbus-1/services/org.kde.korganizer.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/knsrcfiles/korganizer.knsrc %%DATADIR%%/sounds/alert.wav %%DATADIR%%/sounds/icemag.wav %%DATADIR%%/sounds/lightmag.wav %%DATADIR%%/sounds/onscreen.wav %%DATADIR%%/sounds/spinout.wav -share/kservicetypes5/korganizerpart.desktop +share/locale/af/LC_MESSAGES/korganizer.mo share/locale/ar/LC_MESSAGES/korganizer.mo share/locale/az/LC_MESSAGES/korganizer.mo share/locale/be/LC_MESSAGES/korganizer.mo share/locale/bg/LC_MESSAGES/korganizer.mo +share/locale/br/LC_MESSAGES/korganizer.mo share/locale/bs/LC_MESSAGES/korganizer.mo share/locale/ca/LC_MESSAGES/korganizer.mo share/locale/ca@valencia/LC_MESSAGES/korganizer.mo share/locale/cs/LC_MESSAGES/korganizer.mo +share/locale/cy/LC_MESSAGES/korganizer.mo share/locale/da/LC_MESSAGES/korganizer.mo share/locale/de/LC_MESSAGES/korganizer.mo share/locale/el/LC_MESSAGES/korganizer.mo share/locale/en_GB/LC_MESSAGES/korganizer.mo share/locale/eo/LC_MESSAGES/korganizer.mo share/locale/es/LC_MESSAGES/korganizer.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/korganizer.mo share/locale/fr/LC_MESSAGES/korganizer.mo +share/locale/fy/LC_MESSAGES/korganizer.mo share/locale/ga/LC_MESSAGES/korganizer.mo share/locale/gl/LC_MESSAGES/korganizer.mo share/locale/he/LC_MESSAGES/korganizer.mo share/locale/hi/LC_MESSAGES/korganizer.mo +share/locale/hne/LC_MESSAGES/korganizer.mo share/locale/hr/LC_MESSAGES/korganizer.mo +share/locale/hsb/LC_MESSAGES/korganizer.mo share/locale/hu/LC_MESSAGES/korganizer.mo share/locale/ia/LC_MESSAGES/korganizer.mo share/locale/id/LC_MESSAGES/korganizer.mo share/locale/is/LC_MESSAGES/korganizer.mo share/locale/it/LC_MESSAGES/korganizer.mo share/locale/ja/LC_MESSAGES/korganizer.mo +share/locale/ka/LC_MESSAGES/korganizer.mo share/locale/kk/LC_MESSAGES/korganizer.mo share/locale/km/LC_MESSAGES/korganizer.mo share/locale/ko/LC_MESSAGES/korganizer.mo share/locale/lt/LC_MESSAGES/korganizer.mo share/locale/lv/LC_MESSAGES/korganizer.mo +share/locale/mai/LC_MESSAGES/korganizer.mo +share/locale/mk/LC_MESSAGES/korganizer.mo share/locale/mr/LC_MESSAGES/korganizer.mo +share/locale/ms/LC_MESSAGES/korganizer.mo share/locale/nb/LC_MESSAGES/korganizer.mo share/locale/nds/LC_MESSAGES/korganizer.mo +share/locale/ne/LC_MESSAGES/korganizer.mo share/locale/nl/LC_MESSAGES/korganizer.mo share/locale/nn/LC_MESSAGES/korganizer.mo share/locale/pa/LC_MESSAGES/korganizer.mo share/locale/pl/LC_MESSAGES/korganizer.mo share/locale/pt/LC_MESSAGES/korganizer.mo share/locale/pt_BR/LC_MESSAGES/korganizer.mo share/locale/ro/LC_MESSAGES/korganizer.mo share/locale/ru/LC_MESSAGES/korganizer.mo share/locale/se/LC_MESSAGES/korganizer.mo share/locale/sk/LC_MESSAGES/korganizer.mo share/locale/sl/LC_MESSAGES/korganizer.mo share/locale/sq/LC_MESSAGES/korganizer.mo share/locale/sv/LC_MESSAGES/korganizer.mo share/locale/ta/LC_MESSAGES/korganizer.mo share/locale/tg/LC_MESSAGES/korganizer.mo +share/locale/th/LC_MESSAGES/korganizer.mo share/locale/tr/LC_MESSAGES/korganizer.mo share/locale/ug/LC_MESSAGES/korganizer.mo share/locale/uk/LC_MESSAGES/korganizer.mo +share/locale/uz/LC_MESSAGES/korganizer.mo +share/locale/uz@cyrillic/LC_MESSAGES/korganizer.mo share/locale/wa/LC_MESSAGES/korganizer.mo +share/locale/xh/LC_MESSAGES/korganizer.mo share/locale/zh_CN/LC_MESSAGES/korganizer.mo share/locale/zh_TW/LC_MESSAGES/korganizer.mo share/metainfo/org.kde.korganizer.appdata.xml share/qlogging-categories5/korganizer.categories share/qlogging-categories5/korganizer.renamecategories diff --git a/deskutils/kruler/distinfo b/deskutils/kruler/distinfo index 60e32ba7f732..a691f3334de8 100644 --- a/deskutils/kruler/distinfo +++ b/deskutils/kruler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539590 -SHA256 (KDE/release-service/22.08.3/kruler-22.08.3.tar.xz) = 7f7e7979d053c2af8c41424a3c9c9633d92934b363f05f5e582aeaca148348e8 -SIZE (KDE/release-service/22.08.3/kruler-22.08.3.tar.xz) = 276568 +TIMESTAMP = 1670513231 +SHA256 (KDE/release-service/22.12.0/kruler-22.12.0.tar.xz) = 3ea39aef2fe8bb02f2564b16d61dac603a94259d24ddde1b0668b018f5d7302e +SIZE (KDE/release-service/22.12.0/kruler-22.12.0.tar.xz) = 285776 diff --git a/deskutils/kruler/pkg-plist b/deskutils/kruler/pkg-plist index 543598c4fe85..b6a4c1255fb6 100644 --- a/deskutils/kruler/pkg-plist +++ b/deskutils/kruler/pkg-plist @@ -1,79 +1,98 @@ 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/icons/hicolor/128x128/apps/kruler.png share/knotifications5/kruler.notifyrc %%DATADIR%%/sounds/move.wav +share/locale/af/LC_MESSAGES/kruler.mo share/locale/ar/LC_MESSAGES/kruler.mo share/locale/be/LC_MESSAGES/kruler.mo share/locale/bg/LC_MESSAGES/kruler.mo +share/locale/br/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/cy/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/fy/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/hne/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/ka/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/mk/LC_MESSAGES/kruler.mo share/locale/ml/LC_MESSAGES/kruler.mo share/locale/mr/LC_MESSAGES/kruler.mo +share/locale/ms/LC_MESSAGES/kruler.mo share/locale/nb/LC_MESSAGES/kruler.mo share/locale/nds/LC_MESSAGES/kruler.mo +share/locale/ne/LC_MESSAGES/kruler.mo share/locale/nl/LC_MESSAGES/kruler.mo share/locale/nn/LC_MESSAGES/kruler.mo +share/locale/oc/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/si/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/sr@ijekavian/LC_MESSAGES/kruler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kruler.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kruler.mo +share/locale/uz@cyrillic/LC_MESSAGES/kruler.mo share/locale/vi/LC_MESSAGES/kruler.mo +share/locale/xh/LC_MESSAGES/kruler.mo share/locale/zh_CN/LC_MESSAGES/kruler.mo +share/locale/zh_HK/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 35a8d2323e6d..70561c381214 100644 --- a/deskutils/libkdepim/distinfo +++ b/deskutils/libkdepim/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539587 -SHA256 (KDE/release-service/22.08.3/libkdepim-22.08.3.tar.xz) = 8caff8d236444b38923d78017fe5fe67cc6a6775fdb0cc599800b4b1c7618e1e -SIZE (KDE/release-service/22.08.3/libkdepim-22.08.3.tar.xz) = 248860 +TIMESTAMP = 1670513226 +SHA256 (KDE/release-service/22.12.0/libkdepim-22.12.0.tar.xz) = 9a1178c869040650f4403cca7dcabe1a64f22fb6441dcf6282009a97e3cf6b0f +SIZE (KDE/release-service/22.12.0/libkdepim-22.12.0.tar.xz) = 286144 diff --git a/deskutils/libkdepim/pkg-plist b/deskutils/libkdepim/pkg-plist index 075b2b6d404d..b76c9ea9bdbe 100644 --- a/deskutils/libkdepim/pkg-plist +++ b/deskutils/libkdepim/pkg-plist @@ -1,94 +1,112 @@ include/KF5/Libkdepim/Libkdepim/KCheckComboBox include/KF5/Libkdepim/Libkdepim/KWidgetLister include/KF5/Libkdepim/Libkdepim/LineEditCatchReturnKey include/KF5/Libkdepim/Libkdepim/MultiplyingLine include/KF5/Libkdepim/Libkdepim/MultiplyingLineEditor include/KF5/Libkdepim/Libkdepim/ProgressDialog include/KF5/Libkdepim/Libkdepim/ProgressIndicatorLabel include/KF5/Libkdepim/Libkdepim/ProgressManager include/KF5/Libkdepim/Libkdepim/ProgressStatusBarWidget include/KF5/Libkdepim/Libkdepim/StatusbarProgressWidget include/KF5/Libkdepim/libkdepim/kcheckcombobox.h include/KF5/Libkdepim/libkdepim/kdepim_export.h include/KF5/Libkdepim/libkdepim/kwidgetlister.h include/KF5/Libkdepim/libkdepim/lineeditcatchreturnkey.h include/KF5/Libkdepim/libkdepim/multiplyingline.h include/KF5/Libkdepim/libkdepim/multiplyinglineeditor.h include/KF5/Libkdepim/libkdepim/progressdialog.h include/KF5/Libkdepim/libkdepim/progressindicatorlabel.h include/KF5/Libkdepim/libkdepim/progressmanager.h include/KF5/Libkdepim/libkdepim/progressstatusbarwidget.h include/KF5/Libkdepim/libkdepim/statusbarprogresswidget.h include/KF5/Libkdepim/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/af/LC_MESSAGES/libkdepim.mo share/locale/ar/LC_MESSAGES/libkdepim.mo share/locale/be/LC_MESSAGES/libkdepim.mo share/locale/bg/LC_MESSAGES/libkdepim.mo +share/locale/br/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/cy/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/fy/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/hne/LC_MESSAGES/libkdepim.mo share/locale/hr/LC_MESSAGES/libkdepim.mo +share/locale/hsb/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/ka/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/mai/LC_MESSAGES/libkdepim.mo +share/locale/mk/LC_MESSAGES/libkdepim.mo share/locale/mr/LC_MESSAGES/libkdepim.mo +share/locale/ms/LC_MESSAGES/libkdepim.mo share/locale/nb/LC_MESSAGES/libkdepim.mo share/locale/nds/LC_MESSAGES/libkdepim.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/libkdepim.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkdepim.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/libkdepim.mo +share/locale/uz@cyrillic/LC_MESSAGES/libkdepim.mo share/locale/wa/LC_MESSAGES/libkdepim.mo +share/locale/xh/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 2bbd93870e40..b8c012e95eb6 100644 --- a/deskutils/mbox-importer/distinfo +++ b/deskutils/mbox-importer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539610 -SHA256 (KDE/release-service/22.08.3/mbox-importer-22.08.3.tar.xz) = b00ad51f050ece0a40b52fc74d845d67a9f7a574293803d79d31878e5cc9f80f -SIZE (KDE/release-service/22.08.3/mbox-importer-22.08.3.tar.xz) = 29216 +TIMESTAMP = 1670513262 +SHA256 (KDE/release-service/22.12.0/mbox-importer-22.12.0.tar.xz) = fc13dbdc13be9ea9f83bcdd3af822cee4b78bbe8ad7ed19143b8149dc45c7143 +SIZE (KDE/release-service/22.12.0/mbox-importer-22.12.0.tar.xz) = 29844 diff --git a/deskutils/mbox-importer/pkg-plist b/deskutils/mbox-importer/pkg-plist index 175ffe04b093..ab4d2640ab41 100644 --- a/deskutils/mbox-importer/pkg-plist +++ b/deskutils/mbox-importer/pkg-plist @@ -1,44 +1,48 @@ bin/mboximporter share/applications/org.kde.mboximporter.desktop share/locale/ar/LC_MESSAGES/mboximporter.mo share/locale/bg/LC_MESSAGES/mboximporter.mo share/locale/bs/LC_MESSAGES/mboximporter.mo share/locale/ca/LC_MESSAGES/mboximporter.mo share/locale/ca@valencia/LC_MESSAGES/mboximporter.mo share/locale/cs/LC_MESSAGES/mboximporter.mo share/locale/da/LC_MESSAGES/mboximporter.mo share/locale/de/LC_MESSAGES/mboximporter.mo share/locale/el/LC_MESSAGES/mboximporter.mo share/locale/en_GB/LC_MESSAGES/mboximporter.mo share/locale/es/LC_MESSAGES/mboximporter.mo share/locale/et/LC_MESSAGES/mboximporter.mo share/locale/eu/LC_MESSAGES/mboximporter.mo share/locale/fi/LC_MESSAGES/mboximporter.mo share/locale/fr/LC_MESSAGES/mboximporter.mo share/locale/gl/LC_MESSAGES/mboximporter.mo share/locale/hi/LC_MESSAGES/mboximporter.mo share/locale/hu/LC_MESSAGES/mboximporter.mo share/locale/ia/LC_MESSAGES/mboximporter.mo share/locale/it/LC_MESSAGES/mboximporter.mo share/locale/ja/LC_MESSAGES/mboximporter.mo +share/locale/ka/LC_MESSAGES/mboximporter.mo share/locale/kk/LC_MESSAGES/mboximporter.mo share/locale/ko/LC_MESSAGES/mboximporter.mo share/locale/lt/LC_MESSAGES/mboximporter.mo share/locale/nb/LC_MESSAGES/mboximporter.mo share/locale/nds/LC_MESSAGES/mboximporter.mo share/locale/nl/LC_MESSAGES/mboximporter.mo share/locale/nn/LC_MESSAGES/mboximporter.mo share/locale/pl/LC_MESSAGES/mboximporter.mo share/locale/pt/LC_MESSAGES/mboximporter.mo share/locale/pt_BR/LC_MESSAGES/mboximporter.mo share/locale/ro/LC_MESSAGES/mboximporter.mo share/locale/ru/LC_MESSAGES/mboximporter.mo share/locale/sk/LC_MESSAGES/mboximporter.mo share/locale/sl/LC_MESSAGES/mboximporter.mo share/locale/sr/LC_MESSAGES/mboximporter.mo +share/locale/sr@ijekavian/LC_MESSAGES/mboximporter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/mboximporter.mo +share/locale/sr@latin/LC_MESSAGES/mboximporter.mo share/locale/sv/LC_MESSAGES/mboximporter.mo share/locale/tr/LC_MESSAGES/mboximporter.mo share/locale/ug/LC_MESSAGES/mboximporter.mo share/locale/uk/LC_MESSAGES/mboximporter.mo share/locale/zh_CN/LC_MESSAGES/mboximporter.mo share/locale/zh_TW/LC_MESSAGES/mboximporter.mo diff --git a/deskutils/pim-data-exporter/distinfo b/deskutils/pim-data-exporter/distinfo index d08d73b514f9..61e2f3e9f0cf 100644 --- a/deskutils/pim-data-exporter/distinfo +++ b/deskutils/pim-data-exporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539592 -SHA256 (KDE/release-service/22.08.3/pim-data-exporter-22.08.3.tar.xz) = 7bd3f629ae76b0ea48f9a27d5cab73a5d8d7f464d175884269bffb2ab52758e3 -SIZE (KDE/release-service/22.08.3/pim-data-exporter-22.08.3.tar.xz) = 416184 +TIMESTAMP = 1670513235 +SHA256 (KDE/release-service/22.12.0/pim-data-exporter-22.12.0.tar.xz) = 744a60f5a8f8298b19960a4ce77ac59be0a4fa3b25bfc1400eb0266220ace67e +SIZE (KDE/release-service/22.12.0/pim-data-exporter-22.12.0.tar.xz) = 423012 diff --git a/deskutils/pim-data-exporter/pkg-plist b/deskutils/pim-data-exporter/pkg-plist index 1e001a751f30..12632de09ca7 100644 --- a/deskutils/pim-data-exporter/pkg-plist +++ b/deskutils/pim-data-exporter/pkg-plist @@ -1,53 +1,58 @@ bin/pimdataexporter bin/pimdataexporterconsole lib/libpimdataexporterprivate.so.5 lib/libpimdataexporterprivate.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.pimdataexporter.desktop share/config.kcfg/pimdataexporterglobalconfig.kcfg share/locale/ar/LC_MESSAGES/pimdataexporter.mo share/locale/az/LC_MESSAGES/pimdataexporter.mo share/locale/bg/LC_MESSAGES/pimdataexporter.mo share/locale/bs/LC_MESSAGES/pimdataexporter.mo share/locale/ca/LC_MESSAGES/pimdataexporter.mo share/locale/ca@valencia/LC_MESSAGES/pimdataexporter.mo share/locale/cs/LC_MESSAGES/pimdataexporter.mo share/locale/da/LC_MESSAGES/pimdataexporter.mo share/locale/de/LC_MESSAGES/pimdataexporter.mo share/locale/el/LC_MESSAGES/pimdataexporter.mo share/locale/en_GB/LC_MESSAGES/pimdataexporter.mo share/locale/es/LC_MESSAGES/pimdataexporter.mo share/locale/et/LC_MESSAGES/pimdataexporter.mo +share/locale/eu/LC_MESSAGES/pimdataexporter.mo share/locale/fi/LC_MESSAGES/pimdataexporter.mo share/locale/fr/LC_MESSAGES/pimdataexporter.mo share/locale/ga/LC_MESSAGES/pimdataexporter.mo share/locale/gl/LC_MESSAGES/pimdataexporter.mo share/locale/hu/LC_MESSAGES/pimdataexporter.mo share/locale/ia/LC_MESSAGES/pimdataexporter.mo share/locale/it/LC_MESSAGES/pimdataexporter.mo share/locale/ja/LC_MESSAGES/pimdataexporter.mo +share/locale/ka/LC_MESSAGES/pimdataexporter.mo share/locale/kk/LC_MESSAGES/pimdataexporter.mo share/locale/km/LC_MESSAGES/pimdataexporter.mo share/locale/ko/LC_MESSAGES/pimdataexporter.mo share/locale/lt/LC_MESSAGES/pimdataexporter.mo share/locale/lv/LC_MESSAGES/pimdataexporter.mo share/locale/mr/LC_MESSAGES/pimdataexporter.mo share/locale/nb/LC_MESSAGES/pimdataexporter.mo share/locale/nds/LC_MESSAGES/pimdataexporter.mo share/locale/nl/LC_MESSAGES/pimdataexporter.mo share/locale/pl/LC_MESSAGES/pimdataexporter.mo share/locale/pt/LC_MESSAGES/pimdataexporter.mo share/locale/pt_BR/LC_MESSAGES/pimdataexporter.mo share/locale/ro/LC_MESSAGES/pimdataexporter.mo share/locale/ru/LC_MESSAGES/pimdataexporter.mo share/locale/sk/LC_MESSAGES/pimdataexporter.mo share/locale/sl/LC_MESSAGES/pimdataexporter.mo share/locale/sr/LC_MESSAGES/pimdataexporter.mo +share/locale/sr@ijekavian/LC_MESSAGES/pimdataexporter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/pimdataexporter.mo +share/locale/sr@latin/LC_MESSAGES/pimdataexporter.mo share/locale/sv/LC_MESSAGES/pimdataexporter.mo share/locale/tr/LC_MESSAGES/pimdataexporter.mo share/locale/ug/LC_MESSAGES/pimdataexporter.mo share/locale/uk/LC_MESSAGES/pimdataexporter.mo share/locale/zh_CN/LC_MESSAGES/pimdataexporter.mo share/locale/zh_TW/LC_MESSAGES/pimdataexporter.mo share/metainfo/org.kde.pimdataexporter.appdata.xml share/qlogging-categories5/pimdataexporter.categories share/qlogging-categories5/pimdataexporter.renamecategories diff --git a/deskutils/pim-sieve-editor/distinfo b/deskutils/pim-sieve-editor/distinfo index 10a46f15b4fe..7f13719c5280 100644 --- a/deskutils/pim-sieve-editor/distinfo +++ b/deskutils/pim-sieve-editor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539582 -SHA256 (KDE/release-service/22.08.3/pim-sieve-editor-22.08.3.tar.xz) = b029ac7a1045ba43446143b147c3cc5804da6903354a1573eb422d337bcfe681 -SIZE (KDE/release-service/22.08.3/pim-sieve-editor-22.08.3.tar.xz) = 458404 +TIMESTAMP = 1670513217 +SHA256 (KDE/release-service/22.12.0/pim-sieve-editor-22.12.0.tar.xz) = c11dfb3f18d69c12a830b3f1c0455a66eda682d488e10a0dc2fcbcec977d5cb5 +SIZE (KDE/release-service/22.12.0/pim-sieve-editor-22.12.0.tar.xz) = 462732 diff --git a/deskutils/pim-sieve-editor/pkg-plist b/deskutils/pim-sieve-editor/pkg-plist index c84001cd786f..e5d51d6d24a8 100644 --- a/deskutils/pim-sieve-editor/pkg-plist +++ b/deskutils/pim-sieve-editor/pkg-plist @@ -1,45 +1,49 @@ bin/sieveeditor lib/libsieveeditor.so.5 lib/libsieveeditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% share/applications/org.kde.sieveeditor.desktop share/config.kcfg/sieveeditorglobalconfig.kcfg share/locale/ar/LC_MESSAGES/sieveeditor.mo share/locale/az/LC_MESSAGES/sieveeditor.mo share/locale/bg/LC_MESSAGES/sieveeditor.mo share/locale/bs/LC_MESSAGES/sieveeditor.mo share/locale/ca/LC_MESSAGES/sieveeditor.mo share/locale/ca@valencia/LC_MESSAGES/sieveeditor.mo share/locale/cs/LC_MESSAGES/sieveeditor.mo share/locale/da/LC_MESSAGES/sieveeditor.mo share/locale/de/LC_MESSAGES/sieveeditor.mo share/locale/en_GB/LC_MESSAGES/sieveeditor.mo share/locale/es/LC_MESSAGES/sieveeditor.mo share/locale/et/LC_MESSAGES/sieveeditor.mo share/locale/fi/LC_MESSAGES/sieveeditor.mo share/locale/fr/LC_MESSAGES/sieveeditor.mo share/locale/gl/LC_MESSAGES/sieveeditor.mo share/locale/hu/LC_MESSAGES/sieveeditor.mo share/locale/ia/LC_MESSAGES/sieveeditor.mo share/locale/it/LC_MESSAGES/sieveeditor.mo share/locale/ja/LC_MESSAGES/sieveeditor.mo +share/locale/ka/LC_MESSAGES/sieveeditor.mo share/locale/ko/LC_MESSAGES/sieveeditor.mo share/locale/lt/LC_MESSAGES/sieveeditor.mo share/locale/nb/LC_MESSAGES/sieveeditor.mo share/locale/nds/LC_MESSAGES/sieveeditor.mo share/locale/nl/LC_MESSAGES/sieveeditor.mo share/locale/pl/LC_MESSAGES/sieveeditor.mo share/locale/pt/LC_MESSAGES/sieveeditor.mo share/locale/pt_BR/LC_MESSAGES/sieveeditor.mo share/locale/ro/LC_MESSAGES/sieveeditor.mo share/locale/ru/LC_MESSAGES/sieveeditor.mo share/locale/sk/LC_MESSAGES/sieveeditor.mo share/locale/sl/LC_MESSAGES/sieveeditor.mo share/locale/sr/LC_MESSAGES/sieveeditor.mo +share/locale/sr@ijekavian/LC_MESSAGES/sieveeditor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/sieveeditor.mo +share/locale/sr@latin/LC_MESSAGES/sieveeditor.mo share/locale/sv/LC_MESSAGES/sieveeditor.mo share/locale/tr/LC_MESSAGES/sieveeditor.mo share/locale/uk/LC_MESSAGES/sieveeditor.mo share/locale/zh_CN/LC_MESSAGES/sieveeditor.mo share/locale/zh_TW/LC_MESSAGES/sieveeditor.mo share/metainfo/org.kde.sieveeditor.appdata.xml share/qlogging-categories5/sieveeditor.categories share/qlogging-categories5/sieveeditor.renamecategories diff --git a/deskutils/zanshin/distinfo b/deskutils/zanshin/distinfo index fb2ca6217999..41c7a5c45b8b 100644 --- a/deskutils/zanshin/distinfo +++ b/deskutils/zanshin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539612 -SHA256 (KDE/release-service/22.08.3/zanshin-22.08.3.tar.xz) = 101f8555dddcfffe7d8e8a7675f5c5a10f6c730824f8e8f93adfe5234d59e9f3 -SIZE (KDE/release-service/22.08.3/zanshin-22.08.3.tar.xz) = 355200 +TIMESTAMP = 1670513263 +SHA256 (KDE/release-service/22.12.0/zanshin-22.12.0.tar.xz) = 123a5470fb54a43c578c63fc7d9aad4bca4750bcfee54dbcd54760f8b4c5c05a +SIZE (KDE/release-service/22.12.0/zanshin-22.12.0.tar.xz) = 353668 diff --git a/deskutils/zanshin/pkg-plist b/deskutils/zanshin/pkg-plist index 5ce058502e30..c3324b70c09f 100644 --- a/deskutils/zanshin/pkg-plist +++ b/deskutils/zanshin/pkg-plist @@ -1,54 +1,55 @@ bin/zanshin bin/zanshin-migrator %%QT_PLUGINDIR%%/krunner_zanshin.so %%QT_PLUGINDIR%%/pim5/kontact/kontact_zanshinplugin.so %%QT_PLUGINDIR%%/zanshin_part.so share/applications/org.kde.zanshin.desktop share/icons/hicolor/128x128/apps/zanshin.png share/icons/hicolor/256x256/apps/zanshin.png share/icons/hicolor/48x48/apps/zanshin.png share/icons/hicolor/64x64/apps/zanshin.png share/icons/hicolor/scalable/apps/zanshin.svgz -share/kservices5/kontact/zanshin_plugin.desktop share/kservices5/plasma-runner-zanshin.desktop share/kservices5/zanshin_part.desktop share/kxmlgui5/zanshin/zanshin_part.rc share/locale/bg/LC_MESSAGES/zanshin.mo share/locale/bs/LC_MESSAGES/zanshin.mo share/locale/ca/LC_MESSAGES/zanshin.mo share/locale/ca@valencia/LC_MESSAGES/zanshin.mo share/locale/cs/LC_MESSAGES/zanshin.mo share/locale/da/LC_MESSAGES/zanshin.mo share/locale/de/LC_MESSAGES/zanshin.mo share/locale/en_GB/LC_MESSAGES/zanshin.mo share/locale/es/LC_MESSAGES/zanshin.mo share/locale/et/LC_MESSAGES/zanshin.mo share/locale/eu/LC_MESSAGES/zanshin.mo share/locale/fi/LC_MESSAGES/zanshin.mo share/locale/fr/LC_MESSAGES/zanshin.mo share/locale/ga/LC_MESSAGES/zanshin.mo share/locale/gl/LC_MESSAGES/zanshin.mo share/locale/hu/LC_MESSAGES/zanshin.mo share/locale/ia/LC_MESSAGES/zanshin.mo share/locale/it/LC_MESSAGES/zanshin.mo share/locale/ja/LC_MESSAGES/zanshin.mo +share/locale/ka/LC_MESSAGES/zanshin.mo share/locale/ko/LC_MESSAGES/zanshin.mo share/locale/lt/LC_MESSAGES/zanshin.mo share/locale/mr/LC_MESSAGES/zanshin.mo +share/locale/my/LC_MESSAGES/zanshin.mo share/locale/nb/LC_MESSAGES/zanshin.mo share/locale/nds/LC_MESSAGES/zanshin.mo share/locale/nl/LC_MESSAGES/zanshin.mo share/locale/nn/LC_MESSAGES/zanshin.mo share/locale/pl/LC_MESSAGES/zanshin.mo share/locale/pt/LC_MESSAGES/zanshin.mo share/locale/pt_BR/LC_MESSAGES/zanshin.mo share/locale/ru/LC_MESSAGES/zanshin.mo share/locale/sk/LC_MESSAGES/zanshin.mo share/locale/sl/LC_MESSAGES/zanshin.mo share/locale/sv/LC_MESSAGES/zanshin.mo share/locale/tr/LC_MESSAGES/zanshin.mo share/locale/ug/LC_MESSAGES/zanshin.mo share/locale/uk/LC_MESSAGES/zanshin.mo share/locale/zh_CN/LC_MESSAGES/zanshin.mo share/locale/zh_TW/LC_MESSAGES/zanshin.mo share/metainfo/org.kde.zanshin.metainfo.xml diff --git a/devel/cervisia/distinfo b/devel/cervisia/distinfo index f90309c0a148..1282a1c2136d 100644 --- a/devel/cervisia/distinfo +++ b/devel/cervisia/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539453 -SHA256 (KDE/release-service/22.08.3/cervisia-22.08.3.tar.xz) = 04400984c8a1b475df1d14c8c416c746aee7d7b4cf4b5d9a3d8e9f21da46c6e0 -SIZE (KDE/release-service/22.08.3/cervisia-22.08.3.tar.xz) = 1914104 +TIMESTAMP = 1670513052 +SHA256 (KDE/release-service/22.12.0/cervisia-22.12.0.tar.xz) = 8f54d6d52a570413f1ca0978115ac54653eeeb4a90905d8162c40a39e7de2a9b +SIZE (KDE/release-service/22.12.0/cervisia-22.12.0.tar.xz) = 1943668 diff --git a/devel/cervisia/pkg-plist b/devel/cervisia/pkg-plist index 40615aead502..3b877b2093ee 100644 --- a/devel/cervisia/pkg-plist +++ b/devel/cervisia/pkg-plist @@ -1,170 +1,188 @@ 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/af/LC_MESSAGES/cervisia.mo share/locale/ar/LC_MESSAGES/cervisia.mo share/locale/ar/LC_MESSAGES/cvsservice.mo share/locale/be/LC_MESSAGES/cervisia.mo share/locale/be/LC_MESSAGES/cvsservice.mo share/locale/bg/LC_MESSAGES/cervisia.mo share/locale/bg/LC_MESSAGES/cvsservice.mo +share/locale/br/LC_MESSAGES/cervisia.mo +share/locale/br/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/cy/LC_MESSAGES/cervisia.mo +share/locale/cy/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/hne/LC_MESSAGES/cervisia.mo +share/locale/hne/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/ka/LC_MESSAGES/cervisia.mo +share/locale/ka/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/mai/LC_MESSAGES/cervisia.mo +share/locale/mk/LC_MESSAGES/cvsservice.mo share/locale/mr/LC_MESSAGES/cervisia.mo share/locale/mr/LC_MESSAGES/cvsservice.mo +share/locale/ms/LC_MESSAGES/cervisia.mo +share/locale/ms/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/ne/LC_MESSAGES/cervisia.mo +share/locale/ne/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/oc/LC_MESSAGES/cervisia.mo +share/locale/oc/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/xh/LC_MESSAGES/cervisia.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 c7c8d41b2331..f4016fa278c5 100644 --- a/devel/dolphin-plugins/distinfo +++ b/devel/dolphin-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539445 -SHA256 (KDE/release-service/22.08.3/dolphin-plugins-22.08.3.tar.xz) = 703c4666d5fb9a48cca01b52ca5bc4aacbcba3a82c1656487f40334513851517 -SIZE (KDE/release-service/22.08.3/dolphin-plugins-22.08.3.tar.xz) = 260088 +TIMESTAMP = 1670513042 +SHA256 (KDE/release-service/22.12.0/dolphin-plugins-22.12.0.tar.xz) = 2f914da91e673b485504dd32737ce9eab5d41377c8522b8b80c0a882d298f41b +SIZE (KDE/release-service/22.12.0/dolphin-plugins-22.12.0.tar.xz) = 268876 diff --git a/devel/dolphin-plugins/pkg-plist b/devel/dolphin-plugins/pkg-plist index 7d7c001fae6b..1f0fd8e08a85 100644 --- a/devel/dolphin-plugins/pkg-plist +++ b/devel/dolphin-plugins/pkg-plist @@ -1,220 +1,232 @@ %%QT_PLUGINDIR%%/dolphin/vcs/fileviewbazaarplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewdropboxplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewgitplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewhgplugin.so %%QT_PLUGINDIR%%/dolphin/vcs/fileviewsvnplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/mountisoaction.so share/config.kcfg/fileviewgitpluginsettings.kcfg share/config.kcfg/fileviewhgpluginsettings.kcfg share/config.kcfg/fileviewsvnpluginsettings.kcfg -share/locale/ast/LC_MESSAGES/mountisoaction.mo +share/locale/ar/LC_MESSAGES/mountisoaction.mo share/locale/az/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/az/LC_MESSAGES/fileviewgitplugin.mo share/locale/az/LC_MESSAGES/fileviewhgplugin.mo share/locale/az/LC_MESSAGES/fileviewsvnplugin.mo share/locale/az/LC_MESSAGES/mountisoaction.mo share/locale/bg/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bg/LC_MESSAGES/fileviewgitplugin.mo share/locale/bg/LC_MESSAGES/fileviewhgplugin.mo share/locale/bg/LC_MESSAGES/fileviewsvnplugin.mo share/locale/bg/LC_MESSAGES/mountisoaction.mo share/locale/bs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/bs/LC_MESSAGES/fileviewgitplugin.mo share/locale/bs/LC_MESSAGES/fileviewhgplugin.mo share/locale/bs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca/LC_MESSAGES/mountisoaction.mo share/locale/ca@valencia/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewgitplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewhgplugin.mo share/locale/ca@valencia/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ca@valencia/LC_MESSAGES/mountisoaction.mo share/locale/cs/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/cs/LC_MESSAGES/fileviewgitplugin.mo share/locale/cs/LC_MESSAGES/fileviewhgplugin.mo share/locale/cs/LC_MESSAGES/fileviewsvnplugin.mo share/locale/cs/LC_MESSAGES/mountisoaction.mo share/locale/da/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/da/LC_MESSAGES/fileviewgitplugin.mo share/locale/da/LC_MESSAGES/fileviewhgplugin.mo share/locale/da/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/de/LC_MESSAGES/fileviewgitplugin.mo share/locale/de/LC_MESSAGES/fileviewhgplugin.mo share/locale/de/LC_MESSAGES/fileviewsvnplugin.mo share/locale/de/LC_MESSAGES/mountisoaction.mo share/locale/el/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/el/LC_MESSAGES/fileviewgitplugin.mo share/locale/el/LC_MESSAGES/fileviewhgplugin.mo share/locale/el/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewgitplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewhgplugin.mo share/locale/en_GB/LC_MESSAGES/fileviewsvnplugin.mo share/locale/en_GB/LC_MESSAGES/mountisoaction.mo share/locale/eo/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/es/LC_MESSAGES/fileviewgitplugin.mo share/locale/es/LC_MESSAGES/fileviewhgplugin.mo share/locale/es/LC_MESSAGES/fileviewsvnplugin.mo share/locale/es/LC_MESSAGES/mountisoaction.mo share/locale/et/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/et/LC_MESSAGES/fileviewgitplugin.mo share/locale/et/LC_MESSAGES/fileviewhgplugin.mo -share/locale/eu/LC_MESSAGES/fileviewhgplugin.mo share/locale/et/LC_MESSAGES/fileviewsvnplugin.mo share/locale/et/LC_MESSAGES/mountisoaction.mo share/locale/eu/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/eu/LC_MESSAGES/fileviewgitplugin.mo +share/locale/eu/LC_MESSAGES/fileviewhgplugin.mo share/locale/eu/LC_MESSAGES/fileviewsvnplugin.mo share/locale/eu/LC_MESSAGES/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/ie/LC_MESSAGES/fileviewgitplugin.mo +share/locale/ie/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/ka/LC_MESSAGES/fileviewbazaarplugin.mo +share/locale/ka/LC_MESSAGES/fileviewgitplugin.mo +share/locale/ka/LC_MESSAGES/fileviewhgplugin.mo +share/locale/ka/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/ka/LC_MESSAGES/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/my/LC_MESSAGES/fileviewbazaarplugin.mo +share/locale/my/LC_MESSAGES/fileviewgitplugin.mo +share/locale/my/LC_MESSAGES/fileviewhgplugin.mo +share/locale/my/LC_MESSAGES/fileviewsvnplugin.mo +share/locale/my/LC_MESSAGES/mountisoaction.mo share/locale/nb/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nb/LC_MESSAGES/fileviewgitplugin.mo share/locale/nb/LC_MESSAGES/fileviewhgplugin.mo share/locale/nb/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nds/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nds/LC_MESSAGES/fileviewgitplugin.mo share/locale/nds/LC_MESSAGES/fileviewhgplugin.mo share/locale/nds/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nl/LC_MESSAGES/fileviewgitplugin.mo share/locale/nl/LC_MESSAGES/fileviewhgplugin.mo share/locale/nl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nl/LC_MESSAGES/mountisoaction.mo share/locale/nn/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/nn/LC_MESSAGES/fileviewgitplugin.mo share/locale/nn/LC_MESSAGES/fileviewsvnplugin.mo share/locale/nn/LC_MESSAGES/mountisoaction.mo share/locale/pa/LC_MESSAGES/fileviewgitplugin.mo share/locale/pa/LC_MESSAGES/fileviewhgplugin.mo share/locale/pa/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pa/LC_MESSAGES/mountisoaction.mo share/locale/pl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pl/LC_MESSAGES/fileviewgitplugin.mo share/locale/pl/LC_MESSAGES/fileviewhgplugin.mo share/locale/pl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pl/LC_MESSAGES/mountisoaction.mo share/locale/pt/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt/LC_MESSAGES/mountisoaction.mo share/locale/pt_BR/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewgitplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewhgplugin.mo share/locale/pt_BR/LC_MESSAGES/fileviewsvnplugin.mo share/locale/pt_BR/LC_MESSAGES/mountisoaction.mo share/locale/ro/LC_MESSAGES/fileviewgitplugin.mo share/locale/ro/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ro/LC_MESSAGES/mountisoaction.mo share/locale/ru/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ru/LC_MESSAGES/fileviewgitplugin.mo share/locale/ru/LC_MESSAGES/fileviewhgplugin.mo share/locale/ru/LC_MESSAGES/fileviewsvnplugin.mo share/locale/ru/LC_MESSAGES/mountisoaction.mo share/locale/sk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sk/LC_MESSAGES/fileviewgitplugin.mo share/locale/sk/LC_MESSAGES/fileviewhgplugin.mo share/locale/sk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sk/LC_MESSAGES/mountisoaction.mo share/locale/sl/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sl/LC_MESSAGES/fileviewgitplugin.mo share/locale/sl/LC_MESSAGES/fileviewhgplugin.mo share/locale/sl/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sl/LC_MESSAGES/mountisoaction.mo share/locale/sv/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/sv/LC_MESSAGES/fileviewgitplugin.mo share/locale/sv/LC_MESSAGES/fileviewhgplugin.mo share/locale/sv/LC_MESSAGES/fileviewsvnplugin.mo share/locale/sv/LC_MESSAGES/mountisoaction.mo share/locale/ta/LC_MESSAGES/mountisoaction.mo share/locale/tr/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/tr/LC_MESSAGES/fileviewgitplugin.mo share/locale/tr/LC_MESSAGES/fileviewhgplugin.mo share/locale/tr/LC_MESSAGES/fileviewsvnplugin.mo share/locale/tr/LC_MESSAGES/mountisoaction.mo share/locale/ug/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/ug/LC_MESSAGES/fileviewgitplugin.mo share/locale/ug/LC_MESSAGES/fileviewhgplugin.mo share/locale/ug/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/uk/LC_MESSAGES/fileviewgitplugin.mo share/locale/uk/LC_MESSAGES/fileviewhgplugin.mo share/locale/uk/LC_MESSAGES/fileviewsvnplugin.mo share/locale/uk/LC_MESSAGES/mountisoaction.mo share/locale/vi/LC_MESSAGES/fileviewgitplugin.mo share/locale/vi/LC_MESSAGES/mountisoaction.mo share/locale/zh_CN/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_CN/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_CN/LC_MESSAGES/mountisoaction.mo share/locale/zh_TW/LC_MESSAGES/fileviewbazaarplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewgitplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewhgplugin.mo share/locale/zh_TW/LC_MESSAGES/fileviewsvnplugin.mo share/locale/zh_TW/LC_MESSAGES/mountisoaction.mo share/metainfo/org.kde.dolphin-plugins.metainfo.xml diff --git a/devel/kapptemplate/distinfo b/devel/kapptemplate/distinfo index 7db9e0774c0c..bf97e053b96b 100644 --- a/devel/kapptemplate/distinfo +++ b/devel/kapptemplate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539438 -SHA256 (KDE/release-service/22.08.3/kapptemplate-22.08.3.tar.xz) = b3f78c81428baf26e591fcc50c35110cff407344be57b7699d249870a52a50b7 -SIZE (KDE/release-service/22.08.3/kapptemplate-22.08.3.tar.xz) = 336032 +TIMESTAMP = 1670513033 +SHA256 (KDE/release-service/22.12.0/kapptemplate-22.12.0.tar.xz) = af3af7c060dc587b3f35fc22f7bc8ac32e7302beb3e8b37dfeedd71d6ab882f2 +SIZE (KDE/release-service/22.12.0/kapptemplate-22.12.0.tar.xz) = 338744 diff --git a/devel/kapptemplate/pkg-plist b/devel/kapptemplate/pkg-plist index 70ad871cc422..e42ded3a8f8b 100644 --- a/devel/kapptemplate/pkg-plist +++ b/devel/kapptemplate/pkg-plist @@ -1,57 +1,62 @@ 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/128x128/apps/kapptemplate.png share/icons/hicolor/scalable/apps/kapptemplate.svg share/kdevappwizard/templates/kde-frameworks5-simple.tar.bz2 share/kdevappwizard/templates/kde-frameworks5.tar.bz2 share/locale/bg/LC_MESSAGES/kapptemplate.mo share/locale/bs/LC_MESSAGES/kapptemplate.mo share/locale/ca/LC_MESSAGES/kapptemplate.mo share/locale/ca@valencia/LC_MESSAGES/kapptemplate.mo share/locale/cs/LC_MESSAGES/kapptemplate.mo share/locale/da/LC_MESSAGES/kapptemplate.mo share/locale/de/LC_MESSAGES/kapptemplate.mo share/locale/el/LC_MESSAGES/kapptemplate.mo share/locale/en_GB/LC_MESSAGES/kapptemplate.mo share/locale/eo/LC_MESSAGES/kapptemplate.mo share/locale/es/LC_MESSAGES/kapptemplate.mo share/locale/et/LC_MESSAGES/kapptemplate.mo share/locale/eu/LC_MESSAGES/kapptemplate.mo share/locale/fi/LC_MESSAGES/kapptemplate.mo share/locale/fr/LC_MESSAGES/kapptemplate.mo share/locale/ga/LC_MESSAGES/kapptemplate.mo share/locale/gl/LC_MESSAGES/kapptemplate.mo share/locale/hu/LC_MESSAGES/kapptemplate.mo share/locale/it/LC_MESSAGES/kapptemplate.mo share/locale/ja/LC_MESSAGES/kapptemplate.mo +share/locale/ka/LC_MESSAGES/kapptemplate.mo share/locale/kk/LC_MESSAGES/kapptemplate.mo share/locale/ko/LC_MESSAGES/kapptemplate.mo share/locale/lt/LC_MESSAGES/kapptemplate.mo share/locale/lv/LC_MESSAGES/kapptemplate.mo share/locale/mr/LC_MESSAGES/kapptemplate.mo share/locale/nb/LC_MESSAGES/kapptemplate.mo share/locale/nds/LC_MESSAGES/kapptemplate.mo share/locale/nl/LC_MESSAGES/kapptemplate.mo share/locale/nn/LC_MESSAGES/kapptemplate.mo share/locale/pl/LC_MESSAGES/kapptemplate.mo share/locale/pt/LC_MESSAGES/kapptemplate.mo share/locale/pt_BR/LC_MESSAGES/kapptemplate.mo share/locale/ru/LC_MESSAGES/kapptemplate.mo share/locale/sk/LC_MESSAGES/kapptemplate.mo share/locale/sl/LC_MESSAGES/kapptemplate.mo share/locale/sq/LC_MESSAGES/kapptemplate.mo share/locale/sr/LC_MESSAGES/kapptemplate.mo +share/locale/sr@ijekavian/LC_MESSAGES/kapptemplate.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kapptemplate.mo +share/locale/sr@latin/LC_MESSAGES/kapptemplate.mo share/locale/sv/LC_MESSAGES/kapptemplate.mo +share/locale/th/LC_MESSAGES/kapptemplate.mo share/locale/tr/LC_MESSAGES/kapptemplate.mo share/locale/ug/LC_MESSAGES/kapptemplate.mo share/locale/uk/LC_MESSAGES/kapptemplate.mo share/locale/zh_CN/LC_MESSAGES/kapptemplate.mo share/locale/zh_TW/LC_MESSAGES/kapptemplate.mo share/metainfo/org.kde.kapptemplate.appdata.xml share/qlogging-categories5/kapptemplate.categories diff --git a/devel/kcachegrind/distinfo b/devel/kcachegrind/distinfo index 85c80837fb4c..f5031958d2bb 100644 --- a/devel/kcachegrind/distinfo +++ b/devel/kcachegrind/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539436 -SHA256 (KDE/release-service/22.08.3/kcachegrind-22.08.3.tar.xz) = 160b9b2f28e1e6986026c0fc3dc34df26d56d88e3355704a0226e60786218ac7 -SIZE (KDE/release-service/22.08.3/kcachegrind-22.08.3.tar.xz) = 879824 +TIMESTAMP = 1670513032 +SHA256 (KDE/release-service/22.12.0/kcachegrind-22.12.0.tar.xz) = 0e7a9b042ba68ff29af8b6b6002606b93994103ccd40ac3aeec58bb312c4e350 +SIZE (KDE/release-service/22.12.0/kcachegrind-22.12.0.tar.xz) = 908840 diff --git a/devel/kcachegrind/pkg-plist b/devel/kcachegrind/pkg-plist index bc9c17b00856..690f381ed3fb 100644 --- a/devel/kcachegrind/pkg-plist +++ b/devel/kcachegrind/pkg-plist @@ -1,71 +1,123 @@ 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 -share/icons/hicolor/128x128/apps/kcachegrind.png %%DATADIR%%/icons/hicolor/16x16/actions/move.png %%DATADIR%%/icons/hicolor/16x16/actions/percent.png %%DATADIR%%/icons/hicolor/22x22/actions/hidetemplates.png %%DATADIR%%/icons/hicolor/22x22/actions/move.png %%DATADIR%%/icons/hicolor/22x22/actions/percent.png %%DATADIR%%/icons/hicolor/32x32/actions/percent.png %%DATADIR%%/tips share/locale/ar/LC_MESSAGES/kcachegrind.mo share/locale/be/LC_MESSAGES/kcachegrind.mo share/locale/bg/LC_MESSAGES/kcachegrind.mo +share/locale/bg/LC_MESSAGES/kcachegrind_qt.qm +share/locale/br/LC_MESSAGES/kcachegrind.mo share/locale/bs/LC_MESSAGES/kcachegrind.mo +share/locale/bs/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca/LC_MESSAGES/kcachegrind.mo +share/locale/ca/LC_MESSAGES/kcachegrind_qt.qm share/locale/ca@valencia/LC_MESSAGES/kcachegrind.mo +share/locale/ca@valencia/LC_MESSAGES/kcachegrind_qt.qm share/locale/cs/LC_MESSAGES/kcachegrind.mo +share/locale/cs/LC_MESSAGES/kcachegrind_qt.qm +share/locale/cy/LC_MESSAGES/kcachegrind.mo share/locale/da/LC_MESSAGES/kcachegrind.mo +share/locale/da/LC_MESSAGES/kcachegrind_qt.qm share/locale/de/LC_MESSAGES/kcachegrind.mo +share/locale/de/LC_MESSAGES/kcachegrind_qt.qm share/locale/el/LC_MESSAGES/kcachegrind.mo +share/locale/el/LC_MESSAGES/kcachegrind_qt.qm +share/locale/en/LC_MESSAGES/kcachegrind_qt.qm share/locale/en_GB/LC_MESSAGES/kcachegrind.mo +share/locale/en_GB/LC_MESSAGES/kcachegrind_qt.qm share/locale/eo/LC_MESSAGES/kcachegrind.mo +share/locale/eo/LC_MESSAGES/kcachegrind_qt.qm share/locale/es/LC_MESSAGES/kcachegrind.mo +share/locale/es/LC_MESSAGES/kcachegrind_qt.qm share/locale/et/LC_MESSAGES/kcachegrind.mo +share/locale/et/LC_MESSAGES/kcachegrind_qt.qm share/locale/eu/LC_MESSAGES/kcachegrind.mo share/locale/fa/LC_MESSAGES/kcachegrind.mo share/locale/fi/LC_MESSAGES/kcachegrind.mo +share/locale/fi/LC_MESSAGES/kcachegrind_qt.qm share/locale/fr/LC_MESSAGES/kcachegrind.mo +share/locale/fr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ga/LC_MESSAGES/kcachegrind.mo +share/locale/ga/LC_MESSAGES/kcachegrind_qt.qm share/locale/gl/LC_MESSAGES/kcachegrind.mo +share/locale/gl/LC_MESSAGES/kcachegrind_qt.qm share/locale/hi/LC_MESSAGES/kcachegrind.mo +share/locale/hne/LC_MESSAGES/kcachegrind.mo share/locale/hr/LC_MESSAGES/kcachegrind.mo +share/locale/hr/LC_MESSAGES/kcachegrind_qt.qm share/locale/hu/LC_MESSAGES/kcachegrind.mo +share/locale/hu/LC_MESSAGES/kcachegrind_qt.qm share/locale/it/LC_MESSAGES/kcachegrind.mo +share/locale/it/LC_MESSAGES/kcachegrind_qt.qm share/locale/ja/LC_MESSAGES/kcachegrind.mo +share/locale/ja/LC_MESSAGES/kcachegrind_qt.qm +share/locale/ka/LC_MESSAGES/kcachegrind.mo +share/locale/ka/LC_MESSAGES/kcachegrind_qt.qm share/locale/kk/LC_MESSAGES/kcachegrind.mo +share/locale/kk/LC_MESSAGES/kcachegrind_qt.qm share/locale/km/LC_MESSAGES/kcachegrind.mo share/locale/ko/LC_MESSAGES/kcachegrind.mo +share/locale/ko/LC_MESSAGES/kcachegrind_qt.qm share/locale/lt/LC_MESSAGES/kcachegrind.mo +share/locale/lt/LC_MESSAGES/kcachegrind_qt.qm +share/locale/mai/LC_MESSAGES/kcachegrind.mo +share/locale/mai/LC_MESSAGES/kcachegrind_qt.qm share/locale/mr/LC_MESSAGES/kcachegrind.mo +share/locale/mr/LC_MESSAGES/kcachegrind_qt.qm +share/locale/ms/LC_MESSAGES/kcachegrind.mo share/locale/nb/LC_MESSAGES/kcachegrind.mo +share/locale/nb/LC_MESSAGES/kcachegrind_qt.qm share/locale/nds/LC_MESSAGES/kcachegrind.mo +share/locale/nds/LC_MESSAGES/kcachegrind_qt.qm +share/locale/ne/LC_MESSAGES/kcachegrind.mo share/locale/nl/LC_MESSAGES/kcachegrind.mo +share/locale/nl/LC_MESSAGES/kcachegrind_qt.qm share/locale/nn/LC_MESSAGES/kcachegrind.mo +share/locale/nn/LC_MESSAGES/kcachegrind_qt.qm +share/locale/oc/LC_MESSAGES/kcachegrind.mo share/locale/pa/LC_MESSAGES/kcachegrind.mo share/locale/pl/LC_MESSAGES/kcachegrind.mo +share/locale/pl/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt/LC_MESSAGES/kcachegrind.mo +share/locale/pt/LC_MESSAGES/kcachegrind_qt.qm share/locale/pt_BR/LC_MESSAGES/kcachegrind.mo +share/locale/pt_BR/LC_MESSAGES/kcachegrind_qt.qm share/locale/ro/LC_MESSAGES/kcachegrind.mo share/locale/ru/LC_MESSAGES/kcachegrind.mo +share/locale/ru/LC_MESSAGES/kcachegrind_qt.qm share/locale/se/LC_MESSAGES/kcachegrind.mo +share/locale/se/LC_MESSAGES/kcachegrind_qt.qm share/locale/sk/LC_MESSAGES/kcachegrind.mo +share/locale/sk/LC_MESSAGES/kcachegrind_qt.qm share/locale/sl/LC_MESSAGES/kcachegrind.mo +share/locale/sl/LC_MESSAGES/kcachegrind_qt.qm share/locale/sq/LC_MESSAGES/kcachegrind.mo share/locale/sv/LC_MESSAGES/kcachegrind.mo +share/locale/sv/LC_MESSAGES/kcachegrind_qt.qm share/locale/ta/LC_MESSAGES/kcachegrind.mo share/locale/tg/LC_MESSAGES/kcachegrind.mo share/locale/tr/LC_MESSAGES/kcachegrind.mo +share/locale/tr/LC_MESSAGES/kcachegrind_qt.qm share/locale/ug/LC_MESSAGES/kcachegrind.mo +share/locale/ug/LC_MESSAGES/kcachegrind_qt.qm share/locale/uk/LC_MESSAGES/kcachegrind.mo +share/locale/uk/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_CN/LC_MESSAGES/kcachegrind.mo +share/locale/zh_CN/LC_MESSAGES/kcachegrind_qt.qm share/locale/zh_TW/LC_MESSAGES/kcachegrind.mo +share/locale/zh_TW/LC_MESSAGES/kcachegrind_qt.qm share/metainfo/org.kde.kcachegrind.appdata.xml diff --git a/devel/kde-dev-scripts/distinfo b/devel/kde-dev-scripts/distinfo index 6dde1aca71c9..ff5bdb7a5b06 100644 --- a/devel/kde-dev-scripts/distinfo +++ b/devel/kde-dev-scripts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539451 -SHA256 (KDE/release-service/22.08.3/kde-dev-scripts-22.08.3.tar.xz) = 4493040f0b055c68e6043b778fbd7509ccd0dbe3efab31c0452bd995d8f36d23 -SIZE (KDE/release-service/22.08.3/kde-dev-scripts-22.08.3.tar.xz) = 366960 +TIMESTAMP = 1670513049 +SHA256 (KDE/release-service/22.12.0/kde-dev-scripts-22.12.0.tar.xz) = 4525a37f143273e55aa6385ae915c31ad6f912e9d8c40a6abb51699c3d4bbe67 +SIZE (KDE/release-service/22.12.0/kde-dev-scripts-22.12.0.tar.xz) = 367724 diff --git a/devel/kde-dev-scripts/pkg-plist b/devel/kde-dev-scripts/pkg-plist index c5b56397ad81..5b87c2b20b9e 100644 --- a/devel/kde-dev-scripts/pkg-plist +++ b/devel/kde-dev-scripts/pkg-plist @@ -1,269 +1,271 @@ bin/adddebug bin/build-progress.sh bin/c++-copy-class-and-file bin/c++-rename-class-and-file bin/cheatmake +bin/clean-forward-declaration.sh +bin/clean-includes.sh bin/colorsvn bin/create_cvsignore bin/create_makefile bin/create_makefiles bin/create_svnignore bin/cvs-clean bin/cvsaddcurrentdir bin/cvsbackport bin/cvsblame bin/cvscheck bin/cvsforwardport bin/cvslastchange bin/cvslastlog bin/cvsrevertlast bin/cvsversion bin/cxxmetric bin/draw_lib_dependencies bin/extend_dmalloc bin/extractattr bin/extractrc bin/findmissingcrystal bin/fix-include.sh bin/fixkdeincludes bin/fixuifiles bin/grantlee_strings_extractor.py bin/includemocs bin/kde-systemsettings-tree.py bin/kde_generate_export_header bin/kdedoc bin/kdekillall bin/kdelnk2desktop.py bin/kdemangen.pl bin/krazy-licensecheck bin/makeobj bin/noncvslist bin/nonsvnlist bin/optimizegraphics bin/package_crystalsvg bin/png2mng.pl bin/pruneemptydirs bin/qtdoc bin/reviewboard-am bin/svn-clean bin/svnbackport bin/svnchangesince bin/svnforwardport bin/svngettags bin/svnintegrate bin/svnlastchange bin/svnlastlog bin/svnrevertlast bin/svnversions bin/uncrustify-kf5 bin/wcgrep bin/zonetab2pot.py man/ca/man1/adddebug.1.gz man/ca/man1/cheatmake.1.gz man/ca/man1/create_cvsignore.1.gz man/ca/man1/create_makefile.1.gz man/ca/man1/create_makefiles.1.gz man/ca/man1/cvscheck.1.gz man/ca/man1/cvslastchange.1.gz man/ca/man1/cvslastlog.1.gz man/ca/man1/cvsrevertlast.1.gz man/ca/man1/cxxmetric.1.gz man/ca/man1/extend_dmalloc.1.gz man/ca/man1/extractrc.1.gz man/ca/man1/fixincludes.1.gz man/ca/man1/pruneemptydirs.1.gz man/ca/man1/qtdoc.1.gz man/ca/man1/zonetab2pot.py.1.gz man/da/man1/adddebug.1.gz man/da/man1/cheatmake.1.gz man/da/man1/create_cvsignore.1.gz man/da/man1/create_makefiles.1.gz man/da/man1/cvscheck.1.gz man/da/man1/cvslastchange.1.gz man/da/man1/cvslastlog.1.gz man/da/man1/cvsrevertlast.1.gz man/da/man1/cxxmetric.1.gz man/da/man1/extend_dmalloc.1.gz man/da/man1/extractrc.1.gz man/da/man1/fixincludes.1.gz man/da/man1/pruneemptydirs.1.gz man/da/man1/qtdoc.1.gz man/da/man1/zonetab2pot.py.1.gz man/de/man1/adddebug.1.gz man/de/man1/cheatmake.1.gz man/de/man1/create_cvsignore.1.gz man/de/man1/create_makefile.1.gz man/de/man1/create_makefiles.1.gz man/de/man1/cvscheck.1.gz man/de/man1/cvslastchange.1.gz man/de/man1/cvslastlog.1.gz man/de/man1/cvsrevertlast.1.gz man/de/man1/cxxmetric.1.gz man/de/man1/extend_dmalloc.1.gz man/de/man1/extractrc.1.gz man/de/man1/fixincludes.1.gz man/de/man1/pruneemptydirs.1.gz man/de/man1/qtdoc.1.gz man/de/man1/zonetab2pot.py.1.gz man/es/man1/adddebug.1.gz man/es/man1/cheatmake.1.gz man/es/man1/create_cvsignore.1.gz man/es/man1/create_makefile.1.gz man/es/man1/create_makefiles.1.gz man/es/man1/cvscheck.1.gz man/es/man1/cvslastchange.1.gz man/es/man1/cvslastlog.1.gz man/es/man1/cvsrevertlast.1.gz man/es/man1/cxxmetric.1.gz man/es/man1/extend_dmalloc.1.gz man/es/man1/extractrc.1.gz man/es/man1/fixincludes.1.gz man/es/man1/pruneemptydirs.1.gz man/es/man1/qtdoc.1.gz man/es/man1/zonetab2pot.py.1.gz man/et/man1/qtdoc.1.gz man/fr/man1/adddebug.1.gz man/fr/man1/cheatmake.1.gz man/fr/man1/create_cvsignore.1.gz man/fr/man1/create_makefile.1.gz man/fr/man1/create_makefiles.1.gz man/fr/man1/cvscheck.1.gz man/fr/man1/cvslastchange.1.gz man/fr/man1/cvslastlog.1.gz man/fr/man1/cvsrevertlast.1.gz man/fr/man1/cxxmetric.1.gz man/fr/man1/extend_dmalloc.1.gz man/fr/man1/extractrc.1.gz man/fr/man1/fixincludes.1.gz man/fr/man1/pruneemptydirs.1.gz man/fr/man1/qtdoc.1.gz man/fr/man1/zonetab2pot.py.1.gz man/gl/man1/adddebug.1.gz man/gl/man1/cheatmake.1.gz man/gl/man1/create_cvsignore.1.gz man/gl/man1/create_makefiles.1.gz man/gl/man1/cvscheck.1.gz man/gl/man1/cvslastchange.1.gz man/gl/man1/cvslastlog.1.gz man/gl/man1/cvsrevertlast.1.gz man/gl/man1/cxxmetric.1.gz man/gl/man1/extend_dmalloc.1.gz man/gl/man1/extractrc.1.gz man/gl/man1/fixincludes.1.gz man/gl/man1/pruneemptydirs.1.gz man/gl/man1/qtdoc.1.gz man/gl/man1/zonetab2pot.py.1.gz man/it/man1/adddebug.1.gz man/it/man1/cheatmake.1.gz man/it/man1/create_cvsignore.1.gz man/it/man1/create_makefile.1.gz man/it/man1/create_makefiles.1.gz man/it/man1/cvscheck.1.gz man/it/man1/cvslastchange.1.gz man/it/man1/cvslastlog.1.gz man/it/man1/cvsrevertlast.1.gz man/it/man1/cxxmetric.1.gz man/it/man1/extend_dmalloc.1.gz man/it/man1/extractrc.1.gz man/it/man1/fixincludes.1.gz man/it/man1/pruneemptydirs.1.gz man/it/man1/qtdoc.1.gz man/it/man1/zonetab2pot.py.1.gz man/man1/adddebug.1.gz man/man1/cheatmake.1.gz man/man1/create_cvsignore.1.gz man/man1/create_makefile.1.gz man/man1/create_makefiles.1.gz man/man1/cvscheck.1.gz man/man1/cvslastchange.1.gz man/man1/cvslastlog.1.gz man/man1/cvsrevertlast.1.gz man/man1/cxxmetric.1.gz man/man1/extend_dmalloc.1.gz man/man1/extractrc.1.gz man/man1/fixincludes.1.gz man/man1/pruneemptydirs.1.gz man/man1/qtdoc.1.gz man/man1/zonetab2pot.py.1.gz man/nl/man1/adddebug.1.gz man/nl/man1/cheatmake.1.gz man/nl/man1/create_cvsignore.1.gz man/nl/man1/create_makefile.1.gz man/nl/man1/create_makefiles.1.gz man/nl/man1/cvscheck.1.gz man/nl/man1/cvslastchange.1.gz man/nl/man1/cvslastlog.1.gz man/nl/man1/cvsrevertlast.1.gz man/nl/man1/cxxmetric.1.gz man/nl/man1/extend_dmalloc.1.gz man/nl/man1/extractrc.1.gz man/nl/man1/fixincludes.1.gz man/nl/man1/pruneemptydirs.1.gz man/nl/man1/qtdoc.1.gz man/nl/man1/zonetab2pot.py.1.gz man/pt/man1/adddebug.1.gz man/pt/man1/cheatmake.1.gz man/pt/man1/create_cvsignore.1.gz man/pt/man1/create_makefile.1.gz man/pt/man1/create_makefiles.1.gz man/pt/man1/cvscheck.1.gz man/pt/man1/cvslastchange.1.gz man/pt/man1/cvslastlog.1.gz man/pt/man1/cvsrevertlast.1.gz man/pt/man1/cxxmetric.1.gz man/pt/man1/extend_dmalloc.1.gz man/pt/man1/extractrc.1.gz man/pt/man1/fixincludes.1.gz man/pt/man1/pruneemptydirs.1.gz man/pt/man1/qtdoc.1.gz man/pt/man1/zonetab2pot.py.1.gz man/pt_BR/man1/adddebug.1.gz man/pt_BR/man1/cheatmake.1.gz man/pt_BR/man1/create_cvsignore.1.gz man/pt_BR/man1/create_makefile.1.gz man/pt_BR/man1/create_makefiles.1.gz man/pt_BR/man1/cvscheck.1.gz man/pt_BR/man1/cvslastchange.1.gz man/pt_BR/man1/cvslastlog.1.gz man/pt_BR/man1/cvsrevertlast.1.gz man/pt_BR/man1/cxxmetric.1.gz man/pt_BR/man1/extend_dmalloc.1.gz man/pt_BR/man1/extractrc.1.gz man/pt_BR/man1/fixincludes.1.gz man/pt_BR/man1/pruneemptydirs.1.gz man/pt_BR/man1/qtdoc.1.gz man/pt_BR/man1/zonetab2pot.py.1.gz man/sv/man1/adddebug.1.gz man/sv/man1/cheatmake.1.gz man/sv/man1/create_cvsignore.1.gz man/sv/man1/create_makefile.1.gz man/sv/man1/create_makefiles.1.gz man/sv/man1/cvscheck.1.gz man/sv/man1/cvslastchange.1.gz man/sv/man1/cvslastlog.1.gz man/sv/man1/cvsrevertlast.1.gz man/sv/man1/cxxmetric.1.gz man/sv/man1/extend_dmalloc.1.gz man/sv/man1/extractrc.1.gz man/sv/man1/fixincludes.1.gz man/sv/man1/pruneemptydirs.1.gz man/sv/man1/qtdoc.1.gz man/sv/man1/zonetab2pot.py.1.gz man/uk/man1/adddebug.1.gz man/uk/man1/cheatmake.1.gz man/uk/man1/create_cvsignore.1.gz man/uk/man1/create_makefile.1.gz man/uk/man1/create_makefiles.1.gz man/uk/man1/cvscheck.1.gz man/uk/man1/cvslastchange.1.gz man/uk/man1/cvslastlog.1.gz man/uk/man1/cvsrevertlast.1.gz man/uk/man1/cxxmetric.1.gz man/uk/man1/extend_dmalloc.1.gz man/uk/man1/extractrc.1.gz man/uk/man1/fixincludes.1.gz man/uk/man1/pruneemptydirs.1.gz man/uk/man1/qtdoc.1.gz man/uk/man1/zonetab2pot.py.1.gz share/uncrustify/uncrustify-kf5.cfg share/uncrustify/uncrustify-qt.cfg diff --git a/devel/kde-dev-utils/distinfo b/devel/kde-dev-utils/distinfo index 50a35a0fc1d8..5041741ca165 100644 --- a/devel/kde-dev-utils/distinfo +++ b/devel/kde-dev-utils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539452 -SHA256 (KDE/release-service/22.08.3/kde-dev-utils-22.08.3.tar.xz) = 7cf993e411dd3f9a575b1b07b70ac50667302971166428beb555071d82d8e626 -SIZE (KDE/release-service/22.08.3/kde-dev-utils-22.08.3.tar.xz) = 68792 +TIMESTAMP = 1670513050 +SHA256 (KDE/release-service/22.12.0/kde-dev-utils-22.12.0.tar.xz) = a3c2b22e5a6ddd017728ebcda40434e115950d2d923ead98a54656a2dbd002b6 +SIZE (KDE/release-service/22.12.0/kde-dev-utils-22.12.0.tar.xz) = 71580 diff --git a/devel/kde-dev-utils/pkg-plist b/devel/kde-dev-utils/pkg-plist index 4e297fbbdfcb..fd169cc63be4 100644 --- a/devel/kde-dev-utils/pkg-plist +++ b/devel/kde-dev-utils/pkg-plist @@ -1,115 +1,125 @@ 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/128x128/apps/kuiviewer.png share/icons/hicolor/scalable/apps/kuiviewer.svg share/kservices5/designerthumbnail.desktop share/kservices5/kuiviewer_part.desktop share/locale/ar/LC_MESSAGES/kuiviewer.mo share/locale/az/LC_MESSAGES/kpartloader.mo share/locale/az/LC_MESSAGES/kuiviewer.mo share/locale/be/LC_MESSAGES/kuiviewer.mo share/locale/bg/LC_MESSAGES/kpartloader.mo share/locale/bg/LC_MESSAGES/kuiviewer.mo +share/locale/br/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/cy/LC_MESSAGES/kuiviewer.mo share/locale/da/LC_MESSAGES/kpartloader.mo share/locale/da/LC_MESSAGES/kuiviewer.mo share/locale/de/LC_MESSAGES/kpartloader.mo share/locale/de/LC_MESSAGES/kuiviewer.mo share/locale/el/LC_MESSAGES/kpartloader.mo share/locale/el/LC_MESSAGES/kuiviewer.mo share/locale/en_GB/LC_MESSAGES/kpartloader.mo share/locale/en_GB/LC_MESSAGES/kuiviewer.mo share/locale/eo/LC_MESSAGES/kpartloader.mo share/locale/eo/LC_MESSAGES/kuiviewer.mo share/locale/es/LC_MESSAGES/kpartloader.mo share/locale/es/LC_MESSAGES/kuiviewer.mo share/locale/et/LC_MESSAGES/kpartloader.mo share/locale/et/LC_MESSAGES/kuiviewer.mo share/locale/eu/LC_MESSAGES/kpartloader.mo share/locale/eu/LC_MESSAGES/kuiviewer.mo share/locale/fa/LC_MESSAGES/kuiviewer.mo share/locale/fi/LC_MESSAGES/kpartloader.mo share/locale/fi/LC_MESSAGES/kuiviewer.mo share/locale/fr/LC_MESSAGES/kpartloader.mo share/locale/fr/LC_MESSAGES/kuiviewer.mo share/locale/ga/LC_MESSAGES/kpartloader.mo share/locale/ga/LC_MESSAGES/kuiviewer.mo share/locale/gl/LC_MESSAGES/kpartloader.mo share/locale/gl/LC_MESSAGES/kuiviewer.mo share/locale/hi/LC_MESSAGES/kuiviewer.mo +share/locale/hne/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/ka/LC_MESSAGES/kpartloader.mo +share/locale/ka/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/mk/LC_MESSAGES/kuiviewer.mo share/locale/mr/LC_MESSAGES/kpartloader.mo share/locale/mr/LC_MESSAGES/kuiviewer.mo +share/locale/ms/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/ne/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/oc/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/th/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-kio/distinfo b/devel/kdesdk-kio/distinfo index f4d6cffb745d..5c29fcd6fcca 100644 --- a/devel/kdesdk-kio/distinfo +++ b/devel/kdesdk-kio/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539435 -SHA256 (KDE/release-service/22.08.3/kdesdk-kio-22.08.3.tar.xz) = e0c4cb7516289f752aa1fd2761d258b3d1ad0406da7648fc225fd809b570d179 -SIZE (KDE/release-service/22.08.3/kdesdk-kio-22.08.3.tar.xz) = 39644 +TIMESTAMP = 1670513030 +SHA256 (KDE/release-service/22.12.0/kdesdk-kio-22.12.0.tar.xz) = 0acfc6dcbed69c3a87b0f6d7d7f71be499826017f23358729b26e13494fb4f1e +SIZE (KDE/release-service/22.12.0/kdesdk-kio-22.12.0.tar.xz) = 40148 diff --git a/devel/kdesdk-kio/pkg-plist b/devel/kdesdk-kio/pkg-plist index 7eb0a48b9835..9d04a78cef0b 100644 --- a/devel/kdesdk-kio/pkg-plist +++ b/devel/kdesdk-kio/pkg-plist @@ -1,44 +1,45 @@ %%QT_PLUGINDIR%%/kf5/kio/perldoc.so share/kio_perldoc/pod2html.pl share/locale/bs/LC_MESSAGES/kio5_perldoc.mo share/locale/ca/LC_MESSAGES/kio5_perldoc.mo share/locale/ca@valencia/LC_MESSAGES/kio5_perldoc.mo share/locale/cs/LC_MESSAGES/kio5_perldoc.mo share/locale/da/LC_MESSAGES/kio5_perldoc.mo share/locale/de/LC_MESSAGES/kio5_perldoc.mo share/locale/el/LC_MESSAGES/kio5_perldoc.mo share/locale/en_GB/LC_MESSAGES/kio5_perldoc.mo share/locale/eo/LC_MESSAGES/kio5_perldoc.mo share/locale/es/LC_MESSAGES/kio5_perldoc.mo share/locale/et/LC_MESSAGES/kio5_perldoc.mo share/locale/eu/LC_MESSAGES/kio5_perldoc.mo share/locale/fi/LC_MESSAGES/kio5_perldoc.mo share/locale/fr/LC_MESSAGES/kio5_perldoc.mo share/locale/ga/LC_MESSAGES/kio5_perldoc.mo share/locale/gl/LC_MESSAGES/kio5_perldoc.mo share/locale/hi/LC_MESSAGES/kio5_perldoc.mo share/locale/hu/LC_MESSAGES/kio5_perldoc.mo share/locale/it/LC_MESSAGES/kio5_perldoc.mo share/locale/ja/LC_MESSAGES/kio5_perldoc.mo +share/locale/ka/LC_MESSAGES/kio5_perldoc.mo share/locale/kk/LC_MESSAGES/kio5_perldoc.mo share/locale/ko/LC_MESSAGES/kio5_perldoc.mo share/locale/lt/LC_MESSAGES/kio5_perldoc.mo share/locale/mr/LC_MESSAGES/kio5_perldoc.mo share/locale/nb/LC_MESSAGES/kio5_perldoc.mo share/locale/nds/LC_MESSAGES/kio5_perldoc.mo share/locale/nl/LC_MESSAGES/kio5_perldoc.mo share/locale/nn/LC_MESSAGES/kio5_perldoc.mo share/locale/pa/LC_MESSAGES/kio5_perldoc.mo share/locale/pl/LC_MESSAGES/kio5_perldoc.mo share/locale/pt/LC_MESSAGES/kio5_perldoc.mo share/locale/pt_BR/LC_MESSAGES/kio5_perldoc.mo share/locale/ru/LC_MESSAGES/kio5_perldoc.mo share/locale/sk/LC_MESSAGES/kio5_perldoc.mo share/locale/sl/LC_MESSAGES/kio5_perldoc.mo share/locale/sq/LC_MESSAGES/kio5_perldoc.mo share/locale/sv/LC_MESSAGES/kio5_perldoc.mo share/locale/tr/LC_MESSAGES/kio5_perldoc.mo share/locale/ug/LC_MESSAGES/kio5_perldoc.mo share/locale/uk/LC_MESSAGES/kio5_perldoc.mo share/locale/zh_CN/LC_MESSAGES/kio5_perldoc.mo share/locale/zh_TW/LC_MESSAGES/kio5_perldoc.mo diff --git a/devel/kdesdk-thumbnailers/distinfo b/devel/kdesdk-thumbnailers/distinfo index 59ddcf4a8e9e..a25e528dda73 100644 --- a/devel/kdesdk-thumbnailers/distinfo +++ b/devel/kdesdk-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539434 -SHA256 (KDE/release-service/22.08.3/kdesdk-thumbnailers-22.08.3.tar.xz) = df01a90576000cd351c01e60535c5648523984ac6799ca157fc1e4a617faa0a8 -SIZE (KDE/release-service/22.08.3/kdesdk-thumbnailers-22.08.3.tar.xz) = 26688 +TIMESTAMP = 1670513029 +SHA256 (KDE/release-service/22.12.0/kdesdk-thumbnailers-22.12.0.tar.xz) = 6b5ed44422cc8fd1ad505e46655079e0e18e6a7c64ae08e220b370ddae5492d0 +SIZE (KDE/release-service/22.12.0/kdesdk-thumbnailers-22.12.0.tar.xz) = 26920 diff --git a/devel/kdesdk-thumbnailers/pkg-plist b/devel/kdesdk-thumbnailers/pkg-plist index 2f6d18df2543..e942ff5d16d3 100644 --- a/devel/kdesdk-thumbnailers/pkg-plist +++ b/devel/kdesdk-thumbnailers/pkg-plist @@ -1,47 +1,47 @@ -%%QT_PLUGINDIR%%/pothumbnail.so +%%QT_PLUGINDIR%%/kf5/thumbcreator/pothumbnail.so share/config.kcfg/pocreatorsettings.kcfg -share/kservices5/pothumbnail.desktop share/locale/ar/LC_MESSAGES/pothumbnail.mo share/locale/bg/LC_MESSAGES/pothumbnail.mo share/locale/bs/LC_MESSAGES/pothumbnail.mo share/locale/ca/LC_MESSAGES/pothumbnail.mo share/locale/ca@valencia/LC_MESSAGES/pothumbnail.mo share/locale/cs/LC_MESSAGES/pothumbnail.mo share/locale/da/LC_MESSAGES/pothumbnail.mo share/locale/de/LC_MESSAGES/pothumbnail.mo share/locale/el/LC_MESSAGES/pothumbnail.mo share/locale/en_GB/LC_MESSAGES/pothumbnail.mo share/locale/es/LC_MESSAGES/pothumbnail.mo share/locale/et/LC_MESSAGES/pothumbnail.mo share/locale/eu/LC_MESSAGES/pothumbnail.mo share/locale/fi/LC_MESSAGES/pothumbnail.mo share/locale/fr/LC_MESSAGES/pothumbnail.mo share/locale/ga/LC_MESSAGES/pothumbnail.mo share/locale/gl/LC_MESSAGES/pothumbnail.mo share/locale/hi/LC_MESSAGES/pothumbnail.mo share/locale/hu/LC_MESSAGES/pothumbnail.mo share/locale/it/LC_MESSAGES/pothumbnail.mo share/locale/ja/LC_MESSAGES/pothumbnail.mo +share/locale/ka/LC_MESSAGES/pothumbnail.mo share/locale/kk/LC_MESSAGES/pothumbnail.mo share/locale/ko/LC_MESSAGES/pothumbnail.mo share/locale/lt/LC_MESSAGES/pothumbnail.mo share/locale/mr/LC_MESSAGES/pothumbnail.mo share/locale/nb/LC_MESSAGES/pothumbnail.mo share/locale/nds/LC_MESSAGES/pothumbnail.mo share/locale/nl/LC_MESSAGES/pothumbnail.mo share/locale/nn/LC_MESSAGES/pothumbnail.mo share/locale/pa/LC_MESSAGES/pothumbnail.mo share/locale/pl/LC_MESSAGES/pothumbnail.mo share/locale/pt/LC_MESSAGES/pothumbnail.mo share/locale/pt_BR/LC_MESSAGES/pothumbnail.mo share/locale/ro/LC_MESSAGES/pothumbnail.mo share/locale/ru/LC_MESSAGES/pothumbnail.mo share/locale/sk/LC_MESSAGES/pothumbnail.mo share/locale/sl/LC_MESSAGES/pothumbnail.mo share/locale/sv/LC_MESSAGES/pothumbnail.mo share/locale/tr/LC_MESSAGES/pothumbnail.mo share/locale/ug/LC_MESSAGES/pothumbnail.mo share/locale/uk/LC_MESSAGES/pothumbnail.mo share/locale/vi/LC_MESSAGES/pothumbnail.mo share/locale/zh_CN/LC_MESSAGES/pothumbnail.mo share/locale/zh_TW/LC_MESSAGES/pothumbnail.mo diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index 1dbd7b3f9c75..77d827ef0c51 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -1,31 +1,31 @@ PORTNAME= kdev-php DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= PHP support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz xorg USE_KDE= auth codecs completion config configwidgets coreaddons ecm \ i18n itemmodels jobwidgets kcmutils kio parts service solid \ sonnet syntaxhighlighting texteditor textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network webkit widgets xml \ buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) -PLATFORM_VER= 37 +PLATFORM_VER= 510 PRIVATE_VER= 5.7 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} PRIVATE_VER=${PRIVATE_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-php/distinfo b/devel/kdev-php/distinfo index 45b3e965cd45..d4aa41c089a0 100644 --- a/devel/kdev-php/distinfo +++ b/devel/kdev-php/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539450 -SHA256 (KDE/release-service/22.08.3/kdev-php-22.08.3.tar.xz) = b727e89b7d9c421d100017190c8172d360667a2dfaa9de32699ca5667f8839c1 -SIZE (KDE/release-service/22.08.3/kdev-php-22.08.3.tar.xz) = 1081608 +TIMESTAMP = 1670513048 +SHA256 (KDE/release-service/22.12.0/kdev-php-22.12.0.tar.xz) = e87a03fc34836e23f1c47ccdf7e3704fda27c0ddeaf288738268c39af76c3053 +SIZE (KDE/release-service/22.12.0/kdev-php-22.12.0.tar.xz) = 1082620 diff --git a/devel/kdev-php/pkg-plist b/devel/kdev-php/pkg-plist index 643da5655882..4729b51283b8 100644 --- a/devel/kdev-php/pkg-plist +++ b/devel/kdev-php/pkg-plist @@ -1,70 +1,72 @@ include/kdev-php/kdevphpversion.h include/kdev-php/parser/parsesession.h include/kdev-php/parser/phplexer.h include/kdev-php/parser/tokenstream.h include/kdev-php/private/%%PRIVATE_VER%%/parser/parserexport.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpast-fwd.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpast.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpdebugvisitor.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpdefaultvisitor.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpparser.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phptokentext.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phptokentype.h include/kdev-php/private/%%PRIVATE_VER%%/parser/phpvisitor.h lib/cmake/KDevPHP/KDevPHPConfig.cmake lib/cmake/KDevPHP/KDevPHPConfigVersion.cmake -lib/cmake/KDevPHP/KDevPHPTargets-release.cmake +lib/cmake/KDevPHP/KDevPHPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPHP/KDevPHPTargets.cmake lib/libkdevphpcompletion.so lib/libkdevphpduchain.so lib/libkdevphpparser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kcm/kcm_kdevphpdocs.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphpdocs.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphplanguagesupport.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevphpunitprovider.so share/kdevappwizard/templates/simple_phpapp.tar.bz2 share/kdevphpsupport/phpfunctions.php share/kdevphpsupport/phpunitdeclarations.php share/kservices5/kcm_kdevphpdocs.desktop share/locale/bs/LC_MESSAGES/kdevphp.mo share/locale/ca/LC_MESSAGES/kdevphp.mo share/locale/ca@valencia/LC_MESSAGES/kdevphp.mo share/locale/cs/LC_MESSAGES/kdevphp.mo share/locale/da/LC_MESSAGES/kdevphp.mo share/locale/de/LC_MESSAGES/kdevphp.mo share/locale/el/LC_MESSAGES/kdevphp.mo share/locale/en_GB/LC_MESSAGES/kdevphp.mo share/locale/eo/LC_MESSAGES/kdevphp.mo share/locale/es/LC_MESSAGES/kdevphp.mo share/locale/et/LC_MESSAGES/kdevphp.mo share/locale/fi/LC_MESSAGES/kdevphp.mo share/locale/fr/LC_MESSAGES/kdevphp.mo share/locale/ga/LC_MESSAGES/kdevphp.mo share/locale/gl/LC_MESSAGES/kdevphp.mo share/locale/hr/LC_MESSAGES/kdevphp.mo share/locale/hu/LC_MESSAGES/kdevphp.mo share/locale/it/LC_MESSAGES/kdevphp.mo share/locale/ja/LC_MESSAGES/kdevphp.mo +share/locale/ka/LC_MESSAGES/kdevphp.mo share/locale/kk/LC_MESSAGES/kdevphp.mo share/locale/ko/LC_MESSAGES/kdevphp.mo share/locale/lt/LC_MESSAGES/kdevphp.mo share/locale/mr/LC_MESSAGES/kdevphp.mo share/locale/nb/LC_MESSAGES/kdevphp.mo share/locale/nds/LC_MESSAGES/kdevphp.mo share/locale/nl/LC_MESSAGES/kdevphp.mo share/locale/nn/LC_MESSAGES/kdevphp.mo share/locale/pl/LC_MESSAGES/kdevphp.mo share/locale/pt/LC_MESSAGES/kdevphp.mo share/locale/pt_BR/LC_MESSAGES/kdevphp.mo share/locale/ro/LC_MESSAGES/kdevphp.mo share/locale/ru/LC_MESSAGES/kdevphp.mo share/locale/sk/LC_MESSAGES/kdevphp.mo share/locale/sl/LC_MESSAGES/kdevphp.mo share/locale/sv/LC_MESSAGES/kdevphp.mo +share/locale/th/LC_MESSAGES/kdevphp.mo share/locale/tr/LC_MESSAGES/kdevphp.mo share/locale/ug/LC_MESSAGES/kdevphp.mo share/locale/uk/LC_MESSAGES/kdevphp.mo share/locale/zh_CN/LC_MESSAGES/kdevphp.mo share/locale/zh_TW/LC_MESSAGES/kdevphp.mo share/metainfo/org.kde.kdev-php.metainfo.xml share/qlogging-categories5/kdevphpsupport.categories diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index f78ffe267648..880691fede72 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -1,30 +1,30 @@ PORTNAME= kdev-python DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Python support for KDevelop WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt LIB_DEPENDS= libKDevPlatformInterfaces.so:devel/kdevelop USES= cmake compiler:c++11-lib kde:5 python:3.7+ qt:5 tar:xz xorg USE_KDE= attica auth codecs completion config configwidgets coreaddons \ ecm i18n itemmodels jobwidgets kio newstuff parts service \ solid sonnet syntaxhighlighting texteditor textwidgets \ threadweaver widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus gui network widgets xml \ buildtools:build qmake:build USE_XORG= x11 # Versioning values, to reduce plist churn (match with devel/kdevelop) -PLATFORM_VER= 37 +PLATFORM_VER= 510 PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} # Does not build with jobs. MAKE_JOBS_UNSAFE= yes .include diff --git a/devel/kdev-python/distinfo b/devel/kdev-python/distinfo index c4ed45f74cf9..2e211ee6d4be 100644 --- a/devel/kdev-python/distinfo +++ b/devel/kdev-python/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539442 -SHA256 (KDE/release-service/22.08.3/kdev-python-22.08.3.tar.xz) = 26952f6a73756dbe0acfe80aaea8e92c22afcd4174a23b29934019c94a608070 -SIZE (KDE/release-service/22.08.3/kdev-python-22.08.3.tar.xz) = 1091148 +TIMESTAMP = 1670513039 +SHA256 (KDE/release-service/22.12.0/kdev-python-22.12.0.tar.xz) = e476611d47ff52e5a5cf25d5abb56dfb56074361c2bf9a031e7368330d2bee6d +SIZE (KDE/release-service/22.12.0/kdev-python-22.12.0.tar.xz) = 1091048 diff --git a/devel/kdev-python/pkg-plist b/devel/kdev-python/pkg-plist index c18aa0c0d9a5..e4821d0bf52a 100644 --- a/devel/kdev-python/pkg-plist +++ b/devel/kdev-python/pkg-plist @@ -1,185 +1,188 @@ lib/libkdevpythoncompletion.so lib/libkdevpythonduchain.so lib/libkdevpythonparser.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpdb.so %%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpythonlanguagesupport.so share/kdevappwizard/templates/django_project.tar.bz2 share/kdevappwizard/templates/qtdesigner_app.tar.bz2 share/kdevappwizard/templates/simple_pythonapp.tar.bz2 share/kdevpythonsupport/codestyle.py share/kdevpythonsupport/correction_files/matplotlib/_pylab_helpers.py share/kdevpythonsupport/correction_files/matplotlib/artist.py share/kdevpythonsupport/correction_files/matplotlib/backend_bases.py share/kdevpythonsupport/correction_files/matplotlib/figure.py share/kdevpythonsupport/correction_files/matplotlib/pyplot.py share/kdevpythonsupport/correction_files/re.py share/kdevpythonsupport/correction_files/string.py share/kdevpythonsupport/correction_files/testCorrectionFiles/example.py share/kdevpythonsupport/debugger/__kdevpython_debugger_utils.py share/kdevpythonsupport/debugger/kdevpdb.py share/kdevpythonsupport/documentation_files/COPYING share/kdevpythonsupport/documentation_files/PyKDE4/akonadi.py share/kdevpythonsupport/documentation_files/PyKDE4/dnssd.py share/kdevpythonsupport/documentation_files/PyKDE4/kdecore.py share/kdevpythonsupport/documentation_files/PyKDE4/kdeui.py share/kdevpythonsupport/documentation_files/PyKDE4/khtml.py share/kdevpythonsupport/documentation_files/PyKDE4/kio.py share/kdevpythonsupport/documentation_files/PyKDE4/knewstuff.py share/kdevpythonsupport/documentation_files/PyKDE4/kparts.py share/kdevpythonsupport/documentation_files/PyKDE4/kterminal.py share/kdevpythonsupport/documentation_files/PyKDE4/ktexteditor.py share/kdevpythonsupport/documentation_files/PyKDE4/kutils.py share/kdevpythonsupport/documentation_files/PyKDE4/nepomuk.py share/kdevpythonsupport/documentation_files/PyKDE4/parse_xml.py share/kdevpythonsupport/documentation_files/PyKDE4/phonon.py share/kdevpythonsupport/documentation_files/PyKDE4/plasma.py share/kdevpythonsupport/documentation_files/PyKDE4/polkitqt.py share/kdevpythonsupport/documentation_files/PyKDE4/solid.py share/kdevpythonsupport/documentation_files/PyKDE4/soprano.py share/kdevpythonsupport/documentation_files/PyQt4/Qt.py share/kdevpythonsupport/documentation_files/PyQt4/QtAssistant.py share/kdevpythonsupport/documentation_files/PyQt4/QtCore.py share/kdevpythonsupport/documentation_files/PyQt4/QtDBus.py share/kdevpythonsupport/documentation_files/PyQt4/QtDeclarative.py share/kdevpythonsupport/documentation_files/PyQt4/QtDesigner.py share/kdevpythonsupport/documentation_files/PyQt4/QtGui.py share/kdevpythonsupport/documentation_files/PyQt4/QtHelp.py share/kdevpythonsupport/documentation_files/PyQt4/QtMultimedia.py share/kdevpythonsupport/documentation_files/PyQt4/QtNetwork.py share/kdevpythonsupport/documentation_files/PyQt4/QtOpenGL.py share/kdevpythonsupport/documentation_files/PyQt4/QtScript.py share/kdevpythonsupport/documentation_files/PyQt4/QtScriptTools.py share/kdevpythonsupport/documentation_files/PyQt4/QtSql.py share/kdevpythonsupport/documentation_files/PyQt4/QtSvg.py share/kdevpythonsupport/documentation_files/PyQt4/QtTest.py share/kdevpythonsupport/documentation_files/PyQt4/QtWebKit.py share/kdevpythonsupport/documentation_files/PyQt4/QtXml.py share/kdevpythonsupport/documentation_files/PyQt4/QtXmlPatterns.py share/kdevpythonsupport/documentation_files/PyQt4/phonon.py share/kdevpythonsupport/documentation_files/PyQt5/QAxContainer.py share/kdevpythonsupport/documentation_files/PyQt5/Qt.py share/kdevpythonsupport/documentation_files/PyQt5/QtBluetooth.py share/kdevpythonsupport/documentation_files/PyQt5/QtCore.py share/kdevpythonsupport/documentation_files/PyQt5/QtDBus.py share/kdevpythonsupport/documentation_files/PyQt5/QtDesigner.py share/kdevpythonsupport/documentation_files/PyQt5/QtGui.py share/kdevpythonsupport/documentation_files/PyQt5/QtHelp.py share/kdevpythonsupport/documentation_files/PyQt5/QtLocation.py share/kdevpythonsupport/documentation_files/PyQt5/QtMacExtras.py share/kdevpythonsupport/documentation_files/PyQt5/QtMultimedia.py share/kdevpythonsupport/documentation_files/PyQt5/QtMultimediaWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtNetwork.py share/kdevpythonsupport/documentation_files/PyQt5/QtNfc.py share/kdevpythonsupport/documentation_files/PyQt5/QtOpenGL.py share/kdevpythonsupport/documentation_files/PyQt5/QtPositioning.py share/kdevpythonsupport/documentation_files/PyQt5/QtPrintSupport.py share/kdevpythonsupport/documentation_files/PyQt5/QtQml.py share/kdevpythonsupport/documentation_files/PyQt5/QtQuick.py share/kdevpythonsupport/documentation_files/PyQt5/QtQuickWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtSensors.py share/kdevpythonsupport/documentation_files/PyQt5/QtSerialPort.py share/kdevpythonsupport/documentation_files/PyQt5/QtSql.py share/kdevpythonsupport/documentation_files/PyQt5/QtSvg.py share/kdevpythonsupport/documentation_files/PyQt5/QtTest.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebChannel.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebEngineWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebKit.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebKitWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWebSockets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWidgets.py share/kdevpythonsupport/documentation_files/PyQt5/QtWinExtras.py share/kdevpythonsupport/documentation_files/PyQt5/QtX11Extras.py share/kdevpythonsupport/documentation_files/PyQt5/QtXml.py share/kdevpythonsupport/documentation_files/PyQt5/QtXmlPatterns.py share/kdevpythonsupport/documentation_files/__builtin__.py share/kdevpythonsupport/documentation_files/__builtin_constants__.py share/kdevpythonsupport/documentation_files/__builtin_types__.py share/kdevpythonsupport/documentation_files/__future__.py share/kdevpythonsupport/documentation_files/_collections.py share/kdevpythonsupport/documentation_files/_sre.py share/kdevpythonsupport/documentation_files/array.py share/kdevpythonsupport/documentation_files/audioop.py share/kdevpythonsupport/documentation_files/binascii.py share/kdevpythonsupport/documentation_files/builtindocumentation.py share/kdevpythonsupport/documentation_files/bz2.py share/kdevpythonsupport/documentation_files/cPickle.py share/kdevpythonsupport/documentation_files/cStringIO.py share/kdevpythonsupport/documentation_files/cmath.py share/kdevpythonsupport/documentation_files/crypt.py share/kdevpythonsupport/documentation_files/dbm.py share/kdevpythonsupport/documentation_files/errno.py share/kdevpythonsupport/documentation_files/exceptions.py share/kdevpythonsupport/documentation_files/fcntl.py share/kdevpythonsupport/documentation_files/future_builtins.py share/kdevpythonsupport/documentation_files/gc.py share/kdevpythonsupport/documentation_files/gdbm.py share/kdevpythonsupport/documentation_files/grp.py share/kdevpythonsupport/documentation_files/imp.py share/kdevpythonsupport/documentation_files/io.py share/kdevpythonsupport/documentation_files/itertools.py share/kdevpythonsupport/documentation_files/linuxaudiodev.py share/kdevpythonsupport/documentation_files/marshal.py share/kdevpythonsupport/documentation_files/math.py share/kdevpythonsupport/documentation_files/mmap.py share/kdevpythonsupport/documentation_files/nis.py share/kdevpythonsupport/documentation_files/numpy.py share/kdevpythonsupport/documentation_files/operator.py share/kdevpythonsupport/documentation_files/ossaudiodev.py share/kdevpythonsupport/documentation_files/parser.py share/kdevpythonsupport/documentation_files/posix.py share/kdevpythonsupport/documentation_files/pwd.py share/kdevpythonsupport/documentation_files/pyexpat.py share/kdevpythonsupport/documentation_files/readline.py share/kdevpythonsupport/documentation_files/resource.py share/kdevpythonsupport/documentation_files/select.py share/kdevpythonsupport/documentation_files/signal.py share/kdevpythonsupport/documentation_files/spwd.py share/kdevpythonsupport/documentation_files/strop.py share/kdevpythonsupport/documentation_files/sys.py share/kdevpythonsupport/documentation_files/syslog.py share/kdevpythonsupport/documentation_files/termios.py share/kdevpythonsupport/documentation_files/thread.py share/kdevpythonsupport/documentation_files/time.py share/kdevpythonsupport/documentation_files/unicodedata.py share/kdevpythonsupport/documentation_files/zipimport.py share/kdevpythonsupport/documentation_files/zlib.py share/kdevpythonsupport/scripts/introspect.py share/locale/bs/LC_MESSAGES/kdevpython.mo share/locale/ca/LC_MESSAGES/kdevpython.mo share/locale/ca@valencia/LC_MESSAGES/kdevpython.mo share/locale/cs/LC_MESSAGES/kdevpython.mo share/locale/da/LC_MESSAGES/kdevpython.mo share/locale/de/LC_MESSAGES/kdevpython.mo share/locale/en_GB/LC_MESSAGES/kdevpython.mo share/locale/eo/LC_MESSAGES/kdevpython.mo share/locale/es/LC_MESSAGES/kdevpython.mo share/locale/et/LC_MESSAGES/kdevpython.mo share/locale/fi/LC_MESSAGES/kdevpython.mo share/locale/fr/LC_MESSAGES/kdevpython.mo share/locale/ga/LC_MESSAGES/kdevpython.mo share/locale/gl/LC_MESSAGES/kdevpython.mo share/locale/hu/LC_MESSAGES/kdevpython.mo share/locale/it/LC_MESSAGES/kdevpython.mo share/locale/ja/LC_MESSAGES/kdevpython.mo +share/locale/ka/LC_MESSAGES/kdevpython.mo share/locale/kk/LC_MESSAGES/kdevpython.mo share/locale/ko/LC_MESSAGES/kdevpython.mo share/locale/lt/LC_MESSAGES/kdevpython.mo +share/locale/mai/LC_MESSAGES/kdevpython.mo share/locale/mr/LC_MESSAGES/kdevpython.mo share/locale/nds/LC_MESSAGES/kdevpython.mo share/locale/nl/LC_MESSAGES/kdevpython.mo share/locale/nn/LC_MESSAGES/kdevpython.mo share/locale/pl/LC_MESSAGES/kdevpython.mo share/locale/pt/LC_MESSAGES/kdevpython.mo share/locale/pt_BR/LC_MESSAGES/kdevpython.mo share/locale/ro/LC_MESSAGES/kdevpython.mo share/locale/ru/LC_MESSAGES/kdevpython.mo share/locale/sk/LC_MESSAGES/kdevpython.mo share/locale/sl/LC_MESSAGES/kdevpython.mo share/locale/sv/LC_MESSAGES/kdevpython.mo +share/locale/th/LC_MESSAGES/kdevpython.mo share/locale/tr/LC_MESSAGES/kdevpython.mo share/locale/ug/LC_MESSAGES/kdevpython.mo share/locale/uk/LC_MESSAGES/kdevpython.mo share/locale/zh_CN/LC_MESSAGES/kdevpython.mo share/locale/zh_TW/LC_MESSAGES/kdevpython.mo share/metainfo/org.kde.kdev-python.metainfo.xml share/qlogging-categories5/kdevpythonsupport.categories diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index e3b1c17a1b58..6f4ce0e476dc 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -1,66 +1,65 @@ # When updating this port, also chase # devel/kdev-php # devel/kdev-python PORTNAME= kdevelop DISTVERSION= ${KDE_APPLICATIONS_VERSION} CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= Plugin extensible IDE for C/C++ and other languages WWW= https://www.kdevelop.org/ LICENSE= GPLv2+ LGPL20+ LICENSE_COMB= multi BUILD_DEPENDS= kdev-pg-qt:devel/kdevelop-pg-qt \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} LIB_DEPENDS= libKasten4Controllers.so:devel/okteta \ libapr-1.so:devel/apr1 \ libsvn_client-1.so:devel/subversion \ libboost_thread.so:devel/boost-libs \ libkomparediff2.so:textproc/libkomparediff2 RUN_DEPENDS= gmake:devel/gmake \ llvm${LLVM_DEFAULT}>0:devel/llvm${LLVM_DEFAULT} USES= cmake compiler:c++11-lib desktop-file-utils gettext grantlee:5 \ kde:5 qt:5 shared-mime-info shebangfix tar:xz xorg USE_KDE= archive attica auth bookmarks codecs completion config configwidgets \ coreaddons crash guiaddons emoticons i18n iconthemes init \ itemmodels itemviews jobwidgets kcmutils kdeclarative \ kio libksysguard newstuff notifications \ notifyconfig package parts plasma-framework purpose \ runner service solid sonnet syntaxhighlighting texteditor \ textwidgets threadweaver \ widgetsaddons windowsystem xmlgui USE_QT= concurrent core dbus declarative gui help network printsupport \ script sql widgets xml buildtools:build qmake:build USE_XORG= x11 SHEBANG_FILES= kdevplatform/util/kdevplatform_shell_environment.sh \ kdevplatform/util/.zshrc # Most ports have ecm:build, testlib:build, but because this is an # IDE, which **probably** is used for Qt / KDE development (also # other things, but let's guess a target market), pull in some # additional development things that are otherwise build-dep-only. USE_KDE+= ecm USE_QT+= testlib CMAKE_ARGS= -DCMAKE_POLICY_DEFAULT_CMP0074=NEW -DLLVM_ROOT=${LOCALBASE}/llvm${LLVM_DEFAULT} # Versioning values, to reduce plist churn -PLATFORM_VER= 37 -SO_VER= 59 -SO_VER_LONG= 5.9.220803 -PLIST_SUB+= PLATFORM_VER=${PLATFORM_VER} SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} +SO_VER= 510 +SO_VER_LONG= 5.10.221200 +PLIST_SUB+= SO_VER=${SO_VER} SO_VER_LONG=${SO_VER_LONG} OPTIONS_DEFINE= WEBENGINE WEBENGINE_DESC= Use WebEngine as help reader WEBENGINE_USES= qt:5 WEBENGINE_USE= QT=location,webchannel,webengine WEBENGINE_USE_OFF= QT=webkit WEBENGINE_CMAKE_OFF= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5WebEngineWidgets:BOOL=TRUE SHEBANG_LANG= zsh zsh_OLD_CMD= /bin/zsh zsh_CMD= ${LOCALBASE}/bin/zsh .include diff --git a/devel/kdevelop/distinfo b/devel/kdevelop/distinfo index 2690c274c34e..d2ffdaf53670 100644 --- a/devel/kdevelop/distinfo +++ b/devel/kdevelop/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539444 -SHA256 (KDE/release-service/22.08.3/kdevelop-22.08.3.tar.xz) = 3c3baf212fd6ffd7ccb5b0796c2b43e252235c25275979c1570c44f80821f9d6 -SIZE (KDE/release-service/22.08.3/kdevelop-22.08.3.tar.xz) = 8451936 +TIMESTAMP = 1670513041 +SHA256 (KDE/release-service/22.12.0/kdevelop-22.12.0.tar.xz) = d58264a8a80321888c9e8f918f8fa94c725441e35762e1ca457e86aa449a791c +SIZE (KDE/release-service/22.12.0/kdevelop-22.12.0.tar.xz) = 8623184 diff --git a/devel/kdevelop/files/patch-craft.patch b/devel/kdevelop/files/patch-craft.patch deleted file mode 100644 index 207fdb667ec7..000000000000 --- a/devel/kdevelop/files/patch-craft.patch +++ /dev/null @@ -1,698 +0,0 @@ -diff --git plugins/CMakeLists.txt plugins/CMakeLists.txt -index 8bea62a97e..32a27dad9e 100644 ---- plugins/CMakeLists.txt -+++ plugins/CMakeLists.txt -@@ -80,6 +80,7 @@ ecm_optional_add_subdirectory(genericprojectmanager) - - # BEGIN: Runtimes - add_subdirectory(android) -+add_subdirectory(craft) - if (UNIX) - add_subdirectory(docker) - add_subdirectory(flatpak) -diff --git plugins/craft/CMakeLists.txt plugins/craft/CMakeLists.txt -new file mode 100644 -index 0000000000..8cf28b6c01 ---- /dev/null -+++ plugins/craft/CMakeLists.txt -@@ -0,0 +1,22 @@ -+add_definitions(-DTRANSLATION_DOMAIN=\"kdevcraft\") -+ -+declare_qt_logging_category(craftplugin_LOG_SRCS -+ TYPE PLUGIN -+ HEADER debug_craft.h -+ IDENTIFIER CRAFT -+ CATEGORY_BASENAME "craft" -+) -+ -+#qt5_add_resources(craftplugin_SRCS kdevcraftplugin.qrc) -+kdevplatform_add_plugin(kdevcraft SOURCES craftplugin.cpp craftruntime.cpp ${craftplugin_LOG_SRCS}) -+target_link_libraries(kdevcraft -+ KF5::CoreAddons -+ KDev::Interfaces -+ KDev::Util -+ KDev::OutputView -+ KDev::Project -+) -+ -+if(BUILD_TESTING) -+ add_subdirectory(tests) -+endif() -diff --git plugins/craft/craftplugin.cpp plugins/craft/craftplugin.cpp -new file mode 100644 -index 0000000000..c27e82a8b5 ---- /dev/null -+++ plugins/craft/craftplugin.cpp -@@ -0,0 +1,84 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#include "craftplugin.h" -+#include "craftruntime.h" -+#include "debug_craft.h" -+ -+#include -+#include -+#include -+#include -+#include -+ -+#include -+#include -+#include -+#include -+#include -+ -+K_PLUGIN_FACTORY_WITH_JSON(KDevCraftFactory, "kdevcraft.json", registerPlugin();) -+ -+using namespace KDevelop; -+ -+CraftPlugin::CraftPlugin(QObject* parent, const QVariantList& /*args*/) -+ : IPlugin(QStringLiteral("kdevcraft"), parent), m_shouldAutoEnable(Uninitialized) -+{ -+ const QString pythonExecutable = CraftRuntime::findPython(); -+ if (pythonExecutable.isEmpty()) -+ return; -+ -+ // If KDevelop itself runs under Craft env, this plugin has nothing to do -+ if (qEnvironmentVariableIsSet("KDEROOT")) -+ return; -+ -+ connect(ICore::self()->projectController(), &IProjectController::projectAboutToBeOpened, this, -+ [pythonExecutable, this](KDevelop::IProject* project) { -+ const QString craftRoot = CraftRuntime::findCraftRoot(project->path()); -+ -+ if (craftRoot.isEmpty()) -+ return; -+ -+ qCDebug(CRAFT) << "Found Craft root at" << craftRoot; -+ -+ auto* runtime = m_runtimes.value(craftRoot, nullptr); -+ -+ if (!runtime) { -+ runtime = new CraftRuntime(craftRoot, pythonExecutable); -+ ICore::self()->runtimeController()->addRuntimes(runtime); -+ m_runtimes.insert(craftRoot, runtime); -+ } -+ -+ bool haveConfigEntry = project->projectConfiguration()->group("Project") -+ .entryMap().contains(QLatin1String("AutoEnableCraftRuntime")); -+ -+ if (!haveConfigEntry && m_shouldAutoEnable == Uninitialized) { -+ const QString msgboxText = -+ i18n("The project being loaded (%1) is detected to reside under a\n" -+ "Craft root [%2] .\nDo you want to automatically switch to the Craft runtime?\n" -+ "Note that this will switch the runtime for all projects in a session!", -+ project->name(), craftRoot); -+ -+ auto answer = KMessageBox::questionYesNo(ICore::self()->uiController()->activeMainWindow(), msgboxText); -+ m_shouldAutoEnable = answer == KMessageBox::Yes ? AutoEnable : DoNotAutoEnable; -+ project->projectConfiguration()->group("Project") -+ .writeEntry("AutoEnableCraftRuntime", answer == KMessageBox::Yes); -+ } -+ else if (!haveConfigEntry) -+ project->projectConfiguration()->group("Project") -+ .writeEntry("AutoEnableCraftRuntime", m_shouldAutoEnable == AutoEnable); -+ else -+ m_shouldAutoEnable = -+ project->projectConfiguration()->group("Project") -+ .readEntry("AutoEnableCraftRuntime", false) -+ ? AutoEnable -+ : DoNotAutoEnable ; -+ -+ if (m_shouldAutoEnable == AutoEnable) { -+ qCDebug(CRAFT) << "Enabling Craft runtime at" << craftRoot << "with" << pythonExecutable; -+ ICore::self()->runtimeController()->setCurrentRuntime(runtime); -+ } -+ }); -+} -+ -+#include "craftplugin.moc" -diff --git plugins/craft/craftplugin.h plugins/craft/craftplugin.h -new file mode 100644 -index 0000000000..62ef30b928 ---- /dev/null -+++ plugins/craft/craftplugin.h -@@ -0,0 +1,28 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#ifndef CRAFTPLUGIN_H -+#define CRAFTPLUGIN_H -+ -+#include -+ -+#include -+ -+class CraftRuntime; -+ -+class CraftPlugin : public KDevelop::IPlugin -+{ -+ Q_OBJECT -+public: -+ CraftPlugin(QObject* parent, const QVariantList& args); -+ -+private: -+ QHash m_runtimes; -+ enum { -+ DoNotAutoEnable, -+ AutoEnable, -+ Uninitialized -+ } m_shouldAutoEnable; -+}; -+ -+#endif // CRAFTPLUGIN_H -diff --git plugins/craft/craftruntime.cpp plugins/craft/craftruntime.cpp -new file mode 100644 -index 0000000000..f30766e511 ---- /dev/null -+++ plugins/craft/craftruntime.cpp -@@ -0,0 +1,173 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#include "craftruntime.h" -+#include "debug_craft.h" -+ -+#include -+#include -+#include -+#include -+ -+using namespace KDevelop; -+ -+namespace { -+ auto craftSetupHelperRelativePath() { return QLatin1String{"/craft/bin/CraftSetupHelper.py"}; } -+} -+ -+CraftRuntime::CraftRuntime(const QString& craftRoot, const QString& pythonExecutable) -+ : m_craftRoot(craftRoot), m_pythonExecutable(pythonExecutable) -+{ -+ Q_ASSERT(!pythonExecutable.isEmpty()); -+ -+ m_watcher.addPath(craftRoot + craftSetupHelperRelativePath()); -+ -+ connect(&m_watcher, &QFileSystemWatcher::fileChanged, this, [this](const QString &path) -+ { -+ if (QFileInfo::exists(path)) { -+ refreshEnvCache(); -+ if (!m_watcher.files().contains(path)) { -+ m_watcher.addPath(path); -+ } -+ } -+ }); -+ refreshEnvCache(); -+} -+ -+QString CraftRuntime::name() const -+{ -+ return QStringLiteral("Craft [%1]").arg(m_craftRoot); -+} -+ -+QString CraftRuntime::findCraftRoot(Path startingPoint) -+{ -+ // CraftRuntime doesn't handle remote directories, because it needs -+ // to check file existence in the findCraftRoot() function -+ if (startingPoint.isRemote()) -+ return QString(); -+ -+ QString craftRoot; -+ while(true) { -+ bool craftSettingsIniExists = QFileInfo::exists(startingPoint.path() + QLatin1String("/etc/CraftSettings.ini")); -+ bool craftSetupHelperExists = QFileInfo::exists(startingPoint.path() + craftSetupHelperRelativePath()); -+ if (craftSettingsIniExists && craftSetupHelperExists) { -+ craftRoot = startingPoint.path(); -+ break; -+ } -+ -+ if (!startingPoint.hasParent()) -+ break; -+ startingPoint = startingPoint.parent(); -+ } -+ -+ return QFileInfo(craftRoot).canonicalFilePath(); -+} -+ -+QString CraftRuntime::findPython() -+{ -+ // Craft requires Python 3.6+, not any "python3", but -+ // - If the user set up Craft already, there is a high probability that -+ // "python3" is a correct one -+ // - We are running only CraftSetupHelper.py, not the whole Craft, so -+ // the 3.6+ requirement might be not relevant for this case. -+ // So just search for "python3" and hope for the best. -+ return QStandardPaths::findExecutable(QStringLiteral("python3")); -+} -+ -+void CraftRuntime::setEnabled(bool /*enabled*/) -+{ -+} -+ -+void CraftRuntime::refreshEnvCache() -+{ -+ QProcess python; -+ python.start(m_pythonExecutable, QStringList{m_craftRoot + craftSetupHelperRelativePath(), QStringLiteral("--getenv")}); -+ -+ if(!python.waitForFinished(5000)) { -+ qCWarning(CRAFT) << "CraftSetupHelper.py execution timed out"; -+ return; -+ } -+ -+ if (python.exitStatus() != QProcess::NormalExit) { -+ qCWarning(CRAFT) << "CraftSetupHelper.py execution failed with code" << python.exitCode(); -+ return; -+ } -+ -+ m_envCache.clear(); -+ -+ const QList output = python.readAllStandardOutput().split('\n'); -+ for (const auto& line : output) { -+ // line contains things like "VAR=VALUE" -+ int equalsSignIndex = line.indexOf('='); -+ if (equalsSignIndex == -1) -+ continue; -+ -+ QByteArray varName = line.left(equalsSignIndex); -+ QByteArray value = line.mid(equalsSignIndex + 1); -+ m_envCache.emplace_back(varName, value); -+ } -+} -+ -+QByteArray CraftRuntime::getenv(const QByteArray& varname) const -+{ -+ auto it = std::find_if(m_envCache.begin(), m_envCache.end(), -+ [&varname](const EnvironmentVariable& envVar) -+ { -+ return envVar.name == varname; -+ }); -+ -+ return it != m_envCache.end() ? it->value : QByteArray(); -+} -+ -+QString CraftRuntime::findExecutable(const QString& executableName) const -+{ -+ auto runtimePaths = QString::fromLocal8Bit(getenv(QByteArrayLiteral("PATH"))).split(QLatin1Char(':')); -+ -+ return QStandardPaths::findExecutable(executableName, runtimePaths); -+} -+ -+Path CraftRuntime::pathInHost(const Path& runtimePath) const -+{ -+ return runtimePath; -+} -+ -+Path CraftRuntime::pathInRuntime(const Path& localPath) const -+{ -+ return localPath; -+} -+ -+void CraftRuntime::startProcess(KProcess* process) const -+{ -+ QStringList program = process->program(); -+ QString executableInRuntime = findExecutable(program.constFirst()); -+ if (executableInRuntime != program.constFirst()) { -+ program.first() = std::move(executableInRuntime); -+ process->setProgram(program); -+ } -+ setEnvironmentVariables(process); -+ process->start(); -+} -+ -+void CraftRuntime::startProcess(QProcess* process) const -+{ -+ QString executableInRuntime = findExecutable(process->program()); -+ process->setProgram(executableInRuntime); -+ setEnvironmentVariables(process); -+ process->start(); -+} -+ -+void CraftRuntime::setEnvironmentVariables(QProcess* process) const -+{ -+ auto env = process->processEnvironment(); -+ -+ for(const auto& envVar : m_envCache) { -+ env.insert(QString::fromLocal8Bit(envVar.name), QString::fromLocal8Bit(envVar.value)); -+ } -+ -+ process->setProcessEnvironment(env); -+} -+ -+EnvironmentVariable::EnvironmentVariable(const QByteArray& name, const QByteArray& value) -+ : name(name.trimmed()), value(value) -+{ -+} -diff --git plugins/craft/craftruntime.h plugins/craft/craftruntime.h -new file mode 100644 -index 0000000000..c23ee0246e ---- /dev/null -+++ plugins/craft/craftruntime.h -@@ -0,0 +1,62 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#ifndef CRAFTRUNTIME_H -+#define CRAFTRUNTIME_H -+ -+#include -+ -+#include -+#include -+#include -+#include -+ -+class QProcess; -+ -+namespace KDevelop { -+ class IProject; -+} -+ -+// An auxiliary structure to hold normalized name and value of an env var -+struct EnvironmentVariable { -+ EnvironmentVariable(const QByteArray& name, const QByteArray& value); -+ -+ QByteArray name; -+ QByteArray value; -+}; -+Q_DECLARE_TYPEINFO(EnvironmentVariable, Q_MOVABLE_TYPE); -+ -+ -+class CraftRuntime : public KDevelop::IRuntime -+{ -+ Q_OBJECT -+public: -+ CraftRuntime(const QString& craftRoot, const QString& pythonExecutable); -+ -+ QString name() const override; -+ -+ void setEnabled(bool enabled) override; -+ -+ void startProcess(KProcess* process) const override; -+ void startProcess(QProcess* process) const override; -+ KDevelop::Path pathInHost(const KDevelop::Path& runtimePath) const override; -+ KDevelop::Path pathInRuntime(const KDevelop::Path& localPath) const override; -+ QString findExecutable(const QString& executableName) const override; -+ QByteArray getenv(const QByteArray& varname) const override; -+ -+ KDevelop::Path buildPath() const override { return {}; } -+ -+ static QString findCraftRoot(KDevelop::Path startingPoint); -+ static QString findPython(); -+ -+private: -+ void setEnvironmentVariables(QProcess* process) const; -+ void refreshEnvCache(); -+ -+ const QString m_craftRoot; -+ const QString m_pythonExecutable; -+ QFileSystemWatcher m_watcher; -+ std::vector m_envCache; -+}; -+ -+#endif // CRAFTRUNTIME_H -diff --git plugins/craft/kdevcraft.json plugins/craft/kdevcraft.json -new file mode 100644 -index 0000000000..bd05794c23 ---- /dev/null -+++ plugins/craft/kdevcraft.json -@@ -0,0 +1,22 @@ -+{ -+ "KPlugin": { -+ "Authors": [ -+ { -+ "Email": "arrowd@FreeBSD.org", -+ "Name": "Gleb Popov", -+ "Name[ru]": "Глеб Попов" -+ } -+ ], -+ "Category": "Runtimes", -+ "Description": "Exposes KDE Craft environment as a runtime", -+ "Description[ru]": "Представляет среду KDE Craft как среду выполнения KDevelop", -+ "Icon": "kdevelop", -+ "Id": "kdevcraft", -+ "License": "BSD3", -+ "Name": "Craft runtime", -+ "Name[ru]": "Поддержка Craft", -+ "Version": "0.1" -+ }, -+ "X-KDevelop-Category": "Global", -+ "X-KDevelop-Mode": "GUI" -+} -diff --git plugins/craft/tests/CMakeLists.txt plugins/craft/tests/CMakeLists.txt -new file mode 100644 -index 0000000000..3ed8f32d5c ---- /dev/null -+++ plugins/craft/tests/CMakeLists.txt -@@ -0,0 +1,16 @@ -+include_directories( -+ .. -+ ${CMAKE_CURRENT_BINARY_DIR}/.. -+) -+ -+set(test_craftruntime_SRCS -+ test_craftruntime.cpp -+ ../craftruntime.cpp -+ ${craftplugin_LOG_SRCS} -+) -+ -+ecm_add_test(${test_craftruntime_SRCS} -+ TEST_NAME test_craftruntime -+ LINK_LIBRARIES Qt5::Test KDev::Tests) -+ -+target_compile_definitions(test_craftruntime PRIVATE -DCRAFT_ROOT_MOCK="${CMAKE_CURRENT_SOURCE_DIR}/craft_root_mock") -diff --git plugins/craft/tests/craft_root_mock/bin/env plugins/craft/tests/craft_root_mock/bin/env -new file mode 100755 -index 0000000000..630848fc56 ---- /dev/null -+++ plugins/craft/tests/craft_root_mock/bin/env -@@ -0,0 +1,6 @@ -+#!/usr/bin/env python3 -+ -+import os -+ -+for var in os.environ: -+ print(var + "=" + os.environ[var]) -diff --git plugins/craft/tests/craft_root_mock/bin/printenv plugins/craft/tests/craft_root_mock/bin/printenv -new file mode 100755 -index 0000000000..375a1945e4 ---- /dev/null -+++ plugins/craft/tests/craft_root_mock/bin/printenv -@@ -0,0 +1,5 @@ -+#!/usr/bin/env python3 -+ -+print("PYTHONPATH=/usr/lib/python3/site-packages") -+print("BAD LINE") -+print("FOO=") -diff --git plugins/craft/tests/craft_root_mock/craft/bin/CraftSetupHelper.py plugins/craft/tests/craft_root_mock/craft/bin/CraftSetupHelper.py -new file mode 100644 -index 0000000000..1ae643b89b ---- /dev/null -+++ plugins/craft/tests/craft_root_mock/craft/bin/CraftSetupHelper.py -@@ -0,0 +1,9 @@ -+import os -+import sys -+ -+root = os.path.realpath(os.path.dirname(os.path.realpath(__file__)) + "/../../") -+ -+if "--getenv" in sys.argv: -+ print("KDEROOT=" + root) -+ print("PYTHONPATH=" + root + "/lib/site-packages") -+ print("PATH=" + root + "/bin:" + os.environ["PATH"]) -diff --git plugins/craft/tests/craft_root_mock/etc/CraftSettings.ini plugins/craft/tests/craft_root_mock/etc/CraftSettings.ini -new file mode 100644 -index 0000000000..e69de29bb2 -diff --git plugins/craft/tests/test_craftruntime.cpp plugins/craft/tests/test_craftruntime.cpp -new file mode 100644 -index 0000000000..ede259d0e2 ---- /dev/null -+++ plugins/craft/tests/test_craftruntime.cpp -@@ -0,0 +1,164 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#include "test_craftruntime.h" -+ -+#include -+#include -+#include -+#include -+ -+#include -+#include -+ -+#include -+#include -+ -+#include "../craftruntime.h" -+ -+using namespace KDevelop; -+ -+QTEST_MAIN(CraftRuntimeTest) -+ -+class TempDirWrapper -+{ -+public: -+ TempDirWrapper() = default; -+ TempDirWrapper(const QString& craftRoot, const QString& pythonExecutable) -+ : m_tempCraftRoot(new QTemporaryDir()) -+ { -+ QVERIFY(m_tempCraftRoot->isValid()); -+ copyCraftRoot(craftRoot); -+ m_runtime = std::make_shared(m_tempCraftRoot->path(), pythonExecutable); -+ } -+ -+ QString path() const -+ { -+ QVERIFY_RETURN(m_tempCraftRoot, QString()); -+ return m_tempCraftRoot->path(); -+ } -+ -+ CraftRuntime* operator->() const -+ { -+ QVERIFY_RETURN(m_runtime, nullptr); -+ return m_runtime.get(); -+ } -+private: -+ void copyCraftRoot(const QString& oldRoot) const { -+ const QLatin1String craftSettingsRelativePath("/etc/CraftSettings.ini"); -+ const QDir dest(m_tempCraftRoot->path()); -+ -+ auto* job = KIO::copy(QUrl::fromLocalFile(oldRoot + QLatin1String("/craft")), -+ QUrl::fromLocalFile(dest.path())); -+ QVERIFY(job->exec()); -+ -+ QVERIFY(dest.mkpath(QLatin1String("bin"))); -+ QVERIFY(dest.mkpath(QLatin1String("etc"))); -+ -+ QVERIFY(QFile::copy(oldRoot + craftSettingsRelativePath, -+ dest.path() + craftSettingsRelativePath)); -+ } -+ std::shared_ptr m_runtime; -+ std::shared_ptr m_tempCraftRoot; -+}; -+ -+Q_DECLARE_METATYPE(TempDirWrapper) -+ -+// When this test itself is ran under a Craft root, its environment gets in the way -+static void breakoutFromCraftRoot() { -+ auto craftRoot = qgetenv("KDEROOT"); -+ if (craftRoot.isEmpty()) -+ return; -+ -+ auto paths = qgetenv("PATH").split(':'); -+ std::remove_if(paths.begin(), paths.end(), [craftRoot](const QByteArray& path) { -+ return path.startsWith(craftRoot); -+ }); -+ qputenv("PATH", paths.join(':')); -+ -+ qunsetenv("KDEROOT"); -+ qunsetenv("craftRoot"); -+} -+ -+void CraftRuntimeTest::initTestCase_data() -+{ -+ breakoutFromCraftRoot(); -+ -+ const QString pythonExecutable = CraftRuntime::findPython(); -+ if (pythonExecutable.isEmpty()) -+ QSKIP("No python found, skipping kdevcraft tests."); -+ -+ QTest::addColumn("runtimeInstance"); -+ -+ QTest::newRow("Mock") << TempDirWrapper(QStringLiteral(CRAFT_ROOT_MOCK), pythonExecutable); -+ -+ auto craftRoot = CraftRuntime::findCraftRoot(Path(QStringLiteral("."))); -+ if (!craftRoot.isEmpty()) -+ QTest::newRow("Real") << TempDirWrapper(craftRoot, pythonExecutable); -+} -+ -+void CraftRuntimeTest::testFindCraftRoot() -+{ -+ QFETCH_GLOBAL(TempDirWrapper, runtimeInstance); -+ QCOMPARE(CraftRuntime::findCraftRoot(Path(runtimeInstance.path())), runtimeInstance.path()); -+ QCOMPARE(CraftRuntime::findCraftRoot(Path(runtimeInstance.path()).cd(QStringLiteral("bin"))), runtimeInstance.path()); -+} -+ -+void CraftRuntimeTest::testGetenv() -+{ -+ QFETCH_GLOBAL(TempDirWrapper, runtimeInstance); -+ -+ QVERIFY(!runtimeInstance->getenv("KDEROOT").isEmpty()); -+ -+ QDir craftDir1 = QDir(QString::fromLocal8Bit(runtimeInstance->getenv("KDEROOT"))); -+ QDir craftDir2 = QDir(runtimeInstance.path()); -+ QCOMPARE(craftDir1.canonicalPath(), craftDir2.canonicalPath()); -+ -+ QString pythonpathValue = QString::fromLocal8Bit(runtimeInstance->getenv("PYTHONPATH")); -+ QVERIFY(!pythonpathValue.isEmpty()); -+ QDir craftPythonPathDir = QDir(pythonpathValue); -+ -+ QVERIFY(craftPythonPathDir.path().startsWith(craftDir1.path())); -+} -+ -+void CraftRuntimeTest::testStartProcess() -+{ -+ QFETCH_GLOBAL(TempDirWrapper, runtimeInstance); -+ -+ QString envPath = QStandardPaths::findExecutable(QStringLiteral("env")); -+ if (envPath.isEmpty()) -+ QSKIP("Skipping startProcess() test, no \"env\" executable found"); -+ -+ QString envUnderCraftPath = runtimeInstance.path() + QStringLiteral("/bin/env"); -+ QVERIFY(QFile::copy(envPath, envUnderCraftPath)); -+ -+ QProcess p; -+ p.setProgram(QStringLiteral("env")); -+ runtimeInstance->startProcess(&p); -+ -+ // test that CraftRuntime::startProcess prefers programs under Craft root -+ QCOMPARE(QDir(p.program()).canonicalPath(), QDir(envUnderCraftPath).canonicalPath()); -+ -+ p.waitForFinished(); -+ QVERIFY(QFile::remove(envUnderCraftPath)); -+} -+ -+void CraftRuntimeTest::testStartProcessEnv() -+{ -+ QFETCH_GLOBAL(TempDirWrapper, runtimeInstance); -+ -+ QString printenvPath = QStandardPaths::findExecutable(QStringLiteral("printenv")); -+ if (printenvPath.isEmpty()) -+ QSKIP("Skipping startProcess() test, no \"printenv\" executable found"); -+ -+ QString printenvUnderCraftPath = runtimeInstance.path() + QStringLiteral("/bin/printenv"); -+ QVERIFY(QFile::copy(printenvPath, printenvUnderCraftPath)); -+ -+ KProcess p; -+ p.setProgram(QStringLiteral("printenv"), QStringList {QStringLiteral("PYTHONPATH")}); -+ p.setOutputChannelMode(KProcess::OnlyStdoutChannel); -+ runtimeInstance->startProcess(&p); -+ p.waitForFinished(); -+ -+ QVERIFY(p.readAllStandardOutput().contains("site-packages")); -+} -diff --git plugins/craft/tests/test_craftruntime.h plugins/craft/tests/test_craftruntime.h -new file mode 100644 -index 0000000000..d5a470f946 ---- /dev/null -+++ plugins/craft/tests/test_craftruntime.h -@@ -0,0 +1,20 @@ -+// SPDX-FileCopyrightText: 2022 Gleb Popov -+// SPDX-License-Identifier: BSD-3-Clause -+ -+#ifndef KDEVPLATFORM_PLUGIN_TEST_CRAFTRUNTIME_H -+#define KDEVPLATFORM_PLUGIN_TEST_CRAFTRUNTIME_H -+ -+#include -+ -+class CraftRuntimeTest: public QObject -+{ -+ Q_OBJECT -+private Q_SLOTS: -+ void initTestCase_data(); -+ void testFindCraftRoot(); -+ void testGetenv(); -+ void testStartProcess(); -+ void testStartProcessEnv(); -+}; -+ -+#endif // KDEVPLATFORM_PLUGIN_TEST_CRAFTRUNTIME_H diff --git a/devel/kdevelop/files/patch-gdb.patch b/devel/kdevelop/files/patch-gdb.patch deleted file mode 100644 index 9e22db710ae7..000000000000 --- a/devel/kdevelop/files/patch-gdb.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff --git plugins/gdb/gdb.cpp plugins/gdb/gdb.cpp -index eb15feb446..11c115400f 100644 ---- plugins/gdb/gdb.cpp -+++ plugins/gdb/gdb.cpp -@@ -12,6 +12,8 @@ - #include "debuglog.h" - - #include -+#include -+#include - #include - #include - -@@ -79,7 +81,7 @@ bool GdbDebugger::start(KConfigGroup& config, const QStringList& extraArguments) - } - fullCommand += arguments.join(QLatin1Char(' ')); - -- m_process->start(); -+ KDevelop::ICore::self()->runtimeController()->currentRuntime()->startProcess(m_process); - - qCDebug(DEBUGGERGDB) << "Starting GDB with command" << fullCommand; - #if KCOREADDONS_VERSION < QT_VERSION_CHECK(5, 78, 0) diff --git a/devel/kdevelop/pkg-plist b/devel/kdevelop/pkg-plist index 6b364dfe1b25..e2938cf89545 100644 --- a/devel/kdevelop/pkg-plist +++ b/devel/kdevelop/pkg-plist @@ -1,3137 +1,3231 @@ bin/kdev_dbus_socket_transformer bin/kdev_format_source bin/kdev_includepathsconverter bin/kdevelop bin/kdevelop! bin/kdevplatform_shell_environment.sh include/kdevelop/custom-definesandincludes/idefinesandincludesmanager.h include/kdevelop/kdevelop_version.h include/kdevelop/makebuilder/imakebuilder.h include/kdevelop/qmake/iqmakebuilder.h include/kdevplatform/config-kdevplatform.h include/kdevplatform/debugger/breakpoint/breakpoint.h include/kdevplatform/debugger/breakpoint/breakpointdetails.h include/kdevplatform/debugger/breakpoint/breakpointmodel.h include/kdevplatform/debugger/breakpoint/breakpointwidget.h include/kdevplatform/debugger/debuggerexport.h include/kdevplatform/debugger/framestack/framestackmodel.h include/kdevplatform/debugger/interfaces/ibreakpointcontroller.h include/kdevplatform/debugger/interfaces/idebugsession.h include/kdevplatform/debugger/interfaces/iframestackmodel.h include/kdevplatform/debugger/interfaces/ivariablecontroller.h include/kdevplatform/debugger/util/pathmappings.h include/kdevplatform/debugger/util/treeitem.h include/kdevplatform/debugger/util/treemodel.h include/kdevplatform/debugger/util/treeview.h include/kdevplatform/debugger/variable/variablecollection.h include/kdevplatform/documentation/documentationexport.h include/kdevplatform/documentation/documentationfindwidget.h include/kdevplatform/documentation/standarddocumentationview.h include/kdevplatform/execute/iexecuteplugin.h include/kdevplatform/executescript/iexecutescriptplugin.h include/kdevplatform/interfaces/configpage.h include/kdevplatform/interfaces/context.h include/kdevplatform/interfaces/contextmenuextension.h include/kdevplatform/interfaces/iassistant.h include/kdevplatform/interfaces/ibuddydocumentfinder.h include/kdevplatform/interfaces/icompletionsettings.h include/kdevplatform/interfaces/icore.h include/kdevplatform/interfaces/idebugcontroller.h include/kdevplatform/interfaces/idocument.h include/kdevplatform/interfaces/idocumentation.h include/kdevplatform/interfaces/idocumentationcontroller.h include/kdevplatform/interfaces/idocumentationprovider.h include/kdevplatform/interfaces/idocumentationproviderprovider.h include/kdevplatform/interfaces/idocumentcontroller.h include/kdevplatform/interfaces/ilanguagecheck.h include/kdevplatform/interfaces/ilanguagecheckprovider.h include/kdevplatform/interfaces/ilanguagecontroller.h include/kdevplatform/interfaces/ilaunchconfiguration.h include/kdevplatform/interfaces/ilauncher.h include/kdevplatform/interfaces/ilaunchmode.h include/kdevplatform/interfaces/interfacesexport.h include/kdevplatform/interfaces/ipartcontroller.h include/kdevplatform/interfaces/iplugin.h include/kdevplatform/interfaces/iplugincontroller.h include/kdevplatform/interfaces/ipluginversion.h include/kdevplatform/interfaces/iproblem.h include/kdevplatform/interfaces/iproject.h include/kdevplatform/interfaces/iprojectcontroller.h include/kdevplatform/interfaces/iprojectprovider.h include/kdevplatform/interfaces/iruncontroller.h include/kdevplatform/interfaces/iruntime.h include/kdevplatform/interfaces/iruntimecontroller.h include/kdevplatform/interfaces/iselectioncontroller.h include/kdevplatform/interfaces/isession.h include/kdevplatform/interfaces/isessionlock.h include/kdevplatform/interfaces/isourceformatter.h include/kdevplatform/interfaces/isourceformattercontroller.h include/kdevplatform/interfaces/istatus.h include/kdevplatform/interfaces/itemplateprovider.h include/kdevplatform/interfaces/itestcontroller.h include/kdevplatform/interfaces/itestsuite.h include/kdevplatform/interfaces/itoolviewactionlistener.h include/kdevplatform/interfaces/iuicontroller.h include/kdevplatform/interfaces/launchconfigurationpage.h include/kdevplatform/interfaces/launchconfigurationtype.h include/kdevplatform/kdevplatform_version.h include/kdevplatform/language/assistant/renameaction.h include/kdevplatform/language/assistant/renameassistant.h include/kdevplatform/language/assistant/staticassistant.h include/kdevplatform/language/assistant/staticassistantsmanager.h include/kdevplatform/language/backgroundparser/backgroundparser.h include/kdevplatform/language/backgroundparser/documentchangetracker.h include/kdevplatform/language/backgroundparser/parsejob.h include/kdevplatform/language/backgroundparser/parseprojectjob.h include/kdevplatform/language/backgroundparser/urlparselock.h include/kdevplatform/language/checks/controlflowgraph.h include/kdevplatform/language/checks/controlflownode.h include/kdevplatform/language/checks/dataaccess.h include/kdevplatform/language/checks/dataaccessrepository.h include/kdevplatform/language/classmodel/allclassesfolder.h include/kdevplatform/language/classmodel/classmodel.h include/kdevplatform/language/classmodel/classmodelnode.h include/kdevplatform/language/classmodel/classmodelnodescontroller.h include/kdevplatform/language/classmodel/documentclassesfolder.h include/kdevplatform/language/classmodel/projectfolder.h include/kdevplatform/language/codecompletion/abstractincludefilecompletionitem.h include/kdevplatform/language/codecompletion/codecompletion.h include/kdevplatform/language/codecompletion/codecompletioncontext.h include/kdevplatform/language/codecompletion/codecompletionhelper.h include/kdevplatform/language/codecompletion/codecompletionitem.h include/kdevplatform/language/codecompletion/codecompletionitemgrouper.h include/kdevplatform/language/codecompletion/codecompletionmodel.h include/kdevplatform/language/codecompletion/codecompletiontesthelper.h include/kdevplatform/language/codecompletion/codecompletionworker.h include/kdevplatform/language/codecompletion/normaldeclarationcompletionitem.h include/kdevplatform/language/codegen/applychangeswidget.h include/kdevplatform/language/codegen/astchangeset.h include/kdevplatform/language/codegen/basicrefactoring.h include/kdevplatform/language/codegen/codedescription.h include/kdevplatform/language/codegen/coderepresentation.h include/kdevplatform/language/codegen/documentchangeset.h include/kdevplatform/language/codegen/duchainchangeset.h include/kdevplatform/language/codegen/sourcefiletemplate.h include/kdevplatform/language/codegen/templateclassgenerator.h include/kdevplatform/language/codegen/templateengine.h include/kdevplatform/language/codegen/templatepreviewicon.h include/kdevplatform/language/codegen/templaterenderer.h include/kdevplatform/language/codegen/templatesmodel.h include/kdevplatform/language/codegen/utilities.h include/kdevplatform/language/duchain/abstractfunctiondeclaration.h include/kdevplatform/language/duchain/aliasdeclaration.h include/kdevplatform/language/duchain/appendedlist.h include/kdevplatform/language/duchain/builders/abstractcontextbuilder.h include/kdevplatform/language/duchain/builders/abstractdeclarationbuilder.h include/kdevplatform/language/duchain/builders/abstracttypebuilder.h include/kdevplatform/language/duchain/builders/abstractusebuilder.h include/kdevplatform/language/duchain/builders/dynamiclanguageexpressionvisitor.h include/kdevplatform/language/duchain/classdeclaration.h include/kdevplatform/language/duchain/classfunctiondeclaration.h include/kdevplatform/language/duchain/classmemberdeclaration.h include/kdevplatform/language/duchain/classmemberdeclarationdata.h include/kdevplatform/language/duchain/codemodel.h include/kdevplatform/language/duchain/declaration.h include/kdevplatform/language/duchain/declarationdata.h include/kdevplatform/language/duchain/declarationid.h include/kdevplatform/language/duchain/definitions.h include/kdevplatform/language/duchain/duchain.h include/kdevplatform/language/duchain/duchainbase.h include/kdevplatform/language/duchain/duchaindumper.h include/kdevplatform/language/duchain/duchainlock.h include/kdevplatform/language/duchain/duchainpointer.h include/kdevplatform/language/duchain/duchainregister.h include/kdevplatform/language/duchain/duchainutils.h include/kdevplatform/language/duchain/ducontext.h include/kdevplatform/language/duchain/ducontextdata.h include/kdevplatform/language/duchain/dumpdotgraph.h include/kdevplatform/language/duchain/forwarddeclaration.h include/kdevplatform/language/duchain/functiondeclaration.h include/kdevplatform/language/duchain/functiondefinition.h include/kdevplatform/language/duchain/identifier.h include/kdevplatform/language/duchain/indexeddeclaration.h include/kdevplatform/language/duchain/indexedducontext.h include/kdevplatform/language/duchain/indexedtopducontext.h include/kdevplatform/language/duchain/instantiationinformation.h include/kdevplatform/language/duchain/localindexeddeclaration.h include/kdevplatform/language/duchain/localindexedducontext.h include/kdevplatform/language/duchain/namespacealiasdeclaration.h include/kdevplatform/language/duchain/navigation/abstractdeclarationnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractincludenavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationcontext.h include/kdevplatform/language/duchain/navigation/abstractnavigationwidget.h include/kdevplatform/language/duchain/navigation/navigationaction.h include/kdevplatform/language/duchain/navigation/usescollector.h include/kdevplatform/language/duchain/navigation/usesnavigationcontext.h include/kdevplatform/language/duchain/navigation/useswidget.h include/kdevplatform/language/duchain/parsingenvironment.h include/kdevplatform/language/duchain/persistentsymboltable.h include/kdevplatform/language/duchain/problem.h -include/kdevplatform/language/duchain/safetycounter.h include/kdevplatform/language/duchain/specializationstore.h include/kdevplatform/language/duchain/stringhelpers.h include/kdevplatform/language/duchain/topducontext.h include/kdevplatform/language/duchain/topducontextdata.h include/kdevplatform/language/duchain/topducontextutils.h include/kdevplatform/language/duchain/types/abstracttype.h include/kdevplatform/language/duchain/types/alltypes.h include/kdevplatform/language/duchain/types/arraytype.h include/kdevplatform/language/duchain/types/constantintegraltype.h include/kdevplatform/language/duchain/types/containertypes.h include/kdevplatform/language/duchain/types/delayedtype.h include/kdevplatform/language/duchain/types/enumerationtype.h include/kdevplatform/language/duchain/types/enumeratortype.h include/kdevplatform/language/duchain/types/functiontype.h include/kdevplatform/language/duchain/types/identifiedtype.h include/kdevplatform/language/duchain/types/indexedtype.h include/kdevplatform/language/duchain/types/integraltype.h include/kdevplatform/language/duchain/types/pointertype.h include/kdevplatform/language/duchain/types/referencetype.h include/kdevplatform/language/duchain/types/structuretype.h include/kdevplatform/language/duchain/types/typealiastype.h include/kdevplatform/language/duchain/types/typepointer.h include/kdevplatform/language/duchain/types/typeregister.h include/kdevplatform/language/duchain/types/typerepository.h include/kdevplatform/language/duchain/types/typesystem.h include/kdevplatform/language/duchain/types/typesystemdata.h include/kdevplatform/language/duchain/types/typeutils.h include/kdevplatform/language/duchain/types/unsuretype.h include/kdevplatform/language/duchain/use.h include/kdevplatform/language/editor/cursorinrevision.h include/kdevplatform/language/editor/documentcursor.h include/kdevplatform/language/editor/documentrange.h include/kdevplatform/language/editor/modificationrevision.h include/kdevplatform/language/editor/modificationrevisionset.h include/kdevplatform/language/editor/persistentmovingrange.h include/kdevplatform/language/editor/rangeinrevision.h include/kdevplatform/language/highlighting/codehighlighting.h include/kdevplatform/language/highlighting/colorcache.h include/kdevplatform/language/highlighting/configurablecolors.h include/kdevplatform/language/interfaces/abbreviations.h include/kdevplatform/language/interfaces/codecontext.h include/kdevplatform/language/interfaces/editorcontext.h include/kdevplatform/language/interfaces/iastcontainer.h include/kdevplatform/language/interfaces/icodehighlighting.h include/kdevplatform/language/interfaces/icontextbrowser.h include/kdevplatform/language/interfaces/icreateclasshelper.h include/kdevplatform/language/interfaces/ilanguagesupport.h include/kdevplatform/language/interfaces/iquickopen.h include/kdevplatform/language/interfaces/quickopendataprovider.h include/kdevplatform/language/interfaces/quickopenfilter.h include/kdevplatform/language/languageexport.h include/kdevplatform/language/util/basicsetrepository.h include/kdevplatform/language/util/debuglanguageparserhelper.h include/kdevplatform/language/util/includeitem.h include/kdevplatform/language/util/kdevhash.h include/kdevplatform/language/util/navigationtooltip.h include/kdevplatform/language/util/setrepository.h include/kdevplatform/openwith/iopenwith.h include/kdevplatform/outputview/filtereditem.h include/kdevplatform/outputview/ifilterstrategy.h include/kdevplatform/outputview/ioutputview.h include/kdevplatform/outputview/ioutputviewmodel.h include/kdevplatform/outputview/outputdelegate.h include/kdevplatform/outputview/outputexecutejob.h include/kdevplatform/outputview/outputfilteringstrategies.h include/kdevplatform/outputview/outputjob.h include/kdevplatform/outputview/outputmodel.h include/kdevplatform/outputview/outputviewexport.h include/kdevplatform/project/abstractfilemanagerplugin.h include/kdevplatform/project/builderjob.h include/kdevplatform/project/helper.h include/kdevplatform/project/importprojectjob.h include/kdevplatform/project/interfaces/ibuildsystemmanager.h include/kdevplatform/project/interfaces/iprojectbuilder.h include/kdevplatform/project/interfaces/iprojectfilemanager.h include/kdevplatform/project/interfaces/iprojectfilter.h include/kdevplatform/project/interfaces/iprojectfilterprovider.h include/kdevplatform/project/projectbuildsetmodel.h include/kdevplatform/project/projectchangesmodel.h include/kdevplatform/project/projectconfigpage.h include/kdevplatform/project/projectconfigskeleton.h include/kdevplatform/project/projectexport.h include/kdevplatform/project/projectfiltermanager.h include/kdevplatform/project/projectitemlineedit.h include/kdevplatform/project/projectmodel.h include/kdevplatform/project/projectutils.h include/kdevplatform/project/widgets/dependencieswidget.h include/kdevplatform/serialization/abstractitemrepository.h include/kdevplatform/serialization/indexedstring.h include/kdevplatform/serialization/itemrepository.h include/kdevplatform/serialization/itemrepositoryexampleitem.h include/kdevplatform/serialization/itemrepositoryreferencecounting.h include/kdevplatform/serialization/itemrepositoryregistry.h include/kdevplatform/serialization/referencecounting.h include/kdevplatform/serialization/repositorymanager.h include/kdevplatform/serialization/serializationexport.h include/kdevplatform/shell/checkerstatus.h include/kdevplatform/shell/colorschemechooser.h include/kdevplatform/shell/core.h include/kdevplatform/shell/documentcontroller.h include/kdevplatform/shell/environmentconfigurebutton.h include/kdevplatform/shell/filteredproblemstore.h include/kdevplatform/shell/languagecontroller.h include/kdevplatform/shell/launchconfiguration.h include/kdevplatform/shell/mainwindow.h include/kdevplatform/shell/partcontroller.h include/kdevplatform/shell/partdocument.h include/kdevplatform/shell/plugincontroller.h include/kdevplatform/shell/problem.h include/kdevplatform/shell/problemconstants.h include/kdevplatform/shell/problemmodel.h include/kdevplatform/shell/problemmodelset.h include/kdevplatform/shell/problemstore.h include/kdevplatform/shell/project.h include/kdevplatform/shell/projectcontroller.h include/kdevplatform/shell/runcontroller.h include/kdevplatform/shell/selectioncontroller.h include/kdevplatform/shell/session.h include/kdevplatform/shell/sessioncontroller.h include/kdevplatform/shell/sessionlock.h include/kdevplatform/shell/shellexport.h include/kdevplatform/shell/shellextension.h include/kdevplatform/shell/sourceformattercontroller.h include/kdevplatform/shell/sourceformatterselectionedit.h include/kdevplatform/shell/textdocument.h include/kdevplatform/shell/uicontroller.h include/kdevplatform/sublime/area.h include/kdevplatform/sublime/areaindex.h include/kdevplatform/sublime/areawalkers.h include/kdevplatform/sublime/container.h include/kdevplatform/sublime/controller.h include/kdevplatform/sublime/document.h include/kdevplatform/sublime/mainwindow.h include/kdevplatform/sublime/mainwindowoperator.h include/kdevplatform/sublime/message.h include/kdevplatform/sublime/sublimedefs.h include/kdevplatform/sublime/sublimeexport.h include/kdevplatform/sublime/tooldocument.h include/kdevplatform/sublime/urldocument.h include/kdevplatform/sublime/view.h include/kdevplatform/sublime/viewbarcontainer.h include/kdevplatform/util/activetooltip.h include/kdevplatform/util/algorithm.h include/kdevplatform/util/autoorientedsplitter.h include/kdevplatform/util/commandexecutor.h include/kdevplatform/util/convenientfreelist.h include/kdevplatform/util/embeddedfreetree.h include/kdevplatform/util/environmentprofilelist.h include/kdevplatform/util/environmentselectionwidget.h include/kdevplatform/util/executecompositejob.h include/kdevplatform/util/filesystemhelpers.h include/kdevplatform/util/focusedtreeview.h include/kdevplatform/util/foregroundlock.h include/kdevplatform/util/formattinghelpers.h include/kdevplatform/util/jobstatus.h include/kdevplatform/util/kdevstringhandler.h include/kdevplatform/util/kdevvarlengtharray.h include/kdevplatform/util/ksharedobject.h include/kdevplatform/util/multilevellistview.h include/kdevplatform/util/objectlist.h +include/kdevplatform/util/owningrawpointercontainer.h include/kdevplatform/util/path.h include/kdevplatform/util/placeholderitemproxymodel.h include/kdevplatform/util/processlinemaker.h include/kdevplatform/util/projecttestjob.h include/kdevplatform/util/pushvalue.h include/kdevplatform/util/stack.h include/kdevplatform/util/texteditorhelpers.h include/kdevplatform/util/utilexport.h include/kdevplatform/util/widgetcolorizer.h include/kdevplatform/util/wildcardhelpers.h include/kdevplatform/util/zoomcontroller.h include/kdevplatform/vcs/dvcs/dvcsevent.h include/kdevplatform/vcs/dvcs/dvcsjob.h include/kdevplatform/vcs/dvcs/dvcsplugin.h include/kdevplatform/vcs/dvcs/ui/dvcsimportmetadatawidget.h include/kdevplatform/vcs/interfaces/ibasicversioncontrol.h include/kdevplatform/vcs/interfaces/ibranchingversioncontrol.h include/kdevplatform/vcs/interfaces/ibrowsableversioncontrol.h include/kdevplatform/vcs/interfaces/icentralizedversioncontrol.h include/kdevplatform/vcs/interfaces/idistributedversioncontrol.h include/kdevplatform/vcs/interfaces/ipatchdocument.h include/kdevplatform/vcs/interfaces/ipatchsource.h include/kdevplatform/vcs/interfaces/irepositoryversioncontrol.h include/kdevplatform/vcs/models/brancheslistmodel.h include/kdevplatform/vcs/models/vcsannotationmodel.h include/kdevplatform/vcs/models/vcseventmodel.h include/kdevplatform/vcs/models/vcsfilechangesmodel.h include/kdevplatform/vcs/models/vcsitemeventmodel.h include/kdevplatform/vcs/vcsannotation.h include/kdevplatform/vcs/vcsdiff.h include/kdevplatform/vcs/vcsevent.h include/kdevplatform/vcs/vcsexport.h include/kdevplatform/vcs/vcsjob.h include/kdevplatform/vcs/vcslocation.h include/kdevplatform/vcs/vcspluginhelper.h include/kdevplatform/vcs/vcsrevision.h include/kdevplatform/vcs/vcsstatusinfo.h include/kdevplatform/vcs/widgets/standardvcslocationwidget.h include/kdevplatform/vcs/widgets/vcscommitdialog.h include/kdevplatform/vcs/widgets/vcsdiffwidget.h include/kdevplatform/vcs/widgets/vcseventwidget.h include/kdevplatform/vcs/widgets/vcsimportmetadatawidget.h include/kdevplatform/vcs/widgets/vcslocationwidget.h lib/cmake/KDevPlatform/KDevPlatformConfig.cmake lib/cmake/KDevPlatform/KDevPlatformConfigVersion.cmake lib/cmake/KDevPlatform/KDevPlatformMacros.cmake lib/cmake/KDevPlatform/KDevPlatformTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KDevPlatform/KDevPlatformTargets.cmake lib/cmake/KDevelop/KDevelopConfig.cmake lib/cmake/KDevelop/KDevelopConfigVersion.cmake lib/cmake/KDevelop/KDevelopTargets.cmake -lib/libKDevCMakeCommon.so.%%PLATFORM_VER%% -lib/libKDevClangPrivate.so.%%PLATFORM_VER%% -lib/libKDevCompileAnalyzerCommon.so.%%PLATFORM_VER%% +lib/libKDevCMakeCommon.so.%%SO_VER%% +lib/libKDevClangPrivate.so.%%SO_VER%% +lib/libKDevCompileAnalyzerCommon.so.%%SO_VER%% lib/libKDevPlatformDebugger.so lib/libKDevPlatformDebugger.so.%%SO_VER_LONG%% lib/libKDevPlatformDebugger.so.%%SO_VER%% lib/libKDevPlatformDocumentation.so lib/libKDevPlatformDocumentation.so.%%SO_VER_LONG%% lib/libKDevPlatformDocumentation.so.%%SO_VER%% lib/libKDevPlatformInterfaces.so lib/libKDevPlatformInterfaces.so.%%SO_VER_LONG%% lib/libKDevPlatformInterfaces.so.%%SO_VER%% lib/libKDevPlatformLanguage.so lib/libKDevPlatformLanguage.so.%%SO_VER_LONG%% lib/libKDevPlatformLanguage.so.%%SO_VER%% lib/libKDevPlatformOutputView.so lib/libKDevPlatformOutputView.so.%%SO_VER_LONG%% lib/libKDevPlatformOutputView.so.%%SO_VER%% lib/libKDevPlatformProject.so lib/libKDevPlatformProject.so.%%SO_VER_LONG%% lib/libKDevPlatformProject.so.%%SO_VER%% lib/libKDevPlatformSerialization.so lib/libKDevPlatformSerialization.so.%%SO_VER_LONG%% lib/libKDevPlatformSerialization.so.%%SO_VER%% lib/libKDevPlatformShell.so lib/libKDevPlatformShell.so.%%SO_VER_LONG%% lib/libKDevPlatformShell.so.%%SO_VER%% lib/libKDevPlatformSublime.so lib/libKDevPlatformSublime.so.%%SO_VER_LONG%% lib/libKDevPlatformSublime.so.%%SO_VER%% lib/libKDevPlatformUtil.so lib/libKDevPlatformUtil.so.%%SO_VER_LONG%% lib/libKDevPlatformUtil.so.%%SO_VER%% lib/libKDevPlatformVcs.so lib/libKDevPlatformVcs.so.%%SO_VER_LONG%% lib/libKDevPlatformVcs.so.%%SO_VER%% lib/libKDevelopSessionsWatch.so %%QT_PLUGINDIR%%/grantlee/%%GRANTLEE_VERSION_SHORT%%/kdev_filters.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevandroid.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevappwizard.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevastyle.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevbazaar.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangsupport.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclangtidy.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclassbrowser.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevclazy.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcmakebuilder.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcmakedocumentation.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcmakemanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcodeutils.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcontextbrowser.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcppcheck.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcraft.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustombuildsystem.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustommakemanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevcustomscript.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdefinesandincludesmanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocker.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentswitcher.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevdocumentview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecute.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecuteplasmoid.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexecutescript.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevexternalscript.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfilemanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevfiletemplates.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevflatpak.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgdb.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgenericmanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevghprovider.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgit.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevgrepview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevheaptrack.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevkonsoleview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevlldb.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevmakebuilder.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevmanpage.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevmesonmanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevninja.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevokteta.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevopenwith.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevoutlineview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevpatchreview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevperforce.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevproblemreporter.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevprojectfilter.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevprojectmanagerview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqmakebuilder.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqmakemanager.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqmljslanguagesupport.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevqthelp.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevquickopen.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevscratchpad.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsourceformatter.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevstandardoutputview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevsubversion.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevswitchtobuddy.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevtestview.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevvcschangesviewplugin.so -%%QT_PLUGINDIR%%/kdevplatform/%%PLATFORM_VER%%/kdevwelcomepage.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevandroid.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevappwizard.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevastyle.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevbazaar.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangsupport.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclangtidy.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclassbrowser.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevclazy.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakebuilder.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakedocumentation.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcmakemanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcodeutils.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcontextbrowser.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcppcheck.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcraft.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustombuildsystem.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustommakemanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevcustomscript.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdefinesandincludesmanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocker.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentswitcher.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevdocumentview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecute.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecuteplasmoid.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexecutescript.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevexternalscript.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfilemanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevfiletemplates.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevflatpak.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgdb.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgenericmanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevghprovider.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgit.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevgrepview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevheaptrack.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevkonsoleview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevlldb.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmakebuilder.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmanpage.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevmesonmanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevninja.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevokteta.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevopenwith.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevoutlineview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevpatchreview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevperforce.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevproblemreporter.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectfilter.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevprojectmanagerview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakebuilder.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmakemanager.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqmljslanguagesupport.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevqthelp.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevquickopen.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevscratchpad.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsourceformatter.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevstandardoutputview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevsubversion.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevswitchtobuddy.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevtestview.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevvcschangesviewplugin.so +%%QT_PLUGINDIR%%/kdevplatform/%%SO_VER%%/kdevwelcomepage.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_kdevelopsessions.so %%QT_QMLDIR%%/org/kde/kdevplatform/libkdevelopdashboarddeclarativeplugin.so %%QT_QMLDIR%%/org/kde/kdevplatform/qmldir %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/libkdevelopsessionsplugin.so %%QT_QMLDIR%%/org/kde/plasma/private/kdevelopsessions/qmldir share/applications/org.kde.kdevelop.desktop share/applications/org.kde.kdevelop_bzr.desktop share/applications/org.kde.kdevelop_git.desktop share/applications/org.kde.kdevelop_kdev4.desktop share/applications/org.kde.kdevelop_ps.desktop share/applications/org.kde.kdevelop_svn.desktop share/doc/HTML/ca/kdevelop/index.cache.bz2 share/doc/HTML/ca/kdevelop/index.docbook share/doc/HTML/ca/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/en/kdevelop/Icon-folder.png share/doc/HTML/en/kdevelop/Icon-list-add.png share/doc/HTML/en/kdevelop/Icon-list-remove.png share/doc/HTML/en/kdevelop/index.cache.bz2 share/doc/HTML/en/kdevelop/index.docbook share/doc/HTML/en/kdevelop/kdevelop-10.png share/doc/HTML/en/kdevelop/kdevelop-11.png share/doc/HTML/en/kdevelop/kdevelop-12.png share/doc/HTML/en/kdevelop/kdevelop-13.png share/doc/HTML/en/kdevelop/kdevelop-14.png share/doc/HTML/en/kdevelop/kdevelop-15.png share/doc/HTML/en/kdevelop/kdevelop-16.png share/doc/HTML/en/kdevelop/kdevelop-17.png share/doc/HTML/en/kdevelop/kdevelop-18.png share/doc/HTML/en/kdevelop/kdevelop-19.png share/doc/HTML/en/kdevelop/kdevelop-1a.png share/doc/HTML/en/kdevelop/kdevelop-2.png share/doc/HTML/en/kdevelop/kdevelop-20.png share/doc/HTML/en/kdevelop/kdevelop-23.png share/doc/HTML/en/kdevelop/kdevelop-24.png share/doc/HTML/en/kdevelop/kdevelop-25.png share/doc/HTML/en/kdevelop/kdevelop-26.png share/doc/HTML/en/kdevelop/kdevelop-3.png share/doc/HTML/en/kdevelop/kdevelop-30.png share/doc/HTML/en/kdevelop/kdevelop-31.png share/doc/HTML/en/kdevelop/kdevelop-32.png share/doc/HTML/en/kdevelop/kdevelop-33.png share/doc/HTML/en/kdevelop/kdevelop-34.png share/doc/HTML/en/kdevelop/kdevelop-35.png share/doc/HTML/en/kdevelop/kdevelop-36.png share/doc/HTML/en/kdevelop/kdevelop-37.png share/doc/HTML/en/kdevelop/kdevelop-38.png share/doc/HTML/en/kdevelop/kdevelop-39.png share/doc/HTML/en/kdevelop/kdevelop-4.png share/doc/HTML/en/kdevelop/kdevelop-40.png share/doc/HTML/en/kdevelop/kdevelop-41.png share/doc/HTML/en/kdevelop/kdevelop-42.png share/doc/HTML/en/kdevelop/kdevelop-43.png share/doc/HTML/en/kdevelop/kdevelop-5.png share/doc/HTML/en/kdevelop/kdevelop-6.png share/doc/HTML/en/kdevelop/kdevelop-7.png share/doc/HTML/en/kdevelop/kdevelop-8.png share/doc/HTML/en/kdevelop/kdevelop-9.png share/doc/HTML/en/kdevelop/kdevelop-project-dialog.png share/doc/HTML/en/kdevelop/kdevelop-template-inheritance.png share/doc/HTML/en/kdevelop/kdevelop-template-manager.png share/doc/HTML/en/kdevelop/kdevelop-template-members.png share/doc/HTML/en/kdevelop/kdevelop-template-result.png share/doc/HTML/en/kdevelop/kdevelop-template-selection.png share/doc/HTML/en/kdevelop/kdevelop4_noworkingset.png share/doc/HTML/en/kdevelop/kdevelop4_sessionsprojectsworkingsets.png share/doc/HTML/es/kdevelop/index.cache.bz2 share/doc/HTML/es/kdevelop/index.docbook share/doc/HTML/it/kdevelop/index.cache.bz2 share/doc/HTML/it/kdevelop/index.docbook share/doc/HTML/nl/kdevelop/index.cache.bz2 share/doc/HTML/nl/kdevelop/index.docbook share/doc/HTML/pt/kdevelop/index.cache.bz2 share/doc/HTML/pt/kdevelop/index.docbook share/doc/HTML/pt_BR/kdevelop/index.cache.bz2 share/doc/HTML/pt_BR/kdevelop/index.docbook share/doc/HTML/sv/kdevelop/index.cache.bz2 share/doc/HTML/sv/kdevelop/index.docbook share/doc/HTML/uk/kdevelop/index.cache.bz2 share/doc/HTML/uk/kdevelop/index.docbook share/icons/hicolor/1024x1024/apps/kdevelop.png share/icons/hicolor/128x128/apps/bazaar.png share/icons/hicolor/128x128/apps/clazy.png share/icons/hicolor/128x128/apps/cmake.png share/icons/hicolor/128x128/apps/cppcheck.png share/icons/hicolor/128x128/apps/kdevelop.png share/icons/hicolor/16x16/actions/breakpoint.png share/icons/hicolor/16x16/apps/cmake.png share/icons/hicolor/16x16/apps/github-forked.png share/icons/hicolor/16x16/apps/github-private.png share/icons/hicolor/16x16/apps/github-repo.png share/icons/hicolor/16x16/apps/kdevelop.png share/icons/hicolor/16x16/apps/kdevgh.png share/icons/hicolor/16x16/apps/subversion.png -share/icons/hicolor/22x22/actions/breakpoint.png +share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/breakpoint.png share/icons/hicolor/256x256/apps/kdevelop.png share/icons/hicolor/32x32/actions/breakpoint.png share/icons/hicolor/32x32/apps/cmake.png share/icons/hicolor/32x32/apps/kdevelop.png share/icons/hicolor/32x32/apps/kdevgh.png share/icons/hicolor/32x32/apps/subversion.png share/icons/hicolor/48x48/apps/kdevelop.png share/icons/hicolor/512x512/apps/kdevelop.png share/icons/hicolor/64x64/apps/cmake.png share/icons/hicolor/64x64/apps/kdevelop.png share/icons/hicolor/64x64/apps/subversion.png share/icons/hicolor/scalable/actions/breakpoint.svg share/icons/hicolor/scalable/apps/git.svg share/icons/hicolor/scalable/apps/kdevelop.svg share/icons/hicolor/scalable/apps/qtlogo.svg share/icons/hicolor/scalable/apps/subversion.svg share/kdevappwizard/templates/cmake_kdevplugin.tar.bz2 share/kdevappwizard/templates/cmake_plainc.tar.bz2 share/kdevappwizard/templates/cmake_plaincpp.tar.bz2 share/kdevappwizard/templates/cmake_qt5-qml2.tar.bz2 share/kdevappwizard/templates/cmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/empty.tar.bz2 share/kdevappwizard/templates/file_template_template.tar.bz2 +share/kdevappwizard/templates/meson_plainc.tar.bz2 +share/kdevappwizard/templates/meson_plaincpp.tar.bz2 share/kdevappwizard/templates/qmake_qt5guiapp.tar.bz2 share/kdevappwizard/templates/qt5-qml2.tar.bz2 share/kdevclangsupport/wrappedQtHeaders/QtCore/qobjectdefs.h share/kdevcodegen/licenses/Apache v2 share/kdevcodegen/licenses/BSD share/kdevcodegen/licenses/Boost share/kdevcodegen/licenses/GPL v2 share/kdevcodegen/licenses/GPL v2+ (KDE) share/kdevcodegen/licenses/GPL v3 share/kdevcodegen/licenses/LGPL v2 share/kdevcodegen/licenses/LGPL v2+ (KDE) share/kdevcodegen/licenses/LGPL v3 share/kdevcodegen/licenses/MIT X11 share/kdevcodegen/licenses/Mozilla v1.1 share/kdevcodegen/templates/arguments_names.txt share/kdevcodegen/templates/arguments_types_names.txt share/kdevcodegen/templates/class_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_declaration_cpp.txt share/kdevcodegen/templates/class_method_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_method_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_getter_declaration_cpp.txt share/kdevcodegen/templates/class_property_getter_definition_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_apidox_cpp.txt share/kdevcodegen/templates/class_property_setter_declaration_cpp.txt share/kdevcodegen/templates/class_property_setter_definition_cpp.txt share/kdevcodegen/templates/class_property_signal_declaration_cpp.txt share/kdevcodegen/templates/class_qproperty_declaration_cpp.txt share/kdevcodegen/templates/cpp_header.h share/kdevcodegen/templates/cpp_header_onlyfunctions.h share/kdevcodegen/templates/cpp_implementation.cpp share/kdevcodegen/templates/cpp_qobject_header.h share/kdevcodegen/templates/cpp_qobject_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_header.h share/kdevcodegen/templates/cpp_qobject_pimpl_implementation.cpp share/kdevcodegen/templates/cpp_qobject_pimpl_p_header.h share/kdevcodegen/templates/include_guard_cpp.txt share/kdevcodegen/templates/license_header_cpp.txt share/kdevcodegen/templates/method_declaration_cpp.txt share/kdevcodegen/templates/method_definition_cpp.txt share/kdevcodegen/templates/namespace_close_cpp.txt share/kdevcodegen/templates/namespace_open_cpp.txt share/kdevcodegen/templates/namespace_use_cpp.txt share/kdevcodeutils/templates/doxygen_cpp.txt share/kdevcodeutils/templates/phpdoc_php.txt share/kdevcodeutils/templates/rest_python.txt %%DATADIR%%/icons/hicolor/16x16/actions/classnew.png %%DATADIR%%/icons/hicolor/16x16/actions/dirsync.png %%DATADIR%%/icons/hicolor/16x16/actions/methodnew.png %%DATADIR%%/icons/hicolor/16x16/actions/variablenew.png -%%DATADIR%%/icons/hicolor/22x22/actions/classnew.png +%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/classnew.png %%DATADIR%%/icons/hicolor/32x32/actions/classnew.png %%DATADIR%%/kdevflatpak/replicate.sh %%DATADIR%%/pics/CTchildren.png %%DATADIR%%/pics/CTclients.png %%DATADIR%%/pics/CTdisconnected_parents.png %%DATADIR%%/pics/CTparents.png %%DATADIR%%/pics/CTsuppliers.png %%DATADIR%%/pics/CTvirtuals.png %%DATADIR%%/pics/CVclass.png %%DATADIR%%/pics/CVglobal_meth.png %%DATADIR%%/pics/CVglobal_var.png %%DATADIR%%/pics/CVnamespace.png %%DATADIR%%/pics/CVpackage_meth.png %%DATADIR%%/pics/CVpackage_var.png %%DATADIR%%/pics/CVprivate_meth.png %%DATADIR%%/pics/CVprivate_signal.png %%DATADIR%%/pics/CVprivate_slot.png %%DATADIR%%/pics/CVprivate_var.png %%DATADIR%%/pics/CVprotected_meth.png %%DATADIR%%/pics/CVprotected_signal.png %%DATADIR%%/pics/CVprotected_slot.png %%DATADIR%%/pics/CVprotected_var.png %%DATADIR%%/pics/CVpublic_meth.png %%DATADIR%%/pics/CVpublic_signal.png %%DATADIR%%/pics/CVpublic_slot.png %%DATADIR%%/pics/CVpublic_var.png %%DATADIR%%/pics/CVstruct.png %%DATADIR%%/pics/CVtypedef.png %%DATADIR%%/pics/code-class.png %%DATADIR%%/pics/code-function.png %%DATADIR%%/pics/enum.png %%DATADIR%%/pics/field.png %%DATADIR%%/pics/namespace.png %%DATADIR%%/pics/private_class.png %%DATADIR%%/pics/private_enum.png %%DATADIR%%/pics/private_field.png %%DATADIR%%/pics/private_function.png %%DATADIR%%/pics/private_struct.png %%DATADIR%%/pics/private_union.png %%DATADIR%%/pics/protected_class.png %%DATADIR%%/pics/protected_enum.png %%DATADIR%%/pics/protected_field.png %%DATADIR%%/pics/protected_function.png %%DATADIR%%/pics/protected_struct.png %%DATADIR%%/pics/protected_union.png %%DATADIR%%/pics/signal.png %%DATADIR%%/pics/slot.png %%DATADIR%%/pics/struct.png %%DATADIR%%/pics/typedef.png %%DATADIR%%/pics/union.png %%DATADIR%%/shortcuts/QtCreator share/kdevfiletemplates/templates/c_gobject.tar.bz2 share/kdevfiletemplates/templates/c_gobject_private.tar.bz2 share/kdevfiletemplates/templates/c_gobject_properties.tar.bz2 share/kdevfiletemplates/templates/cmake_module.tar.bz2 share/kdevfiletemplates/templates/cpp_basic.tar.bz2 share/kdevfiletemplates/templates/cpp_cpputest.tar.bz2 share/kdevfiletemplates/templates/cpp_gtest.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib.tar.bz2 share/kdevfiletemplates/templates/cpp_qtestlib_kdevelop.tar.bz2 share/kdevfiletemplates/templates/dockerfile-template.tar.bz2 share/kdevfiletemplates/templates/flatpak-template.tar.bz2 share/kdevfiletemplates/templates/php_phpunit.tar.bz2 share/kdevfiletemplates/templates/private_pointer.tar.bz2 share/kdevfiletemplates/templates/python_basic.tar.bz2 share/kdevfiletemplates/templates/python_pyunit.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel.tar.bz2 share/kdevfiletemplates/templates/qabstractitemmodel_pimpl.tar.bz2 share/kdevfiletemplates/templates/qdialog.tar.bz2 share/kdevfiletemplates/templates/qdialog_pimpl.tar.bz2 share/kdevfiletemplates/templates/qobject.tar.bz2 share/kdevfiletemplates/templates/qobject_pimpl.tar.bz2 share/kdevfiletemplates/templates/qt_interface.tar.bz2 share/kdevfiletemplates/templates/qt_shared.tar.bz2 share/kdevfiletemplates/templates/qt_widget.tar.bz2 share/kdevfiletemplates/templates/qwidget_pimpl.tar.bz2 share/kdevgdb/printers/gdbinit share/kdevgdb/printers/helper.py share/kdevgdb/printers/kde.py share/kdevgdb/printers/qt.py share/kdevlldb/formatters/all.py share/kdevlldb/formatters/helpers.py share/kdevlldb/formatters/kde.py share/kdevlldb/formatters/qt.py share/kdevmanpage/manpagedocumentation.css share/kdevplatform/shellutils/.zshrc share/kdevqmljssupport/nodejsmodules/__builtin_dom.js share/kdevqmljssupport/nodejsmodules/__builtin_ecmascript.js share/kdevqmljssupport/nodejsmodules/__builtin_qml.qml share/kdevqmljssupport/nodejsmodules/buffer.js share/kdevqmljssupport/nodejsmodules/child_process.js share/kdevqmljssupport/nodejsmodules/common.js share/kdevqmljssupport/nodejsmodules/console.js share/kdevqmljssupport/nodejsmodules/crypto.js share/kdevqmljssupport/nodejsmodules/dgram.js share/kdevqmljssupport/nodejsmodules/dns.js share/kdevqmljssupport/nodejsmodules/domain.js share/kdevqmljssupport/nodejsmodules/event.js share/kdevqmljssupport/nodejsmodules/fs.js share/kdevqmljssupport/nodejsmodules/http.js share/kdevqmljssupport/nodejsmodules/https.js share/kdevqmljssupport/nodejsmodules/net.js share/kdevqmljssupport/nodejsmodules/os.js share/kdevqmljssupport/nodejsmodules/path.js share/kdevqmljssupport/nodejsmodules/punycode.js share/kdevqmljssupport/nodejsmodules/querystring.js share/kdevqmljssupport/nodejsmodules/readline.js share/kdevqmljssupport/nodejsmodules/stream.js share/kdevqmljssupport/nodejsmodules/string_decoder.js share/kdevqmljssupport/nodejsmodules/tls.js share/kdevqmljssupport/nodejsmodules/tty.js share/kdevqmljssupport/nodejsmodules/url.js share/kdevqmljssupport/nodejsmodules/util.js share/kdevqmljssupport/nodejsmodules/vm.js share/kdevqmljssupport/nodejsmodules/zlib.js share/kdevqmljssupport/propertywidgets/ColorPicker.qml share/kdevqmljssupport/propertywidgets/Duration.qml share/kdevqmljssupport/propertywidgets/FontFamily.qml share/kdevqmljssupport/propertywidgets/FontSize.qml share/kdevqmljssupport/propertywidgets/Height.qml share/kdevqmljssupport/propertywidgets/Opacity.qml share/kdevqmljssupport/propertywidgets/PropertyWidget.qml share/kdevqmljssupport/propertywidgets/README share/kdevqmljssupport/propertywidgets/Spacing.qml share/kdevqmljssupport/propertywidgets/Width.qml share/knotifications5/kdevelop.notifyrc share/knsrcfiles/kdevappwizard.knsrc share/knsrcfiles/kdevelop-qthelp.knsrc share/knsrcfiles/kdevfiletemplates.knsrc share/kservices5/plasma-applet-kdevelopsessions.desktop share/kservicetypes5/kdevelopplugin.desktop +share/locale/af/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevclassbrowser.mo share/locale/ar/LC_MESSAGES/kdevelop.mo share/locale/ar/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ar/LC_MESSAGES/kdevkonsole.mo share/locale/ar/LC_MESSAGES/kdevplatform.mo share/locale/ar/LC_MESSAGES/kdevqthelp.mo share/locale/ar/LC_MESSAGES/kdevwelcomepage.mo -share/locale/ast/LC_MESSAGES/kdevkonsole.mo share/locale/az/LC_MESSAGES/kdevclazy.mo share/locale/az/LC_MESSAGES/kdevdebuggercommon.mo share/locale/az/LC_MESSAGES/kdevelop.mo share/locale/az/LC_MESSAGES/kdevgit.mo share/locale/az/LC_MESSAGES/kdevmesonmanager.mo share/locale/az/LC_MESSAGES/kdevplatform.mo share/locale/be/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevandroid.mo share/locale/bg/LC_MESSAGES/kdevappwizard.mo share/locale/bg/LC_MESSAGES/kdevastyle.mo share/locale/bg/LC_MESSAGES/kdevbazaar.mo share/locale/bg/LC_MESSAGES/kdevclang.mo share/locale/bg/LC_MESSAGES/kdevclangtidy.mo share/locale/bg/LC_MESSAGES/kdevclassbrowser.mo share/locale/bg/LC_MESSAGES/kdevclazy.mo share/locale/bg/LC_MESSAGES/kdevcmake.mo share/locale/bg/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevcodeutils.mo share/locale/bg/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/bg/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bg/LC_MESSAGES/kdevcppcheck.mo share/locale/bg/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bg/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/bg/LC_MESSAGES/kdevcustommake.mo share/locale/bg/LC_MESSAGES/kdevcustomscript.mo share/locale/bg/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bg/LC_MESSAGES/kdevdocker.mo share/locale/bg/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bg/LC_MESSAGES/kdevdocumentview.mo share/locale/bg/LC_MESSAGES/kdevelop.mo share/locale/bg/LC_MESSAGES/kdevexecute.mo share/locale/bg/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bg/LC_MESSAGES/kdevexecutescript.mo share/locale/bg/LC_MESSAGES/kdevexternalscript.mo share/locale/bg/LC_MESSAGES/kdevfilemanager.mo share/locale/bg/LC_MESSAGES/kdevfiletemplates.mo share/locale/bg/LC_MESSAGES/kdevflatpak.mo share/locale/bg/LC_MESSAGES/kdevgdb.mo share/locale/bg/LC_MESSAGES/kdevghprovider.mo share/locale/bg/LC_MESSAGES/kdevgit.mo share/locale/bg/LC_MESSAGES/kdevgrepview.mo share/locale/bg/LC_MESSAGES/kdevheaptrack.mo share/locale/bg/LC_MESSAGES/kdevkonsole.mo share/locale/bg/LC_MESSAGES/kdevlldb.mo share/locale/bg/LC_MESSAGES/kdevmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevmanpage.mo share/locale/bg/LC_MESSAGES/kdevmesonmanager.mo share/locale/bg/LC_MESSAGES/kdevninja.mo share/locale/bg/LC_MESSAGES/kdevokteta.mo share/locale/bg/LC_MESSAGES/kdevopenwith.mo share/locale/bg/LC_MESSAGES/kdevoutlineview.mo share/locale/bg/LC_MESSAGES/kdevpatchreview.mo share/locale/bg/LC_MESSAGES/kdevperforce.mo share/locale/bg/LC_MESSAGES/kdevplatform.mo share/locale/bg/LC_MESSAGES/kdevproblemreporter.mo share/locale/bg/LC_MESSAGES/kdevprojectfilter.mo share/locale/bg/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bg/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bg/LC_MESSAGES/kdevqmakemanager.mo share/locale/bg/LC_MESSAGES/kdevqmljs.mo share/locale/bg/LC_MESSAGES/kdevqthelp.mo share/locale/bg/LC_MESSAGES/kdevquickopen.mo share/locale/bg/LC_MESSAGES/kdevscratchpad.mo share/locale/bg/LC_MESSAGES/kdevsourceformatter.mo share/locale/bg/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bg/LC_MESSAGES/kdevsubversion.mo share/locale/bg/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bg/LC_MESSAGES/kdevtestview.mo share/locale/bg/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bg/LC_MESSAGES/kdevwelcomepage.mo share/locale/bg/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bg/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/br/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevappwizard.mo share/locale/bs/LC_MESSAGES/kdevbazaar.mo share/locale/bs/LC_MESSAGES/kdevclassbrowser.mo share/locale/bs/LC_MESSAGES/kdevcmake.mo share/locale/bs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevcodeutils.mo share/locale/bs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/bs/LC_MESSAGES/kdevcppcheck.mo share/locale/bs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/bs/LC_MESSAGES/kdevcustommake.mo share/locale/bs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/bs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/bs/LC_MESSAGES/kdevdocumentview.mo share/locale/bs/LC_MESSAGES/kdevelop.mo share/locale/bs/LC_MESSAGES/kdevexecute.mo share/locale/bs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/bs/LC_MESSAGES/kdevexecutescript.mo share/locale/bs/LC_MESSAGES/kdevexternalscript.mo share/locale/bs/LC_MESSAGES/kdevfilemanager.mo share/locale/bs/LC_MESSAGES/kdevfiletemplates.mo share/locale/bs/LC_MESSAGES/kdevgdb.mo share/locale/bs/LC_MESSAGES/kdevghprovider.mo share/locale/bs/LC_MESSAGES/kdevgit.mo share/locale/bs/LC_MESSAGES/kdevgrepview.mo share/locale/bs/LC_MESSAGES/kdevkonsole.mo share/locale/bs/LC_MESSAGES/kdevmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevmanpage.mo share/locale/bs/LC_MESSAGES/kdevninja.mo share/locale/bs/LC_MESSAGES/kdevokteta.mo share/locale/bs/LC_MESSAGES/kdevopenwith.mo share/locale/bs/LC_MESSAGES/kdevpatchreview.mo share/locale/bs/LC_MESSAGES/kdevperforce.mo share/locale/bs/LC_MESSAGES/kdevplatform.mo share/locale/bs/LC_MESSAGES/kdevproblemreporter.mo share/locale/bs/LC_MESSAGES/kdevprojectfilter.mo share/locale/bs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/bs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/bs/LC_MESSAGES/kdevqmakemanager.mo share/locale/bs/LC_MESSAGES/kdevqmljs.mo share/locale/bs/LC_MESSAGES/kdevqthelp.mo share/locale/bs/LC_MESSAGES/kdevquickopen.mo share/locale/bs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/bs/LC_MESSAGES/kdevsubversion.mo share/locale/bs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/bs/LC_MESSAGES/kdevtestview.mo share/locale/bs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/bs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/bs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/kdevandroid.mo share/locale/ca/LC_MESSAGES/kdevappwizard.mo share/locale/ca/LC_MESSAGES/kdevastyle.mo share/locale/ca/LC_MESSAGES/kdevbazaar.mo share/locale/ca/LC_MESSAGES/kdevclang.mo share/locale/ca/LC_MESSAGES/kdevclangtidy.mo share/locale/ca/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca/LC_MESSAGES/kdevclazy.mo share/locale/ca/LC_MESSAGES/kdevcmake.mo share/locale/ca/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevcodeutils.mo share/locale/ca/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca/LC_MESSAGES/kdevcppcheck.mo share/locale/ca/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca/LC_MESSAGES/kdevcustommake.mo share/locale/ca/LC_MESSAGES/kdevcustomscript.mo share/locale/ca/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca/LC_MESSAGES/kdevdocker.mo share/locale/ca/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca/LC_MESSAGES/kdevdocumentview.mo share/locale/ca/LC_MESSAGES/kdevelop.mo share/locale/ca/LC_MESSAGES/kdevexecute.mo share/locale/ca/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca/LC_MESSAGES/kdevexecutescript.mo share/locale/ca/LC_MESSAGES/kdevexternalscript.mo share/locale/ca/LC_MESSAGES/kdevfilemanager.mo share/locale/ca/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca/LC_MESSAGES/kdevflatpak.mo share/locale/ca/LC_MESSAGES/kdevgdb.mo share/locale/ca/LC_MESSAGES/kdevghprovider.mo share/locale/ca/LC_MESSAGES/kdevgit.mo share/locale/ca/LC_MESSAGES/kdevgrepview.mo share/locale/ca/LC_MESSAGES/kdevheaptrack.mo share/locale/ca/LC_MESSAGES/kdevkonsole.mo share/locale/ca/LC_MESSAGES/kdevlldb.mo share/locale/ca/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevmanpage.mo share/locale/ca/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca/LC_MESSAGES/kdevninja.mo share/locale/ca/LC_MESSAGES/kdevokteta.mo share/locale/ca/LC_MESSAGES/kdevopenwith.mo share/locale/ca/LC_MESSAGES/kdevoutlineview.mo share/locale/ca/LC_MESSAGES/kdevpatchreview.mo share/locale/ca/LC_MESSAGES/kdevperforce.mo share/locale/ca/LC_MESSAGES/kdevplatform.mo share/locale/ca/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca/LC_MESSAGES/kdevqmljs.mo share/locale/ca/LC_MESSAGES/kdevqthelp.mo share/locale/ca/LC_MESSAGES/kdevquickopen.mo share/locale/ca/LC_MESSAGES/kdevscratchpad.mo share/locale/ca/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca/LC_MESSAGES/kdevsubversion.mo share/locale/ca/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca/LC_MESSAGES/kdevtestview.mo share/locale/ca/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/kdevandroid.mo share/locale/ca@valencia/LC_MESSAGES/kdevappwizard.mo share/locale/ca@valencia/LC_MESSAGES/kdevastyle.mo share/locale/ca@valencia/LC_MESSAGES/kdevbazaar.mo share/locale/ca@valencia/LC_MESSAGES/kdevclang.mo share/locale/ca@valencia/LC_MESSAGES/kdevclangtidy.mo share/locale/ca@valencia/LC_MESSAGES/kdevclassbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevclazy.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevcodeutils.mo share/locale/ca@valencia/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ca@valencia/LC_MESSAGES/kdevcppcheck.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustommake.mo share/locale/ca@valencia/LC_MESSAGES/kdevcustomscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocker.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ca@valencia/LC_MESSAGES/kdevdocumentview.mo share/locale/ca@valencia/LC_MESSAGES/kdevelop.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecute.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kdevexecutescript.mo share/locale/ca@valencia/LC_MESSAGES/kdevexternalscript.mo share/locale/ca@valencia/LC_MESSAGES/kdevfilemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevfiletemplates.mo share/locale/ca@valencia/LC_MESSAGES/kdevflatpak.mo share/locale/ca@valencia/LC_MESSAGES/kdevgdb.mo share/locale/ca@valencia/LC_MESSAGES/kdevghprovider.mo share/locale/ca@valencia/LC_MESSAGES/kdevgit.mo share/locale/ca@valencia/LC_MESSAGES/kdevgrepview.mo share/locale/ca@valencia/LC_MESSAGES/kdevheaptrack.mo share/locale/ca@valencia/LC_MESSAGES/kdevkonsole.mo share/locale/ca@valencia/LC_MESSAGES/kdevlldb.mo share/locale/ca@valencia/LC_MESSAGES/kdevmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevmanpage.mo share/locale/ca@valencia/LC_MESSAGES/kdevmesonmanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevninja.mo share/locale/ca@valencia/LC_MESSAGES/kdevokteta.mo share/locale/ca@valencia/LC_MESSAGES/kdevopenwith.mo share/locale/ca@valencia/LC_MESSAGES/kdevoutlineview.mo share/locale/ca@valencia/LC_MESSAGES/kdevpatchreview.mo share/locale/ca@valencia/LC_MESSAGES/kdevperforce.mo share/locale/ca@valencia/LC_MESSAGES/kdevplatform.mo share/locale/ca@valencia/LC_MESSAGES/kdevproblemreporter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectfilter.mo share/locale/ca@valencia/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmakemanager.mo share/locale/ca@valencia/LC_MESSAGES/kdevqmljs.mo share/locale/ca@valencia/LC_MESSAGES/kdevqthelp.mo share/locale/ca@valencia/LC_MESSAGES/kdevquickopen.mo share/locale/ca@valencia/LC_MESSAGES/kdevscratchpad.mo share/locale/ca@valencia/LC_MESSAGES/kdevsourceformatter.mo share/locale/ca@valencia/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ca@valencia/LC_MESSAGES/kdevsubversion.mo share/locale/ca@valencia/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ca@valencia/LC_MESSAGES/kdevtestview.mo share/locale/ca@valencia/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ca@valencia/LC_MESSAGES/kdevwelcomepage.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ca@valencia/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/kdevandroid.mo share/locale/cs/LC_MESSAGES/kdevappwizard.mo share/locale/cs/LC_MESSAGES/kdevastyle.mo share/locale/cs/LC_MESSAGES/kdevbazaar.mo share/locale/cs/LC_MESSAGES/kdevclang.mo share/locale/cs/LC_MESSAGES/kdevclangtidy.mo share/locale/cs/LC_MESSAGES/kdevclassbrowser.mo share/locale/cs/LC_MESSAGES/kdevclazy.mo share/locale/cs/LC_MESSAGES/kdevcmake.mo share/locale/cs/LC_MESSAGES/kdevcmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevcodeutils.mo share/locale/cs/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/cs/LC_MESSAGES/kdevcontextbrowser.mo share/locale/cs/LC_MESSAGES/kdevcppcheck.mo share/locale/cs/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/cs/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/cs/LC_MESSAGES/kdevcustommake.mo share/locale/cs/LC_MESSAGES/kdevcustomscript.mo share/locale/cs/LC_MESSAGES/kdevdebuggercommon.mo share/locale/cs/LC_MESSAGES/kdevdocker.mo share/locale/cs/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/cs/LC_MESSAGES/kdevdocumentview.mo share/locale/cs/LC_MESSAGES/kdevelop.mo share/locale/cs/LC_MESSAGES/kdevexecute.mo share/locale/cs/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/cs/LC_MESSAGES/kdevexecutescript.mo share/locale/cs/LC_MESSAGES/kdevexternalscript.mo share/locale/cs/LC_MESSAGES/kdevfilemanager.mo share/locale/cs/LC_MESSAGES/kdevfiletemplates.mo share/locale/cs/LC_MESSAGES/kdevflatpak.mo share/locale/cs/LC_MESSAGES/kdevgdb.mo share/locale/cs/LC_MESSAGES/kdevghprovider.mo share/locale/cs/LC_MESSAGES/kdevgit.mo share/locale/cs/LC_MESSAGES/kdevgrepview.mo share/locale/cs/LC_MESSAGES/kdevheaptrack.mo share/locale/cs/LC_MESSAGES/kdevkonsole.mo share/locale/cs/LC_MESSAGES/kdevlldb.mo share/locale/cs/LC_MESSAGES/kdevmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevmanpage.mo share/locale/cs/LC_MESSAGES/kdevmesonmanager.mo share/locale/cs/LC_MESSAGES/kdevninja.mo share/locale/cs/LC_MESSAGES/kdevokteta.mo share/locale/cs/LC_MESSAGES/kdevopenwith.mo share/locale/cs/LC_MESSAGES/kdevoutlineview.mo share/locale/cs/LC_MESSAGES/kdevpatchreview.mo share/locale/cs/LC_MESSAGES/kdevperforce.mo share/locale/cs/LC_MESSAGES/kdevplatform.mo share/locale/cs/LC_MESSAGES/kdevproblemreporter.mo share/locale/cs/LC_MESSAGES/kdevprojectfilter.mo share/locale/cs/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/cs/LC_MESSAGES/kdevqmakebuilder.mo share/locale/cs/LC_MESSAGES/kdevqmakemanager.mo share/locale/cs/LC_MESSAGES/kdevqmljs.mo share/locale/cs/LC_MESSAGES/kdevqthelp.mo share/locale/cs/LC_MESSAGES/kdevquickopen.mo share/locale/cs/LC_MESSAGES/kdevscratchpad.mo share/locale/cs/LC_MESSAGES/kdevsourceformatter.mo share/locale/cs/LC_MESSAGES/kdevstandardoutputview.mo share/locale/cs/LC_MESSAGES/kdevsubversion.mo share/locale/cs/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/cs/LC_MESSAGES/kdevtestview.mo share/locale/cs/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/cs/LC_MESSAGES/kdevwelcomepage.mo share/locale/cs/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/cs/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/cy/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevappwizard.mo share/locale/da/LC_MESSAGES/kdevclassbrowser.mo share/locale/da/LC_MESSAGES/kdevcmake.mo share/locale/da/LC_MESSAGES/kdevcmakebuilder.mo share/locale/da/LC_MESSAGES/kdevcodeutils.mo share/locale/da/LC_MESSAGES/kdevcontextbrowser.mo share/locale/da/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/da/LC_MESSAGES/kdevcustommake.mo share/locale/da/LC_MESSAGES/kdevdebuggercommon.mo share/locale/da/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/da/LC_MESSAGES/kdevdocumentview.mo share/locale/da/LC_MESSAGES/kdevelop.mo share/locale/da/LC_MESSAGES/kdevexecute.mo share/locale/da/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/da/LC_MESSAGES/kdevexecutescript.mo share/locale/da/LC_MESSAGES/kdevexternalscript.mo share/locale/da/LC_MESSAGES/kdevfilemanager.mo share/locale/da/LC_MESSAGES/kdevfiletemplates.mo share/locale/da/LC_MESSAGES/kdevgdb.mo share/locale/da/LC_MESSAGES/kdevghprovider.mo share/locale/da/LC_MESSAGES/kdevgit.mo share/locale/da/LC_MESSAGES/kdevgrepview.mo share/locale/da/LC_MESSAGES/kdevkonsole.mo share/locale/da/LC_MESSAGES/kdevmakebuilder.mo share/locale/da/LC_MESSAGES/kdevmanpage.mo share/locale/da/LC_MESSAGES/kdevninja.mo share/locale/da/LC_MESSAGES/kdevokteta.mo share/locale/da/LC_MESSAGES/kdevopenwith.mo share/locale/da/LC_MESSAGES/kdevpatchreview.mo share/locale/da/LC_MESSAGES/kdevperforce.mo share/locale/da/LC_MESSAGES/kdevplatform.mo share/locale/da/LC_MESSAGES/kdevproblemreporter.mo share/locale/da/LC_MESSAGES/kdevprojectfilter.mo share/locale/da/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/da/LC_MESSAGES/kdevqthelp.mo share/locale/da/LC_MESSAGES/kdevquickopen.mo share/locale/da/LC_MESSAGES/kdevstandardoutputview.mo share/locale/da/LC_MESSAGES/kdevsubversion.mo share/locale/da/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/da/LC_MESSAGES/kdevtestview.mo share/locale/da/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/da/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/da/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/de/LC_MESSAGES/kdevandroid.mo share/locale/de/LC_MESSAGES/kdevappwizard.mo share/locale/de/LC_MESSAGES/kdevastyle.mo share/locale/de/LC_MESSAGES/kdevbazaar.mo share/locale/de/LC_MESSAGES/kdevclang.mo share/locale/de/LC_MESSAGES/kdevclangtidy.mo share/locale/de/LC_MESSAGES/kdevclassbrowser.mo share/locale/de/LC_MESSAGES/kdevclazy.mo share/locale/de/LC_MESSAGES/kdevcmake.mo share/locale/de/LC_MESSAGES/kdevcmakebuilder.mo share/locale/de/LC_MESSAGES/kdevcodeutils.mo share/locale/de/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/de/LC_MESSAGES/kdevcontextbrowser.mo share/locale/de/LC_MESSAGES/kdevcppcheck.mo share/locale/de/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/de/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/de/LC_MESSAGES/kdevcustommake.mo share/locale/de/LC_MESSAGES/kdevcustomscript.mo share/locale/de/LC_MESSAGES/kdevdebuggercommon.mo share/locale/de/LC_MESSAGES/kdevdocker.mo share/locale/de/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/de/LC_MESSAGES/kdevdocumentview.mo share/locale/de/LC_MESSAGES/kdevelop.mo share/locale/de/LC_MESSAGES/kdevexecute.mo share/locale/de/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/de/LC_MESSAGES/kdevexecutescript.mo share/locale/de/LC_MESSAGES/kdevexternalscript.mo share/locale/de/LC_MESSAGES/kdevfilemanager.mo share/locale/de/LC_MESSAGES/kdevfiletemplates.mo share/locale/de/LC_MESSAGES/kdevflatpak.mo share/locale/de/LC_MESSAGES/kdevgdb.mo share/locale/de/LC_MESSAGES/kdevghprovider.mo share/locale/de/LC_MESSAGES/kdevgit.mo share/locale/de/LC_MESSAGES/kdevgrepview.mo share/locale/de/LC_MESSAGES/kdevheaptrack.mo share/locale/de/LC_MESSAGES/kdevkonsole.mo share/locale/de/LC_MESSAGES/kdevlldb.mo share/locale/de/LC_MESSAGES/kdevmakebuilder.mo share/locale/de/LC_MESSAGES/kdevmanpage.mo share/locale/de/LC_MESSAGES/kdevmesonmanager.mo share/locale/de/LC_MESSAGES/kdevninja.mo share/locale/de/LC_MESSAGES/kdevokteta.mo share/locale/de/LC_MESSAGES/kdevopenwith.mo share/locale/de/LC_MESSAGES/kdevoutlineview.mo share/locale/de/LC_MESSAGES/kdevpatchreview.mo share/locale/de/LC_MESSAGES/kdevperforce.mo share/locale/de/LC_MESSAGES/kdevplatform.mo share/locale/de/LC_MESSAGES/kdevproblemreporter.mo share/locale/de/LC_MESSAGES/kdevprojectfilter.mo share/locale/de/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/de/LC_MESSAGES/kdevqmakebuilder.mo share/locale/de/LC_MESSAGES/kdevqmakemanager.mo share/locale/de/LC_MESSAGES/kdevqmljs.mo share/locale/de/LC_MESSAGES/kdevqthelp.mo share/locale/de/LC_MESSAGES/kdevquickopen.mo share/locale/de/LC_MESSAGES/kdevscratchpad.mo share/locale/de/LC_MESSAGES/kdevsourceformatter.mo share/locale/de/LC_MESSAGES/kdevstandardoutputview.mo share/locale/de/LC_MESSAGES/kdevsubversion.mo share/locale/de/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/de/LC_MESSAGES/kdevtestview.mo share/locale/de/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/de/LC_MESSAGES/kdevwelcomepage.mo share/locale/de/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/de/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/el/LC_MESSAGES/kdevandroid.mo share/locale/el/LC_MESSAGES/kdevappwizard.mo share/locale/el/LC_MESSAGES/kdevastyle.mo share/locale/el/LC_MESSAGES/kdevbazaar.mo share/locale/el/LC_MESSAGES/kdevclang.mo share/locale/el/LC_MESSAGES/kdevclangtidy.mo share/locale/el/LC_MESSAGES/kdevclassbrowser.mo share/locale/el/LC_MESSAGES/kdevclazy.mo share/locale/el/LC_MESSAGES/kdevcmake.mo share/locale/el/LC_MESSAGES/kdevcmakebuilder.mo share/locale/el/LC_MESSAGES/kdevcodeutils.mo share/locale/el/LC_MESSAGES/kdevcontextbrowser.mo share/locale/el/LC_MESSAGES/kdevcppcheck.mo share/locale/el/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/el/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/el/LC_MESSAGES/kdevcustommake.mo share/locale/el/LC_MESSAGES/kdevcustomscript.mo share/locale/el/LC_MESSAGES/kdevdebuggercommon.mo share/locale/el/LC_MESSAGES/kdevdocker.mo share/locale/el/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/el/LC_MESSAGES/kdevdocumentview.mo share/locale/el/LC_MESSAGES/kdevelop.mo share/locale/el/LC_MESSAGES/kdevexecute.mo share/locale/el/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/el/LC_MESSAGES/kdevexecutescript.mo share/locale/el/LC_MESSAGES/kdevexternalscript.mo share/locale/el/LC_MESSAGES/kdevfilemanager.mo share/locale/el/LC_MESSAGES/kdevgdb.mo share/locale/el/LC_MESSAGES/kdevgit.mo share/locale/el/LC_MESSAGES/kdevgrepview.mo share/locale/el/LC_MESSAGES/kdevkonsole.mo share/locale/el/LC_MESSAGES/kdevmakebuilder.mo share/locale/el/LC_MESSAGES/kdevmanpage.mo share/locale/el/LC_MESSAGES/kdevokteta.mo share/locale/el/LC_MESSAGES/kdevopenwith.mo share/locale/el/LC_MESSAGES/kdevpatchreview.mo share/locale/el/LC_MESSAGES/kdevplatform.mo share/locale/el/LC_MESSAGES/kdevproblemreporter.mo share/locale/el/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/el/LC_MESSAGES/kdevqmakebuilder.mo share/locale/el/LC_MESSAGES/kdevqmakemanager.mo share/locale/el/LC_MESSAGES/kdevqthelp.mo share/locale/el/LC_MESSAGES/kdevquickopen.mo share/locale/el/LC_MESSAGES/kdevstandardoutputview.mo share/locale/el/LC_MESSAGES/kdevsubversion.mo share/locale/el/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/el/LC_MESSAGES/kdevtestview.mo share/locale/el/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/el/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/el/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/kdevandroid.mo share/locale/en_GB/LC_MESSAGES/kdevappwizard.mo share/locale/en_GB/LC_MESSAGES/kdevastyle.mo share/locale/en_GB/LC_MESSAGES/kdevbazaar.mo share/locale/en_GB/LC_MESSAGES/kdevclang.mo share/locale/en_GB/LC_MESSAGES/kdevclangtidy.mo share/locale/en_GB/LC_MESSAGES/kdevclassbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevclazy.mo share/locale/en_GB/LC_MESSAGES/kdevcmake.mo share/locale/en_GB/LC_MESSAGES/kdevcmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevcodeutils.mo share/locale/en_GB/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/en_GB/LC_MESSAGES/kdevcontextbrowser.mo share/locale/en_GB/LC_MESSAGES/kdevcppcheck.mo share/locale/en_GB/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/en_GB/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/en_GB/LC_MESSAGES/kdevcustommake.mo share/locale/en_GB/LC_MESSAGES/kdevcustomscript.mo share/locale/en_GB/LC_MESSAGES/kdevdebuggercommon.mo share/locale/en_GB/LC_MESSAGES/kdevdocker.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/en_GB/LC_MESSAGES/kdevdocumentview.mo share/locale/en_GB/LC_MESSAGES/kdevelop.mo share/locale/en_GB/LC_MESSAGES/kdevexecute.mo share/locale/en_GB/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/en_GB/LC_MESSAGES/kdevexecutescript.mo share/locale/en_GB/LC_MESSAGES/kdevexternalscript.mo share/locale/en_GB/LC_MESSAGES/kdevfilemanager.mo share/locale/en_GB/LC_MESSAGES/kdevfiletemplates.mo share/locale/en_GB/LC_MESSAGES/kdevflatpak.mo share/locale/en_GB/LC_MESSAGES/kdevgdb.mo share/locale/en_GB/LC_MESSAGES/kdevghprovider.mo share/locale/en_GB/LC_MESSAGES/kdevgit.mo share/locale/en_GB/LC_MESSAGES/kdevgrepview.mo share/locale/en_GB/LC_MESSAGES/kdevheaptrack.mo share/locale/en_GB/LC_MESSAGES/kdevkonsole.mo share/locale/en_GB/LC_MESSAGES/kdevlldb.mo share/locale/en_GB/LC_MESSAGES/kdevmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevmanpage.mo share/locale/en_GB/LC_MESSAGES/kdevmesonmanager.mo share/locale/en_GB/LC_MESSAGES/kdevninja.mo share/locale/en_GB/LC_MESSAGES/kdevokteta.mo share/locale/en_GB/LC_MESSAGES/kdevopenwith.mo share/locale/en_GB/LC_MESSAGES/kdevoutlineview.mo share/locale/en_GB/LC_MESSAGES/kdevpatchreview.mo share/locale/en_GB/LC_MESSAGES/kdevperforce.mo share/locale/en_GB/LC_MESSAGES/kdevplatform.mo share/locale/en_GB/LC_MESSAGES/kdevproblemreporter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectfilter.mo share/locale/en_GB/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/en_GB/LC_MESSAGES/kdevqmakebuilder.mo share/locale/en_GB/LC_MESSAGES/kdevqmakemanager.mo share/locale/en_GB/LC_MESSAGES/kdevqmljs.mo share/locale/en_GB/LC_MESSAGES/kdevqthelp.mo share/locale/en_GB/LC_MESSAGES/kdevquickopen.mo share/locale/en_GB/LC_MESSAGES/kdevscratchpad.mo share/locale/en_GB/LC_MESSAGES/kdevsourceformatter.mo share/locale/en_GB/LC_MESSAGES/kdevstandardoutputview.mo share/locale/en_GB/LC_MESSAGES/kdevsubversion.mo share/locale/en_GB/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/en_GB/LC_MESSAGES/kdevtestview.mo share/locale/en_GB/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/en_GB/LC_MESSAGES/kdevwelcomepage.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/en_GB/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eo/LC_MESSAGES/kdevappwizard.mo share/locale/eo/LC_MESSAGES/kdevbazaar.mo share/locale/eo/LC_MESSAGES/kdevclassbrowser.mo share/locale/eo/LC_MESSAGES/kdevcmake.mo share/locale/eo/LC_MESSAGES/kdevcmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevcontextbrowser.mo share/locale/eo/LC_MESSAGES/kdevcustommake.mo share/locale/eo/LC_MESSAGES/kdevdebuggercommon.mo share/locale/eo/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/eo/LC_MESSAGES/kdevdocumentview.mo share/locale/eo/LC_MESSAGES/kdevelop.mo share/locale/eo/LC_MESSAGES/kdevexecute.mo share/locale/eo/LC_MESSAGES/kdevexecutescript.mo share/locale/eo/LC_MESSAGES/kdevexternalscript.mo share/locale/eo/LC_MESSAGES/kdevfilemanager.mo share/locale/eo/LC_MESSAGES/kdevgdb.mo share/locale/eo/LC_MESSAGES/kdevgit.mo share/locale/eo/LC_MESSAGES/kdevgrepview.mo share/locale/eo/LC_MESSAGES/kdevkonsole.mo share/locale/eo/LC_MESSAGES/kdevmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevpatchreview.mo share/locale/eo/LC_MESSAGES/kdevplatform.mo share/locale/eo/LC_MESSAGES/kdevproblemreporter.mo share/locale/eo/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/eo/LC_MESSAGES/kdevqmakebuilder.mo share/locale/eo/LC_MESSAGES/kdevqmakemanager.mo share/locale/eo/LC_MESSAGES/kdevqthelp.mo share/locale/eo/LC_MESSAGES/kdevquickopen.mo share/locale/eo/LC_MESSAGES/kdevstandardoutputview.mo share/locale/eo/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevandroid.mo share/locale/es/LC_MESSAGES/kdevappwizard.mo share/locale/es/LC_MESSAGES/kdevastyle.mo share/locale/es/LC_MESSAGES/kdevbazaar.mo share/locale/es/LC_MESSAGES/kdevclang.mo share/locale/es/LC_MESSAGES/kdevclangtidy.mo share/locale/es/LC_MESSAGES/kdevclassbrowser.mo share/locale/es/LC_MESSAGES/kdevclazy.mo share/locale/es/LC_MESSAGES/kdevcmake.mo share/locale/es/LC_MESSAGES/kdevcmakebuilder.mo share/locale/es/LC_MESSAGES/kdevcodeutils.mo share/locale/es/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/es/LC_MESSAGES/kdevcontextbrowser.mo share/locale/es/LC_MESSAGES/kdevcppcheck.mo share/locale/es/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/es/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/es/LC_MESSAGES/kdevcustommake.mo share/locale/es/LC_MESSAGES/kdevcustomscript.mo share/locale/es/LC_MESSAGES/kdevdebuggercommon.mo share/locale/es/LC_MESSAGES/kdevdocker.mo share/locale/es/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/es/LC_MESSAGES/kdevdocumentview.mo share/locale/es/LC_MESSAGES/kdevelop.mo share/locale/es/LC_MESSAGES/kdevexecute.mo share/locale/es/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/es/LC_MESSAGES/kdevexecutescript.mo share/locale/es/LC_MESSAGES/kdevexternalscript.mo share/locale/es/LC_MESSAGES/kdevfilemanager.mo share/locale/es/LC_MESSAGES/kdevfiletemplates.mo share/locale/es/LC_MESSAGES/kdevflatpak.mo share/locale/es/LC_MESSAGES/kdevgdb.mo share/locale/es/LC_MESSAGES/kdevghprovider.mo share/locale/es/LC_MESSAGES/kdevgit.mo share/locale/es/LC_MESSAGES/kdevgrepview.mo share/locale/es/LC_MESSAGES/kdevheaptrack.mo share/locale/es/LC_MESSAGES/kdevkonsole.mo share/locale/es/LC_MESSAGES/kdevlldb.mo share/locale/es/LC_MESSAGES/kdevmakebuilder.mo share/locale/es/LC_MESSAGES/kdevmanpage.mo share/locale/es/LC_MESSAGES/kdevmesonmanager.mo share/locale/es/LC_MESSAGES/kdevninja.mo share/locale/es/LC_MESSAGES/kdevokteta.mo share/locale/es/LC_MESSAGES/kdevopenwith.mo share/locale/es/LC_MESSAGES/kdevoutlineview.mo share/locale/es/LC_MESSAGES/kdevpatchreview.mo share/locale/es/LC_MESSAGES/kdevperforce.mo share/locale/es/LC_MESSAGES/kdevplatform.mo share/locale/es/LC_MESSAGES/kdevproblemreporter.mo share/locale/es/LC_MESSAGES/kdevprojectfilter.mo share/locale/es/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/es/LC_MESSAGES/kdevqmakebuilder.mo share/locale/es/LC_MESSAGES/kdevqmakemanager.mo share/locale/es/LC_MESSAGES/kdevqmljs.mo share/locale/es/LC_MESSAGES/kdevqthelp.mo share/locale/es/LC_MESSAGES/kdevquickopen.mo share/locale/es/LC_MESSAGES/kdevscratchpad.mo share/locale/es/LC_MESSAGES/kdevsourceformatter.mo share/locale/es/LC_MESSAGES/kdevstandardoutputview.mo share/locale/es/LC_MESSAGES/kdevsubversion.mo share/locale/es/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/es/LC_MESSAGES/kdevtestview.mo share/locale/es/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/es/LC_MESSAGES/kdevwelcomepage.mo share/locale/es/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/es/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/et/LC_MESSAGES/kdevandroid.mo share/locale/et/LC_MESSAGES/kdevappwizard.mo share/locale/et/LC_MESSAGES/kdevastyle.mo share/locale/et/LC_MESSAGES/kdevbazaar.mo share/locale/et/LC_MESSAGES/kdevclang.mo share/locale/et/LC_MESSAGES/kdevclangtidy.mo share/locale/et/LC_MESSAGES/kdevclassbrowser.mo share/locale/et/LC_MESSAGES/kdevclazy.mo share/locale/et/LC_MESSAGES/kdevcmake.mo share/locale/et/LC_MESSAGES/kdevcmakebuilder.mo share/locale/et/LC_MESSAGES/kdevcodeutils.mo share/locale/et/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/et/LC_MESSAGES/kdevcontextbrowser.mo share/locale/et/LC_MESSAGES/kdevcppcheck.mo share/locale/et/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/et/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/et/LC_MESSAGES/kdevcustommake.mo share/locale/et/LC_MESSAGES/kdevcustomscript.mo share/locale/et/LC_MESSAGES/kdevdebuggercommon.mo share/locale/et/LC_MESSAGES/kdevdocker.mo share/locale/et/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/et/LC_MESSAGES/kdevdocumentview.mo share/locale/et/LC_MESSAGES/kdevelop.mo share/locale/et/LC_MESSAGES/kdevexecute.mo share/locale/et/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/et/LC_MESSAGES/kdevexecutescript.mo share/locale/et/LC_MESSAGES/kdevexternalscript.mo share/locale/et/LC_MESSAGES/kdevfilemanager.mo share/locale/et/LC_MESSAGES/kdevfiletemplates.mo share/locale/et/LC_MESSAGES/kdevflatpak.mo share/locale/et/LC_MESSAGES/kdevgdb.mo share/locale/et/LC_MESSAGES/kdevghprovider.mo share/locale/et/LC_MESSAGES/kdevgit.mo share/locale/et/LC_MESSAGES/kdevgrepview.mo share/locale/et/LC_MESSAGES/kdevheaptrack.mo share/locale/et/LC_MESSAGES/kdevkonsole.mo share/locale/et/LC_MESSAGES/kdevlldb.mo share/locale/et/LC_MESSAGES/kdevmakebuilder.mo share/locale/et/LC_MESSAGES/kdevmanpage.mo share/locale/et/LC_MESSAGES/kdevmesonmanager.mo share/locale/et/LC_MESSAGES/kdevninja.mo share/locale/et/LC_MESSAGES/kdevokteta.mo share/locale/et/LC_MESSAGES/kdevopenwith.mo share/locale/et/LC_MESSAGES/kdevoutlineview.mo share/locale/et/LC_MESSAGES/kdevpatchreview.mo share/locale/et/LC_MESSAGES/kdevperforce.mo share/locale/et/LC_MESSAGES/kdevplatform.mo share/locale/et/LC_MESSAGES/kdevproblemreporter.mo share/locale/et/LC_MESSAGES/kdevprojectfilter.mo share/locale/et/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/et/LC_MESSAGES/kdevqmakebuilder.mo share/locale/et/LC_MESSAGES/kdevqmakemanager.mo share/locale/et/LC_MESSAGES/kdevqmljs.mo share/locale/et/LC_MESSAGES/kdevqthelp.mo share/locale/et/LC_MESSAGES/kdevquickopen.mo share/locale/et/LC_MESSAGES/kdevscratchpad.mo share/locale/et/LC_MESSAGES/kdevsourceformatter.mo share/locale/et/LC_MESSAGES/kdevstandardoutputview.mo share/locale/et/LC_MESSAGES/kdevsubversion.mo share/locale/et/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/et/LC_MESSAGES/kdevtestview.mo share/locale/et/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/et/LC_MESSAGES/kdevwelcomepage.mo share/locale/et/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/et/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/eu/LC_MESSAGES/kdevandroid.mo share/locale/eu/LC_MESSAGES/kdevappwizard.mo share/locale/eu/LC_MESSAGES/kdevelop.mo share/locale/eu/LC_MESSAGES/kdevokteta.mo share/locale/eu/LC_MESSAGES/kdevplatform.mo share/locale/fa/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevandroid.mo share/locale/fi/LC_MESSAGES/kdevappwizard.mo share/locale/fi/LC_MESSAGES/kdevastyle.mo share/locale/fi/LC_MESSAGES/kdevbazaar.mo share/locale/fi/LC_MESSAGES/kdevclang.mo share/locale/fi/LC_MESSAGES/kdevclangtidy.mo share/locale/fi/LC_MESSAGES/kdevclassbrowser.mo share/locale/fi/LC_MESSAGES/kdevclazy.mo share/locale/fi/LC_MESSAGES/kdevcmake.mo share/locale/fi/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevcodeutils.mo share/locale/fi/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fi/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fi/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fi/LC_MESSAGES/kdevcustommake.mo share/locale/fi/LC_MESSAGES/kdevcustomscript.mo share/locale/fi/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fi/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fi/LC_MESSAGES/kdevdocumentview.mo share/locale/fi/LC_MESSAGES/kdevelop.mo share/locale/fi/LC_MESSAGES/kdevexecute.mo share/locale/fi/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fi/LC_MESSAGES/kdevexecutescript.mo share/locale/fi/LC_MESSAGES/kdevexternalscript.mo share/locale/fi/LC_MESSAGES/kdevfilemanager.mo share/locale/fi/LC_MESSAGES/kdevfiletemplates.mo share/locale/fi/LC_MESSAGES/kdevflatpak.mo share/locale/fi/LC_MESSAGES/kdevgdb.mo share/locale/fi/LC_MESSAGES/kdevghprovider.mo share/locale/fi/LC_MESSAGES/kdevgit.mo share/locale/fi/LC_MESSAGES/kdevgrepview.mo share/locale/fi/LC_MESSAGES/kdevkonsole.mo share/locale/fi/LC_MESSAGES/kdevlldb.mo share/locale/fi/LC_MESSAGES/kdevmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevmanpage.mo share/locale/fi/LC_MESSAGES/kdevmesonmanager.mo share/locale/fi/LC_MESSAGES/kdevninja.mo share/locale/fi/LC_MESSAGES/kdevokteta.mo share/locale/fi/LC_MESSAGES/kdevopenwith.mo share/locale/fi/LC_MESSAGES/kdevoutlineview.mo share/locale/fi/LC_MESSAGES/kdevpatchreview.mo share/locale/fi/LC_MESSAGES/kdevperforce.mo share/locale/fi/LC_MESSAGES/kdevplatform.mo share/locale/fi/LC_MESSAGES/kdevproblemreporter.mo share/locale/fi/LC_MESSAGES/kdevprojectfilter.mo share/locale/fi/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fi/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fi/LC_MESSAGES/kdevqmakemanager.mo share/locale/fi/LC_MESSAGES/kdevqmljs.mo share/locale/fi/LC_MESSAGES/kdevqthelp.mo share/locale/fi/LC_MESSAGES/kdevquickopen.mo share/locale/fi/LC_MESSAGES/kdevscratchpad.mo share/locale/fi/LC_MESSAGES/kdevsourceformatter.mo share/locale/fi/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fi/LC_MESSAGES/kdevsubversion.mo share/locale/fi/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fi/LC_MESSAGES/kdevtestview.mo share/locale/fi/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fi/LC_MESSAGES/kdevwelcomepage.mo share/locale/fi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/kdevandroid.mo share/locale/fr/LC_MESSAGES/kdevappwizard.mo share/locale/fr/LC_MESSAGES/kdevastyle.mo share/locale/fr/LC_MESSAGES/kdevbazaar.mo share/locale/fr/LC_MESSAGES/kdevclang.mo share/locale/fr/LC_MESSAGES/kdevclangtidy.mo share/locale/fr/LC_MESSAGES/kdevclassbrowser.mo share/locale/fr/LC_MESSAGES/kdevclazy.mo share/locale/fr/LC_MESSAGES/kdevcmake.mo share/locale/fr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevcodeutils.mo share/locale/fr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/fr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/fr/LC_MESSAGES/kdevcppcheck.mo share/locale/fr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/fr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/fr/LC_MESSAGES/kdevcustommake.mo share/locale/fr/LC_MESSAGES/kdevcustomscript.mo share/locale/fr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/fr/LC_MESSAGES/kdevdocker.mo share/locale/fr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/fr/LC_MESSAGES/kdevdocumentview.mo share/locale/fr/LC_MESSAGES/kdevelop.mo share/locale/fr/LC_MESSAGES/kdevexecute.mo share/locale/fr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/fr/LC_MESSAGES/kdevexecutescript.mo share/locale/fr/LC_MESSAGES/kdevexternalscript.mo share/locale/fr/LC_MESSAGES/kdevfilemanager.mo share/locale/fr/LC_MESSAGES/kdevfiletemplates.mo share/locale/fr/LC_MESSAGES/kdevflatpak.mo share/locale/fr/LC_MESSAGES/kdevgdb.mo share/locale/fr/LC_MESSAGES/kdevghprovider.mo share/locale/fr/LC_MESSAGES/kdevgit.mo share/locale/fr/LC_MESSAGES/kdevgrepview.mo share/locale/fr/LC_MESSAGES/kdevheaptrack.mo share/locale/fr/LC_MESSAGES/kdevkonsole.mo share/locale/fr/LC_MESSAGES/kdevlldb.mo share/locale/fr/LC_MESSAGES/kdevmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevmanpage.mo share/locale/fr/LC_MESSAGES/kdevmesonmanager.mo share/locale/fr/LC_MESSAGES/kdevninja.mo share/locale/fr/LC_MESSAGES/kdevokteta.mo share/locale/fr/LC_MESSAGES/kdevopenwith.mo share/locale/fr/LC_MESSAGES/kdevoutlineview.mo share/locale/fr/LC_MESSAGES/kdevpatchreview.mo share/locale/fr/LC_MESSAGES/kdevperforce.mo share/locale/fr/LC_MESSAGES/kdevplatform.mo share/locale/fr/LC_MESSAGES/kdevproblemreporter.mo share/locale/fr/LC_MESSAGES/kdevprojectfilter.mo share/locale/fr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/fr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/fr/LC_MESSAGES/kdevqmakemanager.mo share/locale/fr/LC_MESSAGES/kdevqmljs.mo share/locale/fr/LC_MESSAGES/kdevqthelp.mo share/locale/fr/LC_MESSAGES/kdevquickopen.mo share/locale/fr/LC_MESSAGES/kdevscratchpad.mo share/locale/fr/LC_MESSAGES/kdevsourceformatter.mo share/locale/fr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/fr/LC_MESSAGES/kdevsubversion.mo share/locale/fr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/fr/LC_MESSAGES/kdevtestview.mo share/locale/fr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/fr/LC_MESSAGES/kdevwelcomepage.mo share/locale/fr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/fr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/kdevappwizard.mo share/locale/ga/LC_MESSAGES/kdevbazaar.mo share/locale/ga/LC_MESSAGES/kdevclassbrowser.mo share/locale/ga/LC_MESSAGES/kdevcmake.mo share/locale/ga/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevcodeutils.mo share/locale/ga/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ga/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ga/LC_MESSAGES/kdevcustommake.mo share/locale/ga/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ga/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ga/LC_MESSAGES/kdevdocumentview.mo share/locale/ga/LC_MESSAGES/kdevelop.mo share/locale/ga/LC_MESSAGES/kdevexecute.mo share/locale/ga/LC_MESSAGES/kdevexecutescript.mo share/locale/ga/LC_MESSAGES/kdevexternalscript.mo share/locale/ga/LC_MESSAGES/kdevfilemanager.mo share/locale/ga/LC_MESSAGES/kdevgdb.mo share/locale/ga/LC_MESSAGES/kdevgit.mo share/locale/ga/LC_MESSAGES/kdevgrepview.mo share/locale/ga/LC_MESSAGES/kdevkonsole.mo share/locale/ga/LC_MESSAGES/kdevmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevmanpage.mo share/locale/ga/LC_MESSAGES/kdevninja.mo share/locale/ga/LC_MESSAGES/kdevokteta.mo share/locale/ga/LC_MESSAGES/kdevopenwith.mo share/locale/ga/LC_MESSAGES/kdevpatchreview.mo share/locale/ga/LC_MESSAGES/kdevperforce.mo share/locale/ga/LC_MESSAGES/kdevplatform.mo share/locale/ga/LC_MESSAGES/kdevproblemreporter.mo share/locale/ga/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ga/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ga/LC_MESSAGES/kdevqmakemanager.mo share/locale/ga/LC_MESSAGES/kdevqthelp.mo share/locale/ga/LC_MESSAGES/kdevquickopen.mo share/locale/ga/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ga/LC_MESSAGES/kdevsubversion.mo share/locale/ga/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ga/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ga/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ga/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/kdevandroid.mo share/locale/gl/LC_MESSAGES/kdevappwizard.mo share/locale/gl/LC_MESSAGES/kdevastyle.mo share/locale/gl/LC_MESSAGES/kdevbazaar.mo share/locale/gl/LC_MESSAGES/kdevclang.mo share/locale/gl/LC_MESSAGES/kdevclangtidy.mo share/locale/gl/LC_MESSAGES/kdevclassbrowser.mo share/locale/gl/LC_MESSAGES/kdevclazy.mo share/locale/gl/LC_MESSAGES/kdevcmake.mo share/locale/gl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevcodeutils.mo share/locale/gl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/gl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/gl/LC_MESSAGES/kdevcppcheck.mo share/locale/gl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/gl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/gl/LC_MESSAGES/kdevcustommake.mo share/locale/gl/LC_MESSAGES/kdevcustomscript.mo share/locale/gl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/gl/LC_MESSAGES/kdevdocker.mo share/locale/gl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/gl/LC_MESSAGES/kdevdocumentview.mo share/locale/gl/LC_MESSAGES/kdevelop.mo share/locale/gl/LC_MESSAGES/kdevexecute.mo share/locale/gl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/gl/LC_MESSAGES/kdevexecutescript.mo share/locale/gl/LC_MESSAGES/kdevexternalscript.mo share/locale/gl/LC_MESSAGES/kdevfilemanager.mo share/locale/gl/LC_MESSAGES/kdevfiletemplates.mo share/locale/gl/LC_MESSAGES/kdevflatpak.mo share/locale/gl/LC_MESSAGES/kdevgdb.mo share/locale/gl/LC_MESSAGES/kdevghprovider.mo share/locale/gl/LC_MESSAGES/kdevgit.mo share/locale/gl/LC_MESSAGES/kdevgrepview.mo share/locale/gl/LC_MESSAGES/kdevheaptrack.mo share/locale/gl/LC_MESSAGES/kdevkonsole.mo share/locale/gl/LC_MESSAGES/kdevlldb.mo share/locale/gl/LC_MESSAGES/kdevmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevmanpage.mo share/locale/gl/LC_MESSAGES/kdevmesonmanager.mo share/locale/gl/LC_MESSAGES/kdevninja.mo share/locale/gl/LC_MESSAGES/kdevokteta.mo share/locale/gl/LC_MESSAGES/kdevopenwith.mo share/locale/gl/LC_MESSAGES/kdevoutlineview.mo share/locale/gl/LC_MESSAGES/kdevpatchreview.mo share/locale/gl/LC_MESSAGES/kdevperforce.mo share/locale/gl/LC_MESSAGES/kdevplatform.mo share/locale/gl/LC_MESSAGES/kdevproblemreporter.mo share/locale/gl/LC_MESSAGES/kdevprojectfilter.mo share/locale/gl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/gl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/gl/LC_MESSAGES/kdevqmakemanager.mo share/locale/gl/LC_MESSAGES/kdevqmljs.mo share/locale/gl/LC_MESSAGES/kdevqthelp.mo share/locale/gl/LC_MESSAGES/kdevquickopen.mo share/locale/gl/LC_MESSAGES/kdevscratchpad.mo share/locale/gl/LC_MESSAGES/kdevsourceformatter.mo share/locale/gl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/gl/LC_MESSAGES/kdevsubversion.mo share/locale/gl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/gl/LC_MESSAGES/kdevtestview.mo share/locale/gl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/gl/LC_MESSAGES/kdevwelcomepage.mo share/locale/gl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/gl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/hi/LC_MESSAGES/kdevelop.mo +share/locale/hne/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevappwizard.mo share/locale/hr/LC_MESSAGES/kdevclassbrowser.mo share/locale/hr/LC_MESSAGES/kdevcmake.mo share/locale/hr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hr/LC_MESSAGES/kdevcustommake.mo share/locale/hr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hr/LC_MESSAGES/kdevdocumentview.mo share/locale/hr/LC_MESSAGES/kdevelop.mo share/locale/hr/LC_MESSAGES/kdevexecute.mo share/locale/hr/LC_MESSAGES/kdevfilemanager.mo share/locale/hr/LC_MESSAGES/kdevgdb.mo share/locale/hr/LC_MESSAGES/kdevgrepview.mo share/locale/hr/LC_MESSAGES/kdevkonsole.mo share/locale/hr/LC_MESSAGES/kdevmakebuilder.mo share/locale/hr/LC_MESSAGES/kdevpatchreview.mo share/locale/hr/LC_MESSAGES/kdevplatform.mo share/locale/hr/LC_MESSAGES/kdevproblemreporter.mo share/locale/hr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hr/LC_MESSAGES/kdevqthelp.mo share/locale/hr/LC_MESSAGES/kdevquickopen.mo share/locale/hr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hr/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevappwizard.mo share/locale/hu/LC_MESSAGES/kdevbazaar.mo share/locale/hu/LC_MESSAGES/kdevclassbrowser.mo share/locale/hu/LC_MESSAGES/kdevcmake.mo share/locale/hu/LC_MESSAGES/kdevcmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevcodeutils.mo share/locale/hu/LC_MESSAGES/kdevcontextbrowser.mo share/locale/hu/LC_MESSAGES/kdevcppcheck.mo share/locale/hu/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/hu/LC_MESSAGES/kdevcustommake.mo share/locale/hu/LC_MESSAGES/kdevdebuggercommon.mo share/locale/hu/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/hu/LC_MESSAGES/kdevdocumentview.mo share/locale/hu/LC_MESSAGES/kdevelop.mo share/locale/hu/LC_MESSAGES/kdevexecute.mo share/locale/hu/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/hu/LC_MESSAGES/kdevexecutescript.mo share/locale/hu/LC_MESSAGES/kdevexternalscript.mo share/locale/hu/LC_MESSAGES/kdevfilemanager.mo share/locale/hu/LC_MESSAGES/kdevfiletemplates.mo share/locale/hu/LC_MESSAGES/kdevgdb.mo share/locale/hu/LC_MESSAGES/kdevghprovider.mo share/locale/hu/LC_MESSAGES/kdevgit.mo share/locale/hu/LC_MESSAGES/kdevgrepview.mo share/locale/hu/LC_MESSAGES/kdevkonsole.mo share/locale/hu/LC_MESSAGES/kdevmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevmanpage.mo share/locale/hu/LC_MESSAGES/kdevninja.mo share/locale/hu/LC_MESSAGES/kdevokteta.mo share/locale/hu/LC_MESSAGES/kdevopenwith.mo share/locale/hu/LC_MESSAGES/kdevpatchreview.mo share/locale/hu/LC_MESSAGES/kdevperforce.mo share/locale/hu/LC_MESSAGES/kdevplatform.mo share/locale/hu/LC_MESSAGES/kdevproblemreporter.mo share/locale/hu/LC_MESSAGES/kdevprojectfilter.mo share/locale/hu/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/hu/LC_MESSAGES/kdevqmakebuilder.mo share/locale/hu/LC_MESSAGES/kdevqmakemanager.mo share/locale/hu/LC_MESSAGES/kdevqmljs.mo share/locale/hu/LC_MESSAGES/kdevqthelp.mo share/locale/hu/LC_MESSAGES/kdevquickopen.mo share/locale/hu/LC_MESSAGES/kdevstandardoutputview.mo share/locale/hu/LC_MESSAGES/kdevsubversion.mo share/locale/hu/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/hu/LC_MESSAGES/kdevtestview.mo share/locale/hu/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/hu/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/hu/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/is/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevandroid.mo share/locale/it/LC_MESSAGES/kdevappwizard.mo share/locale/it/LC_MESSAGES/kdevastyle.mo share/locale/it/LC_MESSAGES/kdevbazaar.mo share/locale/it/LC_MESSAGES/kdevclang.mo share/locale/it/LC_MESSAGES/kdevclangtidy.mo share/locale/it/LC_MESSAGES/kdevclassbrowser.mo share/locale/it/LC_MESSAGES/kdevclazy.mo share/locale/it/LC_MESSAGES/kdevcmake.mo share/locale/it/LC_MESSAGES/kdevcmakebuilder.mo share/locale/it/LC_MESSAGES/kdevcodeutils.mo share/locale/it/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/it/LC_MESSAGES/kdevcontextbrowser.mo share/locale/it/LC_MESSAGES/kdevcppcheck.mo share/locale/it/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/it/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/it/LC_MESSAGES/kdevcustommake.mo share/locale/it/LC_MESSAGES/kdevcustomscript.mo share/locale/it/LC_MESSAGES/kdevdebuggercommon.mo share/locale/it/LC_MESSAGES/kdevdocker.mo share/locale/it/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/it/LC_MESSAGES/kdevdocumentview.mo share/locale/it/LC_MESSAGES/kdevelop.mo share/locale/it/LC_MESSAGES/kdevexecute.mo share/locale/it/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/it/LC_MESSAGES/kdevexecutescript.mo share/locale/it/LC_MESSAGES/kdevexternalscript.mo share/locale/it/LC_MESSAGES/kdevfilemanager.mo share/locale/it/LC_MESSAGES/kdevfiletemplates.mo share/locale/it/LC_MESSAGES/kdevflatpak.mo share/locale/it/LC_MESSAGES/kdevgdb.mo share/locale/it/LC_MESSAGES/kdevghprovider.mo share/locale/it/LC_MESSAGES/kdevgit.mo share/locale/it/LC_MESSAGES/kdevgrepview.mo share/locale/it/LC_MESSAGES/kdevheaptrack.mo share/locale/it/LC_MESSAGES/kdevkonsole.mo share/locale/it/LC_MESSAGES/kdevlldb.mo share/locale/it/LC_MESSAGES/kdevmakebuilder.mo share/locale/it/LC_MESSAGES/kdevmanpage.mo share/locale/it/LC_MESSAGES/kdevmesonmanager.mo share/locale/it/LC_MESSAGES/kdevninja.mo share/locale/it/LC_MESSAGES/kdevokteta.mo share/locale/it/LC_MESSAGES/kdevopenwith.mo share/locale/it/LC_MESSAGES/kdevoutlineview.mo share/locale/it/LC_MESSAGES/kdevpatchreview.mo share/locale/it/LC_MESSAGES/kdevperforce.mo share/locale/it/LC_MESSAGES/kdevplatform.mo share/locale/it/LC_MESSAGES/kdevproblemreporter.mo share/locale/it/LC_MESSAGES/kdevprojectfilter.mo share/locale/it/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/it/LC_MESSAGES/kdevqmakebuilder.mo share/locale/it/LC_MESSAGES/kdevqmakemanager.mo share/locale/it/LC_MESSAGES/kdevqmljs.mo share/locale/it/LC_MESSAGES/kdevqthelp.mo share/locale/it/LC_MESSAGES/kdevquickopen.mo share/locale/it/LC_MESSAGES/kdevscratchpad.mo share/locale/it/LC_MESSAGES/kdevsourceformatter.mo share/locale/it/LC_MESSAGES/kdevstandardoutputview.mo share/locale/it/LC_MESSAGES/kdevsubversion.mo share/locale/it/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/it/LC_MESSAGES/kdevtestview.mo share/locale/it/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/it/LC_MESSAGES/kdevwelcomepage.mo share/locale/it/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/it/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/kdevandroid.mo share/locale/ja/LC_MESSAGES/kdevappwizard.mo share/locale/ja/LC_MESSAGES/kdevastyle.mo share/locale/ja/LC_MESSAGES/kdevbazaar.mo share/locale/ja/LC_MESSAGES/kdevclang.mo share/locale/ja/LC_MESSAGES/kdevclangtidy.mo share/locale/ja/LC_MESSAGES/kdevclassbrowser.mo share/locale/ja/LC_MESSAGES/kdevclazy.mo share/locale/ja/LC_MESSAGES/kdevcmake.mo share/locale/ja/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevcodeutils.mo share/locale/ja/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ja/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ja/LC_MESSAGES/kdevcppcheck.mo share/locale/ja/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ja/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ja/LC_MESSAGES/kdevcustommake.mo share/locale/ja/LC_MESSAGES/kdevcustomscript.mo share/locale/ja/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ja/LC_MESSAGES/kdevdocker.mo share/locale/ja/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ja/LC_MESSAGES/kdevdocumentview.mo share/locale/ja/LC_MESSAGES/kdevelop.mo share/locale/ja/LC_MESSAGES/kdevexecute.mo share/locale/ja/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ja/LC_MESSAGES/kdevexecutescript.mo share/locale/ja/LC_MESSAGES/kdevexternalscript.mo share/locale/ja/LC_MESSAGES/kdevfilemanager.mo share/locale/ja/LC_MESSAGES/kdevfiletemplates.mo share/locale/ja/LC_MESSAGES/kdevflatpak.mo share/locale/ja/LC_MESSAGES/kdevgdb.mo share/locale/ja/LC_MESSAGES/kdevghprovider.mo share/locale/ja/LC_MESSAGES/kdevgit.mo share/locale/ja/LC_MESSAGES/kdevgrepview.mo share/locale/ja/LC_MESSAGES/kdevheaptrack.mo share/locale/ja/LC_MESSAGES/kdevkonsole.mo share/locale/ja/LC_MESSAGES/kdevlldb.mo share/locale/ja/LC_MESSAGES/kdevmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevmanpage.mo share/locale/ja/LC_MESSAGES/kdevmesonmanager.mo share/locale/ja/LC_MESSAGES/kdevninja.mo share/locale/ja/LC_MESSAGES/kdevokteta.mo share/locale/ja/LC_MESSAGES/kdevopenwith.mo share/locale/ja/LC_MESSAGES/kdevoutlineview.mo share/locale/ja/LC_MESSAGES/kdevpatchreview.mo share/locale/ja/LC_MESSAGES/kdevperforce.mo share/locale/ja/LC_MESSAGES/kdevplatform.mo share/locale/ja/LC_MESSAGES/kdevproblemreporter.mo share/locale/ja/LC_MESSAGES/kdevprojectfilter.mo share/locale/ja/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ja/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ja/LC_MESSAGES/kdevqmakemanager.mo share/locale/ja/LC_MESSAGES/kdevqmljs.mo share/locale/ja/LC_MESSAGES/kdevqthelp.mo share/locale/ja/LC_MESSAGES/kdevquickopen.mo share/locale/ja/LC_MESSAGES/kdevscratchpad.mo share/locale/ja/LC_MESSAGES/kdevsourceformatter.mo share/locale/ja/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ja/LC_MESSAGES/kdevsubversion.mo share/locale/ja/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ja/LC_MESSAGES/kdevtestview.mo share/locale/ja/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ja/LC_MESSAGES/kdevwelcomepage.mo share/locale/ja/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ja/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/ka/LC_MESSAGES/kdevandroid.mo +share/locale/ka/LC_MESSAGES/kdevappwizard.mo +share/locale/ka/LC_MESSAGES/kdevastyle.mo +share/locale/ka/LC_MESSAGES/kdevbazaar.mo +share/locale/ka/LC_MESSAGES/kdevclang.mo +share/locale/ka/LC_MESSAGES/kdevclangtidy.mo +share/locale/ka/LC_MESSAGES/kdevclassbrowser.mo +share/locale/ka/LC_MESSAGES/kdevclazy.mo +share/locale/ka/LC_MESSAGES/kdevcmake.mo +share/locale/ka/LC_MESSAGES/kdevcmakebuilder.mo +share/locale/ka/LC_MESSAGES/kdevcodeutils.mo +share/locale/ka/LC_MESSAGES/kdevcompileanalyzercommon.mo +share/locale/ka/LC_MESSAGES/kdevcontextbrowser.mo +share/locale/ka/LC_MESSAGES/kdevcppcheck.mo +share/locale/ka/LC_MESSAGES/kdevcustombuildsystem.mo +share/locale/ka/LC_MESSAGES/kdevcustomdefinesandincludes.mo +share/locale/ka/LC_MESSAGES/kdevcustommake.mo +share/locale/ka/LC_MESSAGES/kdevcustomscript.mo +share/locale/ka/LC_MESSAGES/kdevdebuggercommon.mo +share/locale/ka/LC_MESSAGES/kdevdocker.mo +share/locale/ka/LC_MESSAGES/kdevdocumentswitcher.mo +share/locale/ka/LC_MESSAGES/kdevdocumentview.mo +share/locale/ka/LC_MESSAGES/kdevelop.mo +share/locale/ka/LC_MESSAGES/kdevexecute.mo +share/locale/ka/LC_MESSAGES/kdevexecuteplasmoid.mo +share/locale/ka/LC_MESSAGES/kdevexecutescript.mo +share/locale/ka/LC_MESSAGES/kdevexternalscript.mo +share/locale/ka/LC_MESSAGES/kdevfilemanager.mo +share/locale/ka/LC_MESSAGES/kdevfiletemplates.mo +share/locale/ka/LC_MESSAGES/kdevflatpak.mo +share/locale/ka/LC_MESSAGES/kdevgdb.mo +share/locale/ka/LC_MESSAGES/kdevghprovider.mo +share/locale/ka/LC_MESSAGES/kdevgit.mo +share/locale/ka/LC_MESSAGES/kdevgrepview.mo +share/locale/ka/LC_MESSAGES/kdevheaptrack.mo +share/locale/ka/LC_MESSAGES/kdevkonsole.mo +share/locale/ka/LC_MESSAGES/kdevlldb.mo +share/locale/ka/LC_MESSAGES/kdevmakebuilder.mo +share/locale/ka/LC_MESSAGES/kdevmanpage.mo +share/locale/ka/LC_MESSAGES/kdevmesonmanager.mo +share/locale/ka/LC_MESSAGES/kdevninja.mo +share/locale/ka/LC_MESSAGES/kdevokteta.mo +share/locale/ka/LC_MESSAGES/kdevopenwith.mo +share/locale/ka/LC_MESSAGES/kdevoutlineview.mo +share/locale/ka/LC_MESSAGES/kdevpatchreview.mo +share/locale/ka/LC_MESSAGES/kdevperforce.mo +share/locale/ka/LC_MESSAGES/kdevplatform.mo +share/locale/ka/LC_MESSAGES/kdevproblemreporter.mo +share/locale/ka/LC_MESSAGES/kdevprojectfilter.mo +share/locale/ka/LC_MESSAGES/kdevprojectmanagerview.mo +share/locale/ka/LC_MESSAGES/kdevqmakebuilder.mo +share/locale/ka/LC_MESSAGES/kdevqmakemanager.mo +share/locale/ka/LC_MESSAGES/kdevqmljs.mo +share/locale/ka/LC_MESSAGES/kdevqthelp.mo +share/locale/ka/LC_MESSAGES/kdevquickopen.mo +share/locale/ka/LC_MESSAGES/kdevscratchpad.mo +share/locale/ka/LC_MESSAGES/kdevsourceformatter.mo +share/locale/ka/LC_MESSAGES/kdevstandardoutputview.mo +share/locale/ka/LC_MESSAGES/kdevsubversion.mo +share/locale/ka/LC_MESSAGES/kdevswitchtobuddy.mo +share/locale/ka/LC_MESSAGES/kdevtestview.mo +share/locale/ka/LC_MESSAGES/kdevvcsprojectintegration.mo +share/locale/ka/LC_MESSAGES/kdevwelcomepage.mo +share/locale/ka/LC_MESSAGES/plasma_applet_kdevelopsessions.mo +share/locale/ka/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/kdevappwizard.mo share/locale/kk/LC_MESSAGES/kdevclassbrowser.mo share/locale/kk/LC_MESSAGES/kdevcmake.mo share/locale/kk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevcodeutils.mo share/locale/kk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/kk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/kk/LC_MESSAGES/kdevcustommake.mo share/locale/kk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/kk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/kk/LC_MESSAGES/kdevdocumentview.mo share/locale/kk/LC_MESSAGES/kdevelop.mo share/locale/kk/LC_MESSAGES/kdevexecute.mo share/locale/kk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/kk/LC_MESSAGES/kdevexecutescript.mo share/locale/kk/LC_MESSAGES/kdevexternalscript.mo share/locale/kk/LC_MESSAGES/kdevfilemanager.mo share/locale/kk/LC_MESSAGES/kdevfiletemplates.mo share/locale/kk/LC_MESSAGES/kdevgdb.mo share/locale/kk/LC_MESSAGES/kdevghprovider.mo share/locale/kk/LC_MESSAGES/kdevgit.mo share/locale/kk/LC_MESSAGES/kdevgrepview.mo share/locale/kk/LC_MESSAGES/kdevkonsole.mo share/locale/kk/LC_MESSAGES/kdevmakebuilder.mo share/locale/kk/LC_MESSAGES/kdevmanpage.mo share/locale/kk/LC_MESSAGES/kdevninja.mo share/locale/kk/LC_MESSAGES/kdevokteta.mo share/locale/kk/LC_MESSAGES/kdevopenwith.mo share/locale/kk/LC_MESSAGES/kdevpatchreview.mo share/locale/kk/LC_MESSAGES/kdevplatform.mo share/locale/kk/LC_MESSAGES/kdevproblemreporter.mo share/locale/kk/LC_MESSAGES/kdevprojectfilter.mo share/locale/kk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/kk/LC_MESSAGES/kdevqthelp.mo share/locale/kk/LC_MESSAGES/kdevquickopen.mo share/locale/kk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/kk/LC_MESSAGES/kdevsubversion.mo share/locale/kk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/kk/LC_MESSAGES/kdevtestview.mo share/locale/kk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/kk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/kk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/km/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevandroid.mo share/locale/ko/LC_MESSAGES/kdevappwizard.mo share/locale/ko/LC_MESSAGES/kdevastyle.mo share/locale/ko/LC_MESSAGES/kdevbazaar.mo share/locale/ko/LC_MESSAGES/kdevclang.mo share/locale/ko/LC_MESSAGES/kdevclangtidy.mo share/locale/ko/LC_MESSAGES/kdevclassbrowser.mo share/locale/ko/LC_MESSAGES/kdevclazy.mo share/locale/ko/LC_MESSAGES/kdevcmake.mo share/locale/ko/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevcodeutils.mo share/locale/ko/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/ko/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ko/LC_MESSAGES/kdevcppcheck.mo share/locale/ko/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ko/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ko/LC_MESSAGES/kdevcustommake.mo share/locale/ko/LC_MESSAGES/kdevcustomscript.mo share/locale/ko/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ko/LC_MESSAGES/kdevdocker.mo share/locale/ko/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ko/LC_MESSAGES/kdevdocumentview.mo share/locale/ko/LC_MESSAGES/kdevelop.mo share/locale/ko/LC_MESSAGES/kdevexecute.mo share/locale/ko/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ko/LC_MESSAGES/kdevexecutescript.mo share/locale/ko/LC_MESSAGES/kdevexternalscript.mo share/locale/ko/LC_MESSAGES/kdevfilemanager.mo share/locale/ko/LC_MESSAGES/kdevfiletemplates.mo share/locale/ko/LC_MESSAGES/kdevflatpak.mo share/locale/ko/LC_MESSAGES/kdevgdb.mo share/locale/ko/LC_MESSAGES/kdevghprovider.mo share/locale/ko/LC_MESSAGES/kdevgit.mo share/locale/ko/LC_MESSAGES/kdevgrepview.mo share/locale/ko/LC_MESSAGES/kdevheaptrack.mo share/locale/ko/LC_MESSAGES/kdevkonsole.mo share/locale/ko/LC_MESSAGES/kdevlldb.mo share/locale/ko/LC_MESSAGES/kdevmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevmanpage.mo share/locale/ko/LC_MESSAGES/kdevmesonmanager.mo share/locale/ko/LC_MESSAGES/kdevninja.mo share/locale/ko/LC_MESSAGES/kdevokteta.mo share/locale/ko/LC_MESSAGES/kdevopenwith.mo share/locale/ko/LC_MESSAGES/kdevoutlineview.mo share/locale/ko/LC_MESSAGES/kdevpatchreview.mo share/locale/ko/LC_MESSAGES/kdevperforce.mo share/locale/ko/LC_MESSAGES/kdevplatform.mo share/locale/ko/LC_MESSAGES/kdevproblemreporter.mo share/locale/ko/LC_MESSAGES/kdevprojectfilter.mo share/locale/ko/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ko/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ko/LC_MESSAGES/kdevqmakemanager.mo share/locale/ko/LC_MESSAGES/kdevqmljs.mo share/locale/ko/LC_MESSAGES/kdevqthelp.mo share/locale/ko/LC_MESSAGES/kdevquickopen.mo share/locale/ko/LC_MESSAGES/kdevscratchpad.mo share/locale/ko/LC_MESSAGES/kdevsourceformatter.mo share/locale/ko/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ko/LC_MESSAGES/kdevsubversion.mo share/locale/ko/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ko/LC_MESSAGES/kdevtestview.mo share/locale/ko/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ko/LC_MESSAGES/kdevwelcomepage.mo share/locale/ko/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ko/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/ku/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevandroid.mo share/locale/lt/LC_MESSAGES/kdevappwizard.mo share/locale/lt/LC_MESSAGES/kdevastyle.mo share/locale/lt/LC_MESSAGES/kdevbazaar.mo share/locale/lt/LC_MESSAGES/kdevclang.mo share/locale/lt/LC_MESSAGES/kdevclangtidy.mo share/locale/lt/LC_MESSAGES/kdevclassbrowser.mo share/locale/lt/LC_MESSAGES/kdevclazy.mo share/locale/lt/LC_MESSAGES/kdevcmake.mo share/locale/lt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevcodeutils.mo share/locale/lt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/lt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/lt/LC_MESSAGES/kdevcppcheck.mo share/locale/lt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/lt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/lt/LC_MESSAGES/kdevcustommake.mo share/locale/lt/LC_MESSAGES/kdevcustomscript.mo share/locale/lt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/lt/LC_MESSAGES/kdevdocker.mo share/locale/lt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/lt/LC_MESSAGES/kdevdocumentview.mo share/locale/lt/LC_MESSAGES/kdevelop.mo share/locale/lt/LC_MESSAGES/kdevexecute.mo share/locale/lt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/lt/LC_MESSAGES/kdevexecutescript.mo share/locale/lt/LC_MESSAGES/kdevexternalscript.mo share/locale/lt/LC_MESSAGES/kdevfilemanager.mo share/locale/lt/LC_MESSAGES/kdevfiletemplates.mo share/locale/lt/LC_MESSAGES/kdevflatpak.mo share/locale/lt/LC_MESSAGES/kdevgdb.mo share/locale/lt/LC_MESSAGES/kdevghprovider.mo share/locale/lt/LC_MESSAGES/kdevgit.mo share/locale/lt/LC_MESSAGES/kdevgrepview.mo share/locale/lt/LC_MESSAGES/kdevheaptrack.mo share/locale/lt/LC_MESSAGES/kdevkonsole.mo share/locale/lt/LC_MESSAGES/kdevlldb.mo share/locale/lt/LC_MESSAGES/kdevmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevmanpage.mo share/locale/lt/LC_MESSAGES/kdevmesonmanager.mo share/locale/lt/LC_MESSAGES/kdevninja.mo share/locale/lt/LC_MESSAGES/kdevokteta.mo share/locale/lt/LC_MESSAGES/kdevopenwith.mo share/locale/lt/LC_MESSAGES/kdevoutlineview.mo share/locale/lt/LC_MESSAGES/kdevpatchreview.mo share/locale/lt/LC_MESSAGES/kdevperforce.mo share/locale/lt/LC_MESSAGES/kdevplatform.mo share/locale/lt/LC_MESSAGES/kdevproblemreporter.mo share/locale/lt/LC_MESSAGES/kdevprojectfilter.mo share/locale/lt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/lt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/lt/LC_MESSAGES/kdevqmakemanager.mo share/locale/lt/LC_MESSAGES/kdevqmljs.mo share/locale/lt/LC_MESSAGES/kdevqthelp.mo share/locale/lt/LC_MESSAGES/kdevquickopen.mo share/locale/lt/LC_MESSAGES/kdevscratchpad.mo share/locale/lt/LC_MESSAGES/kdevsourceformatter.mo share/locale/lt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/lt/LC_MESSAGES/kdevsubversion.mo share/locale/lt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/lt/LC_MESSAGES/kdevtestview.mo share/locale/lt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/lt/LC_MESSAGES/kdevwelcomepage.mo share/locale/lt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/lt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/lv/LC_MESSAGES/kdevelop.mo +share/locale/mai/LC_MESSAGES/kdevbazaar.mo +share/locale/mai/LC_MESSAGES/kdevexecutescript.mo +share/locale/mai/LC_MESSAGES/kdevqmakebuilder.mo +share/locale/mai/LC_MESSAGES/kdevqmakemanager.mo share/locale/mr/LC_MESSAGES/kdevappwizard.mo share/locale/mr/LC_MESSAGES/kdevclassbrowser.mo share/locale/mr/LC_MESSAGES/kdevcmake.mo share/locale/mr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevcodeutils.mo share/locale/mr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/mr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/mr/LC_MESSAGES/kdevcustommake.mo share/locale/mr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/mr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/mr/LC_MESSAGES/kdevdocumentview.mo share/locale/mr/LC_MESSAGES/kdevelop.mo share/locale/mr/LC_MESSAGES/kdevexecute.mo share/locale/mr/LC_MESSAGES/kdevexecutescript.mo share/locale/mr/LC_MESSAGES/kdevexternalscript.mo share/locale/mr/LC_MESSAGES/kdevfilemanager.mo share/locale/mr/LC_MESSAGES/kdevgdb.mo share/locale/mr/LC_MESSAGES/kdevgit.mo share/locale/mr/LC_MESSAGES/kdevgrepview.mo share/locale/mr/LC_MESSAGES/kdevkonsole.mo share/locale/mr/LC_MESSAGES/kdevmakebuilder.mo share/locale/mr/LC_MESSAGES/kdevmanpage.mo share/locale/mr/LC_MESSAGES/kdevokteta.mo share/locale/mr/LC_MESSAGES/kdevopenwith.mo share/locale/mr/LC_MESSAGES/kdevpatchreview.mo share/locale/mr/LC_MESSAGES/kdevperforce.mo share/locale/mr/LC_MESSAGES/kdevplatform.mo share/locale/mr/LC_MESSAGES/kdevproblemreporter.mo share/locale/mr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/mr/LC_MESSAGES/kdevqmljs.mo share/locale/mr/LC_MESSAGES/kdevqthelp.mo share/locale/mr/LC_MESSAGES/kdevquickopen.mo share/locale/mr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/mr/LC_MESSAGES/kdevsubversion.mo share/locale/mr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/mr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/mr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/mr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/ms/LC_MESSAGES/kdevappwizard.mo +share/locale/ms/LC_MESSAGES/kdevclassbrowser.mo +share/locale/ms/LC_MESSAGES/kdevcmake.mo +share/locale/ms/LC_MESSAGES/kdevcmakebuilder.mo +share/locale/ms/LC_MESSAGES/kdevcontextbrowser.mo +share/locale/ms/LC_MESSAGES/kdevcustommake.mo +share/locale/ms/LC_MESSAGES/kdevdocumentswitcher.mo +share/locale/ms/LC_MESSAGES/kdevdocumentview.mo +share/locale/ms/LC_MESSAGES/kdevelop.mo +share/locale/ms/LC_MESSAGES/kdevexecute.mo +share/locale/ms/LC_MESSAGES/kdevfilemanager.mo +share/locale/ms/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevappwizard.mo share/locale/nb/LC_MESSAGES/kdevastyle.mo share/locale/nb/LC_MESSAGES/kdevbazaar.mo share/locale/nb/LC_MESSAGES/kdevclassbrowser.mo share/locale/nb/LC_MESSAGES/kdevcmake.mo share/locale/nb/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevcodeutils.mo share/locale/nb/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nb/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nb/LC_MESSAGES/kdevcustommake.mo share/locale/nb/LC_MESSAGES/kdevcustomscript.mo share/locale/nb/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nb/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nb/LC_MESSAGES/kdevdocumentview.mo share/locale/nb/LC_MESSAGES/kdevelop.mo share/locale/nb/LC_MESSAGES/kdevexecute.mo share/locale/nb/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nb/LC_MESSAGES/kdevexecutescript.mo share/locale/nb/LC_MESSAGES/kdevexternalscript.mo share/locale/nb/LC_MESSAGES/kdevfilemanager.mo share/locale/nb/LC_MESSAGES/kdevgdb.mo share/locale/nb/LC_MESSAGES/kdevgit.mo share/locale/nb/LC_MESSAGES/kdevgrepview.mo share/locale/nb/LC_MESSAGES/kdevkonsole.mo share/locale/nb/LC_MESSAGES/kdevmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevmanpage.mo share/locale/nb/LC_MESSAGES/kdevokteta.mo share/locale/nb/LC_MESSAGES/kdevopenwith.mo share/locale/nb/LC_MESSAGES/kdevpatchreview.mo share/locale/nb/LC_MESSAGES/kdevplatform.mo share/locale/nb/LC_MESSAGES/kdevproblemreporter.mo share/locale/nb/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nb/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nb/LC_MESSAGES/kdevqmakemanager.mo share/locale/nb/LC_MESSAGES/kdevqthelp.mo share/locale/nb/LC_MESSAGES/kdevquickopen.mo share/locale/nb/LC_MESSAGES/kdevsourceformatter.mo share/locale/nb/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nb/LC_MESSAGES/kdevsubversion.mo share/locale/nb/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nb/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nb/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/kdevappwizard.mo share/locale/nds/LC_MESSAGES/kdevbazaar.mo share/locale/nds/LC_MESSAGES/kdevclassbrowser.mo share/locale/nds/LC_MESSAGES/kdevcmake.mo share/locale/nds/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevcodeutils.mo share/locale/nds/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nds/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nds/LC_MESSAGES/kdevcustommake.mo share/locale/nds/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nds/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nds/LC_MESSAGES/kdevdocumentview.mo share/locale/nds/LC_MESSAGES/kdevelop.mo share/locale/nds/LC_MESSAGES/kdevexecute.mo share/locale/nds/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nds/LC_MESSAGES/kdevexecutescript.mo share/locale/nds/LC_MESSAGES/kdevexternalscript.mo share/locale/nds/LC_MESSAGES/kdevfilemanager.mo share/locale/nds/LC_MESSAGES/kdevfiletemplates.mo share/locale/nds/LC_MESSAGES/kdevgdb.mo share/locale/nds/LC_MESSAGES/kdevghprovider.mo share/locale/nds/LC_MESSAGES/kdevgit.mo share/locale/nds/LC_MESSAGES/kdevgrepview.mo share/locale/nds/LC_MESSAGES/kdevkonsole.mo share/locale/nds/LC_MESSAGES/kdevmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevmanpage.mo share/locale/nds/LC_MESSAGES/kdevninja.mo share/locale/nds/LC_MESSAGES/kdevokteta.mo share/locale/nds/LC_MESSAGES/kdevopenwith.mo share/locale/nds/LC_MESSAGES/kdevpatchreview.mo share/locale/nds/LC_MESSAGES/kdevperforce.mo share/locale/nds/LC_MESSAGES/kdevplatform.mo share/locale/nds/LC_MESSAGES/kdevproblemreporter.mo share/locale/nds/LC_MESSAGES/kdevprojectfilter.mo share/locale/nds/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nds/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nds/LC_MESSAGES/kdevqmakemanager.mo share/locale/nds/LC_MESSAGES/kdevqthelp.mo share/locale/nds/LC_MESSAGES/kdevquickopen.mo share/locale/nds/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nds/LC_MESSAGES/kdevsubversion.mo share/locale/nds/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nds/LC_MESSAGES/kdevtestview.mo share/locale/nds/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nds/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nds/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/ne/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevandroid.mo share/locale/nl/LC_MESSAGES/kdevappwizard.mo share/locale/nl/LC_MESSAGES/kdevastyle.mo share/locale/nl/LC_MESSAGES/kdevbazaar.mo share/locale/nl/LC_MESSAGES/kdevclang.mo share/locale/nl/LC_MESSAGES/kdevclangtidy.mo share/locale/nl/LC_MESSAGES/kdevclassbrowser.mo share/locale/nl/LC_MESSAGES/kdevclazy.mo share/locale/nl/LC_MESSAGES/kdevcmake.mo share/locale/nl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevcodeutils.mo share/locale/nl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/nl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nl/LC_MESSAGES/kdevcppcheck.mo share/locale/nl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/nl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/nl/LC_MESSAGES/kdevcustommake.mo share/locale/nl/LC_MESSAGES/kdevcustomscript.mo share/locale/nl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nl/LC_MESSAGES/kdevdocker.mo share/locale/nl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/nl/LC_MESSAGES/kdevdocumentview.mo share/locale/nl/LC_MESSAGES/kdevelop.mo share/locale/nl/LC_MESSAGES/kdevexecute.mo share/locale/nl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/nl/LC_MESSAGES/kdevexecutescript.mo share/locale/nl/LC_MESSAGES/kdevexternalscript.mo share/locale/nl/LC_MESSAGES/kdevfilemanager.mo share/locale/nl/LC_MESSAGES/kdevfiletemplates.mo share/locale/nl/LC_MESSAGES/kdevflatpak.mo share/locale/nl/LC_MESSAGES/kdevgdb.mo share/locale/nl/LC_MESSAGES/kdevghprovider.mo share/locale/nl/LC_MESSAGES/kdevgit.mo share/locale/nl/LC_MESSAGES/kdevgrepview.mo share/locale/nl/LC_MESSAGES/kdevheaptrack.mo share/locale/nl/LC_MESSAGES/kdevkonsole.mo share/locale/nl/LC_MESSAGES/kdevlldb.mo share/locale/nl/LC_MESSAGES/kdevmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevmanpage.mo share/locale/nl/LC_MESSAGES/kdevmesonmanager.mo share/locale/nl/LC_MESSAGES/kdevninja.mo share/locale/nl/LC_MESSAGES/kdevokteta.mo share/locale/nl/LC_MESSAGES/kdevopenwith.mo share/locale/nl/LC_MESSAGES/kdevoutlineview.mo share/locale/nl/LC_MESSAGES/kdevpatchreview.mo share/locale/nl/LC_MESSAGES/kdevperforce.mo share/locale/nl/LC_MESSAGES/kdevplatform.mo share/locale/nl/LC_MESSAGES/kdevproblemreporter.mo share/locale/nl/LC_MESSAGES/kdevprojectfilter.mo share/locale/nl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nl/LC_MESSAGES/kdevqmakemanager.mo share/locale/nl/LC_MESSAGES/kdevqmljs.mo share/locale/nl/LC_MESSAGES/kdevqthelp.mo share/locale/nl/LC_MESSAGES/kdevquickopen.mo share/locale/nl/LC_MESSAGES/kdevscratchpad.mo share/locale/nl/LC_MESSAGES/kdevsourceformatter.mo share/locale/nl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nl/LC_MESSAGES/kdevsubversion.mo share/locale/nl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/nl/LC_MESSAGES/kdevtestview.mo share/locale/nl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/nl/LC_MESSAGES/kdevwelcomepage.mo share/locale/nl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/kdevappwizard.mo share/locale/nn/LC_MESSAGES/kdevastyle.mo share/locale/nn/LC_MESSAGES/kdevbazaar.mo share/locale/nn/LC_MESSAGES/kdevclassbrowser.mo share/locale/nn/LC_MESSAGES/kdevcmake.mo share/locale/nn/LC_MESSAGES/kdevcmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevcontextbrowser.mo share/locale/nn/LC_MESSAGES/kdevcustommake.mo share/locale/nn/LC_MESSAGES/kdevcustomscript.mo share/locale/nn/LC_MESSAGES/kdevdebuggercommon.mo share/locale/nn/LC_MESSAGES/kdevdocumentview.mo share/locale/nn/LC_MESSAGES/kdevelop.mo share/locale/nn/LC_MESSAGES/kdevexecute.mo share/locale/nn/LC_MESSAGES/kdevfilemanager.mo share/locale/nn/LC_MESSAGES/kdevgdb.mo share/locale/nn/LC_MESSAGES/kdevgit.mo share/locale/nn/LC_MESSAGES/kdevgrepview.mo share/locale/nn/LC_MESSAGES/kdevheaptrack.mo share/locale/nn/LC_MESSAGES/kdevkonsole.mo share/locale/nn/LC_MESSAGES/kdevmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevokteta.mo share/locale/nn/LC_MESSAGES/kdevplatform.mo share/locale/nn/LC_MESSAGES/kdevproblemreporter.mo share/locale/nn/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/nn/LC_MESSAGES/kdevqmakebuilder.mo share/locale/nn/LC_MESSAGES/kdevqmakemanager.mo share/locale/nn/LC_MESSAGES/kdevquickopen.mo share/locale/nn/LC_MESSAGES/kdevsourceformatter.mo share/locale/nn/LC_MESSAGES/kdevstandardoutputview.mo share/locale/nn/LC_MESSAGES/kdevsubversion.mo share/locale/nn/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/nn/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/oc/LC_MESSAGES/kdevelop.mo share/locale/pa/LC_MESSAGES/kdevbazaar.mo share/locale/pa/LC_MESSAGES/kdevclassbrowser.mo share/locale/pa/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pa/LC_MESSAGES/kdevexecute.mo share/locale/pa/LC_MESSAGES/kdevfilemanager.mo share/locale/pa/LC_MESSAGES/kdevgit.mo share/locale/pa/LC_MESSAGES/kdevkonsole.mo share/locale/pa/LC_MESSAGES/kdevplatform.mo share/locale/pa/LC_MESSAGES/kdevquickopen.mo share/locale/pa/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevandroid.mo share/locale/pl/LC_MESSAGES/kdevappwizard.mo share/locale/pl/LC_MESSAGES/kdevastyle.mo share/locale/pl/LC_MESSAGES/kdevbazaar.mo share/locale/pl/LC_MESSAGES/kdevclang.mo share/locale/pl/LC_MESSAGES/kdevclangtidy.mo share/locale/pl/LC_MESSAGES/kdevclassbrowser.mo share/locale/pl/LC_MESSAGES/kdevclazy.mo share/locale/pl/LC_MESSAGES/kdevcmake.mo share/locale/pl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevcodeutils.mo share/locale/pl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pl/LC_MESSAGES/kdevcppcheck.mo share/locale/pl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pl/LC_MESSAGES/kdevcustommake.mo share/locale/pl/LC_MESSAGES/kdevcustomscript.mo share/locale/pl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pl/LC_MESSAGES/kdevdocker.mo share/locale/pl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pl/LC_MESSAGES/kdevdocumentview.mo share/locale/pl/LC_MESSAGES/kdevelop.mo share/locale/pl/LC_MESSAGES/kdevexecute.mo share/locale/pl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pl/LC_MESSAGES/kdevexecutescript.mo share/locale/pl/LC_MESSAGES/kdevexternalscript.mo share/locale/pl/LC_MESSAGES/kdevfilemanager.mo share/locale/pl/LC_MESSAGES/kdevfiletemplates.mo share/locale/pl/LC_MESSAGES/kdevflatpak.mo share/locale/pl/LC_MESSAGES/kdevgdb.mo share/locale/pl/LC_MESSAGES/kdevghprovider.mo share/locale/pl/LC_MESSAGES/kdevgit.mo share/locale/pl/LC_MESSAGES/kdevgrepview.mo share/locale/pl/LC_MESSAGES/kdevheaptrack.mo share/locale/pl/LC_MESSAGES/kdevkonsole.mo share/locale/pl/LC_MESSAGES/kdevlldb.mo share/locale/pl/LC_MESSAGES/kdevmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevmanpage.mo share/locale/pl/LC_MESSAGES/kdevmesonmanager.mo share/locale/pl/LC_MESSAGES/kdevninja.mo share/locale/pl/LC_MESSAGES/kdevokteta.mo share/locale/pl/LC_MESSAGES/kdevopenwith.mo share/locale/pl/LC_MESSAGES/kdevoutlineview.mo share/locale/pl/LC_MESSAGES/kdevpatchreview.mo share/locale/pl/LC_MESSAGES/kdevperforce.mo share/locale/pl/LC_MESSAGES/kdevplatform.mo share/locale/pl/LC_MESSAGES/kdevproblemreporter.mo share/locale/pl/LC_MESSAGES/kdevprojectfilter.mo share/locale/pl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pl/LC_MESSAGES/kdevqmakemanager.mo share/locale/pl/LC_MESSAGES/kdevqmljs.mo share/locale/pl/LC_MESSAGES/kdevqthelp.mo share/locale/pl/LC_MESSAGES/kdevquickopen.mo share/locale/pl/LC_MESSAGES/kdevscratchpad.mo share/locale/pl/LC_MESSAGES/kdevsourceformatter.mo share/locale/pl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pl/LC_MESSAGES/kdevsubversion.mo share/locale/pl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pl/LC_MESSAGES/kdevtestview.mo share/locale/pl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pl/LC_MESSAGES/kdevwelcomepage.mo share/locale/pl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/kdevandroid.mo share/locale/pt/LC_MESSAGES/kdevappwizard.mo share/locale/pt/LC_MESSAGES/kdevastyle.mo share/locale/pt/LC_MESSAGES/kdevbazaar.mo share/locale/pt/LC_MESSAGES/kdevclang.mo share/locale/pt/LC_MESSAGES/kdevclangtidy.mo share/locale/pt/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt/LC_MESSAGES/kdevclazy.mo share/locale/pt/LC_MESSAGES/kdevcmake.mo share/locale/pt/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevcodeutils.mo share/locale/pt/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt/LC_MESSAGES/kdevcppcheck.mo share/locale/pt/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt/LC_MESSAGES/kdevcustommake.mo share/locale/pt/LC_MESSAGES/kdevcustomscript.mo share/locale/pt/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt/LC_MESSAGES/kdevdocker.mo share/locale/pt/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt/LC_MESSAGES/kdevdocumentview.mo share/locale/pt/LC_MESSAGES/kdevelop.mo share/locale/pt/LC_MESSAGES/kdevexecute.mo share/locale/pt/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt/LC_MESSAGES/kdevexecutescript.mo share/locale/pt/LC_MESSAGES/kdevexternalscript.mo share/locale/pt/LC_MESSAGES/kdevfilemanager.mo share/locale/pt/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt/LC_MESSAGES/kdevflatpak.mo share/locale/pt/LC_MESSAGES/kdevgdb.mo share/locale/pt/LC_MESSAGES/kdevghprovider.mo share/locale/pt/LC_MESSAGES/kdevgit.mo share/locale/pt/LC_MESSAGES/kdevgrepview.mo share/locale/pt/LC_MESSAGES/kdevheaptrack.mo share/locale/pt/LC_MESSAGES/kdevkonsole.mo share/locale/pt/LC_MESSAGES/kdevlldb.mo share/locale/pt/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevmanpage.mo share/locale/pt/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt/LC_MESSAGES/kdevninja.mo share/locale/pt/LC_MESSAGES/kdevokteta.mo share/locale/pt/LC_MESSAGES/kdevopenwith.mo share/locale/pt/LC_MESSAGES/kdevoutlineview.mo share/locale/pt/LC_MESSAGES/kdevpatchreview.mo share/locale/pt/LC_MESSAGES/kdevperforce.mo share/locale/pt/LC_MESSAGES/kdevplatform.mo share/locale/pt/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt/LC_MESSAGES/kdevqmljs.mo share/locale/pt/LC_MESSAGES/kdevqthelp.mo share/locale/pt/LC_MESSAGES/kdevquickopen.mo share/locale/pt/LC_MESSAGES/kdevscratchpad.mo share/locale/pt/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt/LC_MESSAGES/kdevsubversion.mo share/locale/pt/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt/LC_MESSAGES/kdevtestview.mo share/locale/pt/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/kdevandroid.mo share/locale/pt_BR/LC_MESSAGES/kdevappwizard.mo share/locale/pt_BR/LC_MESSAGES/kdevastyle.mo share/locale/pt_BR/LC_MESSAGES/kdevbazaar.mo share/locale/pt_BR/LC_MESSAGES/kdevclang.mo share/locale/pt_BR/LC_MESSAGES/kdevclangtidy.mo share/locale/pt_BR/LC_MESSAGES/kdevclassbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevclazy.mo share/locale/pt_BR/LC_MESSAGES/kdevcmake.mo share/locale/pt_BR/LC_MESSAGES/kdevcmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevcodeutils.mo share/locale/pt_BR/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevcontextbrowser.mo share/locale/pt_BR/LC_MESSAGES/kdevcppcheck.mo share/locale/pt_BR/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/pt_BR/LC_MESSAGES/kdevcustommake.mo share/locale/pt_BR/LC_MESSAGES/kdevcustomscript.mo share/locale/pt_BR/LC_MESSAGES/kdevdebuggercommon.mo share/locale/pt_BR/LC_MESSAGES/kdevdocker.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/pt_BR/LC_MESSAGES/kdevdocumentview.mo share/locale/pt_BR/LC_MESSAGES/kdevelop.mo share/locale/pt_BR/LC_MESSAGES/kdevexecute.mo share/locale/pt_BR/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/pt_BR/LC_MESSAGES/kdevexecutescript.mo share/locale/pt_BR/LC_MESSAGES/kdevexternalscript.mo share/locale/pt_BR/LC_MESSAGES/kdevfilemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevfiletemplates.mo share/locale/pt_BR/LC_MESSAGES/kdevflatpak.mo share/locale/pt_BR/LC_MESSAGES/kdevgdb.mo share/locale/pt_BR/LC_MESSAGES/kdevghprovider.mo share/locale/pt_BR/LC_MESSAGES/kdevgit.mo share/locale/pt_BR/LC_MESSAGES/kdevgrepview.mo share/locale/pt_BR/LC_MESSAGES/kdevheaptrack.mo share/locale/pt_BR/LC_MESSAGES/kdevkonsole.mo share/locale/pt_BR/LC_MESSAGES/kdevlldb.mo share/locale/pt_BR/LC_MESSAGES/kdevmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevmanpage.mo share/locale/pt_BR/LC_MESSAGES/kdevmesonmanager.mo share/locale/pt_BR/LC_MESSAGES/kdevninja.mo share/locale/pt_BR/LC_MESSAGES/kdevokteta.mo share/locale/pt_BR/LC_MESSAGES/kdevopenwith.mo share/locale/pt_BR/LC_MESSAGES/kdevoutlineview.mo share/locale/pt_BR/LC_MESSAGES/kdevpatchreview.mo share/locale/pt_BR/LC_MESSAGES/kdevperforce.mo share/locale/pt_BR/LC_MESSAGES/kdevplatform.mo share/locale/pt_BR/LC_MESSAGES/kdevproblemreporter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectfilter.mo share/locale/pt_BR/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakebuilder.mo share/locale/pt_BR/LC_MESSAGES/kdevqmakemanager.mo share/locale/pt_BR/LC_MESSAGES/kdevqmljs.mo share/locale/pt_BR/LC_MESSAGES/kdevqthelp.mo share/locale/pt_BR/LC_MESSAGES/kdevquickopen.mo share/locale/pt_BR/LC_MESSAGES/kdevscratchpad.mo share/locale/pt_BR/LC_MESSAGES/kdevsourceformatter.mo share/locale/pt_BR/LC_MESSAGES/kdevstandardoutputview.mo share/locale/pt_BR/LC_MESSAGES/kdevsubversion.mo share/locale/pt_BR/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/pt_BR/LC_MESSAGES/kdevtestview.mo share/locale/pt_BR/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/pt_BR/LC_MESSAGES/kdevwelcomepage.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/pt_BR/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ro/LC_MESSAGES/kdevappwizard.mo share/locale/ro/LC_MESSAGES/kdevastyle.mo share/locale/ro/LC_MESSAGES/kdevbazaar.mo share/locale/ro/LC_MESSAGES/kdevclassbrowser.mo share/locale/ro/LC_MESSAGES/kdevcmake.mo share/locale/ro/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ro/LC_MESSAGES/kdevcustommake.mo share/locale/ro/LC_MESSAGES/kdevcustomscript.mo share/locale/ro/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ro/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ro/LC_MESSAGES/kdevdocumentview.mo share/locale/ro/LC_MESSAGES/kdevelop.mo share/locale/ro/LC_MESSAGES/kdevexecute.mo share/locale/ro/LC_MESSAGES/kdevfilemanager.mo share/locale/ro/LC_MESSAGES/kdevgdb.mo share/locale/ro/LC_MESSAGES/kdevgit.mo share/locale/ro/LC_MESSAGES/kdevgrepview.mo share/locale/ro/LC_MESSAGES/kdevkonsole.mo share/locale/ro/LC_MESSAGES/kdevmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevopenwith.mo share/locale/ro/LC_MESSAGES/kdevpatchreview.mo share/locale/ro/LC_MESSAGES/kdevplatform.mo share/locale/ro/LC_MESSAGES/kdevproblemreporter.mo share/locale/ro/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ro/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ro/LC_MESSAGES/kdevqmakemanager.mo share/locale/ro/LC_MESSAGES/kdevqthelp.mo share/locale/ro/LC_MESSAGES/kdevquickopen.mo share/locale/ro/LC_MESSAGES/kdevsourceformatter.mo share/locale/ro/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ro/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevandroid.mo share/locale/ru/LC_MESSAGES/kdevappwizard.mo share/locale/ru/LC_MESSAGES/kdevastyle.mo share/locale/ru/LC_MESSAGES/kdevbazaar.mo share/locale/ru/LC_MESSAGES/kdevclang.mo share/locale/ru/LC_MESSAGES/kdevclangtidy.mo share/locale/ru/LC_MESSAGES/kdevclassbrowser.mo share/locale/ru/LC_MESSAGES/kdevclazy.mo share/locale/ru/LC_MESSAGES/kdevcmake.mo share/locale/ru/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevcodeutils.mo share/locale/ru/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ru/LC_MESSAGES/kdevcppcheck.mo share/locale/ru/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ru/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/ru/LC_MESSAGES/kdevcustommake.mo share/locale/ru/LC_MESSAGES/kdevcustomscript.mo share/locale/ru/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ru/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ru/LC_MESSAGES/kdevdocumentview.mo share/locale/ru/LC_MESSAGES/kdevelop.mo share/locale/ru/LC_MESSAGES/kdevexecute.mo share/locale/ru/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ru/LC_MESSAGES/kdevexecutescript.mo share/locale/ru/LC_MESSAGES/kdevexternalscript.mo share/locale/ru/LC_MESSAGES/kdevfilemanager.mo share/locale/ru/LC_MESSAGES/kdevfiletemplates.mo share/locale/ru/LC_MESSAGES/kdevgdb.mo share/locale/ru/LC_MESSAGES/kdevghprovider.mo share/locale/ru/LC_MESSAGES/kdevgit.mo share/locale/ru/LC_MESSAGES/kdevgrepview.mo share/locale/ru/LC_MESSAGES/kdevheaptrack.mo share/locale/ru/LC_MESSAGES/kdevkonsole.mo share/locale/ru/LC_MESSAGES/kdevlldb.mo share/locale/ru/LC_MESSAGES/kdevmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevmanpage.mo share/locale/ru/LC_MESSAGES/kdevmesonmanager.mo share/locale/ru/LC_MESSAGES/kdevninja.mo share/locale/ru/LC_MESSAGES/kdevokteta.mo share/locale/ru/LC_MESSAGES/kdevopenwith.mo share/locale/ru/LC_MESSAGES/kdevoutlineview.mo share/locale/ru/LC_MESSAGES/kdevpatchreview.mo share/locale/ru/LC_MESSAGES/kdevperforce.mo share/locale/ru/LC_MESSAGES/kdevplatform.mo share/locale/ru/LC_MESSAGES/kdevproblemreporter.mo share/locale/ru/LC_MESSAGES/kdevprojectfilter.mo share/locale/ru/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ru/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ru/LC_MESSAGES/kdevqmakemanager.mo share/locale/ru/LC_MESSAGES/kdevqmljs.mo share/locale/ru/LC_MESSAGES/kdevqthelp.mo share/locale/ru/LC_MESSAGES/kdevquickopen.mo share/locale/ru/LC_MESSAGES/kdevscratchpad.mo share/locale/ru/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ru/LC_MESSAGES/kdevsubversion.mo share/locale/ru/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ru/LC_MESSAGES/kdevtestview.mo share/locale/ru/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ru/LC_MESSAGES/kdevwelcomepage.mo share/locale/ru/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ru/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/se/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevandroid.mo share/locale/sk/LC_MESSAGES/kdevappwizard.mo share/locale/sk/LC_MESSAGES/kdevastyle.mo share/locale/sk/LC_MESSAGES/kdevbazaar.mo share/locale/sk/LC_MESSAGES/kdevclang.mo share/locale/sk/LC_MESSAGES/kdevclangtidy.mo share/locale/sk/LC_MESSAGES/kdevclassbrowser.mo share/locale/sk/LC_MESSAGES/kdevclazy.mo share/locale/sk/LC_MESSAGES/kdevcmake.mo share/locale/sk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevcodeutils.mo share/locale/sk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sk/LC_MESSAGES/kdevcppcheck.mo share/locale/sk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sk/LC_MESSAGES/kdevcustommake.mo share/locale/sk/LC_MESSAGES/kdevcustomscript.mo share/locale/sk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sk/LC_MESSAGES/kdevdocker.mo share/locale/sk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sk/LC_MESSAGES/kdevdocumentview.mo share/locale/sk/LC_MESSAGES/kdevelop.mo share/locale/sk/LC_MESSAGES/kdevexecute.mo share/locale/sk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sk/LC_MESSAGES/kdevexecutescript.mo share/locale/sk/LC_MESSAGES/kdevexternalscript.mo share/locale/sk/LC_MESSAGES/kdevfilemanager.mo share/locale/sk/LC_MESSAGES/kdevfiletemplates.mo share/locale/sk/LC_MESSAGES/kdevflatpak.mo share/locale/sk/LC_MESSAGES/kdevgdb.mo share/locale/sk/LC_MESSAGES/kdevghprovider.mo share/locale/sk/LC_MESSAGES/kdevgit.mo share/locale/sk/LC_MESSAGES/kdevgrepview.mo share/locale/sk/LC_MESSAGES/kdevheaptrack.mo share/locale/sk/LC_MESSAGES/kdevkonsole.mo share/locale/sk/LC_MESSAGES/kdevlldb.mo share/locale/sk/LC_MESSAGES/kdevmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevmanpage.mo share/locale/sk/LC_MESSAGES/kdevmesonmanager.mo share/locale/sk/LC_MESSAGES/kdevninja.mo share/locale/sk/LC_MESSAGES/kdevokteta.mo share/locale/sk/LC_MESSAGES/kdevopenwith.mo share/locale/sk/LC_MESSAGES/kdevoutlineview.mo share/locale/sk/LC_MESSAGES/kdevpatchreview.mo share/locale/sk/LC_MESSAGES/kdevperforce.mo share/locale/sk/LC_MESSAGES/kdevplatform.mo share/locale/sk/LC_MESSAGES/kdevproblemreporter.mo share/locale/sk/LC_MESSAGES/kdevprojectfilter.mo share/locale/sk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sk/LC_MESSAGES/kdevqmakemanager.mo share/locale/sk/LC_MESSAGES/kdevqmljs.mo share/locale/sk/LC_MESSAGES/kdevqthelp.mo share/locale/sk/LC_MESSAGES/kdevquickopen.mo share/locale/sk/LC_MESSAGES/kdevscratchpad.mo share/locale/sk/LC_MESSAGES/kdevsourceformatter.mo share/locale/sk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sk/LC_MESSAGES/kdevsubversion.mo share/locale/sk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sk/LC_MESSAGES/kdevtestview.mo share/locale/sk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sk/LC_MESSAGES/kdevwelcomepage.mo share/locale/sk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/kdevandroid.mo share/locale/sl/LC_MESSAGES/kdevappwizard.mo share/locale/sl/LC_MESSAGES/kdevastyle.mo share/locale/sl/LC_MESSAGES/kdevbazaar.mo share/locale/sl/LC_MESSAGES/kdevclang.mo share/locale/sl/LC_MESSAGES/kdevclangtidy.mo share/locale/sl/LC_MESSAGES/kdevclassbrowser.mo share/locale/sl/LC_MESSAGES/kdevclazy.mo share/locale/sl/LC_MESSAGES/kdevcmake.mo share/locale/sl/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevcodeutils.mo share/locale/sl/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sl/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sl/LC_MESSAGES/kdevcppcheck.mo share/locale/sl/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sl/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sl/LC_MESSAGES/kdevcustommake.mo share/locale/sl/LC_MESSAGES/kdevcustomscript.mo share/locale/sl/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sl/LC_MESSAGES/kdevdocker.mo share/locale/sl/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sl/LC_MESSAGES/kdevdocumentview.mo share/locale/sl/LC_MESSAGES/kdevelop.mo share/locale/sl/LC_MESSAGES/kdevexecute.mo share/locale/sl/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sl/LC_MESSAGES/kdevexecutescript.mo share/locale/sl/LC_MESSAGES/kdevexternalscript.mo share/locale/sl/LC_MESSAGES/kdevfilemanager.mo share/locale/sl/LC_MESSAGES/kdevfiletemplates.mo share/locale/sl/LC_MESSAGES/kdevflatpak.mo share/locale/sl/LC_MESSAGES/kdevgdb.mo share/locale/sl/LC_MESSAGES/kdevghprovider.mo share/locale/sl/LC_MESSAGES/kdevgit.mo share/locale/sl/LC_MESSAGES/kdevgrepview.mo share/locale/sl/LC_MESSAGES/kdevheaptrack.mo share/locale/sl/LC_MESSAGES/kdevkonsole.mo share/locale/sl/LC_MESSAGES/kdevlldb.mo share/locale/sl/LC_MESSAGES/kdevmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevmanpage.mo share/locale/sl/LC_MESSAGES/kdevmesonmanager.mo share/locale/sl/LC_MESSAGES/kdevninja.mo share/locale/sl/LC_MESSAGES/kdevokteta.mo share/locale/sl/LC_MESSAGES/kdevopenwith.mo share/locale/sl/LC_MESSAGES/kdevoutlineview.mo share/locale/sl/LC_MESSAGES/kdevpatchreview.mo share/locale/sl/LC_MESSAGES/kdevperforce.mo share/locale/sl/LC_MESSAGES/kdevplatform.mo share/locale/sl/LC_MESSAGES/kdevproblemreporter.mo share/locale/sl/LC_MESSAGES/kdevprojectfilter.mo share/locale/sl/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sl/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sl/LC_MESSAGES/kdevqmakemanager.mo share/locale/sl/LC_MESSAGES/kdevqmljs.mo share/locale/sl/LC_MESSAGES/kdevqthelp.mo share/locale/sl/LC_MESSAGES/kdevquickopen.mo share/locale/sl/LC_MESSAGES/kdevscratchpad.mo share/locale/sl/LC_MESSAGES/kdevsourceformatter.mo share/locale/sl/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sl/LC_MESSAGES/kdevsubversion.mo share/locale/sl/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sl/LC_MESSAGES/kdevtestview.mo share/locale/sl/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sl/LC_MESSAGES/kdevwelcomepage.mo share/locale/sl/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sl/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/kdevandroid.mo share/locale/sv/LC_MESSAGES/kdevappwizard.mo share/locale/sv/LC_MESSAGES/kdevastyle.mo share/locale/sv/LC_MESSAGES/kdevbazaar.mo share/locale/sv/LC_MESSAGES/kdevclang.mo share/locale/sv/LC_MESSAGES/kdevclangtidy.mo share/locale/sv/LC_MESSAGES/kdevclassbrowser.mo share/locale/sv/LC_MESSAGES/kdevclazy.mo share/locale/sv/LC_MESSAGES/kdevcmake.mo share/locale/sv/LC_MESSAGES/kdevcmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevcodeutils.mo share/locale/sv/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/sv/LC_MESSAGES/kdevcontextbrowser.mo share/locale/sv/LC_MESSAGES/kdevcppcheck.mo share/locale/sv/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/sv/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/sv/LC_MESSAGES/kdevcustommake.mo share/locale/sv/LC_MESSAGES/kdevcustomscript.mo share/locale/sv/LC_MESSAGES/kdevdebuggercommon.mo share/locale/sv/LC_MESSAGES/kdevdocker.mo share/locale/sv/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/sv/LC_MESSAGES/kdevdocumentview.mo share/locale/sv/LC_MESSAGES/kdevelop.mo share/locale/sv/LC_MESSAGES/kdevexecute.mo share/locale/sv/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/sv/LC_MESSAGES/kdevexecutescript.mo share/locale/sv/LC_MESSAGES/kdevexternalscript.mo share/locale/sv/LC_MESSAGES/kdevfilemanager.mo share/locale/sv/LC_MESSAGES/kdevfiletemplates.mo share/locale/sv/LC_MESSAGES/kdevflatpak.mo share/locale/sv/LC_MESSAGES/kdevgdb.mo share/locale/sv/LC_MESSAGES/kdevghprovider.mo share/locale/sv/LC_MESSAGES/kdevgit.mo share/locale/sv/LC_MESSAGES/kdevgrepview.mo share/locale/sv/LC_MESSAGES/kdevheaptrack.mo share/locale/sv/LC_MESSAGES/kdevkonsole.mo share/locale/sv/LC_MESSAGES/kdevlldb.mo share/locale/sv/LC_MESSAGES/kdevmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevmanpage.mo share/locale/sv/LC_MESSAGES/kdevmesonmanager.mo share/locale/sv/LC_MESSAGES/kdevninja.mo share/locale/sv/LC_MESSAGES/kdevokteta.mo share/locale/sv/LC_MESSAGES/kdevopenwith.mo share/locale/sv/LC_MESSAGES/kdevoutlineview.mo share/locale/sv/LC_MESSAGES/kdevpatchreview.mo share/locale/sv/LC_MESSAGES/kdevperforce.mo share/locale/sv/LC_MESSAGES/kdevplatform.mo share/locale/sv/LC_MESSAGES/kdevproblemreporter.mo share/locale/sv/LC_MESSAGES/kdevprojectfilter.mo share/locale/sv/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/sv/LC_MESSAGES/kdevqmakebuilder.mo share/locale/sv/LC_MESSAGES/kdevqmakemanager.mo share/locale/sv/LC_MESSAGES/kdevqmljs.mo share/locale/sv/LC_MESSAGES/kdevqthelp.mo share/locale/sv/LC_MESSAGES/kdevquickopen.mo share/locale/sv/LC_MESSAGES/kdevscratchpad.mo share/locale/sv/LC_MESSAGES/kdevsourceformatter.mo share/locale/sv/LC_MESSAGES/kdevstandardoutputview.mo share/locale/sv/LC_MESSAGES/kdevsubversion.mo share/locale/sv/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/sv/LC_MESSAGES/kdevtestview.mo share/locale/sv/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/sv/LC_MESSAGES/kdevwelcomepage.mo share/locale/sv/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/sv/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ta/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevelop.mo share/locale/tg/LC_MESSAGES/kdevplatform.mo +share/locale/th/LC_MESSAGES/kdevappwizard.mo +share/locale/th/LC_MESSAGES/kdevcustommake.mo +share/locale/th/LC_MESSAGES/kdevkonsole.mo +share/locale/th/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevandroid.mo share/locale/tr/LC_MESSAGES/kdevappwizard.mo share/locale/tr/LC_MESSAGES/kdevastyle.mo share/locale/tr/LC_MESSAGES/kdevbazaar.mo share/locale/tr/LC_MESSAGES/kdevclang.mo share/locale/tr/LC_MESSAGES/kdevclangtidy.mo share/locale/tr/LC_MESSAGES/kdevclassbrowser.mo share/locale/tr/LC_MESSAGES/kdevclazy.mo share/locale/tr/LC_MESSAGES/kdevcmake.mo share/locale/tr/LC_MESSAGES/kdevcmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevcodeutils.mo share/locale/tr/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/tr/LC_MESSAGES/kdevcontextbrowser.mo share/locale/tr/LC_MESSAGES/kdevcppcheck.mo share/locale/tr/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/tr/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/tr/LC_MESSAGES/kdevcustommake.mo share/locale/tr/LC_MESSAGES/kdevcustomscript.mo share/locale/tr/LC_MESSAGES/kdevdebuggercommon.mo share/locale/tr/LC_MESSAGES/kdevdocker.mo share/locale/tr/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/tr/LC_MESSAGES/kdevdocumentview.mo share/locale/tr/LC_MESSAGES/kdevelop.mo share/locale/tr/LC_MESSAGES/kdevexecute.mo share/locale/tr/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/tr/LC_MESSAGES/kdevexecutescript.mo share/locale/tr/LC_MESSAGES/kdevexternalscript.mo share/locale/tr/LC_MESSAGES/kdevfilemanager.mo share/locale/tr/LC_MESSAGES/kdevfiletemplates.mo share/locale/tr/LC_MESSAGES/kdevflatpak.mo share/locale/tr/LC_MESSAGES/kdevgdb.mo share/locale/tr/LC_MESSAGES/kdevghprovider.mo share/locale/tr/LC_MESSAGES/kdevgit.mo share/locale/tr/LC_MESSAGES/kdevgrepview.mo share/locale/tr/LC_MESSAGES/kdevheaptrack.mo share/locale/tr/LC_MESSAGES/kdevkonsole.mo share/locale/tr/LC_MESSAGES/kdevlldb.mo share/locale/tr/LC_MESSAGES/kdevmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevmanpage.mo share/locale/tr/LC_MESSAGES/kdevmesonmanager.mo share/locale/tr/LC_MESSAGES/kdevninja.mo share/locale/tr/LC_MESSAGES/kdevokteta.mo share/locale/tr/LC_MESSAGES/kdevopenwith.mo share/locale/tr/LC_MESSAGES/kdevoutlineview.mo share/locale/tr/LC_MESSAGES/kdevpatchreview.mo share/locale/tr/LC_MESSAGES/kdevperforce.mo share/locale/tr/LC_MESSAGES/kdevplatform.mo share/locale/tr/LC_MESSAGES/kdevproblemreporter.mo share/locale/tr/LC_MESSAGES/kdevprojectfilter.mo share/locale/tr/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/tr/LC_MESSAGES/kdevqmakebuilder.mo share/locale/tr/LC_MESSAGES/kdevqmakemanager.mo share/locale/tr/LC_MESSAGES/kdevqmljs.mo share/locale/tr/LC_MESSAGES/kdevqthelp.mo share/locale/tr/LC_MESSAGES/kdevquickopen.mo share/locale/tr/LC_MESSAGES/kdevscratchpad.mo share/locale/tr/LC_MESSAGES/kdevsourceformatter.mo share/locale/tr/LC_MESSAGES/kdevstandardoutputview.mo share/locale/tr/LC_MESSAGES/kdevsubversion.mo share/locale/tr/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/tr/LC_MESSAGES/kdevtestview.mo share/locale/tr/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/tr/LC_MESSAGES/kdevwelcomepage.mo share/locale/tr/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/tr/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/kdevappwizard.mo share/locale/ug/LC_MESSAGES/kdevbazaar.mo share/locale/ug/LC_MESSAGES/kdevclassbrowser.mo share/locale/ug/LC_MESSAGES/kdevcmake.mo share/locale/ug/LC_MESSAGES/kdevcmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevcodeutils.mo share/locale/ug/LC_MESSAGES/kdevcontextbrowser.mo share/locale/ug/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/ug/LC_MESSAGES/kdevcustommake.mo share/locale/ug/LC_MESSAGES/kdevdebuggercommon.mo share/locale/ug/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/ug/LC_MESSAGES/kdevdocumentview.mo share/locale/ug/LC_MESSAGES/kdevelop.mo share/locale/ug/LC_MESSAGES/kdevexecute.mo share/locale/ug/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/ug/LC_MESSAGES/kdevexecutescript.mo share/locale/ug/LC_MESSAGES/kdevexternalscript.mo share/locale/ug/LC_MESSAGES/kdevfilemanager.mo share/locale/ug/LC_MESSAGES/kdevfiletemplates.mo share/locale/ug/LC_MESSAGES/kdevgdb.mo share/locale/ug/LC_MESSAGES/kdevgit.mo share/locale/ug/LC_MESSAGES/kdevgrepview.mo share/locale/ug/LC_MESSAGES/kdevkonsole.mo share/locale/ug/LC_MESSAGES/kdevmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevmanpage.mo share/locale/ug/LC_MESSAGES/kdevninja.mo share/locale/ug/LC_MESSAGES/kdevokteta.mo share/locale/ug/LC_MESSAGES/kdevopenwith.mo share/locale/ug/LC_MESSAGES/kdevpatchreview.mo share/locale/ug/LC_MESSAGES/kdevperforce.mo share/locale/ug/LC_MESSAGES/kdevplatform.mo share/locale/ug/LC_MESSAGES/kdevproblemreporter.mo share/locale/ug/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/ug/LC_MESSAGES/kdevqmakebuilder.mo share/locale/ug/LC_MESSAGES/kdevqmakemanager.mo share/locale/ug/LC_MESSAGES/kdevqmljs.mo share/locale/ug/LC_MESSAGES/kdevqthelp.mo share/locale/ug/LC_MESSAGES/kdevquickopen.mo share/locale/ug/LC_MESSAGES/kdevstandardoutputview.mo share/locale/ug/LC_MESSAGES/kdevsubversion.mo share/locale/ug/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/ug/LC_MESSAGES/kdevtestview.mo share/locale/ug/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/ug/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/ug/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/kdevandroid.mo share/locale/uk/LC_MESSAGES/kdevappwizard.mo share/locale/uk/LC_MESSAGES/kdevastyle.mo share/locale/uk/LC_MESSAGES/kdevbazaar.mo share/locale/uk/LC_MESSAGES/kdevclang.mo share/locale/uk/LC_MESSAGES/kdevclangtidy.mo share/locale/uk/LC_MESSAGES/kdevclassbrowser.mo share/locale/uk/LC_MESSAGES/kdevclazy.mo share/locale/uk/LC_MESSAGES/kdevcmake.mo share/locale/uk/LC_MESSAGES/kdevcmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevcodeutils.mo share/locale/uk/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/uk/LC_MESSAGES/kdevcontextbrowser.mo share/locale/uk/LC_MESSAGES/kdevcppcheck.mo share/locale/uk/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/uk/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/uk/LC_MESSAGES/kdevcustommake.mo share/locale/uk/LC_MESSAGES/kdevcustomscript.mo share/locale/uk/LC_MESSAGES/kdevdebuggercommon.mo share/locale/uk/LC_MESSAGES/kdevdocker.mo share/locale/uk/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/uk/LC_MESSAGES/kdevdocumentview.mo share/locale/uk/LC_MESSAGES/kdevelop.mo share/locale/uk/LC_MESSAGES/kdevexecute.mo share/locale/uk/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/uk/LC_MESSAGES/kdevexecutescript.mo share/locale/uk/LC_MESSAGES/kdevexternalscript.mo share/locale/uk/LC_MESSAGES/kdevfilemanager.mo share/locale/uk/LC_MESSAGES/kdevfiletemplates.mo share/locale/uk/LC_MESSAGES/kdevflatpak.mo share/locale/uk/LC_MESSAGES/kdevgdb.mo share/locale/uk/LC_MESSAGES/kdevghprovider.mo share/locale/uk/LC_MESSAGES/kdevgit.mo share/locale/uk/LC_MESSAGES/kdevgrepview.mo share/locale/uk/LC_MESSAGES/kdevheaptrack.mo share/locale/uk/LC_MESSAGES/kdevkonsole.mo share/locale/uk/LC_MESSAGES/kdevlldb.mo share/locale/uk/LC_MESSAGES/kdevmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevmanpage.mo share/locale/uk/LC_MESSAGES/kdevmesonmanager.mo share/locale/uk/LC_MESSAGES/kdevninja.mo share/locale/uk/LC_MESSAGES/kdevokteta.mo share/locale/uk/LC_MESSAGES/kdevopenwith.mo share/locale/uk/LC_MESSAGES/kdevoutlineview.mo share/locale/uk/LC_MESSAGES/kdevpatchreview.mo share/locale/uk/LC_MESSAGES/kdevperforce.mo share/locale/uk/LC_MESSAGES/kdevplatform.mo share/locale/uk/LC_MESSAGES/kdevproblemreporter.mo share/locale/uk/LC_MESSAGES/kdevprojectfilter.mo share/locale/uk/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/uk/LC_MESSAGES/kdevqmakebuilder.mo share/locale/uk/LC_MESSAGES/kdevqmakemanager.mo share/locale/uk/LC_MESSAGES/kdevqmljs.mo share/locale/uk/LC_MESSAGES/kdevqthelp.mo share/locale/uk/LC_MESSAGES/kdevquickopen.mo share/locale/uk/LC_MESSAGES/kdevscratchpad.mo share/locale/uk/LC_MESSAGES/kdevsourceformatter.mo share/locale/uk/LC_MESSAGES/kdevstandardoutputview.mo share/locale/uk/LC_MESSAGES/kdevsubversion.mo share/locale/uk/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/uk/LC_MESSAGES/kdevtestview.mo share/locale/uk/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/uk/LC_MESSAGES/kdevwelcomepage.mo share/locale/uk/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/uk/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/vi/LC_MESSAGES/plasma_runner_kdevelopsessions.mo +share/locale/xh/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevandroid.mo share/locale/zh_CN/LC_MESSAGES/kdevappwizard.mo share/locale/zh_CN/LC_MESSAGES/kdevastyle.mo share/locale/zh_CN/LC_MESSAGES/kdevbazaar.mo share/locale/zh_CN/LC_MESSAGES/kdevclang.mo share/locale/zh_CN/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_CN/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevclazy.mo share/locale/zh_CN/LC_MESSAGES/kdevcmake.mo share/locale/zh_CN/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_CN/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_CN/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_CN/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_CN/LC_MESSAGES/kdevcustommake.mo share/locale/zh_CN/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_CN/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_CN/LC_MESSAGES/kdevdocker.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_CN/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_CN/LC_MESSAGES/kdevelop.mo share/locale/zh_CN/LC_MESSAGES/kdevexecute.mo share/locale/zh_CN/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_CN/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_CN/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_CN/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_CN/LC_MESSAGES/kdevflatpak.mo share/locale/zh_CN/LC_MESSAGES/kdevgdb.mo share/locale/zh_CN/LC_MESSAGES/kdevghprovider.mo share/locale/zh_CN/LC_MESSAGES/kdevgit.mo share/locale/zh_CN/LC_MESSAGES/kdevgrepview.mo share/locale/zh_CN/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_CN/LC_MESSAGES/kdevkonsole.mo share/locale/zh_CN/LC_MESSAGES/kdevlldb.mo share/locale/zh_CN/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevmanpage.mo share/locale/zh_CN/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_CN/LC_MESSAGES/kdevninja.mo share/locale/zh_CN/LC_MESSAGES/kdevokteta.mo share/locale/zh_CN/LC_MESSAGES/kdevopenwith.mo share/locale/zh_CN/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_CN/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_CN/LC_MESSAGES/kdevperforce.mo share/locale/zh_CN/LC_MESSAGES/kdevplatform.mo share/locale/zh_CN/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_CN/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_CN/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_CN/LC_MESSAGES/kdevqmljs.mo share/locale/zh_CN/LC_MESSAGES/kdevqthelp.mo share/locale/zh_CN/LC_MESSAGES/kdevquickopen.mo share/locale/zh_CN/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_CN/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_CN/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_CN/LC_MESSAGES/kdevsubversion.mo share/locale/zh_CN/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_CN/LC_MESSAGES/kdevtestview.mo share/locale/zh_CN/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_CN/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_CN/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/kdevandroid.mo share/locale/zh_TW/LC_MESSAGES/kdevappwizard.mo share/locale/zh_TW/LC_MESSAGES/kdevastyle.mo share/locale/zh_TW/LC_MESSAGES/kdevbazaar.mo share/locale/zh_TW/LC_MESSAGES/kdevclang.mo share/locale/zh_TW/LC_MESSAGES/kdevclangtidy.mo share/locale/zh_TW/LC_MESSAGES/kdevclassbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevclazy.mo share/locale/zh_TW/LC_MESSAGES/kdevcmake.mo share/locale/zh_TW/LC_MESSAGES/kdevcmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevcodeutils.mo share/locale/zh_TW/LC_MESSAGES/kdevcompileanalyzercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevcontextbrowser.mo share/locale/zh_TW/LC_MESSAGES/kdevcppcheck.mo share/locale/zh_TW/LC_MESSAGES/kdevcustombuildsystem.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomdefinesandincludes.mo share/locale/zh_TW/LC_MESSAGES/kdevcustommake.mo share/locale/zh_TW/LC_MESSAGES/kdevcustomscript.mo share/locale/zh_TW/LC_MESSAGES/kdevdebuggercommon.mo share/locale/zh_TW/LC_MESSAGES/kdevdocker.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentswitcher.mo share/locale/zh_TW/LC_MESSAGES/kdevdocumentview.mo share/locale/zh_TW/LC_MESSAGES/kdevelop.mo share/locale/zh_TW/LC_MESSAGES/kdevexecute.mo share/locale/zh_TW/LC_MESSAGES/kdevexecuteplasmoid.mo share/locale/zh_TW/LC_MESSAGES/kdevexecutescript.mo share/locale/zh_TW/LC_MESSAGES/kdevexternalscript.mo share/locale/zh_TW/LC_MESSAGES/kdevfilemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevfiletemplates.mo share/locale/zh_TW/LC_MESSAGES/kdevflatpak.mo share/locale/zh_TW/LC_MESSAGES/kdevgdb.mo share/locale/zh_TW/LC_MESSAGES/kdevghprovider.mo share/locale/zh_TW/LC_MESSAGES/kdevgit.mo share/locale/zh_TW/LC_MESSAGES/kdevgrepview.mo share/locale/zh_TW/LC_MESSAGES/kdevheaptrack.mo share/locale/zh_TW/LC_MESSAGES/kdevkonsole.mo share/locale/zh_TW/LC_MESSAGES/kdevlldb.mo share/locale/zh_TW/LC_MESSAGES/kdevmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevmanpage.mo share/locale/zh_TW/LC_MESSAGES/kdevmesonmanager.mo share/locale/zh_TW/LC_MESSAGES/kdevninja.mo share/locale/zh_TW/LC_MESSAGES/kdevokteta.mo share/locale/zh_TW/LC_MESSAGES/kdevopenwith.mo share/locale/zh_TW/LC_MESSAGES/kdevoutlineview.mo share/locale/zh_TW/LC_MESSAGES/kdevpatchreview.mo share/locale/zh_TW/LC_MESSAGES/kdevperforce.mo share/locale/zh_TW/LC_MESSAGES/kdevplatform.mo share/locale/zh_TW/LC_MESSAGES/kdevproblemreporter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectfilter.mo share/locale/zh_TW/LC_MESSAGES/kdevprojectmanagerview.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakebuilder.mo share/locale/zh_TW/LC_MESSAGES/kdevqmakemanager.mo share/locale/zh_TW/LC_MESSAGES/kdevqmljs.mo share/locale/zh_TW/LC_MESSAGES/kdevqthelp.mo share/locale/zh_TW/LC_MESSAGES/kdevquickopen.mo share/locale/zh_TW/LC_MESSAGES/kdevscratchpad.mo share/locale/zh_TW/LC_MESSAGES/kdevsourceformatter.mo share/locale/zh_TW/LC_MESSAGES/kdevstandardoutputview.mo share/locale/zh_TW/LC_MESSAGES/kdevsubversion.mo share/locale/zh_TW/LC_MESSAGES/kdevswitchtobuddy.mo share/locale/zh_TW/LC_MESSAGES/kdevtestview.mo share/locale/zh_TW/LC_MESSAGES/kdevvcsprojectintegration.mo share/locale/zh_TW/LC_MESSAGES/kdevwelcomepage.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_kdevelopsessions.mo share/locale/zh_TW/LC_MESSAGES/plasma_runner_kdevelopsessions.mo share/metainfo/org.kde.kdevelop.appdata.xml share/mime/packages/kdevclang.xml share/mime/packages/kdevelop.xml share/mime/packages/kdevgit.xml share/plasma/plasmoids/kdevelopsessions/contents/ui/kdevelopsessions.qml share/plasma/plasmoids/kdevelopsessions/metadata.desktop share/qlogging-categories5/kdevelop.categories share/qlogging-categories5/kdevplatform.categories diff --git a/devel/kio-extras/distinfo b/devel/kio-extras/distinfo index a0489c99ab84..52e4b9a2bd18 100644 --- a/devel/kio-extras/distinfo +++ b/devel/kio-extras/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539447 -SHA256 (KDE/release-service/22.08.3/kio-extras-22.08.3.tar.xz) = 2836c9417044c4aba8594b7b355edf55aa686c5c40cfde7bf1e4f118843a73eb -SIZE (KDE/release-service/22.08.3/kio-extras-22.08.3.tar.xz) = 643892 +TIMESTAMP = 1670513045 +SHA256 (KDE/release-service/22.12.0/kio-extras-22.12.0.tar.xz) = 4815a2f231bb8aa29ac4d38ea5c243238d2042dab6261583e0282cc71c6efa51 +SIZE (KDE/release-service/22.12.0/kio-extras-22.12.0.tar.xz) = 1395612 diff --git a/devel/kio-extras/pkg-plist b/devel/kio-extras/pkg-plist index d46ff4a75064..eb29c1167e0f 100644 --- a/devel/kio-extras/pkg-plist +++ b/devel/kio-extras/pkg-plist @@ -1,818 +1,1083 @@ include/KF5/kio_archivebase.h include/KF5/libkioarchive_export.h lib/cmake/KioArchive/KioArchiveConfig.cmake lib/cmake/KioArchive/KioArchiveConfigVersion.cmake lib/cmake/KioArchive/KioArchiveTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KioArchive/KioArchiveTargets.cmake %%SAMBA%%lib/libexec/kf5/smbnotifier lib/libkioarchive.so.5 lib/libkioarchive.so.5.97.0 %%QT_PLUGINDIR%%/kf5/kded/filenamesearchmodule.so %%QT_PLUGINDIR%%/kf5/kded/recentdocumentsnotifier.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kded/smbwatcher.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/kactivitymanagerd_fileitem_linking_plugin.so %%QT_PLUGINDIR%%/kf5/kio/about.so %%QT_PLUGINDIR%%/kf5/kio/activities.so %%QT_PLUGINDIR%%/kf5/kio/archive.so %%QT_PLUGINDIR%%/kf5/kio/bookmarks.so %%QT_PLUGINDIR%%/kf5/kio/filter.so %%QT_PLUGINDIR%%/kf5/kio/fish.so %%QT_PLUGINDIR%%/kf5/kio/info.so %%QT_PLUGINDIR%%/kf5/kio/kio_filenamesearch.so %%QT_PLUGINDIR%%/kf5/kio/man.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kio/mtp.so %%QT_PLUGINDIR%%/kf5/kio/recentdocuments.so %%SSH%%%%QT_PLUGINDIR%%/kf5/kio/sftp.so %%SAMBA%%%%QT_PLUGINDIR%%/kf5/kio/smb.so %%QT_PLUGINDIR%%/kf5/kio/thumbnail.so %%MTP%%%%QT_PLUGINDIR%%/kf5/kiod/kmtpd.so %%TAGLIB%%%%QT_PLUGINDIR%%/kf5/thumbcreator/audiothumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/comicbookthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/cursorthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/djvuthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/ebookthumbnail.so %%EXR%%%%QT_PLUGINDIR%%/kf5/thumbcreator/exrthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/imagethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/jpegthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/kritathumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/opendocumentthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/svgthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/textthumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsexethumbnail.so %%QT_PLUGINDIR%%/kf5/thumbcreator/windowsimagethumbnail.so %%QT_PLUGINDIR%%/kfileaudiopreview.so share/config.kcfg/jpegcreatorsettings5.kcfg %%MTP%%share/dbus-1/services/org.kde.kmtpd5.service share/kio_bookmarks/kio_bookmarks.css share/kio_docfilter/kio_docfilter.css share/kio_info/kde-info2html share/kio_info/kde-info2html.conf %%MTP%%share/konqueror/dirtree/remote/mtp-network.desktop %%SAMBA%%share/konqueror/dirtree/remote/smb-network.desktop share/kservices5/directorythumbnail.desktop share/kservicetypes5/thumbcreator.desktop +share/locale/af/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/af/LC_MESSAGES/kio5_archive.mo +share/locale/af/LC_MESSAGES/kio5_fish.mo +share/locale/af/LC_MESSAGES/kio5_man.mo +share/locale/af/LC_MESSAGES/kio5_nfs.mo +share/locale/af/LC_MESSAGES/kio5_sftp.mo +share/locale/af/LC_MESSAGES/kio5_smb.mo +share/locale/af/LC_MESSAGES/kio5_thumbnail.mo share/locale/ar/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ar/LC_MESSAGES/kio5_activities.mo share/locale/ar/LC_MESSAGES/kio5_archive.mo share/locale/ar/LC_MESSAGES/kio5_bookmarks.mo share/locale/ar/LC_MESSAGES/kio5_fish.mo share/locale/ar/LC_MESSAGES/kio5_info.mo share/locale/ar/LC_MESSAGES/kio5_man.mo share/locale/ar/LC_MESSAGES/kio5_mtp.mo share/locale/ar/LC_MESSAGES/kio5_nfs.mo share/locale/ar/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ar/LC_MESSAGES/kio5_sftp.mo share/locale/ar/LC_MESSAGES/kio5_smb.mo share/locale/ar/LC_MESSAGES/kio5_thumbnail.mo -share/locale/ast/LC_MESSAGES/kio5_fish.mo -share/locale/ast/LC_MESSAGES/kio5_info.mo -share/locale/ast/LC_MESSAGES/kio5_mtp.mo -share/locale/ast/LC_MESSAGES/kio5_recentdocuments.mo share/locale/be/LC_MESSAGES/kfileaudiopreview5.mo share/locale/be/LC_MESSAGES/kio5_archive.mo share/locale/be/LC_MESSAGES/kio5_fish.mo share/locale/be/LC_MESSAGES/kio5_man.mo share/locale/be/LC_MESSAGES/kio5_nfs.mo share/locale/be/LC_MESSAGES/kio5_sftp.mo share/locale/be/LC_MESSAGES/kio5_smb.mo share/locale/be/LC_MESSAGES/kio5_thumbnail.mo +share/locale/be@latin/LC_MESSAGES/kio5_archive.mo +share/locale/be@latin/LC_MESSAGES/kio5_bookmarks.mo +share/locale/be@latin/LC_MESSAGES/kio5_fish.mo +share/locale/be@latin/LC_MESSAGES/kio5_man.mo +share/locale/be@latin/LC_MESSAGES/kio5_nfs.mo +share/locale/be@latin/LC_MESSAGES/kio5_smb.mo +share/locale/be@latin/LC_MESSAGES/kio5_thumbnail.mo share/locale/bg/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bg/LC_MESSAGES/kio5_activities.mo share/locale/bg/LC_MESSAGES/kio5_archive.mo share/locale/bg/LC_MESSAGES/kio5_bookmarks.mo share/locale/bg/LC_MESSAGES/kio5_fish.mo share/locale/bg/LC_MESSAGES/kio5_info.mo share/locale/bg/LC_MESSAGES/kio5_man.mo share/locale/bg/LC_MESSAGES/kio5_mtp.mo share/locale/bg/LC_MESSAGES/kio5_nfs.mo share/locale/bg/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bg/LC_MESSAGES/kio5_sftp.mo share/locale/bg/LC_MESSAGES/kio5_smb.mo share/locale/bg/LC_MESSAGES/kio5_thumbnail.mo +share/locale/bn/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/bn/LC_MESSAGES/kio5_fish.mo +share/locale/bn/LC_MESSAGES/kio5_man.mo +share/locale/bn/LC_MESSAGES/kio5_nfs.mo +share/locale/bn_IN/LC_MESSAGES/kio5_archive.mo +share/locale/bn_IN/LC_MESSAGES/kio5_bookmarks.mo +share/locale/bn_IN/LC_MESSAGES/kio5_fish.mo +share/locale/bn_IN/LC_MESSAGES/kio5_man.mo +share/locale/bn_IN/LC_MESSAGES/kio5_nfs.mo +share/locale/bn_IN/LC_MESSAGES/kio5_sftp.mo +share/locale/bn_IN/LC_MESSAGES/kio5_smb.mo +share/locale/bn_IN/LC_MESSAGES/kio5_thumbnail.mo +share/locale/br/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/br/LC_MESSAGES/kio5_fish.mo +share/locale/br/LC_MESSAGES/kio5_man.mo +share/locale/br/LC_MESSAGES/kio5_nfs.mo +share/locale/br/LC_MESSAGES/kio5_sftp.mo +share/locale/br/LC_MESSAGES/kio5_smb.mo +share/locale/br/LC_MESSAGES/kio5_thumbnail.mo share/locale/bs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/bs/LC_MESSAGES/kio5_activities.mo share/locale/bs/LC_MESSAGES/kio5_archive.mo share/locale/bs/LC_MESSAGES/kio5_bookmarks.mo share/locale/bs/LC_MESSAGES/kio5_fish.mo share/locale/bs/LC_MESSAGES/kio5_info.mo share/locale/bs/LC_MESSAGES/kio5_man.mo share/locale/bs/LC_MESSAGES/kio5_mtp.mo share/locale/bs/LC_MESSAGES/kio5_nfs.mo share/locale/bs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/bs/LC_MESSAGES/kio5_sftp.mo share/locale/bs/LC_MESSAGES/kio5_smb.mo share/locale/bs/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca/LC_MESSAGES/kio5_activities.mo share/locale/ca/LC_MESSAGES/kio5_archive.mo share/locale/ca/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca/LC_MESSAGES/kio5_fish.mo share/locale/ca/LC_MESSAGES/kio5_info.mo share/locale/ca/LC_MESSAGES/kio5_man.mo share/locale/ca/LC_MESSAGES/kio5_mtp.mo share/locale/ca/LC_MESSAGES/kio5_nfs.mo share/locale/ca/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca/LC_MESSAGES/kio5_sftp.mo share/locale/ca/LC_MESSAGES/kio5_smb.mo share/locale/ca/LC_MESSAGES/kio5_thumbnail.mo share/locale/ca@valencia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ca@valencia/LC_MESSAGES/kio5_activities.mo share/locale/ca@valencia/LC_MESSAGES/kio5_archive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kio5_fish.mo share/locale/ca@valencia/LC_MESSAGES/kio5_info.mo share/locale/ca@valencia/LC_MESSAGES/kio5_man.mo share/locale/ca@valencia/LC_MESSAGES/kio5_mtp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_nfs.mo share/locale/ca@valencia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ca@valencia/LC_MESSAGES/kio5_sftp.mo share/locale/ca@valencia/LC_MESSAGES/kio5_smb.mo share/locale/ca@valencia/LC_MESSAGES/kio5_thumbnail.mo share/locale/cs/LC_MESSAGES/kfileaudiopreview5.mo share/locale/cs/LC_MESSAGES/kio5_activities.mo share/locale/cs/LC_MESSAGES/kio5_archive.mo share/locale/cs/LC_MESSAGES/kio5_bookmarks.mo share/locale/cs/LC_MESSAGES/kio5_fish.mo share/locale/cs/LC_MESSAGES/kio5_info.mo share/locale/cs/LC_MESSAGES/kio5_man.mo share/locale/cs/LC_MESSAGES/kio5_mtp.mo share/locale/cs/LC_MESSAGES/kio5_nfs.mo share/locale/cs/LC_MESSAGES/kio5_recentdocuments.mo share/locale/cs/LC_MESSAGES/kio5_sftp.mo share/locale/cs/LC_MESSAGES/kio5_smb.mo share/locale/cs/LC_MESSAGES/kio5_thumbnail.mo +share/locale/csb/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/csb/LC_MESSAGES/kio5_archive.mo +share/locale/csb/LC_MESSAGES/kio5_fish.mo +share/locale/csb/LC_MESSAGES/kio5_man.mo +share/locale/csb/LC_MESSAGES/kio5_nfs.mo +share/locale/csb/LC_MESSAGES/kio5_sftp.mo +share/locale/csb/LC_MESSAGES/kio5_smb.mo +share/locale/csb/LC_MESSAGES/kio5_thumbnail.mo +share/locale/cy/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/cy/LC_MESSAGES/kio5_fish.mo +share/locale/cy/LC_MESSAGES/kio5_man.mo +share/locale/cy/LC_MESSAGES/kio5_nfs.mo +share/locale/cy/LC_MESSAGES/kio5_sftp.mo +share/locale/cy/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kfileaudiopreview5.mo share/locale/da/LC_MESSAGES/kio5_activities.mo share/locale/da/LC_MESSAGES/kio5_archive.mo share/locale/da/LC_MESSAGES/kio5_bookmarks.mo share/locale/da/LC_MESSAGES/kio5_fish.mo share/locale/da/LC_MESSAGES/kio5_info.mo share/locale/da/LC_MESSAGES/kio5_man.mo share/locale/da/LC_MESSAGES/kio5_mtp.mo share/locale/da/LC_MESSAGES/kio5_nfs.mo share/locale/da/LC_MESSAGES/kio5_recentdocuments.mo share/locale/da/LC_MESSAGES/kio5_sftp.mo share/locale/da/LC_MESSAGES/kio5_smb.mo share/locale/da/LC_MESSAGES/kio5_thumbnail.mo share/locale/de/LC_MESSAGES/kfileaudiopreview5.mo share/locale/de/LC_MESSAGES/kio5_activities.mo share/locale/de/LC_MESSAGES/kio5_archive.mo share/locale/de/LC_MESSAGES/kio5_bookmarks.mo share/locale/de/LC_MESSAGES/kio5_fish.mo share/locale/de/LC_MESSAGES/kio5_info.mo share/locale/de/LC_MESSAGES/kio5_man.mo share/locale/de/LC_MESSAGES/kio5_mtp.mo share/locale/de/LC_MESSAGES/kio5_nfs.mo share/locale/de/LC_MESSAGES/kio5_recentdocuments.mo share/locale/de/LC_MESSAGES/kio5_sftp.mo share/locale/de/LC_MESSAGES/kio5_smb.mo share/locale/de/LC_MESSAGES/kio5_thumbnail.mo share/locale/el/LC_MESSAGES/kfileaudiopreview5.mo share/locale/el/LC_MESSAGES/kio5_activities.mo share/locale/el/LC_MESSAGES/kio5_archive.mo share/locale/el/LC_MESSAGES/kio5_bookmarks.mo share/locale/el/LC_MESSAGES/kio5_fish.mo share/locale/el/LC_MESSAGES/kio5_info.mo share/locale/el/LC_MESSAGES/kio5_man.mo share/locale/el/LC_MESSAGES/kio5_mtp.mo share/locale/el/LC_MESSAGES/kio5_nfs.mo share/locale/el/LC_MESSAGES/kio5_recentdocuments.mo share/locale/el/LC_MESSAGES/kio5_sftp.mo share/locale/el/LC_MESSAGES/kio5_smb.mo share/locale/el/LC_MESSAGES/kio5_thumbnail.mo share/locale/en_GB/LC_MESSAGES/kfileaudiopreview5.mo share/locale/en_GB/LC_MESSAGES/kio5_activities.mo share/locale/en_GB/LC_MESSAGES/kio5_archive.mo share/locale/en_GB/LC_MESSAGES/kio5_bookmarks.mo share/locale/en_GB/LC_MESSAGES/kio5_fish.mo share/locale/en_GB/LC_MESSAGES/kio5_info.mo share/locale/en_GB/LC_MESSAGES/kio5_man.mo share/locale/en_GB/LC_MESSAGES/kio5_mtp.mo share/locale/en_GB/LC_MESSAGES/kio5_nfs.mo share/locale/en_GB/LC_MESSAGES/kio5_recentdocuments.mo share/locale/en_GB/LC_MESSAGES/kio5_sftp.mo share/locale/en_GB/LC_MESSAGES/kio5_smb.mo share/locale/en_GB/LC_MESSAGES/kio5_thumbnail.mo share/locale/eo/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eo/LC_MESSAGES/kio5_archive.mo share/locale/eo/LC_MESSAGES/kio5_bookmarks.mo share/locale/eo/LC_MESSAGES/kio5_fish.mo share/locale/eo/LC_MESSAGES/kio5_info.mo share/locale/eo/LC_MESSAGES/kio5_man.mo share/locale/eo/LC_MESSAGES/kio5_nfs.mo share/locale/eo/LC_MESSAGES/kio5_sftp.mo share/locale/eo/LC_MESSAGES/kio5_smb.mo share/locale/eo/LC_MESSAGES/kio5_thumbnail.mo share/locale/es/LC_MESSAGES/kfileaudiopreview5.mo share/locale/es/LC_MESSAGES/kio5_activities.mo share/locale/es/LC_MESSAGES/kio5_archive.mo share/locale/es/LC_MESSAGES/kio5_bookmarks.mo share/locale/es/LC_MESSAGES/kio5_fish.mo share/locale/es/LC_MESSAGES/kio5_info.mo share/locale/es/LC_MESSAGES/kio5_man.mo share/locale/es/LC_MESSAGES/kio5_mtp.mo share/locale/es/LC_MESSAGES/kio5_nfs.mo share/locale/es/LC_MESSAGES/kio5_recentdocuments.mo share/locale/es/LC_MESSAGES/kio5_sftp.mo share/locale/es/LC_MESSAGES/kio5_smb.mo share/locale/es/LC_MESSAGES/kio5_thumbnail.mo share/locale/et/LC_MESSAGES/kfileaudiopreview5.mo share/locale/et/LC_MESSAGES/kio5_activities.mo share/locale/et/LC_MESSAGES/kio5_archive.mo share/locale/et/LC_MESSAGES/kio5_bookmarks.mo share/locale/et/LC_MESSAGES/kio5_fish.mo share/locale/et/LC_MESSAGES/kio5_info.mo share/locale/et/LC_MESSAGES/kio5_man.mo share/locale/et/LC_MESSAGES/kio5_mtp.mo share/locale/et/LC_MESSAGES/kio5_nfs.mo share/locale/et/LC_MESSAGES/kio5_recentdocuments.mo share/locale/et/LC_MESSAGES/kio5_sftp.mo share/locale/et/LC_MESSAGES/kio5_smb.mo share/locale/et/LC_MESSAGES/kio5_thumbnail.mo share/locale/eu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/eu/LC_MESSAGES/kio5_activities.mo share/locale/eu/LC_MESSAGES/kio5_archive.mo share/locale/eu/LC_MESSAGES/kio5_bookmarks.mo share/locale/eu/LC_MESSAGES/kio5_fish.mo share/locale/eu/LC_MESSAGES/kio5_info.mo share/locale/eu/LC_MESSAGES/kio5_man.mo share/locale/eu/LC_MESSAGES/kio5_mtp.mo share/locale/eu/LC_MESSAGES/kio5_nfs.mo share/locale/eu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/eu/LC_MESSAGES/kio5_sftp.mo share/locale/eu/LC_MESSAGES/kio5_smb.mo share/locale/eu/LC_MESSAGES/kio5_thumbnail.mo share/locale/fa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fa/LC_MESSAGES/kio5_archive.mo share/locale/fa/LC_MESSAGES/kio5_bookmarks.mo share/locale/fa/LC_MESSAGES/kio5_fish.mo share/locale/fa/LC_MESSAGES/kio5_info.mo share/locale/fa/LC_MESSAGES/kio5_man.mo share/locale/fa/LC_MESSAGES/kio5_nfs.mo share/locale/fa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fa/LC_MESSAGES/kio5_sftp.mo share/locale/fa/LC_MESSAGES/kio5_smb.mo share/locale/fa/LC_MESSAGES/kio5_thumbnail.mo share/locale/fi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fi/LC_MESSAGES/kio5_activities.mo share/locale/fi/LC_MESSAGES/kio5_archive.mo share/locale/fi/LC_MESSAGES/kio5_bookmarks.mo share/locale/fi/LC_MESSAGES/kio5_fish.mo share/locale/fi/LC_MESSAGES/kio5_info.mo share/locale/fi/LC_MESSAGES/kio5_man.mo share/locale/fi/LC_MESSAGES/kio5_mtp.mo share/locale/fi/LC_MESSAGES/kio5_nfs.mo share/locale/fi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fi/LC_MESSAGES/kio5_sftp.mo share/locale/fi/LC_MESSAGES/kio5_smb.mo share/locale/fi/LC_MESSAGES/kio5_thumbnail.mo share/locale/fr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/fr/LC_MESSAGES/kio5_activities.mo share/locale/fr/LC_MESSAGES/kio5_archive.mo share/locale/fr/LC_MESSAGES/kio5_bookmarks.mo share/locale/fr/LC_MESSAGES/kio5_fish.mo share/locale/fr/LC_MESSAGES/kio5_info.mo share/locale/fr/LC_MESSAGES/kio5_man.mo share/locale/fr/LC_MESSAGES/kio5_mtp.mo share/locale/fr/LC_MESSAGES/kio5_nfs.mo share/locale/fr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/fr/LC_MESSAGES/kio5_sftp.mo share/locale/fr/LC_MESSAGES/kio5_smb.mo share/locale/fr/LC_MESSAGES/kio5_thumbnail.mo +share/locale/fy/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/fy/LC_MESSAGES/kio5_archive.mo +share/locale/fy/LC_MESSAGES/kio5_bookmarks.mo +share/locale/fy/LC_MESSAGES/kio5_fish.mo +share/locale/fy/LC_MESSAGES/kio5_info.mo +share/locale/fy/LC_MESSAGES/kio5_man.mo +share/locale/fy/LC_MESSAGES/kio5_nfs.mo +share/locale/fy/LC_MESSAGES/kio5_sftp.mo +share/locale/fy/LC_MESSAGES/kio5_smb.mo +share/locale/fy/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/gd/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/gl/LC_MESSAGES/kio5_activities.mo share/locale/gl/LC_MESSAGES/kio5_archive.mo share/locale/gl/LC_MESSAGES/kio5_bookmarks.mo share/locale/gl/LC_MESSAGES/kio5_fish.mo share/locale/gl/LC_MESSAGES/kio5_info.mo share/locale/gl/LC_MESSAGES/kio5_man.mo share/locale/gl/LC_MESSAGES/kio5_mtp.mo share/locale/gl/LC_MESSAGES/kio5_nfs.mo share/locale/gl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/gl/LC_MESSAGES/kio5_sftp.mo share/locale/gl/LC_MESSAGES/kio5_smb.mo share/locale/gl/LC_MESSAGES/kio5_thumbnail.mo +share/locale/gu/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/gu/LC_MESSAGES/kio5_activities.mo +share/locale/gu/LC_MESSAGES/kio5_archive.mo +share/locale/gu/LC_MESSAGES/kio5_bookmarks.mo +share/locale/gu/LC_MESSAGES/kio5_fish.mo +share/locale/gu/LC_MESSAGES/kio5_info.mo +share/locale/gu/LC_MESSAGES/kio5_man.mo +share/locale/gu/LC_MESSAGES/kio5_nfs.mo +share/locale/gu/LC_MESSAGES/kio5_sftp.mo +share/locale/gu/LC_MESSAGES/kio5_smb.mo +share/locale/gu/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/hne/LC_MESSAGES/kio5_archive.mo +share/locale/hne/LC_MESSAGES/kio5_fish.mo +share/locale/hne/LC_MESSAGES/kio5_man.mo +share/locale/hne/LC_MESSAGES/kio5_nfs.mo +share/locale/hne/LC_MESSAGES/kio5_sftp.mo +share/locale/hne/LC_MESSAGES/kio5_smb.mo +share/locale/hne/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/hsb/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/hsb/LC_MESSAGES/kio5_archive.mo +share/locale/hsb/LC_MESSAGES/kio5_bookmarks.mo +share/locale/hsb/LC_MESSAGES/kio5_fish.mo +share/locale/hsb/LC_MESSAGES/kio5_man.mo +share/locale/hsb/LC_MESSAGES/kio5_nfs.mo +share/locale/hsb/LC_MESSAGES/kio5_sftp.mo +share/locale/hsb/LC_MESSAGES/kio5_smb.mo +share/locale/hsb/LC_MESSAGES/kio5_thumbnail.mo share/locale/hu/LC_MESSAGES/kfileaudiopreview5.mo share/locale/hu/LC_MESSAGES/kio5_activities.mo share/locale/hu/LC_MESSAGES/kio5_archive.mo share/locale/hu/LC_MESSAGES/kio5_bookmarks.mo share/locale/hu/LC_MESSAGES/kio5_fish.mo share/locale/hu/LC_MESSAGES/kio5_info.mo share/locale/hu/LC_MESSAGES/kio5_man.mo share/locale/hu/LC_MESSAGES/kio5_mtp.mo share/locale/hu/LC_MESSAGES/kio5_nfs.mo share/locale/hu/LC_MESSAGES/kio5_recentdocuments.mo share/locale/hu/LC_MESSAGES/kio5_sftp.mo share/locale/hu/LC_MESSAGES/kio5_smb.mo share/locale/hu/LC_MESSAGES/kio5_thumbnail.mo +share/locale/hy/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/hy/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ia/LC_MESSAGES/kio5_activities.mo share/locale/ia/LC_MESSAGES/kio5_archive.mo share/locale/ia/LC_MESSAGES/kio5_bookmarks.mo share/locale/ia/LC_MESSAGES/kio5_fish.mo share/locale/ia/LC_MESSAGES/kio5_info.mo share/locale/ia/LC_MESSAGES/kio5_man.mo share/locale/ia/LC_MESSAGES/kio5_mtp.mo share/locale/ia/LC_MESSAGES/kio5_nfs.mo share/locale/ia/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ia/LC_MESSAGES/kio5_sftp.mo share/locale/ia/LC_MESSAGES/kio5_smb.mo share/locale/ia/LC_MESSAGES/kio5_thumbnail.mo share/locale/id/LC_MESSAGES/kfileaudiopreview5.mo share/locale/id/LC_MESSAGES/kio5_activities.mo share/locale/id/LC_MESSAGES/kio5_archive.mo share/locale/id/LC_MESSAGES/kio5_bookmarks.mo share/locale/id/LC_MESSAGES/kio5_fish.mo share/locale/id/LC_MESSAGES/kio5_info.mo share/locale/id/LC_MESSAGES/kio5_man.mo share/locale/id/LC_MESSAGES/kio5_mtp.mo share/locale/id/LC_MESSAGES/kio5_nfs.mo share/locale/id/LC_MESSAGES/kio5_recentdocuments.mo share/locale/id/LC_MESSAGES/kio5_sftp.mo share/locale/id/LC_MESSAGES/kio5_smb.mo share/locale/id/LC_MESSAGES/kio5_thumbnail.mo +share/locale/ie/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/ie/LC_MESSAGES/kio5_archive.mo +share/locale/ie/LC_MESSAGES/kio5_mtp.mo share/locale/is/LC_MESSAGES/kfileaudiopreview5.mo share/locale/is/LC_MESSAGES/kio5_activities.mo share/locale/is/LC_MESSAGES/kio5_archive.mo share/locale/is/LC_MESSAGES/kio5_bookmarks.mo share/locale/is/LC_MESSAGES/kio5_fish.mo share/locale/is/LC_MESSAGES/kio5_info.mo share/locale/is/LC_MESSAGES/kio5_man.mo share/locale/is/LC_MESSAGES/kio5_nfs.mo share/locale/is/LC_MESSAGES/kio5_recentdocuments.mo share/locale/is/LC_MESSAGES/kio5_sftp.mo share/locale/is/LC_MESSAGES/kio5_smb.mo share/locale/is/LC_MESSAGES/kio5_thumbnail.mo share/locale/it/LC_MESSAGES/kfileaudiopreview5.mo share/locale/it/LC_MESSAGES/kio5_activities.mo share/locale/it/LC_MESSAGES/kio5_archive.mo share/locale/it/LC_MESSAGES/kio5_bookmarks.mo share/locale/it/LC_MESSAGES/kio5_fish.mo share/locale/it/LC_MESSAGES/kio5_info.mo share/locale/it/LC_MESSAGES/kio5_man.mo share/locale/it/LC_MESSAGES/kio5_mtp.mo share/locale/it/LC_MESSAGES/kio5_nfs.mo share/locale/it/LC_MESSAGES/kio5_recentdocuments.mo share/locale/it/LC_MESSAGES/kio5_sftp.mo share/locale/it/LC_MESSAGES/kio5_smb.mo share/locale/it/LC_MESSAGES/kio5_thumbnail.mo share/locale/ja/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ja/LC_MESSAGES/kio5_activities.mo share/locale/ja/LC_MESSAGES/kio5_archive.mo share/locale/ja/LC_MESSAGES/kio5_bookmarks.mo share/locale/ja/LC_MESSAGES/kio5_fish.mo share/locale/ja/LC_MESSAGES/kio5_info.mo share/locale/ja/LC_MESSAGES/kio5_man.mo share/locale/ja/LC_MESSAGES/kio5_mtp.mo share/locale/ja/LC_MESSAGES/kio5_nfs.mo share/locale/ja/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ja/LC_MESSAGES/kio5_sftp.mo share/locale/ja/LC_MESSAGES/kio5_smb.mo share/locale/ja/LC_MESSAGES/kio5_thumbnail.mo +share/locale/ka/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/ka/LC_MESSAGES/kio5_activities.mo +share/locale/ka/LC_MESSAGES/kio5_archive.mo +share/locale/ka/LC_MESSAGES/kio5_bookmarks.mo +share/locale/ka/LC_MESSAGES/kio5_fish.mo +share/locale/ka/LC_MESSAGES/kio5_info.mo +share/locale/ka/LC_MESSAGES/kio5_man.mo +share/locale/ka/LC_MESSAGES/kio5_mtp.mo +share/locale/ka/LC_MESSAGES/kio5_nfs.mo +share/locale/ka/LC_MESSAGES/kio5_recentdocuments.mo +share/locale/ka/LC_MESSAGES/kio5_sftp.mo +share/locale/ka/LC_MESSAGES/kio5_smb.mo +share/locale/ka/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/kn/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/kn/LC_MESSAGES/kio5_activities.mo +share/locale/kn/LC_MESSAGES/kio5_archive.mo +share/locale/kn/LC_MESSAGES/kio5_bookmarks.mo +share/locale/kn/LC_MESSAGES/kio5_fish.mo +share/locale/kn/LC_MESSAGES/kio5_info.mo +share/locale/kn/LC_MESSAGES/kio5_man.mo +share/locale/kn/LC_MESSAGES/kio5_nfs.mo +share/locale/kn/LC_MESSAGES/kio5_sftp.mo +share/locale/kn/LC_MESSAGES/kio5_smb.mo +share/locale/kn/LC_MESSAGES/kio5_thumbnail.mo share/locale/ko/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ko/LC_MESSAGES/kio5_activities.mo share/locale/ko/LC_MESSAGES/kio5_archive.mo share/locale/ko/LC_MESSAGES/kio5_bookmarks.mo share/locale/ko/LC_MESSAGES/kio5_fish.mo share/locale/ko/LC_MESSAGES/kio5_info.mo share/locale/ko/LC_MESSAGES/kio5_man.mo share/locale/ko/LC_MESSAGES/kio5_mtp.mo share/locale/ko/LC_MESSAGES/kio5_nfs.mo share/locale/ko/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ko/LC_MESSAGES/kio5_sftp.mo share/locale/ko/LC_MESSAGES/kio5_smb.mo share/locale/ko/LC_MESSAGES/kio5_thumbnail.mo +share/locale/ku/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/ku/LC_MESSAGES/kio5_archive.mo +share/locale/ku/LC_MESSAGES/kio5_bookmarks.mo +share/locale/ku/LC_MESSAGES/kio5_fish.mo +share/locale/ku/LC_MESSAGES/kio5_man.mo +share/locale/ku/LC_MESSAGES/kio5_nfs.mo +share/locale/ku/LC_MESSAGES/kio5_sftp.mo +share/locale/ku/LC_MESSAGES/kio5_smb.mo +share/locale/ku/LC_MESSAGES/kio5_thumbnail.mo +share/locale/lb/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/lb/LC_MESSAGES/kio5_archive.mo +share/locale/lb/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lt/LC_MESSAGES/kio5_activities.mo share/locale/lt/LC_MESSAGES/kio5_archive.mo share/locale/lt/LC_MESSAGES/kio5_bookmarks.mo share/locale/lt/LC_MESSAGES/kio5_fish.mo share/locale/lt/LC_MESSAGES/kio5_info.mo share/locale/lt/LC_MESSAGES/kio5_man.mo share/locale/lt/LC_MESSAGES/kio5_mtp.mo share/locale/lt/LC_MESSAGES/kio5_nfs.mo share/locale/lt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lt/LC_MESSAGES/kio5_sftp.mo share/locale/lt/LC_MESSAGES/kio5_smb.mo share/locale/lt/LC_MESSAGES/kio5_thumbnail.mo share/locale/lv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/lv/LC_MESSAGES/kio5_activities.mo share/locale/lv/LC_MESSAGES/kio5_archive.mo share/locale/lv/LC_MESSAGES/kio5_bookmarks.mo share/locale/lv/LC_MESSAGES/kio5_fish.mo share/locale/lv/LC_MESSAGES/kio5_info.mo share/locale/lv/LC_MESSAGES/kio5_man.mo share/locale/lv/LC_MESSAGES/kio5_nfs.mo share/locale/lv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/lv/LC_MESSAGES/kio5_sftp.mo share/locale/lv/LC_MESSAGES/kio5_smb.mo share/locale/lv/LC_MESSAGES/kio5_thumbnail.mo +share/locale/mai/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/mai/LC_MESSAGES/kio5_archive.mo +share/locale/mai/LC_MESSAGES/kio5_bookmarks.mo +share/locale/mai/LC_MESSAGES/kio5_fish.mo +share/locale/mai/LC_MESSAGES/kio5_info.mo +share/locale/mai/LC_MESSAGES/kio5_man.mo +share/locale/mai/LC_MESSAGES/kio5_nfs.mo +share/locale/mai/LC_MESSAGES/kio5_sftp.mo +share/locale/mai/LC_MESSAGES/kio5_smb.mo +share/locale/mai/LC_MESSAGES/kio5_thumbnail.mo +share/locale/mk/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/mk/LC_MESSAGES/kio5_archive.mo +share/locale/mk/LC_MESSAGES/kio5_bookmarks.mo +share/locale/mk/LC_MESSAGES/kio5_fish.mo +share/locale/mk/LC_MESSAGES/kio5_man.mo +share/locale/mk/LC_MESSAGES/kio5_nfs.mo +share/locale/mk/LC_MESSAGES/kio5_sftp.mo +share/locale/mk/LC_MESSAGES/kio5_smb.mo +share/locale/mk/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/ms/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/ms/LC_MESSAGES/kio5_activities.mo +share/locale/ms/LC_MESSAGES/kio5_archive.mo +share/locale/ms/LC_MESSAGES/kio5_bookmarks.mo +share/locale/ms/LC_MESSAGES/kio5_fish.mo +share/locale/ms/LC_MESSAGES/kio5_info.mo +share/locale/ms/LC_MESSAGES/kio5_man.mo +share/locale/ms/LC_MESSAGES/kio5_nfs.mo +share/locale/ms/LC_MESSAGES/kio5_sftp.mo +share/locale/ms/LC_MESSAGES/kio5_smb.mo +share/locale/ms/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/ne/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/ne/LC_MESSAGES/kio5_archive.mo +share/locale/ne/LC_MESSAGES/kio5_fish.mo +share/locale/ne/LC_MESSAGES/kio5_man.mo +share/locale/ne/LC_MESSAGES/kio5_nfs.mo +share/locale/ne/LC_MESSAGES/kio5_sftp.mo +share/locale/ne/LC_MESSAGES/kio5_smb.mo +share/locale/ne/LC_MESSAGES/kio5_thumbnail.mo share/locale/nl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nl/LC_MESSAGES/kio5_activities.mo share/locale/nl/LC_MESSAGES/kio5_archive.mo share/locale/nl/LC_MESSAGES/kio5_bookmarks.mo share/locale/nl/LC_MESSAGES/kio5_fish.mo share/locale/nl/LC_MESSAGES/kio5_info.mo share/locale/nl/LC_MESSAGES/kio5_man.mo share/locale/nl/LC_MESSAGES/kio5_mtp.mo share/locale/nl/LC_MESSAGES/kio5_nfs.mo share/locale/nl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nl/LC_MESSAGES/kio5_sftp.mo share/locale/nl/LC_MESSAGES/kio5_smb.mo share/locale/nl/LC_MESSAGES/kio5_thumbnail.mo share/locale/nn/LC_MESSAGES/kfileaudiopreview5.mo share/locale/nn/LC_MESSAGES/kio5_activities.mo share/locale/nn/LC_MESSAGES/kio5_archive.mo share/locale/nn/LC_MESSAGES/kio5_bookmarks.mo share/locale/nn/LC_MESSAGES/kio5_fish.mo share/locale/nn/LC_MESSAGES/kio5_info.mo share/locale/nn/LC_MESSAGES/kio5_man.mo share/locale/nn/LC_MESSAGES/kio5_mtp.mo share/locale/nn/LC_MESSAGES/kio5_nfs.mo share/locale/nn/LC_MESSAGES/kio5_recentdocuments.mo share/locale/nn/LC_MESSAGES/kio5_sftp.mo share/locale/nn/LC_MESSAGES/kio5_smb.mo share/locale/nn/LC_MESSAGES/kio5_thumbnail.mo +share/locale/oc/LC_MESSAGES/kio5_archive.mo +share/locale/oc/LC_MESSAGES/kio5_fish.mo +share/locale/oc/LC_MESSAGES/kio5_man.mo +share/locale/oc/LC_MESSAGES/kio5_nfs.mo +share/locale/oc/LC_MESSAGES/kio5_sftp.mo +share/locale/oc/LC_MESSAGES/kio5_smb.mo +share/locale/oc/LC_MESSAGES/kio5_thumbnail.mo +share/locale/or/LC_MESSAGES/kio5_archive.mo +share/locale/or/LC_MESSAGES/kio5_bookmarks.mo +share/locale/or/LC_MESSAGES/kio5_fish.mo +share/locale/or/LC_MESSAGES/kio5_man.mo +share/locale/or/LC_MESSAGES/kio5_nfs.mo +share/locale/or/LC_MESSAGES/kio5_sftp.mo +share/locale/or/LC_MESSAGES/kio5_smb.mo +share/locale/or/LC_MESSAGES/kio5_thumbnail.mo share/locale/pa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pa/LC_MESSAGES/kio5_activities.mo share/locale/pa/LC_MESSAGES/kio5_archive.mo share/locale/pa/LC_MESSAGES/kio5_bookmarks.mo share/locale/pa/LC_MESSAGES/kio5_fish.mo share/locale/pa/LC_MESSAGES/kio5_info.mo share/locale/pa/LC_MESSAGES/kio5_man.mo share/locale/pa/LC_MESSAGES/kio5_mtp.mo share/locale/pa/LC_MESSAGES/kio5_nfs.mo share/locale/pa/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pa/LC_MESSAGES/kio5_sftp.mo share/locale/pa/LC_MESSAGES/kio5_smb.mo share/locale/pa/LC_MESSAGES/kio5_thumbnail.mo share/locale/pl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pl/LC_MESSAGES/kio5_activities.mo share/locale/pl/LC_MESSAGES/kio5_archive.mo share/locale/pl/LC_MESSAGES/kio5_bookmarks.mo share/locale/pl/LC_MESSAGES/kio5_fish.mo share/locale/pl/LC_MESSAGES/kio5_info.mo share/locale/pl/LC_MESSAGES/kio5_man.mo share/locale/pl/LC_MESSAGES/kio5_mtp.mo share/locale/pl/LC_MESSAGES/kio5_nfs.mo share/locale/pl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pl/LC_MESSAGES/kio5_sftp.mo share/locale/pl/LC_MESSAGES/kio5_smb.mo share/locale/pl/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt/LC_MESSAGES/kio5_activities.mo share/locale/pt/LC_MESSAGES/kio5_archive.mo share/locale/pt/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt/LC_MESSAGES/kio5_fish.mo share/locale/pt/LC_MESSAGES/kio5_info.mo share/locale/pt/LC_MESSAGES/kio5_man.mo share/locale/pt/LC_MESSAGES/kio5_mtp.mo share/locale/pt/LC_MESSAGES/kio5_nfs.mo share/locale/pt/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt/LC_MESSAGES/kio5_sftp.mo share/locale/pt/LC_MESSAGES/kio5_smb.mo share/locale/pt/LC_MESSAGES/kio5_thumbnail.mo share/locale/pt_BR/LC_MESSAGES/kfileaudiopreview5.mo share/locale/pt_BR/LC_MESSAGES/kio5_activities.mo share/locale/pt_BR/LC_MESSAGES/kio5_archive.mo share/locale/pt_BR/LC_MESSAGES/kio5_bookmarks.mo share/locale/pt_BR/LC_MESSAGES/kio5_fish.mo share/locale/pt_BR/LC_MESSAGES/kio5_info.mo share/locale/pt_BR/LC_MESSAGES/kio5_man.mo share/locale/pt_BR/LC_MESSAGES/kio5_mtp.mo share/locale/pt_BR/LC_MESSAGES/kio5_nfs.mo share/locale/pt_BR/LC_MESSAGES/kio5_recentdocuments.mo share/locale/pt_BR/LC_MESSAGES/kio5_sftp.mo share/locale/pt_BR/LC_MESSAGES/kio5_smb.mo share/locale/pt_BR/LC_MESSAGES/kio5_thumbnail.mo share/locale/ro/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ro/LC_MESSAGES/kio5_activities.mo share/locale/ro/LC_MESSAGES/kio5_archive.mo share/locale/ro/LC_MESSAGES/kio5_bookmarks.mo share/locale/ro/LC_MESSAGES/kio5_fish.mo share/locale/ro/LC_MESSAGES/kio5_info.mo share/locale/ro/LC_MESSAGES/kio5_man.mo share/locale/ro/LC_MESSAGES/kio5_mtp.mo share/locale/ro/LC_MESSAGES/kio5_nfs.mo share/locale/ro/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ro/LC_MESSAGES/kio5_sftp.mo share/locale/ro/LC_MESSAGES/kio5_smb.mo share/locale/ro/LC_MESSAGES/kio5_thumbnail.mo share/locale/ru/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ru/LC_MESSAGES/kio5_activities.mo share/locale/ru/LC_MESSAGES/kio5_archive.mo share/locale/ru/LC_MESSAGES/kio5_bookmarks.mo share/locale/ru/LC_MESSAGES/kio5_fish.mo share/locale/ru/LC_MESSAGES/kio5_info.mo share/locale/ru/LC_MESSAGES/kio5_man.mo share/locale/ru/LC_MESSAGES/kio5_mtp.mo share/locale/ru/LC_MESSAGES/kio5_nfs.mo share/locale/ru/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ru/LC_MESSAGES/kio5_sftp.mo share/locale/ru/LC_MESSAGES/kio5_smb.mo share/locale/ru/LC_MESSAGES/kio5_thumbnail.mo share/locale/se/LC_MESSAGES/kfileaudiopreview5.mo share/locale/se/LC_MESSAGES/kio5_activities.mo share/locale/se/LC_MESSAGES/kio5_fish.mo share/locale/se/LC_MESSAGES/kio5_man.mo share/locale/se/LC_MESSAGES/kio5_nfs.mo share/locale/se/LC_MESSAGES/kio5_sftp.mo share/locale/se/LC_MESSAGES/kio5_smb.mo share/locale/se/LC_MESSAGES/kio5_thumbnail.mo +share/locale/si/LC_MESSAGES/kio5_archive.mo +share/locale/si/LC_MESSAGES/kio5_bookmarks.mo +share/locale/si/LC_MESSAGES/kio5_fish.mo +share/locale/si/LC_MESSAGES/kio5_info.mo +share/locale/si/LC_MESSAGES/kio5_man.mo +share/locale/si/LC_MESSAGES/kio5_nfs.mo +share/locale/si/LC_MESSAGES/kio5_sftp.mo +share/locale/si/LC_MESSAGES/kio5_smb.mo +share/locale/si/LC_MESSAGES/kio5_thumbnail.mo share/locale/sk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sk/LC_MESSAGES/kio5_activities.mo share/locale/sk/LC_MESSAGES/kio5_archive.mo share/locale/sk/LC_MESSAGES/kio5_bookmarks.mo share/locale/sk/LC_MESSAGES/kio5_fish.mo share/locale/sk/LC_MESSAGES/kio5_info.mo share/locale/sk/LC_MESSAGES/kio5_man.mo share/locale/sk/LC_MESSAGES/kio5_mtp.mo share/locale/sk/LC_MESSAGES/kio5_nfs.mo share/locale/sk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sk/LC_MESSAGES/kio5_sftp.mo share/locale/sk/LC_MESSAGES/kio5_smb.mo share/locale/sk/LC_MESSAGES/kio5_thumbnail.mo share/locale/sl/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sl/LC_MESSAGES/kio5_activities.mo share/locale/sl/LC_MESSAGES/kio5_archive.mo share/locale/sl/LC_MESSAGES/kio5_bookmarks.mo share/locale/sl/LC_MESSAGES/kio5_fish.mo share/locale/sl/LC_MESSAGES/kio5_info.mo share/locale/sl/LC_MESSAGES/kio5_man.mo share/locale/sl/LC_MESSAGES/kio5_mtp.mo share/locale/sl/LC_MESSAGES/kio5_nfs.mo share/locale/sl/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sl/LC_MESSAGES/kio5_sftp.mo share/locale/sl/LC_MESSAGES/kio5_smb.mo share/locale/sl/LC_MESSAGES/kio5_thumbnail.mo share/locale/sq/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sq/LC_MESSAGES/kio5_archive.mo share/locale/sq/LC_MESSAGES/kio5_bookmarks.mo share/locale/sq/LC_MESSAGES/kio5_fish.mo share/locale/sq/LC_MESSAGES/kio5_info.mo share/locale/sq/LC_MESSAGES/kio5_man.mo share/locale/sq/LC_MESSAGES/kio5_nfs.mo share/locale/sq/LC_MESSAGES/kio5_sftp.mo share/locale/sq/LC_MESSAGES/kio5_smb.mo share/locale/sq/LC_MESSAGES/kio5_thumbnail.mo share/locale/sr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sr/LC_MESSAGES/kio5_activities.mo share/locale/sr/LC_MESSAGES/kio5_archive.mo share/locale/sr/LC_MESSAGES/kio5_bookmarks.mo share/locale/sr/LC_MESSAGES/kio5_fish.mo share/locale/sr/LC_MESSAGES/kio5_info.mo share/locale/sr/LC_MESSAGES/kio5_man.mo share/locale/sr/LC_MESSAGES/kio5_mtp.mo share/locale/sr/LC_MESSAGES/kio5_nfs.mo share/locale/sr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sr/LC_MESSAGES/kio5_sftp.mo share/locale/sr/LC_MESSAGES/kio5_smb.mo share/locale/sr/LC_MESSAGES/kio5_thumbnail.mo +share/locale/sr@ijekavian/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_activities.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_archive.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_bookmarks.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_fish.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_info.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_man.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_mtp.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_nfs.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_recentdocuments.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_sftp.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_smb.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio5_thumbnail.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_activities.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_archive.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_bookmarks.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_fish.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_info.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_man.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_mtp.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_nfs.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_recentdocuments.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_sftp.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_smb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_thumbnail.mo +share/locale/sr@latin/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/sr@latin/LC_MESSAGES/kio5_activities.mo +share/locale/sr@latin/LC_MESSAGES/kio5_archive.mo +share/locale/sr@latin/LC_MESSAGES/kio5_bookmarks.mo +share/locale/sr@latin/LC_MESSAGES/kio5_fish.mo +share/locale/sr@latin/LC_MESSAGES/kio5_info.mo +share/locale/sr@latin/LC_MESSAGES/kio5_man.mo +share/locale/sr@latin/LC_MESSAGES/kio5_mtp.mo +share/locale/sr@latin/LC_MESSAGES/kio5_nfs.mo +share/locale/sr@latin/LC_MESSAGES/kio5_recentdocuments.mo +share/locale/sr@latin/LC_MESSAGES/kio5_sftp.mo +share/locale/sr@latin/LC_MESSAGES/kio5_smb.mo +share/locale/sr@latin/LC_MESSAGES/kio5_thumbnail.mo share/locale/sv/LC_MESSAGES/kfileaudiopreview5.mo share/locale/sv/LC_MESSAGES/kio5_activities.mo share/locale/sv/LC_MESSAGES/kio5_archive.mo share/locale/sv/LC_MESSAGES/kio5_bookmarks.mo share/locale/sv/LC_MESSAGES/kio5_fish.mo share/locale/sv/LC_MESSAGES/kio5_info.mo share/locale/sv/LC_MESSAGES/kio5_man.mo share/locale/sv/LC_MESSAGES/kio5_mtp.mo share/locale/sv/LC_MESSAGES/kio5_nfs.mo share/locale/sv/LC_MESSAGES/kio5_recentdocuments.mo share/locale/sv/LC_MESSAGES/kio5_sftp.mo share/locale/sv/LC_MESSAGES/kio5_smb.mo share/locale/sv/LC_MESSAGES/kio5_thumbnail.mo share/locale/ta/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ta/LC_MESSAGES/kio5_activities.mo share/locale/ta/LC_MESSAGES/kio5_archive.mo share/locale/ta/LC_MESSAGES/kio5_bookmarks.mo share/locale/ta/LC_MESSAGES/kio5_fish.mo share/locale/ta/LC_MESSAGES/kio5_info.mo share/locale/ta/LC_MESSAGES/kio5_man.mo share/locale/ta/LC_MESSAGES/kio5_mtp.mo share/locale/ta/LC_MESSAGES/kio5_nfs.mo share/locale/ta/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ta/LC_MESSAGES/kio5_sftp.mo share/locale/ta/LC_MESSAGES/kio5_smb.mo share/locale/ta/LC_MESSAGES/kio5_thumbnail.mo +share/locale/te/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/te/LC_MESSAGES/kio5_archive.mo +share/locale/te/LC_MESSAGES/kio5_bookmarks.mo +share/locale/te/LC_MESSAGES/kio5_fish.mo +share/locale/te/LC_MESSAGES/kio5_man.mo +share/locale/te/LC_MESSAGES/kio5_nfs.mo +share/locale/te/LC_MESSAGES/kio5_sftp.mo +share/locale/te/LC_MESSAGES/kio5_smb.mo +share/locale/te/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/th/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/th/LC_MESSAGES/kio5_activities.mo +share/locale/th/LC_MESSAGES/kio5_archive.mo +share/locale/th/LC_MESSAGES/kio5_bookmarks.mo +share/locale/th/LC_MESSAGES/kio5_fish.mo +share/locale/th/LC_MESSAGES/kio5_info.mo +share/locale/th/LC_MESSAGES/kio5_man.mo +share/locale/th/LC_MESSAGES/kio5_nfs.mo +share/locale/th/LC_MESSAGES/kio5_sftp.mo +share/locale/th/LC_MESSAGES/kio5_smb.mo +share/locale/th/LC_MESSAGES/kio5_thumbnail.mo share/locale/tr/LC_MESSAGES/kfileaudiopreview5.mo share/locale/tr/LC_MESSAGES/kio5_activities.mo share/locale/tr/LC_MESSAGES/kio5_archive.mo share/locale/tr/LC_MESSAGES/kio5_bookmarks.mo share/locale/tr/LC_MESSAGES/kio5_fish.mo share/locale/tr/LC_MESSAGES/kio5_info.mo share/locale/tr/LC_MESSAGES/kio5_man.mo share/locale/tr/LC_MESSAGES/kio5_mtp.mo share/locale/tr/LC_MESSAGES/kio5_nfs.mo share/locale/tr/LC_MESSAGES/kio5_recentdocuments.mo share/locale/tr/LC_MESSAGES/kio5_sftp.mo share/locale/tr/LC_MESSAGES/kio5_smb.mo share/locale/tr/LC_MESSAGES/kio5_thumbnail.mo share/locale/ug/LC_MESSAGES/kfileaudiopreview5.mo share/locale/ug/LC_MESSAGES/kio5_activities.mo share/locale/ug/LC_MESSAGES/kio5_archive.mo share/locale/ug/LC_MESSAGES/kio5_bookmarks.mo share/locale/ug/LC_MESSAGES/kio5_fish.mo share/locale/ug/LC_MESSAGES/kio5_info.mo share/locale/ug/LC_MESSAGES/kio5_man.mo share/locale/ug/LC_MESSAGES/kio5_nfs.mo share/locale/ug/LC_MESSAGES/kio5_recentdocuments.mo share/locale/ug/LC_MESSAGES/kio5_sftp.mo share/locale/ug/LC_MESSAGES/kio5_smb.mo share/locale/ug/LC_MESSAGES/kio5_thumbnail.mo share/locale/uk/LC_MESSAGES/kfileaudiopreview5.mo share/locale/uk/LC_MESSAGES/kio5_activities.mo share/locale/uk/LC_MESSAGES/kio5_archive.mo share/locale/uk/LC_MESSAGES/kio5_bookmarks.mo share/locale/uk/LC_MESSAGES/kio5_fish.mo share/locale/uk/LC_MESSAGES/kio5_info.mo share/locale/uk/LC_MESSAGES/kio5_man.mo share/locale/uk/LC_MESSAGES/kio5_mtp.mo share/locale/uk/LC_MESSAGES/kio5_nfs.mo share/locale/uk/LC_MESSAGES/kio5_recentdocuments.mo share/locale/uk/LC_MESSAGES/kio5_sftp.mo share/locale/uk/LC_MESSAGES/kio5_smb.mo share/locale/uk/LC_MESSAGES/kio5_thumbnail.mo +share/locale/uz/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/uz/LC_MESSAGES/kio5_archive.mo +share/locale/uz/LC_MESSAGES/kio5_fish.mo +share/locale/uz/LC_MESSAGES/kio5_man.mo +share/locale/uz/LC_MESSAGES/kio5_nfs.mo +share/locale/uz/LC_MESSAGES/kio5_sftp.mo +share/locale/uz/LC_MESSAGES/kio5_smb.mo +share/locale/uz/LC_MESSAGES/kio5_thumbnail.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfileaudiopreview5.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_archive.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_fish.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_man.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_nfs.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_sftp.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_smb.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio5_thumbnail.mo share/locale/vi/LC_MESSAGES/kfileaudiopreview5.mo share/locale/vi/LC_MESSAGES/kio5_activities.mo share/locale/vi/LC_MESSAGES/kio5_archive.mo share/locale/vi/LC_MESSAGES/kio5_bookmarks.mo share/locale/vi/LC_MESSAGES/kio5_fish.mo share/locale/vi/LC_MESSAGES/kio5_info.mo share/locale/vi/LC_MESSAGES/kio5_man.mo share/locale/vi/LC_MESSAGES/kio5_mtp.mo share/locale/vi/LC_MESSAGES/kio5_nfs.mo share/locale/vi/LC_MESSAGES/kio5_recentdocuments.mo share/locale/vi/LC_MESSAGES/kio5_sftp.mo share/locale/vi/LC_MESSAGES/kio5_smb.mo share/locale/vi/LC_MESSAGES/kio5_thumbnail.mo share/locale/wa/LC_MESSAGES/kfileaudiopreview5.mo share/locale/wa/LC_MESSAGES/kio5_activities.mo share/locale/wa/LC_MESSAGES/kio5_archive.mo share/locale/wa/LC_MESSAGES/kio5_bookmarks.mo share/locale/wa/LC_MESSAGES/kio5_fish.mo share/locale/wa/LC_MESSAGES/kio5_info.mo share/locale/wa/LC_MESSAGES/kio5_man.mo share/locale/wa/LC_MESSAGES/kio5_nfs.mo share/locale/wa/LC_MESSAGES/kio5_sftp.mo share/locale/wa/LC_MESSAGES/kio5_smb.mo share/locale/wa/LC_MESSAGES/kio5_thumbnail.mo +share/locale/xh/LC_MESSAGES/kio5_man.mo +share/locale/xh/LC_MESSAGES/kio5_nfs.mo +share/locale/xh/LC_MESSAGES/kio5_sftp.mo +share/locale/xh/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_CN/LC_MESSAGES/kio5_activities.mo share/locale/zh_CN/LC_MESSAGES/kio5_archive.mo share/locale/zh_CN/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_CN/LC_MESSAGES/kio5_fish.mo share/locale/zh_CN/LC_MESSAGES/kio5_info.mo share/locale/zh_CN/LC_MESSAGES/kio5_man.mo share/locale/zh_CN/LC_MESSAGES/kio5_mtp.mo share/locale/zh_CN/LC_MESSAGES/kio5_nfs.mo share/locale/zh_CN/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_CN/LC_MESSAGES/kio5_sftp.mo share/locale/zh_CN/LC_MESSAGES/kio5_smb.mo share/locale/zh_CN/LC_MESSAGES/kio5_thumbnail.mo +share/locale/zh_HK/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kfileaudiopreview5.mo share/locale/zh_TW/LC_MESSAGES/kio5_activities.mo share/locale/zh_TW/LC_MESSAGES/kio5_archive.mo share/locale/zh_TW/LC_MESSAGES/kio5_bookmarks.mo share/locale/zh_TW/LC_MESSAGES/kio5_fish.mo share/locale/zh_TW/LC_MESSAGES/kio5_info.mo share/locale/zh_TW/LC_MESSAGES/kio5_man.mo share/locale/zh_TW/LC_MESSAGES/kio5_mtp.mo share/locale/zh_TW/LC_MESSAGES/kio5_nfs.mo share/locale/zh_TW/LC_MESSAGES/kio5_recentdocuments.mo share/locale/zh_TW/LC_MESSAGES/kio5_sftp.mo share/locale/zh_TW/LC_MESSAGES/kio5_smb.mo share/locale/zh_TW/LC_MESSAGES/kio5_thumbnail.mo %%SAMBA%%share/mime/packages/org.kde.kio.smb.xml share/qlogging-categories5/kio-extras.categories share/qlogging-categories5/kio-extras.renamecategories %%MTP%%share/remoteview/mtp-network.desktop %%SAMBA%%share/remoteview/smb-network.desktop %%MTP%%share/solid/actions/solid_mtp.desktop diff --git a/devel/kirigami-gallery/distinfo b/devel/kirigami-gallery/distinfo index 7abdac85c878..2334b65ea258 100644 --- a/devel/kirigami-gallery/distinfo +++ b/devel/kirigami-gallery/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539440 -SHA256 (KDE/release-service/22.08.3/kirigami-gallery-22.08.3.tar.xz) = bd6de4c75696970ef2c817907c0f6f31f3d379ef34d1a2524a44cfc0a068456a -SIZE (KDE/release-service/22.08.3/kirigami-gallery-22.08.3.tar.xz) = 342232 +TIMESTAMP = 1670513036 +SHA256 (KDE/release-service/22.12.0/kirigami-gallery-22.12.0.tar.xz) = 6d0492cb280e93c168c7d6b7ceeef30c0dfa0b7a4071009af79e6f12f8001010 +SIZE (KDE/release-service/22.12.0/kirigami-gallery-22.12.0.tar.xz) = 344936 diff --git a/devel/kirigami-gallery/pkg-plist b/devel/kirigami-gallery/pkg-plist index 8c99d964902d..d87ce62978b7 100644 --- a/devel/kirigami-gallery/pkg-plist +++ b/devel/kirigami-gallery/pkg-plist @@ -1,35 +1,36 @@ bin/kirigami2gallery share/applications/org.kde.kirigami2.gallery.desktop share/locale/ca/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ca@valencia/LC_MESSAGES/kirigamigallery_qt.qm share/locale/cs/LC_MESSAGES/kirigamigallery_qt.qm share/locale/da/LC_MESSAGES/kirigamigallery_qt.qm share/locale/de/LC_MESSAGES/kirigamigallery_qt.qm share/locale/el/LC_MESSAGES/kirigamigallery_qt.qm share/locale/en_GB/LC_MESSAGES/kirigamigallery_qt.qm share/locale/es/LC_MESSAGES/kirigamigallery_qt.qm share/locale/et/LC_MESSAGES/kirigamigallery_qt.qm share/locale/eu/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fi/LC_MESSAGES/kirigamigallery_qt.qm share/locale/fr/LC_MESSAGES/kirigamigallery_qt.qm share/locale/gl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/it/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ja/LC_MESSAGES/kirigamigallery_qt.qm +share/locale/ka/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ko/LC_MESSAGES/kirigamigallery_qt.qm share/locale/lt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/nn/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pa/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt/LC_MESSAGES/kirigamigallery_qt.qm share/locale/pt_BR/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ro/LC_MESSAGES/kirigamigallery_qt.qm share/locale/ru/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sl/LC_MESSAGES/kirigamigallery_qt.qm share/locale/sv/LC_MESSAGES/kirigamigallery_qt.qm share/locale/tr/LC_MESSAGES/kirigamigallery_qt.qm share/locale/uk/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_CN/LC_MESSAGES/kirigamigallery_qt.qm share/locale/zh_TW/LC_MESSAGES/kirigamigallery_qt.qm share/metainfo/org.kde.kirigami2.gallery.appdata.xml diff --git a/devel/kpublictransport/distinfo b/devel/kpublictransport/distinfo index 3a90969950d6..2240e088a633 100644 --- a/devel/kpublictransport/distinfo +++ b/devel/kpublictransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539449 -SHA256 (KDE/release-service/22.08.3/kpublictransport-22.08.3.tar.xz) = 7f6d3fb644ec9286ef74a7763e97b983b140ceac17ce48e3a684cc66807e4dfe -SIZE (KDE/release-service/22.08.3/kpublictransport-22.08.3.tar.xz) = 489620 +TIMESTAMP = 1670513047 +SHA256 (KDE/release-service/22.12.0/kpublictransport-22.12.0.tar.xz) = 9fd4005bd8e135ca0b80a80aa7b4b50edcf49e43f4c7613dd94ae122efcbdaae +SIZE (KDE/release-service/22.12.0/kpublictransport-22.12.0.tar.xz) = 489720 diff --git a/devel/lokalize/distinfo b/devel/lokalize/distinfo index e8819de7e29b..8fa495844f97 100644 --- a/devel/lokalize/distinfo +++ b/devel/lokalize/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539446 -SHA256 (KDE/release-service/22.08.3/lokalize-22.08.3.tar.xz) = 577861428e42eed81c660e24cc49eb2cfcda8c4982d2f1a9e79638a30b8b40ed -SIZE (KDE/release-service/22.08.3/lokalize-22.08.3.tar.xz) = 2070908 +TIMESTAMP = 1670513044 +SHA256 (KDE/release-service/22.12.0/lokalize-22.12.0.tar.xz) = 88eb09d5d9485557809cff17d79eb746e9655d8504db133a09625f6b5ba9f637 +SIZE (KDE/release-service/22.12.0/lokalize-22.12.0.tar.xz) = 2114760 diff --git a/devel/lokalize/pkg-plist b/devel/lokalize/pkg-plist index 44e7e1680fe5..5b7aced5b85e 100644 --- a/devel/lokalize/pkg-plist +++ b/devel/lokalize/pkg-plist @@ -1,182 +1,207 @@ bin/lokalize 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/128x128/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/csb/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/ie/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/ka/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/ku/LC_MESSAGES/lokalize.mo share/locale/lt/LC_MESSAGES/lokalize.mo share/locale/lv/LC_MESSAGES/lokalize.mo +share/locale/mai/LC_MESSAGES/lokalize.mo share/locale/mr/LC_MESSAGES/lokalize.mo +share/locale/my/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/oc/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/sr@ijekavian/LC_MESSAGES/lokalize.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/lokalize.mo +share/locale/sr@latin/LC_MESSAGES/lokalize.mo share/locale/sv/LC_MESSAGES/lokalize.mo +share/locale/th/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/l10n/sr@ijekavian/approved.png +%%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@ijekavianlatin/approved.png +%%DATADIR%%/icons/hicolor/16x16/actions/l10n/sr@latin/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/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@ijekavian/approved.png +%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@ijekavianlatin/approved.png +%%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/l10n/sr@latin/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/l10n/sr@ijekavian/approved.png +%%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@ijekavianlatin/approved.png +%%DATADIR%%/icons/hicolor/32x32/actions/l10n/sr@latin/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/48x48/actions/l10n/sr@ijekavian/approved.png +%%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@ijekavianlatin/approved.png +%%DATADIR%%/icons/hicolor/48x48/actions/l10n/sr@latin/approved.png %%DATADIR%%/icons/hicolor/scalable/actions/approved.svgz %%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr/approved.svgz +%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavian/approved.svgz +%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@ijekavianlatin/approved.svgz +%%DATADIR%%/icons/hicolor/scalable/actions/l10n/sr@latin/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 share/qlogging-categories5/lokalize.categories diff --git a/devel/poxml/distinfo b/devel/poxml/distinfo index b8d08f4032c0..331bc9aafcc3 100644 --- a/devel/poxml/distinfo +++ b/devel/poxml/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539439 -SHA256 (KDE/release-service/22.08.3/poxml-22.08.3.tar.xz) = b67f3f100060b756fc09cc7781afdae68a683723f992c1ebdc26ab7f342db322 -SIZE (KDE/release-service/22.08.3/poxml-22.08.3.tar.xz) = 44036 +TIMESTAMP = 1670513035 +SHA256 (KDE/release-service/22.12.0/poxml-22.12.0.tar.xz) = ce0c99e9e39ebdacb80649c71896dbd1d5076d2680258735d7a01b197b55a88a +SIZE (KDE/release-service/22.12.0/poxml-22.12.0.tar.xz) = 44072 diff --git a/devel/umbrello/distinfo b/devel/umbrello/distinfo index e4a61d9b0062..11208d412623 100644 --- a/devel/umbrello/distinfo +++ b/devel/umbrello/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539441 -SHA256 (KDE/release-service/22.08.3/umbrello-22.08.3.tar.xz) = 3e3e8ebc4e57100a9a73f26c1c4b9bdc8ad64b9e1fe7176301514a96e4562130 -SIZE (KDE/release-service/22.08.3/umbrello-22.08.3.tar.xz) = 5687876 +TIMESTAMP = 1670513038 +SHA256 (KDE/release-service/22.12.0/umbrello-22.12.0.tar.xz) = 89f676932b8a9aed0700deefbb2534eaa811fcb2eeca920af01cae7752de344c +SIZE (KDE/release-service/22.12.0/umbrello-22.12.0.tar.xz) = 5789180 diff --git a/devel/umbrello/pkg-plist b/devel/umbrello/pkg-plist index cacf92bccba9..94fadc3f60d6 100644 --- a/devel/umbrello/pkg-plist +++ b/devel/umbrello/pkg-plist @@ -1,187 +1,199 @@ 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/128x128/apps/umbrello.png share/icons/hicolor/scalable/apps/umbrello.svgz share/locale/ar/LC_MESSAGES/umbrello.mo share/locale/be/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello.mo share/locale/bg/LC_MESSAGES/umbrello_kdevphp.mo share/locale/bg/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/br/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello.mo share/locale/bs/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/LC_MESSAGES/umbrello.mo -share/locale/ca/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ca/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_kdevphp5.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_kdevphp5.mo share/locale/cs/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/cs/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/cy/LC_MESSAGES/umbrello.mo share/locale/da/LC_MESSAGES/umbrello.mo -share/locale/da/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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/hne/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello.mo share/locale/hr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello.mo -share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/hu/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/hu/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ia/LC_MESSAGES/umbrello.mo share/locale/it/LC_MESSAGES/umbrello.mo -share/locale/it/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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_kdevphp5.mo share/locale/ja/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/ja/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/ka/LC_MESSAGES/umbrello.mo +share/locale/ka/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/ka/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/kk/LC_MESSAGES/umbrello.mo share/locale/kk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/km/LC_MESSAGES/umbrello.mo share/locale/ko/LC_MESSAGES/umbrello.mo -share/locale/ko/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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_kdevphp5.mo share/locale/lt/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/lt/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/mai/LC_MESSAGES/umbrello.mo +share/locale/mk/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello.mo share/locale/mr/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/ms/LC_MESSAGES/umbrello.mo share/locale/nb/LC_MESSAGES/umbrello.mo -share/locale/nb/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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/ne/LC_MESSAGES/umbrello.mo share/locale/nl/LC_MESSAGES/umbrello.mo -share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nl/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/nl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello.mo -share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/nn/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/nn/LC_MESSAGES/umbrello_kdevphp5.mo +share/locale/oc/LC_MESSAGES/umbrello.mo share/locale/pl/LC_MESSAGES/umbrello.mo -share/locale/pl/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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_kdevphp5.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/th/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello.mo -share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/tr/LC_MESSAGES/umbrello_kdevphp.mo +share/locale/tr/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/ug/LC_MESSAGES/umbrello.mo share/locale/ug/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/uk/LC_MESSAGES/umbrello.mo -share/locale/uk/LC_MESSAGES/umbrello_kdevphp5.mo share/locale/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_kdevphp5.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_kdevphp5.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/xmi1docbook.xsl share/umbrello5/xmi2docbook.xsl -share/umbrello5/xmi.css diff --git a/editors/kate/distinfo b/editors/kate/distinfo index 244b1065bcf2..473d77e6a3af 100644 --- a/editors/kate/distinfo +++ b/editors/kate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539471 -SHA256 (KDE/release-service/22.08.3/kate-22.08.3.tar.xz) = d195bc0ecf4eed66a123225686ca37c4e673d8ca30e7c39fccb02dfdc7945fa6 -SIZE (KDE/release-service/22.08.3/kate-22.08.3.tar.xz) = 7668096 +TIMESTAMP = 1670513074 +SHA256 (KDE/release-service/22.12.0/kate-22.12.0.tar.xz) = c1447d82c97d92cbf930106af6f9552acdc68892751e56b0855d20484e37bfff +SIZE (KDE/release-service/22.12.0/kate-22.12.0.tar.xz) = 7872512 diff --git a/editors/kate/pkg-plist b/editors/kate/pkg-plist index 7f8bc9c71906..fdb6440c1380 100644 --- a/editors/kate/pkg-plist +++ b/editors/kate/pkg-plist @@ -1,1328 +1,1475 @@ bin/kate bin/kwrite lib/libkateprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/ktexteditor/cmaketoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/compilerexplorer.so %%QT_PLUGINDIR%%/ktexteditor/externaltoolsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebacktracebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katebuildplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecloseexceptplugin.so %%QT_PLUGINDIR%%/ktexteditor/katecolorpickerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katectagsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefilebrowserplugin.so %%QT_PLUGINDIR%%/ktexteditor/katefiletreeplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategdbplugin.so %%QT_PLUGINDIR%%/ktexteditor/kategitblameplugin.so %%QT_PLUGINDIR%%/ktexteditor/katekonsoleplugin.so %%QT_PLUGINDIR%%/ktexteditor/kateprojectplugin.so %%QT_PLUGINDIR%%/ktexteditor/katereplicodeplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesearchplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesnippetsplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesqlplugin.so %%QT_PLUGINDIR%%/ktexteditor/katesymbolviewerplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmlcheckplugin.so %%QT_PLUGINDIR%%/ktexteditor/katexmltoolsplugin.so +%%QT_PLUGINDIR%%/ktexteditor/keyboardmacrosplugin.so %%QT_PLUGINDIR%%/ktexteditor/ktexteditorpreviewplugin.so %%QT_PLUGINDIR%%/ktexteditor/latexcompletionplugin.so %%QT_PLUGINDIR%%/ktexteditor/lspclientplugin.so %%QT_PLUGINDIR%%/ktexteditor/rainbowparens.so %%QT_PLUGINDIR%%/ktexteditor/tabswitcherplugin.so %%QT_PLUGINDIR%%/ktexteditor/textfilterplugin.so -%%QT_PLUGINDIR%%/plasma/dataengine/plasma_engine_katesessions.so man/ca/man1/kate.1.gz man/de/man1/kate.1.gz man/es/man1/kate.1.gz man/it/man1/kate.1.gz man/man1/kate.1.gz man/nl/man1/kate.1.gz man/pt/man1/kate.1.gz man/pt_BR/man1/kate.1.gz man/ru/man1/kate.1.gz man/sv/man1/kate.1.gz man/uk/man1/kate.1.gz share/applications/org.kde.kate.desktop share/applications/org.kde.kwrite.desktop share/icons/hicolor/128x128/apps/kate.png share/icons/hicolor/128x128/apps/kwrite.png share/icons/hicolor/150x150/apps/kate.png share/icons/hicolor/150x150/apps/kwrite.png share/icons/hicolor/16x16/apps/kate.png share/icons/hicolor/16x16/apps/kwrite.png share/icons/hicolor/22x22/apps/kate.png share/icons/hicolor/22x22/apps/kwrite.png share/icons/hicolor/256x256/apps/kate.png share/icons/hicolor/256x256/apps/kwrite.png share/icons/hicolor/310x310/apps/kate.png share/icons/hicolor/310x310/apps/kwrite.png share/icons/hicolor/32x32/apps/kate.png share/icons/hicolor/32x32/apps/kwrite.png share/icons/hicolor/44x44/apps/kate.png share/icons/hicolor/44x44/apps/kwrite.png share/icons/hicolor/48x48/apps/kate.png share/icons/hicolor/48x48/apps/kwrite.png share/icons/hicolor/512x512/apps/kate.png share/icons/hicolor/512x512/apps/kwrite.png share/icons/hicolor/64x64/apps/kate.png share/icons/hicolor/64x64/apps/kwrite.png share/icons/hicolor/scalable/apps/kate.svg share/icons/hicolor/scalable/apps/kwrite.svg share/kateproject/kateproject.example share/katexmltools/html4-loose.dtd.xml share/katexmltools/html4-strict.dtd.xml share/katexmltools/kcfg.dtd.xml share/katexmltools/kde-docbook.dtd.xml share/katexmltools/kpartgui.dtd.xml share/katexmltools/language.dtd.xml share/katexmltools/simplify_dtd.xsl share/katexmltools/testcases.xml share/katexmltools/xhtml1-frameset.dtd.xml share/katexmltools/xhtml1-strict.dtd.xml share/katexmltools/xhtml1-transitional.dtd.xml share/katexmltools/xslt-1.0.dtd.xml -share/kservices5/plasma-applet-org.kde.plasma.katesessions.desktop -share/kservices5/plasma-dataengine-katesessions.desktop +share/kconf_update/katesession_migration.upd +share/kconf_update/migrate_kate_sessions_applet_to_kdeplasma-addons.sh +share/locale/af/LC_MESSAGES/kate.mo +share/locale/af/LC_MESSAGES/katetextfilter.mo +share/locale/af/LC_MESSAGES/katexmltools.mo share/locale/ar/LC_MESSAGES/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/katecolorpickerplugin.mo share/locale/ar/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ar/LC_MESSAGES/katefiletree.mo share/locale/ar/LC_MESSAGES/kategdbplugin.mo share/locale/ar/LC_MESSAGES/katekonsoleplugin.mo share/locale/ar/LC_MESSAGES/kateproject.mo share/locale/ar/LC_MESSAGES/katesearch.mo share/locale/ar/LC_MESSAGES/katesnippetsplugin.mo share/locale/ar/LC_MESSAGES/katesql.mo share/locale/ar/LC_MESSAGES/katesymbolviewer.mo share/locale/ar/LC_MESSAGES/katetextfilter.mo share/locale/ar/LC_MESSAGES/katexmlcheck.mo share/locale/ar/LC_MESSAGES/katexmltools.mo -share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo +share/locale/ar/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ar/LC_MESSAGES/tabswitcherplugin.mo -share/locale/ast/LC_MESSAGES/kate-ctags-plugin.mo -share/locale/ast/LC_MESSAGES/kate-replicode-plugin.mo -share/locale/ast/LC_MESSAGES/kate.mo -share/locale/ast/LC_MESSAGES/katebacktracebrowserplugin.mo -share/locale/ast/LC_MESSAGES/katebuild-plugin.mo -share/locale/ast/LC_MESSAGES/katecloseexceptplugin.mo -share/locale/ast/LC_MESSAGES/katefilebrowserplugin.mo -share/locale/ast/LC_MESSAGES/katefiletree.mo -share/locale/ast/LC_MESSAGES/kategdbplugin.mo -share/locale/ast/LC_MESSAGES/katekonsoleplugin.mo -share/locale/ast/LC_MESSAGES/kateproject.mo -share/locale/ast/LC_MESSAGES/katesearch.mo -share/locale/ast/LC_MESSAGES/katesnippetsplugin.mo -share/locale/ast/LC_MESSAGES/katesql.mo -share/locale/ast/LC_MESSAGES/katesymbolviewer.mo -share/locale/ast/LC_MESSAGES/katetextfilter.mo -share/locale/ast/LC_MESSAGES/katexmlcheck.mo -share/locale/ast/LC_MESSAGES/katexmltools.mo -share/locale/ast/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/ast/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo -share/locale/ast/LC_MESSAGES/tabswitcherplugin.mo share/locale/az/LC_MESSAGES/kate-ctags-plugin.mo share/locale/az/LC_MESSAGES/kate-replicode-plugin.mo share/locale/az/LC_MESSAGES/kate.mo share/locale/az/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/az/LC_MESSAGES/katebuild-plugin.mo share/locale/az/LC_MESSAGES/katecloseexceptplugin.mo share/locale/az/LC_MESSAGES/katecolorpickerplugin.mo share/locale/az/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/az/LC_MESSAGES/katefilebrowserplugin.mo share/locale/az/LC_MESSAGES/katefiletree.mo share/locale/az/LC_MESSAGES/kategdbplugin.mo share/locale/az/LC_MESSAGES/kategitblameplugin.mo share/locale/az/LC_MESSAGES/katekonsoleplugin.mo share/locale/az/LC_MESSAGES/kateproject.mo share/locale/az/LC_MESSAGES/katesearch.mo share/locale/az/LC_MESSAGES/katesnippetsplugin.mo share/locale/az/LC_MESSAGES/katesql.mo share/locale/az/LC_MESSAGES/katesymbolviewer.mo share/locale/az/LC_MESSAGES/katetextfilter.mo share/locale/az/LC_MESSAGES/katexmlcheck.mo share/locale/az/LC_MESSAGES/katexmltools.mo share/locale/az/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/az/LC_MESSAGES/lspclient.mo -share/locale/az/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/az/LC_MESSAGES/tabswitcherplugin.mo share/locale/be/LC_MESSAGES/kate.mo share/locale/be/LC_MESSAGES/katefilebrowserplugin.mo share/locale/be/LC_MESSAGES/katekonsoleplugin.mo share/locale/be/LC_MESSAGES/katesymbolviewer.mo share/locale/be/LC_MESSAGES/katetextfilter.mo share/locale/be/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bg/LC_MESSAGES/kate-replicode-plugin.mo share/locale/bg/LC_MESSAGES/kate.mo share/locale/bg/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bg/LC_MESSAGES/katebuild-plugin.mo share/locale/bg/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bg/LC_MESSAGES/katecolorpickerplugin.mo share/locale/bg/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/bg/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bg/LC_MESSAGES/katefiletree.mo share/locale/bg/LC_MESSAGES/kategdbplugin.mo share/locale/bg/LC_MESSAGES/kategitblameplugin.mo share/locale/bg/LC_MESSAGES/katekonsoleplugin.mo share/locale/bg/LC_MESSAGES/kateproject.mo share/locale/bg/LC_MESSAGES/katesearch.mo share/locale/bg/LC_MESSAGES/katesnippetsplugin.mo share/locale/bg/LC_MESSAGES/katesql.mo share/locale/bg/LC_MESSAGES/katesymbolviewer.mo share/locale/bg/LC_MESSAGES/katetextfilter.mo share/locale/bg/LC_MESSAGES/katexmlcheck.mo share/locale/bg/LC_MESSAGES/katexmltools.mo share/locale/bg/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/bg/LC_MESSAGES/lspclient.mo -share/locale/bg/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/bg/LC_MESSAGES/tabswitcherplugin.mo +share/locale/br/LC_MESSAGES/kate.mo +share/locale/br/LC_MESSAGES/katesymbolviewer.mo +share/locale/br/LC_MESSAGES/katetextfilter.mo +share/locale/br/LC_MESSAGES/katexmltools.mo share/locale/bs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/bs/LC_MESSAGES/kate.mo share/locale/bs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/bs/LC_MESSAGES/katebuild-plugin.mo share/locale/bs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/bs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/bs/LC_MESSAGES/katefiletree.mo share/locale/bs/LC_MESSAGES/kategdbplugin.mo share/locale/bs/LC_MESSAGES/katekonsoleplugin.mo share/locale/bs/LC_MESSAGES/kateproject.mo share/locale/bs/LC_MESSAGES/katesearch.mo share/locale/bs/LC_MESSAGES/katesnippetsplugin.mo share/locale/bs/LC_MESSAGES/katesql.mo share/locale/bs/LC_MESSAGES/katesymbolviewer.mo share/locale/bs/LC_MESSAGES/katetextfilter.mo share/locale/bs/LC_MESSAGES/katexmltools.mo -share/locale/bs/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/ca/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca/LC_MESSAGES/kateproject.mo share/locale/ca/LC_MESSAGES/katesearch.mo share/locale/ca/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca/LC_MESSAGES/katesql.mo share/locale/ca/LC_MESSAGES/katesymbolviewer.mo share/locale/ca/LC_MESSAGES/katetextfilter.mo share/locale/ca/LC_MESSAGES/katexmlcheck.mo share/locale/ca/LC_MESSAGES/katexmltools.mo share/locale/ca/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca/LC_MESSAGES/lspclient.mo -share/locale/ca/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/ca@valencia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ca@valencia/LC_MESSAGES/kateproject.mo share/locale/ca@valencia/LC_MESSAGES/katesearch.mo share/locale/ca@valencia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ca@valencia/LC_MESSAGES/katesql.mo share/locale/ca@valencia/LC_MESSAGES/katesymbolviewer.mo share/locale/ca@valencia/LC_MESSAGES/katetextfilter.mo share/locale/ca@valencia/LC_MESSAGES/katexmlcheck.mo share/locale/ca@valencia/LC_MESSAGES/katexmltools.mo share/locale/ca@valencia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ca@valencia/LC_MESSAGES/lspclient.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ca@valencia/LC_MESSAGES/tabswitcherplugin.mo share/locale/cs/LC_MESSAGES/kate-ctags-plugin.mo share/locale/cs/LC_MESSAGES/kate-replicode-plugin.mo share/locale/cs/LC_MESSAGES/kate.mo share/locale/cs/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/cs/LC_MESSAGES/katebuild-plugin.mo share/locale/cs/LC_MESSAGES/katecloseexceptplugin.mo share/locale/cs/LC_MESSAGES/katecolorpickerplugin.mo share/locale/cs/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/cs/LC_MESSAGES/katefilebrowserplugin.mo share/locale/cs/LC_MESSAGES/katefiletree.mo share/locale/cs/LC_MESSAGES/kategdbplugin.mo share/locale/cs/LC_MESSAGES/kategitblameplugin.mo share/locale/cs/LC_MESSAGES/katekonsoleplugin.mo share/locale/cs/LC_MESSAGES/kateproject.mo share/locale/cs/LC_MESSAGES/katesearch.mo share/locale/cs/LC_MESSAGES/katesnippetsplugin.mo share/locale/cs/LC_MESSAGES/katesql.mo share/locale/cs/LC_MESSAGES/katesymbolviewer.mo share/locale/cs/LC_MESSAGES/katetextfilter.mo share/locale/cs/LC_MESSAGES/katexmlcheck.mo share/locale/cs/LC_MESSAGES/katexmltools.mo share/locale/cs/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/cs/LC_MESSAGES/lspclient.mo -share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/cs/LC_MESSAGES/tabswitcherplugin.mo +share/locale/csb/LC_MESSAGES/kate.mo +share/locale/cy/LC_MESSAGES/kate.mo +share/locale/cy/LC_MESSAGES/katesymbolviewer.mo +share/locale/cy/LC_MESSAGES/katetextfilter.mo +share/locale/cy/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/kate-ctags-plugin.mo share/locale/da/LC_MESSAGES/kate-replicode-plugin.mo share/locale/da/LC_MESSAGES/kate.mo share/locale/da/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/da/LC_MESSAGES/katebuild-plugin.mo share/locale/da/LC_MESSAGES/katecloseexceptplugin.mo share/locale/da/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/da/LC_MESSAGES/katefilebrowserplugin.mo share/locale/da/LC_MESSAGES/katefiletree.mo share/locale/da/LC_MESSAGES/kategdbplugin.mo share/locale/da/LC_MESSAGES/katekonsoleplugin.mo share/locale/da/LC_MESSAGES/kateproject.mo share/locale/da/LC_MESSAGES/katesearch.mo share/locale/da/LC_MESSAGES/katesnippetsplugin.mo share/locale/da/LC_MESSAGES/katesql.mo share/locale/da/LC_MESSAGES/katesymbolviewer.mo share/locale/da/LC_MESSAGES/katetextfilter.mo share/locale/da/LC_MESSAGES/katexmlcheck.mo share/locale/da/LC_MESSAGES/katexmltools.mo share/locale/da/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/da/LC_MESSAGES/lspclient.mo -share/locale/da/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/de/LC_MESSAGES/katekonsoleplugin.mo share/locale/de/LC_MESSAGES/kateproject.mo share/locale/de/LC_MESSAGES/katesearch.mo share/locale/de/LC_MESSAGES/katesnippetsplugin.mo share/locale/de/LC_MESSAGES/katesql.mo share/locale/de/LC_MESSAGES/katesymbolviewer.mo share/locale/de/LC_MESSAGES/katetextfilter.mo share/locale/de/LC_MESSAGES/katexmlcheck.mo share/locale/de/LC_MESSAGES/katexmltools.mo share/locale/de/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/de/LC_MESSAGES/lspclient.mo -share/locale/de/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/de/LC_MESSAGES/tabswitcherplugin.mo share/locale/el/LC_MESSAGES/kate-ctags-plugin.mo share/locale/el/LC_MESSAGES/kate-replicode-plugin.mo share/locale/el/LC_MESSAGES/kate.mo share/locale/el/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/el/LC_MESSAGES/katebuild-plugin.mo share/locale/el/LC_MESSAGES/katecloseexceptplugin.mo share/locale/el/LC_MESSAGES/katecolorpickerplugin.mo share/locale/el/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/el/LC_MESSAGES/katefilebrowserplugin.mo share/locale/el/LC_MESSAGES/katefiletree.mo share/locale/el/LC_MESSAGES/kategdbplugin.mo share/locale/el/LC_MESSAGES/kategitblameplugin.mo share/locale/el/LC_MESSAGES/katekonsoleplugin.mo share/locale/el/LC_MESSAGES/kateproject.mo share/locale/el/LC_MESSAGES/katesearch.mo share/locale/el/LC_MESSAGES/katesnippetsplugin.mo share/locale/el/LC_MESSAGES/katesql.mo share/locale/el/LC_MESSAGES/katesymbolviewer.mo share/locale/el/LC_MESSAGES/katetextfilter.mo share/locale/el/LC_MESSAGES/katexmlcheck.mo share/locale/el/LC_MESSAGES/katexmltools.mo share/locale/el/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/el/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/en_GB/LC_MESSAGES/katekonsoleplugin.mo share/locale/en_GB/LC_MESSAGES/kateproject.mo share/locale/en_GB/LC_MESSAGES/katesearch.mo share/locale/en_GB/LC_MESSAGES/katesnippetsplugin.mo share/locale/en_GB/LC_MESSAGES/katesql.mo share/locale/en_GB/LC_MESSAGES/katesymbolviewer.mo share/locale/en_GB/LC_MESSAGES/katetextfilter.mo share/locale/en_GB/LC_MESSAGES/katexmlcheck.mo share/locale/en_GB/LC_MESSAGES/katexmltools.mo share/locale/en_GB/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/en_GB/LC_MESSAGES/lspclient.mo -share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/en_GB/LC_MESSAGES/tabswitcherplugin.mo share/locale/eo/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eo/LC_MESSAGES/kate.mo share/locale/eo/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eo/LC_MESSAGES/katebuild-plugin.mo share/locale/eo/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eo/LC_MESSAGES/katekonsoleplugin.mo share/locale/eo/LC_MESSAGES/katesymbolviewer.mo share/locale/eo/LC_MESSAGES/katetextfilter.mo share/locale/eo/LC_MESSAGES/katexmltools.mo share/locale/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/katekeyboardmacros.mo share/locale/es/LC_MESSAGES/katekonsoleplugin.mo share/locale/es/LC_MESSAGES/kateproject.mo share/locale/es/LC_MESSAGES/katesearch.mo share/locale/es/LC_MESSAGES/katesnippetsplugin.mo share/locale/es/LC_MESSAGES/katesql.mo share/locale/es/LC_MESSAGES/katesymbolviewer.mo share/locale/es/LC_MESSAGES/katetextfilter.mo share/locale/es/LC_MESSAGES/katexmlcheck.mo share/locale/es/LC_MESSAGES/katexmltools.mo share/locale/es/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/es/LC_MESSAGES/lspclient.mo -share/locale/es/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/es/LC_MESSAGES/tabswitcherplugin.mo share/locale/et/LC_MESSAGES/kate-ctags-plugin.mo share/locale/et/LC_MESSAGES/kate-replicode-plugin.mo share/locale/et/LC_MESSAGES/kate.mo share/locale/et/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/et/LC_MESSAGES/katebuild-plugin.mo share/locale/et/LC_MESSAGES/katecloseexceptplugin.mo share/locale/et/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/et/LC_MESSAGES/katefilebrowserplugin.mo share/locale/et/LC_MESSAGES/katefiletree.mo share/locale/et/LC_MESSAGES/kategdbplugin.mo share/locale/et/LC_MESSAGES/katekonsoleplugin.mo share/locale/et/LC_MESSAGES/kateproject.mo share/locale/et/LC_MESSAGES/katesearch.mo share/locale/et/LC_MESSAGES/katesnippetsplugin.mo share/locale/et/LC_MESSAGES/katesql.mo share/locale/et/LC_MESSAGES/katesymbolviewer.mo share/locale/et/LC_MESSAGES/katetextfilter.mo share/locale/et/LC_MESSAGES/katexmlcheck.mo share/locale/et/LC_MESSAGES/katexmltools.mo share/locale/et/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/et/LC_MESSAGES/lspclient.mo -share/locale/et/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/et/LC_MESSAGES/tabswitcherplugin.mo share/locale/eu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/eu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/eu/LC_MESSAGES/kate.mo share/locale/eu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/eu/LC_MESSAGES/katebuild-plugin.mo share/locale/eu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/eu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/eu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/eu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/eu/LC_MESSAGES/katefiletree.mo share/locale/eu/LC_MESSAGES/kategdbplugin.mo share/locale/eu/LC_MESSAGES/kategitblameplugin.mo +share/locale/eu/LC_MESSAGES/katekeyboardmacros.mo share/locale/eu/LC_MESSAGES/katekonsoleplugin.mo share/locale/eu/LC_MESSAGES/kateproject.mo share/locale/eu/LC_MESSAGES/katesearch.mo share/locale/eu/LC_MESSAGES/katesnippetsplugin.mo share/locale/eu/LC_MESSAGES/katesql.mo share/locale/eu/LC_MESSAGES/katesymbolviewer.mo share/locale/eu/LC_MESSAGES/katetextfilter.mo share/locale/eu/LC_MESSAGES/katexmlcheck.mo share/locale/eu/LC_MESSAGES/katexmltools.mo share/locale/eu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/eu/LC_MESSAGES/lspclient.mo -share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/eu/LC_MESSAGES/tabswitcherplugin.mo share/locale/fa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/fa/LC_MESSAGES/kate.mo share/locale/fa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/fa/LC_MESSAGES/katebuild-plugin.mo share/locale/fa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/fa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/fa/LC_MESSAGES/kategdbplugin.mo share/locale/fa/LC_MESSAGES/katekonsoleplugin.mo share/locale/fa/LC_MESSAGES/katetextfilter.mo share/locale/fa/LC_MESSAGES/katexmltools.mo share/locale/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/katekeyboardmacros.mo share/locale/fi/LC_MESSAGES/katekonsoleplugin.mo share/locale/fi/LC_MESSAGES/kateproject.mo share/locale/fi/LC_MESSAGES/katesearch.mo share/locale/fi/LC_MESSAGES/katesnippetsplugin.mo share/locale/fi/LC_MESSAGES/katesql.mo share/locale/fi/LC_MESSAGES/katesymbolviewer.mo share/locale/fi/LC_MESSAGES/katetextfilter.mo share/locale/fi/LC_MESSAGES/katexmlcheck.mo share/locale/fi/LC_MESSAGES/katexmltools.mo share/locale/fi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fi/LC_MESSAGES/lspclient.mo -share/locale/fi/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/fr/LC_MESSAGES/katekonsoleplugin.mo share/locale/fr/LC_MESSAGES/kateproject.mo share/locale/fr/LC_MESSAGES/katesearch.mo share/locale/fr/LC_MESSAGES/katesnippetsplugin.mo share/locale/fr/LC_MESSAGES/katesql.mo share/locale/fr/LC_MESSAGES/katesymbolviewer.mo share/locale/fr/LC_MESSAGES/katetextfilter.mo share/locale/fr/LC_MESSAGES/katexmlcheck.mo share/locale/fr/LC_MESSAGES/katexmltools.mo share/locale/fr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/fr/LC_MESSAGES/lspclient.mo -share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/fr/LC_MESSAGES/tabswitcherplugin.mo +share/locale/fy/LC_MESSAGES/kate.mo +share/locale/fy/LC_MESSAGES/katesymbolviewer.mo +share/locale/fy/LC_MESSAGES/katetextfilter.mo +share/locale/fy/LC_MESSAGES/katexmltools.mo share/locale/ga/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ga/LC_MESSAGES/kate.mo share/locale/ga/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ga/LC_MESSAGES/katebuild-plugin.mo share/locale/ga/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ga/LC_MESSAGES/kategdbplugin.mo share/locale/ga/LC_MESSAGES/katekonsoleplugin.mo share/locale/ga/LC_MESSAGES/kateproject.mo share/locale/ga/LC_MESSAGES/katesearch.mo share/locale/ga/LC_MESSAGES/katesnippetsplugin.mo share/locale/ga/LC_MESSAGES/katesql.mo share/locale/ga/LC_MESSAGES/katesymbolviewer.mo share/locale/ga/LC_MESSAGES/katetextfilter.mo share/locale/ga/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/kate-ctags-plugin.mo share/locale/gl/LC_MESSAGES/kate-replicode-plugin.mo share/locale/gl/LC_MESSAGES/kate.mo share/locale/gl/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/gl/LC_MESSAGES/katebuild-plugin.mo share/locale/gl/LC_MESSAGES/katecloseexceptplugin.mo share/locale/gl/LC_MESSAGES/katefilebrowserplugin.mo share/locale/gl/LC_MESSAGES/katefiletree.mo share/locale/gl/LC_MESSAGES/kategdbplugin.mo share/locale/gl/LC_MESSAGES/katekonsoleplugin.mo share/locale/gl/LC_MESSAGES/kateproject.mo share/locale/gl/LC_MESSAGES/katesearch.mo share/locale/gl/LC_MESSAGES/katesnippetsplugin.mo share/locale/gl/LC_MESSAGES/katesql.mo share/locale/gl/LC_MESSAGES/katesymbolviewer.mo share/locale/gl/LC_MESSAGES/katetextfilter.mo share/locale/gl/LC_MESSAGES/katexmlcheck.mo share/locale/gl/LC_MESSAGES/katexmltools.mo share/locale/gl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/gl/LC_MESSAGES/lspclient.mo -share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/gl/LC_MESSAGES/tabswitcherplugin.mo share/locale/he/LC_MESSAGES/kate-ctags-plugin.mo share/locale/he/LC_MESSAGES/kate-replicode-plugin.mo share/locale/he/LC_MESSAGES/kate.mo share/locale/he/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/he/LC_MESSAGES/katebuild-plugin.mo share/locale/he/LC_MESSAGES/katecloseexceptplugin.mo share/locale/he/LC_MESSAGES/katefilebrowserplugin.mo share/locale/he/LC_MESSAGES/katekonsoleplugin.mo share/locale/he/LC_MESSAGES/kateproject.mo share/locale/he/LC_MESSAGES/katesearch.mo share/locale/he/LC_MESSAGES/katesymbolviewer.mo share/locale/he/LC_MESSAGES/katetextfilter.mo share/locale/he/LC_MESSAGES/katexmltools.mo -share/locale/he/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/hi/LC_MESSAGES/kate.mo share/locale/hi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hi/LC_MESSAGES/katekonsoleplugin.mo share/locale/hi/LC_MESSAGES/katesymbolviewer.mo share/locale/hi/LC_MESSAGES/katetextfilter.mo share/locale/hi/LC_MESSAGES/katexmltools.mo -share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo +share/locale/hne/LC_MESSAGES/kate.mo +share/locale/hne/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/hne/LC_MESSAGES/katekonsoleplugin.mo +share/locale/hne/LC_MESSAGES/katesymbolviewer.mo +share/locale/hne/LC_MESSAGES/katetextfilter.mo +share/locale/hne/LC_MESSAGES/katexmltools.mo share/locale/hr/LC_MESSAGES/kate.mo share/locale/hr/LC_MESSAGES/katesymbolviewer.mo share/locale/hr/LC_MESSAGES/katetextfilter.mo share/locale/hr/LC_MESSAGES/katexmltools.mo +share/locale/hsb/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/kate-ctags-plugin.mo share/locale/hu/LC_MESSAGES/kate-replicode-plugin.mo share/locale/hu/LC_MESSAGES/kate.mo share/locale/hu/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/hu/LC_MESSAGES/katebuild-plugin.mo share/locale/hu/LC_MESSAGES/katecloseexceptplugin.mo share/locale/hu/LC_MESSAGES/katecolorpickerplugin.mo share/locale/hu/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/hu/LC_MESSAGES/katefilebrowserplugin.mo share/locale/hu/LC_MESSAGES/katefiletree.mo share/locale/hu/LC_MESSAGES/kategdbplugin.mo share/locale/hu/LC_MESSAGES/kategitblameplugin.mo share/locale/hu/LC_MESSAGES/katekonsoleplugin.mo share/locale/hu/LC_MESSAGES/kateproject.mo share/locale/hu/LC_MESSAGES/katesearch.mo share/locale/hu/LC_MESSAGES/katesnippetsplugin.mo share/locale/hu/LC_MESSAGES/katesql.mo share/locale/hu/LC_MESSAGES/katesymbolviewer.mo share/locale/hu/LC_MESSAGES/katetextfilter.mo share/locale/hu/LC_MESSAGES/katexmlcheck.mo share/locale/hu/LC_MESSAGES/katexmltools.mo share/locale/hu/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/hu/LC_MESSAGES/lspclient.mo -share/locale/hu/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/ia/LC_MESSAGES/katekonsoleplugin.mo share/locale/ia/LC_MESSAGES/kateproject.mo share/locale/ia/LC_MESSAGES/katesearch.mo share/locale/ia/LC_MESSAGES/katesnippetsplugin.mo share/locale/ia/LC_MESSAGES/katesql.mo share/locale/ia/LC_MESSAGES/katesymbolviewer.mo share/locale/ia/LC_MESSAGES/katetextfilter.mo share/locale/ia/LC_MESSAGES/katexmlcheck.mo share/locale/ia/LC_MESSAGES/katexmltools.mo share/locale/ia/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ia/LC_MESSAGES/lspclient.mo -share/locale/ia/LC_MESSAGES/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/katecolorpickerplugin.mo share/locale/id/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/id/LC_MESSAGES/katefilebrowserplugin.mo share/locale/id/LC_MESSAGES/katefiletree.mo share/locale/id/LC_MESSAGES/kategdbplugin.mo share/locale/id/LC_MESSAGES/kategitblameplugin.mo +share/locale/id/LC_MESSAGES/katekeyboardmacros.mo share/locale/id/LC_MESSAGES/katekonsoleplugin.mo share/locale/id/LC_MESSAGES/kateproject.mo share/locale/id/LC_MESSAGES/katesearch.mo share/locale/id/LC_MESSAGES/katesnippetsplugin.mo share/locale/id/LC_MESSAGES/katesql.mo share/locale/id/LC_MESSAGES/katesymbolviewer.mo share/locale/id/LC_MESSAGES/katetextfilter.mo share/locale/id/LC_MESSAGES/katexmlcheck.mo share/locale/id/LC_MESSAGES/katexmltools.mo share/locale/id/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/id/LC_MESSAGES/lspclient.mo -share/locale/id/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/id/LC_MESSAGES/tabswitcherplugin.mo +share/locale/ie/LC_MESSAGES/kate.mo +share/locale/ie/LC_MESSAGES/katefiletree.mo +share/locale/ie/LC_MESSAGES/kategitblameplugin.mo +share/locale/ie/LC_MESSAGES/katesnippetsplugin.mo +share/locale/ie/LC_MESSAGES/katesymbolviewer.mo +share/locale/ie/LC_MESSAGES/katetextfilter.mo +share/locale/ie/LC_MESSAGES/katexmlcheck.mo +share/locale/ie/LC_MESSAGES/katexmltools.mo share/locale/is/LC_MESSAGES/kate.mo share/locale/is/LC_MESSAGES/katefilebrowserplugin.mo share/locale/is/LC_MESSAGES/katekonsoleplugin.mo share/locale/is/LC_MESSAGES/katesearch.mo share/locale/is/LC_MESSAGES/katesymbolviewer.mo share/locale/is/LC_MESSAGES/katetextfilter.mo share/locale/is/LC_MESSAGES/katexmltools.mo share/locale/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/katekeyboardmacros.mo share/locale/it/LC_MESSAGES/katekonsoleplugin.mo share/locale/it/LC_MESSAGES/kateproject.mo share/locale/it/LC_MESSAGES/katesearch.mo share/locale/it/LC_MESSAGES/katesnippetsplugin.mo share/locale/it/LC_MESSAGES/katesql.mo share/locale/it/LC_MESSAGES/katesymbolviewer.mo share/locale/it/LC_MESSAGES/katetextfilter.mo share/locale/it/LC_MESSAGES/katexmlcheck.mo share/locale/it/LC_MESSAGES/katexmltools.mo share/locale/it/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/it/LC_MESSAGES/lspclient.mo -share/locale/it/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/ja/LC_MESSAGES/katekonsoleplugin.mo share/locale/ja/LC_MESSAGES/kateproject.mo share/locale/ja/LC_MESSAGES/katesearch.mo share/locale/ja/LC_MESSAGES/katesnippetsplugin.mo share/locale/ja/LC_MESSAGES/katesql.mo share/locale/ja/LC_MESSAGES/katesymbolviewer.mo share/locale/ja/LC_MESSAGES/katetextfilter.mo share/locale/ja/LC_MESSAGES/katexmlcheck.mo share/locale/ja/LC_MESSAGES/katexmltools.mo share/locale/ja/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ja/LC_MESSAGES/lspclient.mo -share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ja/LC_MESSAGES/tabswitcherplugin.mo +share/locale/ka/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/ka/LC_MESSAGES/kate-replicode-plugin.mo +share/locale/ka/LC_MESSAGES/kate.mo +share/locale/ka/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ka/LC_MESSAGES/katebuild-plugin.mo +share/locale/ka/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/ka/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/ka/LC_MESSAGES/kateexternaltoolsplugin.mo +share/locale/ka/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/ka/LC_MESSAGES/katefiletree.mo +share/locale/ka/LC_MESSAGES/kategdbplugin.mo +share/locale/ka/LC_MESSAGES/kategitblameplugin.mo +share/locale/ka/LC_MESSAGES/katekeyboardmacros.mo +share/locale/ka/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ka/LC_MESSAGES/kateproject.mo +share/locale/ka/LC_MESSAGES/katesearch.mo +share/locale/ka/LC_MESSAGES/katesnippetsplugin.mo +share/locale/ka/LC_MESSAGES/katesql.mo +share/locale/ka/LC_MESSAGES/katesymbolviewer.mo +share/locale/ka/LC_MESSAGES/katetextfilter.mo +share/locale/ka/LC_MESSAGES/katexmlcheck.mo +share/locale/ka/LC_MESSAGES/katexmltools.mo +share/locale/ka/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/ka/LC_MESSAGES/lspclient.mo +share/locale/ka/LC_MESSAGES/tabswitcherplugin.mo share/locale/kk/LC_MESSAGES/kate-ctags-plugin.mo share/locale/kk/LC_MESSAGES/kate.mo share/locale/kk/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/kk/LC_MESSAGES/katebuild-plugin.mo share/locale/kk/LC_MESSAGES/katecloseexceptplugin.mo share/locale/kk/LC_MESSAGES/katefilebrowserplugin.mo share/locale/kk/LC_MESSAGES/kategdbplugin.mo share/locale/kk/LC_MESSAGES/katekonsoleplugin.mo share/locale/kk/LC_MESSAGES/kateproject.mo share/locale/kk/LC_MESSAGES/katesearch.mo share/locale/kk/LC_MESSAGES/katesnippetsplugin.mo share/locale/kk/LC_MESSAGES/katesql.mo share/locale/kk/LC_MESSAGES/katesymbolviewer.mo share/locale/kk/LC_MESSAGES/katetextfilter.mo share/locale/kk/LC_MESSAGES/katexmltools.mo share/locale/km/LC_MESSAGES/kate-ctags-plugin.mo share/locale/km/LC_MESSAGES/kate.mo share/locale/km/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/km/LC_MESSAGES/katebuild-plugin.mo share/locale/km/LC_MESSAGES/katefilebrowserplugin.mo share/locale/km/LC_MESSAGES/kategdbplugin.mo share/locale/km/LC_MESSAGES/katekonsoleplugin.mo share/locale/km/LC_MESSAGES/katesearch.mo share/locale/km/LC_MESSAGES/katesql.mo share/locale/km/LC_MESSAGES/katesymbolviewer.mo share/locale/km/LC_MESSAGES/katetextfilter.mo share/locale/km/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ko/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ko/LC_MESSAGES/kate.mo share/locale/ko/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ko/LC_MESSAGES/katebuild-plugin.mo share/locale/ko/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ko/LC_MESSAGES/katecolorpickerplugin.mo share/locale/ko/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ko/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ko/LC_MESSAGES/katefiletree.mo share/locale/ko/LC_MESSAGES/kategdbplugin.mo share/locale/ko/LC_MESSAGES/kategitblameplugin.mo share/locale/ko/LC_MESSAGES/katekonsoleplugin.mo share/locale/ko/LC_MESSAGES/kateproject.mo share/locale/ko/LC_MESSAGES/katesearch.mo share/locale/ko/LC_MESSAGES/katesnippetsplugin.mo share/locale/ko/LC_MESSAGES/katesql.mo share/locale/ko/LC_MESSAGES/katesymbolviewer.mo share/locale/ko/LC_MESSAGES/katetextfilter.mo share/locale/ko/LC_MESSAGES/katexmlcheck.mo share/locale/ko/LC_MESSAGES/katexmltools.mo share/locale/ko/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ko/LC_MESSAGES/lspclient.mo -share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ko/LC_MESSAGES/tabswitcherplugin.mo +share/locale/ku/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lt/LC_MESSAGES/kate-replicode-plugin.mo share/locale/lt/LC_MESSAGES/kate.mo share/locale/lt/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lt/LC_MESSAGES/katebuild-plugin.mo share/locale/lt/LC_MESSAGES/katecloseexceptplugin.mo share/locale/lt/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/lt/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lt/LC_MESSAGES/katefiletree.mo share/locale/lt/LC_MESSAGES/kategdbplugin.mo share/locale/lt/LC_MESSAGES/katekonsoleplugin.mo share/locale/lt/LC_MESSAGES/kateproject.mo share/locale/lt/LC_MESSAGES/katesearch.mo share/locale/lt/LC_MESSAGES/katesnippetsplugin.mo share/locale/lt/LC_MESSAGES/katesql.mo share/locale/lt/LC_MESSAGES/katesymbolviewer.mo share/locale/lt/LC_MESSAGES/katetextfilter.mo share/locale/lt/LC_MESSAGES/katexmlcheck.mo share/locale/lt/LC_MESSAGES/katexmltools.mo share/locale/lt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/lt/LC_MESSAGES/lspclient.mo -share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/lt/LC_MESSAGES/tabswitcherplugin.mo share/locale/lv/LC_MESSAGES/kate-ctags-plugin.mo share/locale/lv/LC_MESSAGES/kate.mo share/locale/lv/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/lv/LC_MESSAGES/katebuild-plugin.mo share/locale/lv/LC_MESSAGES/katefilebrowserplugin.mo share/locale/lv/LC_MESSAGES/kategdbplugin.mo share/locale/lv/LC_MESSAGES/katekonsoleplugin.mo share/locale/lv/LC_MESSAGES/katesearch.mo share/locale/lv/LC_MESSAGES/katesql.mo share/locale/lv/LC_MESSAGES/katesymbolviewer.mo share/locale/lv/LC_MESSAGES/katetextfilter.mo share/locale/lv/LC_MESSAGES/katexmltools.mo +share/locale/mai/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/mai/LC_MESSAGES/kate.mo +share/locale/mai/LC_MESSAGES/katesql.mo +share/locale/mai/LC_MESSAGES/katesymbolviewer.mo +share/locale/mk/LC_MESSAGES/kate.mo +share/locale/mk/LC_MESSAGES/katetextfilter.mo +share/locale/mk/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ml/LC_MESSAGES/kate-replicode-plugin.mo share/locale/ml/LC_MESSAGES/kate.mo share/locale/ml/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ml/LC_MESSAGES/katebuild-plugin.mo share/locale/ml/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ml/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ml/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ml/LC_MESSAGES/katefiletree.mo share/locale/ml/LC_MESSAGES/kategdbplugin.mo share/locale/ml/LC_MESSAGES/katekonsoleplugin.mo share/locale/ml/LC_MESSAGES/kateproject.mo share/locale/ml/LC_MESSAGES/katesearch.mo share/locale/ml/LC_MESSAGES/katesnippetsplugin.mo share/locale/ml/LC_MESSAGES/katesql.mo share/locale/ml/LC_MESSAGES/katesymbolviewer.mo share/locale/ml/LC_MESSAGES/katetextfilter.mo share/locale/ml/LC_MESSAGES/katexmlcheck.mo share/locale/ml/LC_MESSAGES/katexmltools.mo share/locale/ml/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ml/LC_MESSAGES/lspclient.mo -share/locale/ml/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ml/LC_MESSAGES/tabswitcherplugin.mo share/locale/mr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/mr/LC_MESSAGES/kate.mo share/locale/mr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/mr/LC_MESSAGES/katebuild-plugin.mo share/locale/mr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/mr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/mr/LC_MESSAGES/kategdbplugin.mo share/locale/mr/LC_MESSAGES/katekonsoleplugin.mo share/locale/mr/LC_MESSAGES/kateproject.mo share/locale/mr/LC_MESSAGES/katesearch.mo share/locale/mr/LC_MESSAGES/katesnippetsplugin.mo share/locale/mr/LC_MESSAGES/katesql.mo share/locale/mr/LC_MESSAGES/katesymbolviewer.mo share/locale/mr/LC_MESSAGES/katetextfilter.mo share/locale/mr/LC_MESSAGES/katexmltools.mo +share/locale/ms/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/ms/LC_MESSAGES/kate.mo +share/locale/ms/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/ms/LC_MESSAGES/katebuild-plugin.mo +share/locale/ms/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/ms/LC_MESSAGES/kategdbplugin.mo +share/locale/ms/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ms/LC_MESSAGES/katesymbolviewer.mo +share/locale/ms/LC_MESSAGES/katetextfilter.mo +share/locale/ms/LC_MESSAGES/katexmltools.mo +share/locale/my/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/my/LC_MESSAGES/kate-replicode-plugin.mo +share/locale/my/LC_MESSAGES/kate.mo +share/locale/my/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/my/LC_MESSAGES/katebuild-plugin.mo +share/locale/my/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/my/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/my/LC_MESSAGES/kateexternaltoolsplugin.mo +share/locale/my/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/my/LC_MESSAGES/katefiletree.mo +share/locale/my/LC_MESSAGES/kategdbplugin.mo +share/locale/my/LC_MESSAGES/kategitblameplugin.mo +share/locale/my/LC_MESSAGES/katekonsoleplugin.mo +share/locale/my/LC_MESSAGES/kateproject.mo +share/locale/my/LC_MESSAGES/katesearch.mo +share/locale/my/LC_MESSAGES/katesnippetsplugin.mo +share/locale/my/LC_MESSAGES/katesql.mo +share/locale/my/LC_MESSAGES/katesymbolviewer.mo +share/locale/my/LC_MESSAGES/katetextfilter.mo +share/locale/my/LC_MESSAGES/katexmlcheck.mo +share/locale/my/LC_MESSAGES/katexmltools.mo +share/locale/my/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/my/LC_MESSAGES/lspclient.mo +share/locale/my/LC_MESSAGES/tabswitcherplugin.mo share/locale/nb/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nb/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nb/LC_MESSAGES/kate.mo share/locale/nb/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nb/LC_MESSAGES/katebuild-plugin.mo share/locale/nb/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nb/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nb/LC_MESSAGES/katefiletree.mo share/locale/nb/LC_MESSAGES/kategdbplugin.mo share/locale/nb/LC_MESSAGES/katekonsoleplugin.mo share/locale/nb/LC_MESSAGES/kateproject.mo share/locale/nb/LC_MESSAGES/katesearch.mo share/locale/nb/LC_MESSAGES/katesnippetsplugin.mo share/locale/nb/LC_MESSAGES/katesql.mo share/locale/nb/LC_MESSAGES/katesymbolviewer.mo share/locale/nb/LC_MESSAGES/katetextfilter.mo share/locale/nb/LC_MESSAGES/katexmltools.mo -share/locale/nb/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nb/LC_MESSAGES/tabswitcherplugin.mo share/locale/nds/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nds/LC_MESSAGES/kate.mo share/locale/nds/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nds/LC_MESSAGES/katebuild-plugin.mo share/locale/nds/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nds/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nds/LC_MESSAGES/katefiletree.mo share/locale/nds/LC_MESSAGES/kategdbplugin.mo share/locale/nds/LC_MESSAGES/katekonsoleplugin.mo share/locale/nds/LC_MESSAGES/kateproject.mo share/locale/nds/LC_MESSAGES/katesearch.mo share/locale/nds/LC_MESSAGES/katesnippetsplugin.mo share/locale/nds/LC_MESSAGES/katesql.mo share/locale/nds/LC_MESSAGES/katesymbolviewer.mo share/locale/nds/LC_MESSAGES/katetextfilter.mo share/locale/nds/LC_MESSAGES/katexmltools.mo -share/locale/nds/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nds/LC_MESSAGES/tabswitcherplugin.mo +share/locale/ne/LC_MESSAGES/kate.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/katekeyboardmacros.mo share/locale/nl/LC_MESSAGES/katekonsoleplugin.mo share/locale/nl/LC_MESSAGES/kateproject.mo share/locale/nl/LC_MESSAGES/katesearch.mo share/locale/nl/LC_MESSAGES/katesnippetsplugin.mo share/locale/nl/LC_MESSAGES/katesql.mo share/locale/nl/LC_MESSAGES/katesymbolviewer.mo share/locale/nl/LC_MESSAGES/katetextfilter.mo share/locale/nl/LC_MESSAGES/katexmlcheck.mo share/locale/nl/LC_MESSAGES/katexmltools.mo share/locale/nl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nl/LC_MESSAGES/lspclient.mo -share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nl/LC_MESSAGES/tabswitcherplugin.mo share/locale/nn/LC_MESSAGES/kate-ctags-plugin.mo share/locale/nn/LC_MESSAGES/kate-replicode-plugin.mo share/locale/nn/LC_MESSAGES/kate.mo share/locale/nn/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/nn/LC_MESSAGES/katebuild-plugin.mo share/locale/nn/LC_MESSAGES/katecloseexceptplugin.mo share/locale/nn/LC_MESSAGES/katecolorpickerplugin.mo share/locale/nn/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/nn/LC_MESSAGES/katefilebrowserplugin.mo share/locale/nn/LC_MESSAGES/katefiletree.mo share/locale/nn/LC_MESSAGES/kategdbplugin.mo share/locale/nn/LC_MESSAGES/katekonsoleplugin.mo share/locale/nn/LC_MESSAGES/kateproject.mo share/locale/nn/LC_MESSAGES/katesearch.mo share/locale/nn/LC_MESSAGES/katesnippetsplugin.mo share/locale/nn/LC_MESSAGES/katesql.mo share/locale/nn/LC_MESSAGES/katesymbolviewer.mo share/locale/nn/LC_MESSAGES/katetextfilter.mo share/locale/nn/LC_MESSAGES/katexmlcheck.mo share/locale/nn/LC_MESSAGES/katexmltools.mo share/locale/nn/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/nn/LC_MESSAGES/lspclient.mo -share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/nn/LC_MESSAGES/tabswitcherplugin.mo +share/locale/oc/LC_MESSAGES/kate.mo +share/locale/oc/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/oc/LC_MESSAGES/katekonsoleplugin.mo +share/locale/oc/LC_MESSAGES/katesymbolviewer.mo +share/locale/oc/LC_MESSAGES/katetextfilter.mo +share/locale/oc/LC_MESSAGES/katexmltools.mo share/locale/pa/LC_MESSAGES/kate-ctags-plugin.mo share/locale/pa/LC_MESSAGES/kate.mo share/locale/pa/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/pa/LC_MESSAGES/katebuild-plugin.mo share/locale/pa/LC_MESSAGES/katecloseexceptplugin.mo share/locale/pa/LC_MESSAGES/katefilebrowserplugin.mo share/locale/pa/LC_MESSAGES/katefiletree.mo share/locale/pa/LC_MESSAGES/kategdbplugin.mo share/locale/pa/LC_MESSAGES/katekonsoleplugin.mo share/locale/pa/LC_MESSAGES/kateproject.mo share/locale/pa/LC_MESSAGES/katesearch.mo share/locale/pa/LC_MESSAGES/katesnippetsplugin.mo share/locale/pa/LC_MESSAGES/katesql.mo share/locale/pa/LC_MESSAGES/katesymbolviewer.mo share/locale/pa/LC_MESSAGES/katetextfilter.mo share/locale/pa/LC_MESSAGES/katexmltools.mo -share/locale/pa/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/pl/LC_MESSAGES/katekonsoleplugin.mo share/locale/pl/LC_MESSAGES/kateproject.mo share/locale/pl/LC_MESSAGES/katesearch.mo share/locale/pl/LC_MESSAGES/katesnippetsplugin.mo share/locale/pl/LC_MESSAGES/katesql.mo share/locale/pl/LC_MESSAGES/katesymbolviewer.mo share/locale/pl/LC_MESSAGES/katetextfilter.mo share/locale/pl/LC_MESSAGES/katexmlcheck.mo share/locale/pl/LC_MESSAGES/katexmltools.mo share/locale/pl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pl/LC_MESSAGES/lspclient.mo -share/locale/pl/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/pt/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt/LC_MESSAGES/kateproject.mo share/locale/pt/LC_MESSAGES/katesearch.mo share/locale/pt/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt/LC_MESSAGES/katesql.mo share/locale/pt/LC_MESSAGES/katesymbolviewer.mo share/locale/pt/LC_MESSAGES/katetextfilter.mo share/locale/pt/LC_MESSAGES/katexmlcheck.mo share/locale/pt/LC_MESSAGES/katexmltools.mo share/locale/pt/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt/LC_MESSAGES/lspclient.mo -share/locale/pt/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/pt_BR/LC_MESSAGES/katekonsoleplugin.mo share/locale/pt_BR/LC_MESSAGES/kateproject.mo share/locale/pt_BR/LC_MESSAGES/katesearch.mo share/locale/pt_BR/LC_MESSAGES/katesnippetsplugin.mo share/locale/pt_BR/LC_MESSAGES/katesql.mo share/locale/pt_BR/LC_MESSAGES/katesymbolviewer.mo share/locale/pt_BR/LC_MESSAGES/katetextfilter.mo share/locale/pt_BR/LC_MESSAGES/katexmlcheck.mo share/locale/pt_BR/LC_MESSAGES/katexmltools.mo share/locale/pt_BR/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/pt_BR/LC_MESSAGES/lspclient.mo -share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/pt_BR/LC_MESSAGES/tabswitcherplugin.mo share/locale/ro/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ro/LC_MESSAGES/kate.mo share/locale/ro/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ro/LC_MESSAGES/katebuild-plugin.mo share/locale/ro/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ro/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/ro/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ro/LC_MESSAGES/katefiletree.mo share/locale/ro/LC_MESSAGES/kategdbplugin.mo share/locale/ro/LC_MESSAGES/katekonsoleplugin.mo share/locale/ro/LC_MESSAGES/kateproject.mo share/locale/ro/LC_MESSAGES/katesearch.mo share/locale/ro/LC_MESSAGES/katesnippetsplugin.mo share/locale/ro/LC_MESSAGES/katesql.mo share/locale/ro/LC_MESSAGES/katesymbolviewer.mo share/locale/ro/LC_MESSAGES/katetextfilter.mo share/locale/ro/LC_MESSAGES/katexmlcheck.mo share/locale/ro/LC_MESSAGES/katexmltools.mo share/locale/ro/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ro/LC_MESSAGES/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/kategitblameplugin.mo +share/locale/ru/LC_MESSAGES/katekeyboardmacros.mo share/locale/ru/LC_MESSAGES/katekonsoleplugin.mo share/locale/ru/LC_MESSAGES/kateproject.mo share/locale/ru/LC_MESSAGES/katesearch.mo share/locale/ru/LC_MESSAGES/katesnippetsplugin.mo share/locale/ru/LC_MESSAGES/katesql.mo share/locale/ru/LC_MESSAGES/katesymbolviewer.mo share/locale/ru/LC_MESSAGES/katetextfilter.mo share/locale/ru/LC_MESSAGES/katexmlcheck.mo share/locale/ru/LC_MESSAGES/katexmltools.mo share/locale/ru/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/ru/LC_MESSAGES/lspclient.mo -share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/ru/LC_MESSAGES/tabswitcherplugin.mo share/locale/se/LC_MESSAGES/kate.mo share/locale/se/LC_MESSAGES/katefilebrowserplugin.mo share/locale/se/LC_MESSAGES/katefiletree.mo share/locale/se/LC_MESSAGES/katekonsoleplugin.mo share/locale/se/LC_MESSAGES/katesymbolviewer.mo share/locale/se/LC_MESSAGES/katetextfilter.mo share/locale/se/LC_MESSAGES/katexmltools.mo +share/locale/si/LC_MESSAGES/kate.mo +share/locale/si/LC_MESSAGES/katebuild-plugin.mo +share/locale/si/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/si/LC_MESSAGES/katekonsoleplugin.mo +share/locale/si/LC_MESSAGES/katesearch.mo +share/locale/si/LC_MESSAGES/katesql.mo +share/locale/si/LC_MESSAGES/katesymbolviewer.mo +share/locale/si/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/sk/LC_MESSAGES/katekonsoleplugin.mo share/locale/sk/LC_MESSAGES/kateproject.mo share/locale/sk/LC_MESSAGES/katesearch.mo share/locale/sk/LC_MESSAGES/katesnippetsplugin.mo share/locale/sk/LC_MESSAGES/katesql.mo share/locale/sk/LC_MESSAGES/katesymbolviewer.mo share/locale/sk/LC_MESSAGES/katetextfilter.mo share/locale/sk/LC_MESSAGES/katexmlcheck.mo share/locale/sk/LC_MESSAGES/katexmltools.mo share/locale/sk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sk/LC_MESSAGES/lspclient.mo -share/locale/sk/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/sl/LC_MESSAGES/katekonsoleplugin.mo share/locale/sl/LC_MESSAGES/kateproject.mo share/locale/sl/LC_MESSAGES/katesearch.mo share/locale/sl/LC_MESSAGES/katesnippetsplugin.mo share/locale/sl/LC_MESSAGES/katesql.mo share/locale/sl/LC_MESSAGES/katesymbolviewer.mo share/locale/sl/LC_MESSAGES/katetextfilter.mo share/locale/sl/LC_MESSAGES/katexmlcheck.mo share/locale/sl/LC_MESSAGES/katexmltools.mo share/locale/sl/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sl/LC_MESSAGES/lspclient.mo -share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sl/LC_MESSAGES/tabswitcherplugin.mo share/locale/sq/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sq/LC_MESSAGES/kate.mo share/locale/sq/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sq/LC_MESSAGES/katebuild-plugin.mo share/locale/sq/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sq/LC_MESSAGES/katekonsoleplugin.mo share/locale/sq/LC_MESSAGES/katesymbolviewer.mo share/locale/sq/LC_MESSAGES/katetextfilter.mo share/locale/sq/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/sr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/sr/LC_MESSAGES/kate.mo share/locale/sr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/sr/LC_MESSAGES/katebuild-plugin.mo share/locale/sr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/sr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/sr/LC_MESSAGES/katefiletree.mo share/locale/sr/LC_MESSAGES/kategdbplugin.mo share/locale/sr/LC_MESSAGES/katekonsoleplugin.mo share/locale/sr/LC_MESSAGES/kateproject.mo share/locale/sr/LC_MESSAGES/katesearch.mo share/locale/sr/LC_MESSAGES/katesnippetsplugin.mo share/locale/sr/LC_MESSAGES/katesql.mo share/locale/sr/LC_MESSAGES/katesymbolviewer.mo share/locale/sr/LC_MESSAGES/katetextfilter.mo share/locale/sr/LC_MESSAGES/katexmlcheck.mo share/locale/sr/LC_MESSAGES/katexmltools.mo share/locale/sr/LC_MESSAGES/ktexteditorpreviewplugin.mo -share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/sr/LC_MESSAGES/tabswitcherplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kate-replicode-plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kate.mo +share/locale/sr@ijekavian/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katebuild-plugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katefiletree.mo +share/locale/sr@ijekavian/LC_MESSAGES/kategdbplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katekonsoleplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kateproject.mo +share/locale/sr@ijekavian/LC_MESSAGES/katesearch.mo +share/locale/sr@ijekavian/LC_MESSAGES/katesnippetsplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/katesql.mo +share/locale/sr@ijekavian/LC_MESSAGES/katesymbolviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/katetextfilter.mo +share/locale/sr@ijekavian/LC_MESSAGES/katexmlcheck.mo +share/locale/sr@ijekavian/LC_MESSAGES/katexmltools.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/tabswitcherplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kate-replicode-plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kate.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katebuild-plugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katefiletree.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kategdbplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katekonsoleplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kateproject.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katesearch.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katesnippetsplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katesql.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katesymbolviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katetextfilter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmlcheck.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katexmltools.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/tabswitcherplugin.mo +share/locale/sr@latin/LC_MESSAGES/kate-ctags-plugin.mo +share/locale/sr@latin/LC_MESSAGES/kate-replicode-plugin.mo +share/locale/sr@latin/LC_MESSAGES/kate.mo +share/locale/sr@latin/LC_MESSAGES/katebacktracebrowserplugin.mo +share/locale/sr@latin/LC_MESSAGES/katebuild-plugin.mo +share/locale/sr@latin/LC_MESSAGES/katecloseexceptplugin.mo +share/locale/sr@latin/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/sr@latin/LC_MESSAGES/katefiletree.mo +share/locale/sr@latin/LC_MESSAGES/kategdbplugin.mo +share/locale/sr@latin/LC_MESSAGES/katekonsoleplugin.mo +share/locale/sr@latin/LC_MESSAGES/kateproject.mo +share/locale/sr@latin/LC_MESSAGES/katesearch.mo +share/locale/sr@latin/LC_MESSAGES/katesnippetsplugin.mo +share/locale/sr@latin/LC_MESSAGES/katesql.mo +share/locale/sr@latin/LC_MESSAGES/katesymbolviewer.mo +share/locale/sr@latin/LC_MESSAGES/katetextfilter.mo +share/locale/sr@latin/LC_MESSAGES/katexmlcheck.mo +share/locale/sr@latin/LC_MESSAGES/katexmltools.mo +share/locale/sr@latin/LC_MESSAGES/ktexteditorpreviewplugin.mo +share/locale/sr@latin/LC_MESSAGES/tabswitcherplugin.mo share/locale/sv/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/sv/LC_MESSAGES/katekonsoleplugin.mo share/locale/sv/LC_MESSAGES/kateproject.mo share/locale/sv/LC_MESSAGES/katesearch.mo share/locale/sv/LC_MESSAGES/katesnippetsplugin.mo share/locale/sv/LC_MESSAGES/katesql.mo share/locale/sv/LC_MESSAGES/katesymbolviewer.mo share/locale/sv/LC_MESSAGES/katetextfilter.mo share/locale/sv/LC_MESSAGES/katexmlcheck.mo share/locale/sv/LC_MESSAGES/katexmltools.mo share/locale/sv/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/sv/LC_MESSAGES/lspclient.mo -share/locale/sv/LC_MESSAGES/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/katecloseexceptplugin.mo +share/locale/ta/LC_MESSAGES/katecolorpickerplugin.mo +share/locale/ta/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/ta/LC_MESSAGES/katefiletree.mo +share/locale/ta/LC_MESSAGES/kategitblameplugin.mo +share/locale/ta/LC_MESSAGES/katekonsoleplugin.mo +share/locale/ta/LC_MESSAGES/katesearch.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/ktexteditorpreviewplugin.mo +share/locale/ta/LC_MESSAGES/lspclient.mo +share/locale/ta/LC_MESSAGES/tabswitcherplugin.mo +share/locale/te/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/kate.mo share/locale/tg/LC_MESSAGES/katesymbolviewer.mo share/locale/tg/LC_MESSAGES/katetextfilter.mo share/locale/tg/LC_MESSAGES/katexmltools.mo +share/locale/th/LC_MESSAGES/kate.mo +share/locale/th/LC_MESSAGES/katebuild-plugin.mo +share/locale/th/LC_MESSAGES/katefilebrowserplugin.mo +share/locale/th/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kate-ctags-plugin.mo share/locale/tr/LC_MESSAGES/kate-replicode-plugin.mo share/locale/tr/LC_MESSAGES/kate.mo share/locale/tr/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/tr/LC_MESSAGES/katebuild-plugin.mo share/locale/tr/LC_MESSAGES/katecloseexceptplugin.mo share/locale/tr/LC_MESSAGES/katecolorpickerplugin.mo share/locale/tr/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/tr/LC_MESSAGES/katefilebrowserplugin.mo share/locale/tr/LC_MESSAGES/katefiletree.mo share/locale/tr/LC_MESSAGES/kategdbplugin.mo share/locale/tr/LC_MESSAGES/kategitblameplugin.mo +share/locale/tr/LC_MESSAGES/katekeyboardmacros.mo share/locale/tr/LC_MESSAGES/katekonsoleplugin.mo share/locale/tr/LC_MESSAGES/kateproject.mo share/locale/tr/LC_MESSAGES/katesearch.mo share/locale/tr/LC_MESSAGES/katesnippetsplugin.mo share/locale/tr/LC_MESSAGES/katesql.mo share/locale/tr/LC_MESSAGES/katesymbolviewer.mo share/locale/tr/LC_MESSAGES/katetextfilter.mo share/locale/tr/LC_MESSAGES/katexmlcheck.mo share/locale/tr/LC_MESSAGES/katexmltools.mo share/locale/tr/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/tr/LC_MESSAGES/lspclient.mo -share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/tr/LC_MESSAGES/tabswitcherplugin.mo share/locale/ug/LC_MESSAGES/kate-ctags-plugin.mo share/locale/ug/LC_MESSAGES/kate.mo share/locale/ug/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/ug/LC_MESSAGES/katebuild-plugin.mo share/locale/ug/LC_MESSAGES/katecloseexceptplugin.mo share/locale/ug/LC_MESSAGES/katefilebrowserplugin.mo share/locale/ug/LC_MESSAGES/kategdbplugin.mo share/locale/ug/LC_MESSAGES/katekonsoleplugin.mo share/locale/ug/LC_MESSAGES/kateproject.mo share/locale/ug/LC_MESSAGES/katesearch.mo share/locale/ug/LC_MESSAGES/katesnippetsplugin.mo share/locale/ug/LC_MESSAGES/katesql.mo share/locale/ug/LC_MESSAGES/katesymbolviewer.mo share/locale/ug/LC_MESSAGES/katetextfilter.mo share/locale/ug/LC_MESSAGES/katexmltools.mo share/locale/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/katekeyboardmacros.mo share/locale/uk/LC_MESSAGES/katekonsoleplugin.mo share/locale/uk/LC_MESSAGES/kateproject.mo share/locale/uk/LC_MESSAGES/katesearch.mo share/locale/uk/LC_MESSAGES/katesnippetsplugin.mo share/locale/uk/LC_MESSAGES/katesql.mo share/locale/uk/LC_MESSAGES/katesymbolviewer.mo share/locale/uk/LC_MESSAGES/katetextfilter.mo share/locale/uk/LC_MESSAGES/katexmlcheck.mo share/locale/uk/LC_MESSAGES/katexmltools.mo share/locale/uk/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/uk/LC_MESSAGES/lspclient.mo -share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.plasma.katesessions.mo share/locale/uk/LC_MESSAGES/tabswitcherplugin.mo +share/locale/uz/LC_MESSAGES/kate.mo +share/locale/uz/LC_MESSAGES/katetextfilter.mo +share/locale/uz@cyrillic/LC_MESSAGES/kate.mo +share/locale/uz@cyrillic/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/kate-ctags-plugin.mo share/locale/vi/LC_MESSAGES/kate-replicode-plugin.mo share/locale/vi/LC_MESSAGES/kate.mo share/locale/vi/LC_MESSAGES/katebacktracebrowserplugin.mo share/locale/vi/LC_MESSAGES/katebuild-plugin.mo share/locale/vi/LC_MESSAGES/katecloseexceptplugin.mo share/locale/vi/LC_MESSAGES/katecolorpickerplugin.mo share/locale/vi/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/vi/LC_MESSAGES/katefilebrowserplugin.mo share/locale/vi/LC_MESSAGES/katefiletree.mo share/locale/vi/LC_MESSAGES/kategdbplugin.mo share/locale/vi/LC_MESSAGES/kategitblameplugin.mo +share/locale/vi/LC_MESSAGES/katekeyboardmacros.mo share/locale/vi/LC_MESSAGES/katekonsoleplugin.mo share/locale/vi/LC_MESSAGES/kateproject.mo share/locale/vi/LC_MESSAGES/katesearch.mo share/locale/vi/LC_MESSAGES/katesnippetsplugin.mo share/locale/vi/LC_MESSAGES/katesql.mo share/locale/vi/LC_MESSAGES/katesymbolviewer.mo share/locale/vi/LC_MESSAGES/katetextfilter.mo share/locale/vi/LC_MESSAGES/katexmlcheck.mo share/locale/vi/LC_MESSAGES/katexmltools.mo share/locale/vi/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/vi/LC_MESSAGES/lspclient.mo -share/locale/vi/LC_MESSAGES/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/xh/LC_MESSAGES/kate.mo +share/locale/xh/LC_MESSAGES/katetextfilter.mo +share/locale/xh/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/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/katekeyboardmacros.mo share/locale/zh_CN/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_CN/LC_MESSAGES/kateproject.mo share/locale/zh_CN/LC_MESSAGES/katesearch.mo share/locale/zh_CN/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_CN/LC_MESSAGES/katesql.mo share/locale/zh_CN/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_CN/LC_MESSAGES/katetextfilter.mo share/locale/zh_CN/LC_MESSAGES/katexmlcheck.mo share/locale/zh_CN/LC_MESSAGES/katexmltools.mo share/locale/zh_CN/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_CN/LC_MESSAGES/lspclient.mo -share/locale/zh_CN/LC_MESSAGES/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/katecolorpickerplugin.mo share/locale/zh_TW/LC_MESSAGES/kateexternaltoolsplugin.mo share/locale/zh_TW/LC_MESSAGES/katefilebrowserplugin.mo share/locale/zh_TW/LC_MESSAGES/katefiletree.mo share/locale/zh_TW/LC_MESSAGES/kategdbplugin.mo share/locale/zh_TW/LC_MESSAGES/kategitblameplugin.mo share/locale/zh_TW/LC_MESSAGES/katekonsoleplugin.mo share/locale/zh_TW/LC_MESSAGES/kateproject.mo share/locale/zh_TW/LC_MESSAGES/katesearch.mo share/locale/zh_TW/LC_MESSAGES/katesnippetsplugin.mo share/locale/zh_TW/LC_MESSAGES/katesql.mo share/locale/zh_TW/LC_MESSAGES/katesymbolviewer.mo share/locale/zh_TW/LC_MESSAGES/katetextfilter.mo share/locale/zh_TW/LC_MESSAGES/katexmlcheck.mo share/locale/zh_TW/LC_MESSAGES/katexmltools.mo share/locale/zh_TW/LC_MESSAGES/ktexteditorpreviewplugin.mo share/locale/zh_TW/LC_MESSAGES/lspclient.mo -share/locale/zh_TW/LC_MESSAGES/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 dce92ebbda18..17be98caaab3 100644 --- a/games/blinken/distinfo +++ b/games/blinken/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539499 -SHA256 (KDE/release-service/22.08.3/blinken-22.08.3.tar.xz) = 5358331aac7ebe3dddc6b16ff2f2563661f5dbee7799f51945a2f87031bc6dab -SIZE (KDE/release-service/22.08.3/blinken-22.08.3.tar.xz) = 2715772 +TIMESTAMP = 1670513112 +SHA256 (KDE/release-service/22.12.0/blinken-22.12.0.tar.xz) = d4f77817aa12d8ce82e7d05a7f35f60fa9725a14d4c8e40be4fe70b776158652 +SIZE (KDE/release-service/22.12.0/blinken-22.12.0.tar.xz) = 2723368 diff --git a/games/blinken/pkg-plist b/games/blinken/pkg-plist index e3cdeb6f5957..2f21c01f971a 100644 --- a/games/blinken/pkg-plist +++ b/games/blinken/pkg-plist @@ -1,76 +1,88 @@ 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/128x128/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/bn/LC_MESSAGES/blinken.mo +share/locale/br/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/csb/LC_MESSAGES/blinken.mo +share/locale/cy/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/gu/LC_MESSAGES/blinken.mo share/locale/he/LC_MESSAGES/blinken.mo share/locale/hi/LC_MESSAGES/blinken.mo +share/locale/hne/LC_MESSAGES/blinken.mo share/locale/hr/LC_MESSAGES/blinken.mo share/locale/hu/LC_MESSAGES/blinken.mo share/locale/ia/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/ka/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/mk/LC_MESSAGES/blinken.mo share/locale/ml/LC_MESSAGES/blinken.mo share/locale/mr/LC_MESSAGES/blinken.mo +share/locale/ms/LC_MESSAGES/blinken.mo share/locale/nb/LC_MESSAGES/blinken.mo share/locale/nds/LC_MESSAGES/blinken.mo +share/locale/ne/LC_MESSAGES/blinken.mo share/locale/nl/LC_MESSAGES/blinken.mo share/locale/nn/LC_MESSAGES/blinken.mo +share/locale/oc/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/si/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 f58936fff5ff..a0dcf79e010f 100644 --- a/games/bomber/distinfo +++ b/games/bomber/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539544 -SHA256 (KDE/release-service/22.08.3/bomber-22.08.3.tar.xz) = f3686c52afc6e7771b938e87404efa321cf11c238f943018d40217d57574a5ba -SIZE (KDE/release-service/22.08.3/bomber-22.08.3.tar.xz) = 834612 +TIMESTAMP = 1670513168 +SHA256 (KDE/release-service/22.12.0/bomber-22.12.0.tar.xz) = 8e745e3f3864c5aa6655453b1aff558e209e062e52c1c58c3a12c33d1357b019 +SIZE (KDE/release-service/22.12.0/bomber-22.12.0.tar.xz) = 837440 diff --git a/games/bomber/pkg-plist b/games/bomber/pkg-plist index 00bda0871bb7..9ebe76abdfce 100644 --- a/games/bomber/pkg-plist +++ b/games/bomber/pkg-plist @@ -1,68 +1,76 @@ 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/icons/hicolor/128x128/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/gu/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/ka/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/mai/LC_MESSAGES/bomber.mo share/locale/ml/LC_MESSAGES/bomber.mo share/locale/mr/LC_MESSAGES/bomber.mo +share/locale/ms/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/sr@ijekavian/LC_MESSAGES/bomber.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/bomber.mo +share/locale/sr@latin/LC_MESSAGES/bomber.mo share/locale/sv/LC_MESSAGES/bomber.mo +share/locale/th/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 00a6f1c9fe4e..274aa1c088b4 100644 --- a/games/bovo/distinfo +++ b/games/bovo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539522 -SHA256 (KDE/release-service/22.08.3/bovo-22.08.3.tar.xz) = a0b4f72a32d789d72a0d7f3115777c360216952dd24ec822514ee5490a620f18 -SIZE (KDE/release-service/22.08.3/bovo-22.08.3.tar.xz) = 210076 +TIMESTAMP = 1670513140 +SHA256 (KDE/release-service/22.12.0/bovo-22.12.0.tar.xz) = e4dc94e1bdd2dc56adb6685d9bd7e08fb58f7a79ad5740c2c4cef795a5ce6de8 +SIZE (KDE/release-service/22.12.0/bovo-22.12.0.tar.xz) = 214460 diff --git a/games/bovo/pkg-plist b/games/bovo/pkg-plist index eb39affc67f4..d0286b21f208 100644 --- a/games/bovo/pkg-plist +++ b/games/bovo/pkg-plist @@ -1,71 +1,79 @@ 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/icons/hicolor/128x128/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/csb/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/hne/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/ka/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/mai/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/oc/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/sr@ijekavian/LC_MESSAGES/bovo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/bovo.mo +share/locale/sr@latin/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 d5d4ffb1cc0b..edb4495cde40 100644 --- a/games/granatier/distinfo +++ b/games/granatier/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539505 -SHA256 (KDE/release-service/22.08.3/granatier-22.08.3.tar.xz) = 16527c0b596de555a19b5f67672bf1a463a4a934c85d578aef23b0bae856d458 -SIZE (KDE/release-service/22.08.3/granatier-22.08.3.tar.xz) = 2106900 +TIMESTAMP = 1670513121 +SHA256 (KDE/release-service/22.12.0/granatier-22.12.0.tar.xz) = 2cb37b68512e149d82dcdc6b688e049a7c9b9896b9f607f166dba178a80a5ff4 +SIZE (KDE/release-service/22.12.0/granatier-22.12.0.tar.xz) = 2110560 diff --git a/games/granatier/pkg-plist b/games/granatier/pkg-plist index c2afb3574d57..1b404b745878 100644 --- a/games/granatier/pkg-plist +++ b/games/granatier/pkg-plist @@ -1,166 +1,173 @@ bin/granatier share/applications/org.kde.granatier.desktop share/config.kcfg/granatier.kcfg %%DATADIR%%/arenas/clanbomber_Arena.desktop %%DATADIR%%/arenas/clanbomber_Arena.xml %%DATADIR%%/arenas/clanbomber_Big_Block.desktop %%DATADIR%%/arenas/clanbomber_Big_Block.xml %%DATADIR%%/arenas/clanbomber_Big_Standard.desktop %%DATADIR%%/arenas/clanbomber_Big_Standard.xml %%DATADIR%%/arenas/clanbomber_Blast_Matrix.desktop %%DATADIR%%/arenas/clanbomber_Blast_Matrix.xml %%DATADIR%%/arenas/clanbomber_Bloody_Ring.desktop %%DATADIR%%/arenas/clanbomber_Bloody_Ring.xml %%DATADIR%%/arenas/clanbomber_Boiling_Egg.desktop %%DATADIR%%/arenas/clanbomber_Boiling_Egg.xml %%DATADIR%%/arenas/clanbomber_Bomb_Attack.desktop %%DATADIR%%/arenas/clanbomber_Bomb_Attack.xml %%DATADIR%%/arenas/clanbomber_Broken_Heart.desktop %%DATADIR%%/arenas/clanbomber_Broken_Heart.xml %%DATADIR%%/arenas/clanbomber_Crammed.desktop %%DATADIR%%/arenas/clanbomber_Crammed.xml %%DATADIR%%/arenas/clanbomber_Death_Corridor.desktop %%DATADIR%%/arenas/clanbomber_Death_Corridor.xml %%DATADIR%%/arenas/clanbomber_Dilemma.desktop %%DATADIR%%/arenas/clanbomber_Dilemma.xml %%DATADIR%%/arenas/clanbomber_FearCircle.desktop %%DATADIR%%/arenas/clanbomber_FearCircle.xml %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.desktop %%DATADIR%%/arenas/clanbomber_FearCircle_Remix.xml %%DATADIR%%/arenas/clanbomber_FireWheels.desktop %%DATADIR%%/arenas/clanbomber_FireWheels.xml %%DATADIR%%/arenas/clanbomber_Football.desktop %%DATADIR%%/arenas/clanbomber_Football.xml %%DATADIR%%/arenas/clanbomber_Four_Instance.desktop %%DATADIR%%/arenas/clanbomber_Four_Instance.xml %%DATADIR%%/arenas/clanbomber_Ghostbear.desktop %%DATADIR%%/arenas/clanbomber_Ghostbear.xml %%DATADIR%%/arenas/clanbomber_Hard_Work.desktop %%DATADIR%%/arenas/clanbomber_Hard_Work.xml %%DATADIR%%/arenas/clanbomber_Hole_Run.desktop %%DATADIR%%/arenas/clanbomber_Hole_Run.xml %%DATADIR%%/arenas/clanbomber_Huge_Standard.desktop %%DATADIR%%/arenas/clanbomber_Huge_Standard.xml %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.desktop %%DATADIR%%/arenas/clanbomber_Juicy_Lucy.xml %%DATADIR%%/arenas/clanbomber_Kitchen.desktop %%DATADIR%%/arenas/clanbomber_Kitchen.xml %%DATADIR%%/arenas/clanbomber_Meeting.desktop %%DATADIR%%/arenas/clanbomber_Meeting.xml %%DATADIR%%/arenas/clanbomber_MungoBane.desktop %%DATADIR%%/arenas/clanbomber_MungoBane.xml %%DATADIR%%/arenas/clanbomber_Obstacle_Race.desktop %%DATADIR%%/arenas/clanbomber_Obstacle_Race.xml %%DATADIR%%/arenas/clanbomber_Overkill.desktop %%DATADIR%%/arenas/clanbomber_Overkill.xml %%DATADIR%%/arenas/clanbomber_Prison_Cells.desktop %%DATADIR%%/arenas/clanbomber_Prison_Cells.xml %%DATADIR%%/arenas/clanbomber_Redirection.desktop %%DATADIR%%/arenas/clanbomber_Redirection.xml %%DATADIR%%/arenas/clanbomber_Sixty_Nine.desktop %%DATADIR%%/arenas/clanbomber_Sixty_Nine.xml %%DATADIR%%/arenas/clanbomber_Small_Standard.desktop %%DATADIR%%/arenas/clanbomber_Small_Standard.xml %%DATADIR%%/arenas/clanbomber_Snake_Race.desktop %%DATADIR%%/arenas/clanbomber_Snake_Race.xml %%DATADIR%%/arenas/clanbomber_Tiny_Standard.desktop %%DATADIR%%/arenas/clanbomber_Tiny_Standard.xml %%DATADIR%%/arenas/clanbomber_Whole_Mess.desktop %%DATADIR%%/arenas/clanbomber_Whole_Mess.xml %%DATADIR%%/arenas/clover.desktop %%DATADIR%%/arenas/clover.xml %%DATADIR%%/arenas/crazy.desktop %%DATADIR%%/arenas/crazy.xml %%DATADIR%%/arenas/granatier.desktop %%DATADIR%%/arenas/granatier.xml %%DATADIR%%/arenas/labyrinth.desktop %%DATADIR%%/arenas/labyrinth.xml %%DATADIR%%/arenas/threeofthree.desktop %%DATADIR%%/arenas/threeofthree.xml %%DATADIR%%/players/player1.desktop %%DATADIR%%/players/player1.svgz %%DATADIR%%/players/player2.desktop %%DATADIR%%/players/player2.svgz %%DATADIR%%/players/player3.desktop %%DATADIR%%/players/player3.svgz %%DATADIR%%/players/player4.desktop %%DATADIR%%/players/player4.svgz %%DATADIR%%/players/player5.desktop %%DATADIR%%/players/player5.svgz %%DATADIR%%/sounds/break.wav %%DATADIR%%/sounds/clear.wav %%DATADIR%%/sounds/corpse_explode.wav %%DATADIR%%/sounds/crunch.wav %%DATADIR%%/sounds/deepfall.wav %%DATADIR%%/sounds/die.wav %%DATADIR%%/sounds/explode.wav %%DATADIR%%/sounds/joint.wav %%DATADIR%%/sounds/putbomb.wav %%DATADIR%%/sounds/winlevel.wav %%DATADIR%%/sounds/wow.wav %%DATADIR%%/themes/clanbomber.desktop %%DATADIR%%/themes/clanbomber.svgz %%DATADIR%%/themes/clanbomber_preview.png %%DATADIR%%/themes/granatier.desktop %%DATADIR%%/themes/granatier.svgz %%DATADIR%%/themes/granatier_preview.png %%DATADIR%%/themes/waterbomb.desktop %%DATADIR%%/themes/waterbomb.svgz %%DATADIR%%/themes/waterbomb_preview.png +share/icons/hicolor/128x128/apps/granatier.png share/icons/hicolor/16x16/apps/granatier.png share/icons/hicolor/22x22/apps/granatier.png share/icons/hicolor/32x32/apps/granatier.png share/icons/hicolor/48x48/apps/granatier.png share/icons/hicolor/64x64/apps/granatier.png -share/icons/hicolor/128x128/apps/granatier.png share/locale/ar/LC_MESSAGES/granatier.mo share/locale/bg/LC_MESSAGES/granatier.mo share/locale/bs/LC_MESSAGES/granatier.mo share/locale/ca/LC_MESSAGES/granatier.mo share/locale/ca@valencia/LC_MESSAGES/granatier.mo share/locale/cs/LC_MESSAGES/granatier.mo share/locale/da/LC_MESSAGES/granatier.mo share/locale/de/LC_MESSAGES/granatier.mo share/locale/el/LC_MESSAGES/granatier.mo share/locale/en_GB/LC_MESSAGES/granatier.mo share/locale/eo/LC_MESSAGES/granatier.mo share/locale/es/LC_MESSAGES/granatier.mo share/locale/et/LC_MESSAGES/granatier.mo share/locale/eu/LC_MESSAGES/granatier.mo share/locale/fi/LC_MESSAGES/granatier.mo share/locale/fr/LC_MESSAGES/granatier.mo share/locale/ga/LC_MESSAGES/granatier.mo share/locale/gl/LC_MESSAGES/granatier.mo share/locale/hr/LC_MESSAGES/granatier.mo share/locale/hu/LC_MESSAGES/granatier.mo share/locale/id/LC_MESSAGES/granatier.mo share/locale/is/LC_MESSAGES/granatier.mo share/locale/it/LC_MESSAGES/granatier.mo share/locale/ja/LC_MESSAGES/granatier.mo +share/locale/ka/LC_MESSAGES/granatier.mo share/locale/kk/LC_MESSAGES/granatier.mo share/locale/km/LC_MESSAGES/granatier.mo share/locale/ko/LC_MESSAGES/granatier.mo share/locale/lt/LC_MESSAGES/granatier.mo share/locale/lv/LC_MESSAGES/granatier.mo +share/locale/mai/LC_MESSAGES/granatier.mo share/locale/ml/LC_MESSAGES/granatier.mo share/locale/mr/LC_MESSAGES/granatier.mo +share/locale/ms/LC_MESSAGES/granatier.mo share/locale/nb/LC_MESSAGES/granatier.mo share/locale/nds/LC_MESSAGES/granatier.mo share/locale/nl/LC_MESSAGES/granatier.mo share/locale/nn/LC_MESSAGES/granatier.mo share/locale/pl/LC_MESSAGES/granatier.mo share/locale/pt/LC_MESSAGES/granatier.mo share/locale/pt_BR/LC_MESSAGES/granatier.mo share/locale/ro/LC_MESSAGES/granatier.mo share/locale/ru/LC_MESSAGES/granatier.mo share/locale/sk/LC_MESSAGES/granatier.mo share/locale/sl/LC_MESSAGES/granatier.mo share/locale/sr/LC_MESSAGES/granatier.mo +share/locale/sr@ijekavian/LC_MESSAGES/granatier.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/granatier.mo +share/locale/sr@latin/LC_MESSAGES/granatier.mo share/locale/sv/LC_MESSAGES/granatier.mo +share/locale/th/LC_MESSAGES/granatier.mo share/locale/tr/LC_MESSAGES/granatier.mo share/locale/ug/LC_MESSAGES/granatier.mo share/locale/uk/LC_MESSAGES/granatier.mo share/locale/zh_CN/LC_MESSAGES/granatier.mo share/locale/zh_TW/LC_MESSAGES/granatier.mo share/metainfo/org.kde.granatier.appdata.xml share/qlogging-categories5/granatier.categories diff --git a/games/kanagram/distinfo b/games/kanagram/distinfo index 73d05cb3fda3..925bba5300e4 100644 --- a/games/kanagram/distinfo +++ b/games/kanagram/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539530 -SHA256 (KDE/release-service/22.08.3/kanagram-22.08.3.tar.xz) = 09330ddaea40c86dfa0fd715479e4535824f5a5140ee1c5905a58277ff1a14c1 -SIZE (KDE/release-service/22.08.3/kanagram-22.08.3.tar.xz) = 8044968 +TIMESTAMP = 1670513149 +SHA256 (KDE/release-service/22.12.0/kanagram-22.12.0.tar.xz) = 89236c258a3c7171da504e2392662ed68a2d2970d6d6c8d06b0692ad28bda252 +SIZE (KDE/release-service/22.12.0/kanagram-22.12.0.tar.xz) = 8059912 diff --git a/games/kanagram/pkg-plist b/games/kanagram/pkg-plist index f25b0b853bd2..a7b19f818393 100644 --- a/games/kanagram/pkg-plist +++ b/games/kanagram/pkg-plist @@ -1,96 +1,107 @@ bin/kanagram share/applications/org.kde.kanagram.desktop share/config.kcfg/kanagram.kcfg +share/icons/hicolor/128x128/apps/kanagram.png share/icons/hicolor/16x16/apps/kanagram.png share/icons/hicolor/24x24/apps/kanagram.png share/icons/hicolor/32x32/apps/kanagram.png share/icons/hicolor/48x48/apps/kanagram.png share/icons/hicolor/64x64/apps/kanagram.png share/icons/hicolor/80x80/apps/kanagram-harmattan.png -share/icons/hicolor/128x128/apps/kanagram.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/knsrcfiles/kanagram.knsrc share/locale/ar/LC_MESSAGES/kanagram.mo share/locale/be/LC_MESSAGES/kanagram.mo share/locale/bg/LC_MESSAGES/kanagram.mo +share/locale/bn/LC_MESSAGES/kanagram.mo +share/locale/br/LC_MESSAGES/kanagram.mo share/locale/bs/LC_MESSAGES/kanagram.mo share/locale/ca/LC_MESSAGES/kanagram.mo share/locale/ca@valencia/LC_MESSAGES/kanagram.mo share/locale/cs/LC_MESSAGES/kanagram.mo +share/locale/cy/LC_MESSAGES/kanagram.mo share/locale/da/LC_MESSAGES/kanagram.mo share/locale/de/LC_MESSAGES/kanagram.mo share/locale/el/LC_MESSAGES/kanagram.mo share/locale/en_GB/LC_MESSAGES/kanagram.mo share/locale/eo/LC_MESSAGES/kanagram.mo share/locale/es/LC_MESSAGES/kanagram.mo share/locale/et/LC_MESSAGES/kanagram.mo share/locale/eu/LC_MESSAGES/kanagram.mo share/locale/fa/LC_MESSAGES/kanagram.mo share/locale/fi/LC_MESSAGES/kanagram.mo share/locale/fr/LC_MESSAGES/kanagram.mo share/locale/ga/LC_MESSAGES/kanagram.mo share/locale/gl/LC_MESSAGES/kanagram.mo +share/locale/gu/LC_MESSAGES/kanagram.mo share/locale/he/LC_MESSAGES/kanagram.mo share/locale/hi/LC_MESSAGES/kanagram.mo +share/locale/hne/LC_MESSAGES/kanagram.mo share/locale/hr/LC_MESSAGES/kanagram.mo share/locale/hu/LC_MESSAGES/kanagram.mo share/locale/id/LC_MESSAGES/kanagram.mo share/locale/it/LC_MESSAGES/kanagram.mo share/locale/ja/LC_MESSAGES/kanagram.mo +share/locale/ka/LC_MESSAGES/kanagram.mo share/locale/kk/LC_MESSAGES/kanagram.mo share/locale/km/LC_MESSAGES/kanagram.mo share/locale/ko/LC_MESSAGES/kanagram.mo share/locale/lt/LC_MESSAGES/kanagram.mo share/locale/lv/LC_MESSAGES/kanagram.mo +share/locale/mk/LC_MESSAGES/kanagram.mo share/locale/ml/LC_MESSAGES/kanagram.mo share/locale/mr/LC_MESSAGES/kanagram.mo +share/locale/ms/LC_MESSAGES/kanagram.mo share/locale/nb/LC_MESSAGES/kanagram.mo share/locale/nds/LC_MESSAGES/kanagram.mo +share/locale/ne/LC_MESSAGES/kanagram.mo share/locale/nl/LC_MESSAGES/kanagram.mo share/locale/nn/LC_MESSAGES/kanagram.mo +share/locale/oc/LC_MESSAGES/kanagram.mo share/locale/pa/LC_MESSAGES/kanagram.mo share/locale/pl/LC_MESSAGES/kanagram.mo share/locale/pt/LC_MESSAGES/kanagram.mo share/locale/pt_BR/LC_MESSAGES/kanagram.mo share/locale/ro/LC_MESSAGES/kanagram.mo share/locale/ru/LC_MESSAGES/kanagram.mo share/locale/se/LC_MESSAGES/kanagram.mo +share/locale/si/LC_MESSAGES/kanagram.mo share/locale/sk/LC_MESSAGES/kanagram.mo share/locale/sl/LC_MESSAGES/kanagram.mo share/locale/sq/LC_MESSAGES/kanagram.mo share/locale/sv/LC_MESSAGES/kanagram.mo share/locale/tg/LC_MESSAGES/kanagram.mo share/locale/tr/LC_MESSAGES/kanagram.mo share/locale/ug/LC_MESSAGES/kanagram.mo share/locale/uk/LC_MESSAGES/kanagram.mo share/locale/zh_CN/LC_MESSAGES/kanagram.mo share/locale/zh_TW/LC_MESSAGES/kanagram.mo share/metainfo/org.kde.kanagram.appdata.xml diff --git a/games/kapman/distinfo b/games/kapman/distinfo index 0ca3da8f9129..7a70e465e800 100644 --- a/games/kapman/distinfo +++ b/games/kapman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539535 -SHA256 (KDE/release-service/22.08.3/kapman-22.08.3.tar.xz) = 379d0c108d9e2d1d2ea73909cae37bf464b2d9b93176586ec570d51e1b2381b8 -SIZE (KDE/release-service/22.08.3/kapman-22.08.3.tar.xz) = 2476636 +TIMESTAMP = 1670513155 +SHA256 (KDE/release-service/22.12.0/kapman-22.12.0.tar.xz) = d4b2f80394ac0fd611a9d3ff0fe19508fbdc178eefdb0599c48b8edd73e0c1f2 +SIZE (KDE/release-service/22.12.0/kapman-22.12.0.tar.xz) = 2480436 diff --git a/games/kapman/pkg-plist b/games/kapman/pkg-plist index 806cc852ad01..c9e01f78c928 100644 --- a/games/kapman/pkg-plist +++ b/games/kapman/pkg-plist @@ -1,84 +1,92 @@ 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 -share/icons/hicolor/128x128/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/gu/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/ka/LC_MESSAGES/kapman.mo share/locale/kk/LC_MESSAGES/kapman.mo share/locale/km/LC_MESSAGES/kapman.mo share/locale/ko/LC_MESSAGES/kapman.mo share/locale/lt/LC_MESSAGES/kapman.mo share/locale/lv/LC_MESSAGES/kapman.mo +share/locale/mai/LC_MESSAGES/kapman.mo share/locale/ml/LC_MESSAGES/kapman.mo share/locale/mr/LC_MESSAGES/kapman.mo +share/locale/ms/LC_MESSAGES/kapman.mo share/locale/nb/LC_MESSAGES/kapman.mo share/locale/nds/LC_MESSAGES/kapman.mo share/locale/nl/LC_MESSAGES/kapman.mo share/locale/nn/LC_MESSAGES/kapman.mo share/locale/pl/LC_MESSAGES/kapman.mo share/locale/pt/LC_MESSAGES/kapman.mo share/locale/pt_BR/LC_MESSAGES/kapman.mo share/locale/ro/LC_MESSAGES/kapman.mo share/locale/ru/LC_MESSAGES/kapman.mo share/locale/sk/LC_MESSAGES/kapman.mo share/locale/sl/LC_MESSAGES/kapman.mo share/locale/sq/LC_MESSAGES/kapman.mo share/locale/sr/LC_MESSAGES/kapman.mo +share/locale/sr@ijekavian/LC_MESSAGES/kapman.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kapman.mo +share/locale/sr@latin/LC_MESSAGES/kapman.mo share/locale/sv/LC_MESSAGES/kapman.mo +share/locale/th/LC_MESSAGES/kapman.mo share/locale/tr/LC_MESSAGES/kapman.mo share/locale/ug/LC_MESSAGES/kapman.mo share/locale/uk/LC_MESSAGES/kapman.mo share/locale/zh_CN/LC_MESSAGES/kapman.mo share/locale/zh_TW/LC_MESSAGES/kapman.mo share/metainfo/org.kde.kapman.appdata.xml share/sounds/kapman/bonus.ogg share/sounds/kapman/energizer.ogg share/sounds/kapman/gameover.ogg share/sounds/kapman/ghost.ogg share/sounds/kapman/levelup.ogg share/sounds/kapman/life.ogg share/sounds/kapman/pill.ogg diff --git a/games/katomic/distinfo b/games/katomic/distinfo index 9e0bcb462474..4b7c14b740d5 100644 --- a/games/katomic/distinfo +++ b/games/katomic/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539546 -SHA256 (KDE/release-service/22.08.3/katomic-22.08.3.tar.xz) = 99fe86f6b1dd79da4615fd984fd51e0c144c47af2f4c0368353f4f32c2f154d7 -SIZE (KDE/release-service/22.08.3/katomic-22.08.3.tar.xz) = 1438380 +TIMESTAMP = 1670513171 +SHA256 (KDE/release-service/22.12.0/katomic-22.12.0.tar.xz) = 6c9ece18e8083db6e19bad6ec71a75867ab8038bac9a9243410550f6c436912c +SIZE (KDE/release-service/22.12.0/katomic-22.12.0.tar.xz) = 1450896 diff --git a/games/katomic/pkg-plist b/games/katomic/pkg-plist index 4d05a0a2ac9b..a3bba32d3e2b 100644 --- a/games/katomic/pkg-plist +++ b/games/katomic/pkg-plist @@ -1,74 +1,91 @@ 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 -share/icons/hicolor/128x128/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/af/LC_MESSAGES/katomic.mo share/locale/ar/LC_MESSAGES/katomic.mo share/locale/be/LC_MESSAGES/katomic.mo share/locale/bg/LC_MESSAGES/katomic.mo +share/locale/bn/LC_MESSAGES/katomic.mo +share/locale/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/katomic.mo +share/locale/mk/LC_MESSAGES/katomic.mo share/locale/ml/LC_MESSAGES/katomic.mo share/locale/mr/LC_MESSAGES/katomic.mo +share/locale/ms/LC_MESSAGES/katomic.mo share/locale/nb/LC_MESSAGES/katomic.mo share/locale/nds/LC_MESSAGES/katomic.mo +share/locale/ne/LC_MESSAGES/katomic.mo share/locale/nl/LC_MESSAGES/katomic.mo share/locale/nn/LC_MESSAGES/katomic.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/katomic.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/katomic.mo +share/locale/sr@latin/LC_MESSAGES/katomic.mo share/locale/sv/LC_MESSAGES/katomic.mo share/locale/ta/LC_MESSAGES/katomic.mo +share/locale/te/LC_MESSAGES/katomic.mo share/locale/tg/LC_MESSAGES/katomic.mo +share/locale/th/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/xh/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 32e1545ad198..31c952a74767 100644 --- a/games/kblackbox/distinfo +++ b/games/kblackbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539518 -SHA256 (KDE/release-service/22.08.3/kblackbox-22.08.3.tar.xz) = 8c7779558affc72fc9fd3b4555e7d2f56553df46e9a25e5e5fc13b5195ee22db -SIZE (KDE/release-service/22.08.3/kblackbox-22.08.3.tar.xz) = 528588 +TIMESTAMP = 1670513136 +SHA256 (KDE/release-service/22.12.0/kblackbox-22.12.0.tar.xz) = 12fa05a1231bd7655a62984b21c3702f3d27f10c83ca96fd2dc70ce0174b6e41 +SIZE (KDE/release-service/22.12.0/kblackbox-22.12.0.tar.xz) = 549788 diff --git a/games/kblackbox/pkg-plist b/games/kblackbox/pkg-plist index 8285a202e531..baa9da2e471c 100644 --- a/games/kblackbox/pkg-plist +++ b/games/kblackbox/pkg-plist @@ -1,69 +1,86 @@ 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 -share/icons/hicolor/128x128/apps/kblackbox.png %%DATADIR%%/pics/kblackbox.svgz +share/locale/af/LC_MESSAGES/kblackbox.mo share/locale/ar/LC_MESSAGES/kblackbox.mo share/locale/be/LC_MESSAGES/kblackbox.mo share/locale/bg/LC_MESSAGES/kblackbox.mo +share/locale/bn/LC_MESSAGES/kblackbox.mo +share/locale/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/kblackbox.mo +share/locale/mk/LC_MESSAGES/kblackbox.mo share/locale/ml/LC_MESSAGES/kblackbox.mo share/locale/mr/LC_MESSAGES/kblackbox.mo +share/locale/ms/LC_MESSAGES/kblackbox.mo share/locale/nb/LC_MESSAGES/kblackbox.mo share/locale/nds/LC_MESSAGES/kblackbox.mo +share/locale/ne/LC_MESSAGES/kblackbox.mo share/locale/nl/LC_MESSAGES/kblackbox.mo share/locale/nn/LC_MESSAGES/kblackbox.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kblackbox.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kblackbox.mo +share/locale/sr@latin/LC_MESSAGES/kblackbox.mo share/locale/sv/LC_MESSAGES/kblackbox.mo share/locale/ta/LC_MESSAGES/kblackbox.mo +share/locale/te/LC_MESSAGES/kblackbox.mo share/locale/tg/LC_MESSAGES/kblackbox.mo +share/locale/th/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/xh/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 5550193ba4f4..e04ffcb85ef3 100644 --- a/games/kblocks/distinfo +++ b/games/kblocks/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539517 -SHA256 (KDE/release-service/22.08.3/kblocks-22.08.3.tar.xz) = 8487035e19277df8ef962201e2fa8cf7683f800755de2745944465627d3d9532 -SIZE (KDE/release-service/22.08.3/kblocks-22.08.3.tar.xz) = 2104072 +TIMESTAMP = 1670513134 +SHA256 (KDE/release-service/22.12.0/kblocks-22.12.0.tar.xz) = 7e9cb4b43df653236b9795012f643bd43893b23cc1a20004e66fe7d50e180b33 +SIZE (KDE/release-service/22.12.0/kblocks-22.12.0.tar.xz) = 2107860 diff --git a/games/kblocks/pkg-plist b/games/kblocks/pkg-plist index 90d1e8892dc6..90fff70ea5bd 100644 --- a/games/kblocks/pkg-plist +++ b/games/kblocks/pkg-plist @@ -1,74 +1,81 @@ bin/kblocks 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.svgz %%DATADIR%%/themes/egyptian_preview.png %%DATADIR%%/themes/oxygen.desktop %%DATADIR%%/themes/oxygen.svgz %%DATADIR%%/themes/oxygen_preview.png share/knsrcfiles/kblocks.knsrc 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/gu/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/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/kblocks.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kblocks.mo +share/locale/sr@latin/LC_MESSAGES/kblocks.mo share/locale/sv/LC_MESSAGES/kblocks.mo +share/locale/th/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 share/qlogging-categories5/kblocks.categories diff --git a/games/kbounce/distinfo b/games/kbounce/distinfo index 6f46b7bf1324..cceb3fa2c53d 100644 --- a/games/kbounce/distinfo +++ b/games/kbounce/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539537 -SHA256 (KDE/release-service/22.08.3/kbounce-22.08.3.tar.xz) = 7b712872db2a3510eb8a5b91c4c85980a63971b4171d192081cf61b90777ab58 -SIZE (KDE/release-service/22.08.3/kbounce-22.08.3.tar.xz) = 3532016 +TIMESTAMP = 1670513159 +SHA256 (KDE/release-service/22.12.0/kbounce-22.12.0.tar.xz) = df6e160f176cfdd07291d78b18d29779456e59eff2f2a911e7dc765bce6ceac6 +SIZE (KDE/release-service/22.12.0/kbounce-22.12.0.tar.xz) = 3542716 diff --git a/games/kbounce/pkg-plist b/games/kbounce/pkg-plist index 90e6a609a845..744f22c06513 100644 --- a/games/kbounce/pkg-plist +++ b/games/kbounce/pkg-plist @@ -1,90 +1,108 @@ 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 -share/icons/hicolor/128x128/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/af/LC_MESSAGES/kbounce.mo share/locale/ar/LC_MESSAGES/kbounce.mo share/locale/be/LC_MESSAGES/kbounce.mo share/locale/bg/LC_MESSAGES/kbounce.mo +share/locale/bn/LC_MESSAGES/kbounce.mo +share/locale/br/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/csb/LC_MESSAGES/kbounce.mo +share/locale/cy/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/hne/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/ka/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/mai/LC_MESSAGES/kbounce.mo +share/locale/mk/LC_MESSAGES/kbounce.mo share/locale/ml/LC_MESSAGES/kbounce.mo share/locale/mr/LC_MESSAGES/kbounce.mo +share/locale/ms/LC_MESSAGES/kbounce.mo share/locale/nb/LC_MESSAGES/kbounce.mo share/locale/nds/LC_MESSAGES/kbounce.mo +share/locale/ne/LC_MESSAGES/kbounce.mo share/locale/nl/LC_MESSAGES/kbounce.mo share/locale/nn/LC_MESSAGES/kbounce.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kbounce.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kbounce.mo +share/locale/sr@latin/LC_MESSAGES/kbounce.mo share/locale/sv/LC_MESSAGES/kbounce.mo share/locale/ta/LC_MESSAGES/kbounce.mo +share/locale/te/LC_MESSAGES/kbounce.mo share/locale/tg/LC_MESSAGES/kbounce.mo +share/locale/th/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/xh/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 2c4b115722cf..bed7fa6de12a 100644 --- a/games/kbreakout/distinfo +++ b/games/kbreakout/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539506 -SHA256 (KDE/release-service/22.08.3/kbreakout-22.08.3.tar.xz) = 34c3300f607a56f51b11f68869c58a0789876265572db6f89826db9ef4ddfe38 -SIZE (KDE/release-service/22.08.3/kbreakout-22.08.3.tar.xz) = 2554716 +TIMESTAMP = 1670513122 +SHA256 (KDE/release-service/22.12.0/kbreakout-22.12.0.tar.xz) = a6c58330059ffa280486d560979286dea21dd73db3ec8ef8e7bccd7c0a62447d +SIZE (KDE/release-service/22.12.0/kbreakout-22.12.0.tar.xz) = 2557668 diff --git a/games/kbreakout/pkg-plist b/games/kbreakout/pkg-plist index eb86c0a851ea..0782ec7f76f9 100644 --- a/games/kbreakout/pkg-plist +++ b/games/kbreakout/pkg-plist @@ -1,91 +1,98 @@ bin/kbreakout share/applications/org.kde.kbreakout.desktop share/icons/hicolor/128x128/apps/kbreakout.png share/icons/hicolor/16x16/apps/kbreakout.png share/icons/hicolor/22x22/apps/kbreakout.png share/icons/hicolor/32x32/apps/kbreakout.png share/icons/hicolor/48x48/apps/kbreakout.png share/icons/hicolor/64x64/apps/kbreakout.png share/icons/hicolor/scalable/apps/kbreakout.svg %%DATADIR%%/levelsets/default.levelset %%DATADIR%%/qml/Ball.qml %%DATADIR%%/qml/Bar.qml %%DATADIR%%/qml/Brick.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Gift.qml %%DATADIR%%/qml/Singleshot.qml %%DATADIR%%/qml/TextItem.qml %%DATADIR%%/qml/globals.js %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/themes/IceWorld.desktop %%DATADIR%%/themes/IceWorld.svgz %%DATADIR%%/themes/IceWorld_preview.png %%DATADIR%%/themes/alienbreakout.desktop %%DATADIR%%/themes/alienbreakout.svgz %%DATADIR%%/themes/alienbreakout_preview.png %%DATADIR%%/themes/crystal.desktop %%DATADIR%%/themes/crystal.svgz %%DATADIR%%/themes/crystal_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/egyptianbreakout.svgz %%DATADIR%%/themes/egyptianbreakout_preview.png %%DATADIR%%/themes/simple.desktop %%DATADIR%%/themes/simple.svgz %%DATADIR%%/themes/simple_preview.png %%DATADIR%%/themes/web20.desktop %%DATADIR%%/themes/web20.svgz %%DATADIR%%/themes/web20_preview.png share/locale/ar/LC_MESSAGES/kbreakout.mo share/locale/bg/LC_MESSAGES/kbreakout.mo share/locale/bs/LC_MESSAGES/kbreakout.mo share/locale/ca/LC_MESSAGES/kbreakout.mo share/locale/ca@valencia/LC_MESSAGES/kbreakout.mo share/locale/cs/LC_MESSAGES/kbreakout.mo share/locale/da/LC_MESSAGES/kbreakout.mo share/locale/de/LC_MESSAGES/kbreakout.mo share/locale/el/LC_MESSAGES/kbreakout.mo share/locale/en_GB/LC_MESSAGES/kbreakout.mo share/locale/eo/LC_MESSAGES/kbreakout.mo share/locale/es/LC_MESSAGES/kbreakout.mo share/locale/et/LC_MESSAGES/kbreakout.mo share/locale/eu/LC_MESSAGES/kbreakout.mo share/locale/fi/LC_MESSAGES/kbreakout.mo share/locale/fr/LC_MESSAGES/kbreakout.mo share/locale/ga/LC_MESSAGES/kbreakout.mo share/locale/gl/LC_MESSAGES/kbreakout.mo +share/locale/gu/LC_MESSAGES/kbreakout.mo share/locale/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/ka/LC_MESSAGES/kbreakout.mo share/locale/kk/LC_MESSAGES/kbreakout.mo share/locale/km/LC_MESSAGES/kbreakout.mo share/locale/ko/LC_MESSAGES/kbreakout.mo share/locale/lt/LC_MESSAGES/kbreakout.mo share/locale/lv/LC_MESSAGES/kbreakout.mo +share/locale/mai/LC_MESSAGES/kbreakout.mo share/locale/ml/LC_MESSAGES/kbreakout.mo share/locale/mr/LC_MESSAGES/kbreakout.mo share/locale/nb/LC_MESSAGES/kbreakout.mo share/locale/nds/LC_MESSAGES/kbreakout.mo share/locale/nl/LC_MESSAGES/kbreakout.mo share/locale/nn/LC_MESSAGES/kbreakout.mo share/locale/pl/LC_MESSAGES/kbreakout.mo share/locale/pt/LC_MESSAGES/kbreakout.mo share/locale/pt_BR/LC_MESSAGES/kbreakout.mo share/locale/ro/LC_MESSAGES/kbreakout.mo share/locale/ru/LC_MESSAGES/kbreakout.mo share/locale/sk/LC_MESSAGES/kbreakout.mo share/locale/sl/LC_MESSAGES/kbreakout.mo share/locale/sq/LC_MESSAGES/kbreakout.mo share/locale/sr/LC_MESSAGES/kbreakout.mo +share/locale/sr@ijekavian/LC_MESSAGES/kbreakout.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kbreakout.mo +share/locale/sr@latin/LC_MESSAGES/kbreakout.mo share/locale/sv/LC_MESSAGES/kbreakout.mo +share/locale/th/LC_MESSAGES/kbreakout.mo share/locale/tr/LC_MESSAGES/kbreakout.mo share/locale/ug/LC_MESSAGES/kbreakout.mo share/locale/uk/LC_MESSAGES/kbreakout.mo share/locale/wa/LC_MESSAGES/kbreakout.mo share/locale/zh_CN/LC_MESSAGES/kbreakout.mo share/locale/zh_TW/LC_MESSAGES/kbreakout.mo share/metainfo/org.kde.kbreakout.appdata.xml share/qlogging-categories5/kbreakout.categories diff --git a/games/kdiamond/distinfo b/games/kdiamond/distinfo index c3f28b3a28f6..ff036616b1d4 100644 --- a/games/kdiamond/distinfo +++ b/games/kdiamond/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539509 -SHA256 (KDE/release-service/22.08.3/kdiamond-22.08.3.tar.xz) = 470cacb596cbec4c676ab12e82e231f160640cd79fc25d6b5bacf622dd9e448b -SIZE (KDE/release-service/22.08.3/kdiamond-22.08.3.tar.xz) = 4703720 +TIMESTAMP = 1670513125 +SHA256 (KDE/release-service/22.12.0/kdiamond-22.12.0.tar.xz) = 86882d3e6c97f0661df4014d9287c9722ca0c7ac75de06dc7101f33ac189cc4d +SIZE (KDE/release-service/22.12.0/kdiamond-22.12.0.tar.xz) = 4707368 diff --git a/games/kdiamond/pkg-plist b/games/kdiamond/pkg-plist index 6afe85aa8a4a..3ff7f1f277e2 100644 --- a/games/kdiamond/pkg-plist +++ b/games/kdiamond/pkg-plist @@ -1,75 +1,83 @@ 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 -share/icons/hicolor/128x128/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/gu/LC_MESSAGES/kdiamond.mo share/locale/hi/LC_MESSAGES/kdiamond.mo +share/locale/hne/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/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/kdiamond.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdiamond.mo +share/locale/sr@latin/LC_MESSAGES/kdiamond.mo share/locale/sv/LC_MESSAGES/kdiamond.mo +share/locale/th/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 75cb989fff56..77ccc6199260 100644 --- a/games/kfourinline/distinfo +++ b/games/kfourinline/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539550 -SHA256 (KDE/release-service/22.08.3/kfourinline-22.08.3.tar.xz) = 595af4490941ad5db0cb7ed200459dd2333b3ab8a5cc1924e0e69ddaeac1dbb6 -SIZE (KDE/release-service/22.08.3/kfourinline-22.08.3.tar.xz) = 722748 +TIMESTAMP = 1670513176 +SHA256 (KDE/release-service/22.12.0/kfourinline-22.12.0.tar.xz) = 776725d9bc29ddf94e93d72ad37ab8b3cad2eaab9adfe9ad056ef8a1822065b0 +SIZE (KDE/release-service/22.12.0/kfourinline-22.12.0.tar.xz) = 736224 diff --git a/games/kfourinline/pkg-plist b/games/kfourinline/pkg-plist index 4880ba1b1a19..3fa90b2e4e63 100644 --- a/games/kfourinline/pkg-plist +++ b/games/kfourinline/pkg-plist @@ -1,78 +1,91 @@ bin/kfourinline bin/kfourinlineproc share/applications/org.kde.kfourinline.desktop share/config.kcfg/kwin4.kcfg +share/icons/hicolor/128x128/apps/kfourinline.png share/icons/hicolor/16x16/apps/kfourinline.png share/icons/hicolor/22x22/apps/kfourinline.png share/icons/hicolor/32x32/apps/kfourinline.png share/icons/hicolor/48x48/apps/kfourinline.png share/icons/hicolor/64x64/apps/kfourinline.png -share/icons/hicolor/128x128/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/af/LC_MESSAGES/kfourinline.mo share/locale/ar/LC_MESSAGES/kfourinline.mo share/locale/be/LC_MESSAGES/kfourinline.mo share/locale/bg/LC_MESSAGES/kfourinline.mo +share/locale/br/LC_MESSAGES/kfourinline.mo share/locale/bs/LC_MESSAGES/kfourinline.mo share/locale/ca/LC_MESSAGES/kfourinline.mo share/locale/ca@valencia/LC_MESSAGES/kfourinline.mo share/locale/cs/LC_MESSAGES/kfourinline.mo +share/locale/cy/LC_MESSAGES/kfourinline.mo share/locale/da/LC_MESSAGES/kfourinline.mo share/locale/de/LC_MESSAGES/kfourinline.mo share/locale/el/LC_MESSAGES/kfourinline.mo share/locale/en_GB/LC_MESSAGES/kfourinline.mo share/locale/eo/LC_MESSAGES/kfourinline.mo share/locale/es/LC_MESSAGES/kfourinline.mo share/locale/et/LC_MESSAGES/kfourinline.mo share/locale/eu/LC_MESSAGES/kfourinline.mo share/locale/fa/LC_MESSAGES/kfourinline.mo share/locale/fi/LC_MESSAGES/kfourinline.mo share/locale/fr/LC_MESSAGES/kfourinline.mo share/locale/ga/LC_MESSAGES/kfourinline.mo share/locale/gl/LC_MESSAGES/kfourinline.mo share/locale/he/LC_MESSAGES/kfourinline.mo share/locale/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/mai/LC_MESSAGES/kfourinline.mo +share/locale/mk/LC_MESSAGES/kfourinline.mo share/locale/ml/LC_MESSAGES/kfourinline.mo share/locale/mr/LC_MESSAGES/kfourinline.mo share/locale/nb/LC_MESSAGES/kfourinline.mo share/locale/nds/LC_MESSAGES/kfourinline.mo +share/locale/ne/LC_MESSAGES/kfourinline.mo share/locale/nl/LC_MESSAGES/kfourinline.mo share/locale/nn/LC_MESSAGES/kfourinline.mo +share/locale/oc/LC_MESSAGES/kfourinline.mo share/locale/pa/LC_MESSAGES/kfourinline.mo share/locale/pl/LC_MESSAGES/kfourinline.mo share/locale/pt/LC_MESSAGES/kfourinline.mo share/locale/pt_BR/LC_MESSAGES/kfourinline.mo share/locale/ro/LC_MESSAGES/kfourinline.mo share/locale/ru/LC_MESSAGES/kfourinline.mo share/locale/sk/LC_MESSAGES/kfourinline.mo share/locale/sl/LC_MESSAGES/kfourinline.mo share/locale/sr/LC_MESSAGES/kfourinline.mo +share/locale/sr@ijekavian/LC_MESSAGES/kfourinline.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfourinline.mo +share/locale/sr@latin/LC_MESSAGES/kfourinline.mo share/locale/sv/LC_MESSAGES/kfourinline.mo share/locale/ta/LC_MESSAGES/kfourinline.mo +share/locale/te/LC_MESSAGES/kfourinline.mo share/locale/tg/LC_MESSAGES/kfourinline.mo +share/locale/th/LC_MESSAGES/kfourinline.mo share/locale/tr/LC_MESSAGES/kfourinline.mo share/locale/ug/LC_MESSAGES/kfourinline.mo share/locale/uk/LC_MESSAGES/kfourinline.mo +share/locale/xh/LC_MESSAGES/kfourinline.mo share/locale/zh_CN/LC_MESSAGES/kfourinline.mo share/locale/zh_TW/LC_MESSAGES/kfourinline.mo share/metainfo/org.kde.kfourinline.appdata.xml share/qlogging-categories5/kfourinline.categories diff --git a/games/kgoldrunner/distinfo b/games/kgoldrunner/distinfo index 0e0f8b7977e3..e4464e9973e4 100644 --- a/games/kgoldrunner/distinfo +++ b/games/kgoldrunner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539552 -SHA256 (KDE/release-service/22.08.3/kgoldrunner-22.08.3.tar.xz) = 9504916b0e7d44ba57b092c3fbca2095870fd057e1c9b4d627123cb3741854f7 -SIZE (KDE/release-service/22.08.3/kgoldrunner-22.08.3.tar.xz) = 4788784 +TIMESTAMP = 1670513179 +SHA256 (KDE/release-service/22.12.0/kgoldrunner-22.12.0.tar.xz) = e58ac54f74814e39985e11e884c7eb846e1e412d1a5263c19848f60ecf13500d +SIZE (KDE/release-service/22.12.0/kgoldrunner-22.12.0.tar.xz) = 4901392 diff --git a/games/kgoldrunner/pkg-plist b/games/kgoldrunner/pkg-plist index da1e5fb7e48e..c8b2f0483b3b 100644 --- a/games/kgoldrunner/pkg-plist +++ b/games/kgoldrunner/pkg-plist @@ -1,135 +1,147 @@ bin/kgoldrunner share/applications/org.kde.kgoldrunner.desktop share/icons/hicolor/128x128/apps/kgoldrunner.png share/icons/hicolor/16x16/apps/kgoldrunner.png share/icons/hicolor/22x22/apps/kgoldrunner.png share/icons/hicolor/32x32/apps/kgoldrunner.png share/icons/hicolor/48x48/apps/kgoldrunner.png share/icons/hicolor/64x64/apps/kgoldrunner.png %%DATADIR%%/system/game_CM.txt %%DATADIR%%/system/game_GMEP.txt %%DATADIR%%/system/game_GMGR.txt %%DATADIR%%/system/game_GRII.txt %%DATADIR%%/system/game_GotD.txt %%DATADIR%%/system/game_MAZ.txt %%DATADIR%%/system/game_blb.txt %%DATADIR%%/system/game_cnt.txt %%DATADIR%%/system/game_ende.txt %%DATADIR%%/system/game_fd.txt %%DATADIR%%/system/game_kgr.txt %%DATADIR%%/system/game_lars.txt %%DATADIR%%/system/game_plws.txt %%DATADIR%%/system/game_plwv.txt %%DATADIR%%/system/game_sot.txt %%DATADIR%%/system/game_tute.txt %%DATADIR%%/system/game_tutea.txt %%DATADIR%%/system/game_wad.txt %%DATADIR%%/system/hi_kgr.dat %%DATADIR%%/system/hi_plws.dat %%DATADIR%%/system/hi_plwv.dat %%DATADIR%%/system/hi_wad.dat %%DATADIR%%/system/rec_GMGR.txt %%DATADIR%%/system/rec_GRII.txt %%DATADIR%%/system/rec_demo.txt %%DATADIR%%/system/sol_GotD.txt %%DATADIR%%/system/sol_blb.txt %%DATADIR%%/system/sol_fd.txt %%DATADIR%%/system/sol_kgr.txt %%DATADIR%%/system/sol_plws.txt %%DATADIR%%/system/sol_tute.txt %%DATADIR%%/system/sol_tutea.txt %%DATADIR%%/themes/README %%DATADIR%%/themes/accessible/black-on-white-actors.svgz %%DATADIR%%/themes/accessible/black-on-white-set.svgz %%DATADIR%%/themes/accessible/black-on-white.png %%DATADIR%%/themes/black-on-white.desktop %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default/actors.svgz %%DATADIR%%/themes/default/climb.wav %%DATADIR%%/themes/default/completed.ogg %%DATADIR%%/themes/default/death.ogg %%DATADIR%%/themes/default/default.png %%DATADIR%%/themes/default/dig.ogg %%DATADIR%%/themes/default/falling.ogg %%DATADIR%%/themes/default/gameover.ogg %%DATADIR%%/themes/default/gold.ogg %%DATADIR%%/themes/default/ladder.ogg %%DATADIR%%/themes/default/set.svgz %%DATADIR%%/themes/default/step.wav %%DATADIR%%/themes/default/victory.ogg %%DATADIR%%/themes/egypt.desktop %%DATADIR%%/themes/egypt/actors.svgz %%DATADIR%%/themes/egypt/egypt.png %%DATADIR%%/themes/egypt/egypt_kgr.svgz %%DATADIR%%/themes/kgr_geek.desktop %%DATADIR%%/themes/kgr_geek/actors.svgz %%DATADIR%%/themes/kgr_geek/kgr_geek.png %%DATADIR%%/themes/kgr_geek/set.svgz %%DATADIR%%/themes/nostalgia-blues.desktop %%DATADIR%%/themes/nostalgia.desktop %%DATADIR%%/themes/nostalgia/actors.svgz %%DATADIR%%/themes/nostalgia/blue-actors.svgz %%DATADIR%%/themes/nostalgia/blue-set.svgz %%DATADIR%%/themes/nostalgia/nostalgia-blues.png %%DATADIR%%/themes/nostalgia/nostalgia.png %%DATADIR%%/themes/nostalgia/set.svgz share/knsrcfiles/kgoldrunner.knsrc share/locale/ar/LC_MESSAGES/kgoldrunner.mo share/locale/be/LC_MESSAGES/kgoldrunner.mo share/locale/bg/LC_MESSAGES/kgoldrunner.mo +share/locale/bn/LC_MESSAGES/kgoldrunner.mo +share/locale/br/LC_MESSAGES/kgoldrunner.mo share/locale/bs/LC_MESSAGES/kgoldrunner.mo share/locale/ca/LC_MESSAGES/kgoldrunner.mo share/locale/ca@valencia/LC_MESSAGES/kgoldrunner.mo share/locale/cs/LC_MESSAGES/kgoldrunner.mo +share/locale/cy/LC_MESSAGES/kgoldrunner.mo share/locale/da/LC_MESSAGES/kgoldrunner.mo share/locale/de/LC_MESSAGES/kgoldrunner.mo share/locale/el/LC_MESSAGES/kgoldrunner.mo share/locale/en_GB/LC_MESSAGES/kgoldrunner.mo share/locale/eo/LC_MESSAGES/kgoldrunner.mo share/locale/es/LC_MESSAGES/kgoldrunner.mo share/locale/et/LC_MESSAGES/kgoldrunner.mo share/locale/eu/LC_MESSAGES/kgoldrunner.mo share/locale/fa/LC_MESSAGES/kgoldrunner.mo share/locale/fi/LC_MESSAGES/kgoldrunner.mo share/locale/fr/LC_MESSAGES/kgoldrunner.mo share/locale/ga/LC_MESSAGES/kgoldrunner.mo share/locale/gl/LC_MESSAGES/kgoldrunner.mo share/locale/hi/LC_MESSAGES/kgoldrunner.mo +share/locale/hne/LC_MESSAGES/kgoldrunner.mo share/locale/hr/LC_MESSAGES/kgoldrunner.mo share/locale/hu/LC_MESSAGES/kgoldrunner.mo share/locale/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/mai/LC_MESSAGES/kgoldrunner.mo +share/locale/mk/LC_MESSAGES/kgoldrunner.mo share/locale/ml/LC_MESSAGES/kgoldrunner.mo share/locale/mr/LC_MESSAGES/kgoldrunner.mo share/locale/nb/LC_MESSAGES/kgoldrunner.mo share/locale/nds/LC_MESSAGES/kgoldrunner.mo +share/locale/ne/LC_MESSAGES/kgoldrunner.mo share/locale/nl/LC_MESSAGES/kgoldrunner.mo share/locale/nn/LC_MESSAGES/kgoldrunner.mo +share/locale/oc/LC_MESSAGES/kgoldrunner.mo share/locale/pa/LC_MESSAGES/kgoldrunner.mo share/locale/pl/LC_MESSAGES/kgoldrunner.mo share/locale/pt/LC_MESSAGES/kgoldrunner.mo share/locale/pt_BR/LC_MESSAGES/kgoldrunner.mo share/locale/ro/LC_MESSAGES/kgoldrunner.mo share/locale/ru/LC_MESSAGES/kgoldrunner.mo share/locale/se/LC_MESSAGES/kgoldrunner.mo share/locale/sk/LC_MESSAGES/kgoldrunner.mo share/locale/sl/LC_MESSAGES/kgoldrunner.mo share/locale/sq/LC_MESSAGES/kgoldrunner.mo share/locale/sr/LC_MESSAGES/kgoldrunner.mo +share/locale/sr@ijekavian/LC_MESSAGES/kgoldrunner.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kgoldrunner.mo +share/locale/sr@latin/LC_MESSAGES/kgoldrunner.mo share/locale/sv/LC_MESSAGES/kgoldrunner.mo share/locale/ta/LC_MESSAGES/kgoldrunner.mo +share/locale/te/LC_MESSAGES/kgoldrunner.mo share/locale/tg/LC_MESSAGES/kgoldrunner.mo share/locale/tr/LC_MESSAGES/kgoldrunner.mo share/locale/ug/LC_MESSAGES/kgoldrunner.mo share/locale/uk/LC_MESSAGES/kgoldrunner.mo share/locale/zh_CN/LC_MESSAGES/kgoldrunner.mo share/locale/zh_TW/LC_MESSAGES/kgoldrunner.mo share/metainfo/org.kde.kgoldrunner.appdata.xml share/qlogging-categories5/kgoldrunner.categories diff --git a/games/khangman/distinfo b/games/khangman/distinfo index 7f0771f96a64..c232ac950337 100644 --- a/games/khangman/distinfo +++ b/games/khangman/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539514 -SHA256 (KDE/release-service/22.08.3/khangman-22.08.3.tar.xz) = 4f557f2c4ae6497a9be8393996582782f4503753004fc24fe4a9a86e8b489197 -SIZE (KDE/release-service/22.08.3/khangman-22.08.3.tar.xz) = 7423472 +TIMESTAMP = 1670513131 +SHA256 (KDE/release-service/22.12.0/khangman-22.12.0.tar.xz) = 9cb784b269e0be6815a6b36b7e8fbf6819cbe5db583f5c7c3164e8adc5ca5646 +SIZE (KDE/release-service/22.12.0/khangman-22.12.0.tar.xz) = 7443392 diff --git a/games/khangman/pkg-plist b/games/khangman/pkg-plist index 528161f87b7c..525c6e0d20d1 100644 --- a/games/khangman/pkg-plist +++ b/games/khangman/pkg-plist @@ -1,151 +1,164 @@ 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%%/sr@ijekavianlatin.txt %%DATADIR%%/sr@latin.txt %%DATADIR%%/sv.txt %%DATADIR%%/tg.txt %%DATADIR%%/themes/khangman_bees.svg %%DATADIR%%/themes/khangman_desert.svg %%DATADIR%%/themes/khangman_notes.png %%DATADIR%%/themes/khangman_sea.svg %%DATADIR%%/themes/khangman_winter.svg %%DATADIR%%/themes/standardthemes.xml %%DATADIR%%/tr.txt +share/locale/af/LC_MESSAGES/khangman.mo share/locale/ar/LC_MESSAGES/khangman.mo share/locale/be/LC_MESSAGES/khangman.mo share/locale/bg/LC_MESSAGES/khangman.mo +share/locale/bn/LC_MESSAGES/khangman.mo +share/locale/br/LC_MESSAGES/khangman.mo share/locale/bs/LC_MESSAGES/khangman.mo share/locale/ca/LC_MESSAGES/khangman.mo share/locale/ca@valencia/LC_MESSAGES/khangman.mo share/locale/cs/LC_MESSAGES/khangman.mo +share/locale/cy/LC_MESSAGES/khangman.mo share/locale/da/LC_MESSAGES/khangman.mo share/locale/de/LC_MESSAGES/khangman.mo share/locale/el/LC_MESSAGES/khangman.mo share/locale/en_GB/LC_MESSAGES/khangman.mo share/locale/eo/LC_MESSAGES/khangman.mo share/locale/es/LC_MESSAGES/khangman.mo share/locale/et/LC_MESSAGES/khangman.mo share/locale/eu/LC_MESSAGES/khangman.mo share/locale/fa/LC_MESSAGES/khangman.mo share/locale/fi/LC_MESSAGES/khangman.mo share/locale/fr/LC_MESSAGES/khangman.mo share/locale/ga/LC_MESSAGES/khangman.mo share/locale/gl/LC_MESSAGES/khangman.mo +share/locale/gu/LC_MESSAGES/khangman.mo share/locale/he/LC_MESSAGES/khangman.mo share/locale/hi/LC_MESSAGES/khangman.mo +share/locale/hne/LC_MESSAGES/khangman.mo share/locale/hr/LC_MESSAGES/khangman.mo share/locale/hu/LC_MESSAGES/khangman.mo share/locale/is/LC_MESSAGES/khangman.mo share/locale/it/LC_MESSAGES/khangman.mo share/locale/ja/LC_MESSAGES/khangman.mo +share/locale/ka/LC_MESSAGES/khangman.mo share/locale/kk/LC_MESSAGES/khangman.mo share/locale/km/LC_MESSAGES/khangman.mo share/locale/ko/LC_MESSAGES/khangman.mo share/locale/lt/LC_MESSAGES/khangman.mo share/locale/lv/LC_MESSAGES/khangman.mo +share/locale/mk/LC_MESSAGES/khangman.mo share/locale/ml/LC_MESSAGES/khangman.mo share/locale/mr/LC_MESSAGES/khangman.mo +share/locale/ms/LC_MESSAGES/khangman.mo share/locale/nb/LC_MESSAGES/khangman.mo share/locale/nds/LC_MESSAGES/khangman.mo +share/locale/ne/LC_MESSAGES/khangman.mo share/locale/nl/LC_MESSAGES/khangman.mo share/locale/nn/LC_MESSAGES/khangman.mo +share/locale/oc/LC_MESSAGES/khangman.mo share/locale/pa/LC_MESSAGES/khangman.mo share/locale/pl/LC_MESSAGES/khangman.mo share/locale/pt/LC_MESSAGES/khangman.mo share/locale/pt_BR/LC_MESSAGES/khangman.mo share/locale/ro/LC_MESSAGES/khangman.mo share/locale/ru/LC_MESSAGES/khangman.mo share/locale/se/LC_MESSAGES/khangman.mo +share/locale/si/LC_MESSAGES/khangman.mo share/locale/sk/LC_MESSAGES/khangman.mo share/locale/sl/LC_MESSAGES/khangman.mo share/locale/sq/LC_MESSAGES/khangman.mo share/locale/sv/LC_MESSAGES/khangman.mo share/locale/ta/LC_MESSAGES/khangman.mo share/locale/tg/LC_MESSAGES/khangman.mo share/locale/tr/LC_MESSAGES/khangman.mo share/locale/ug/LC_MESSAGES/khangman.mo share/locale/uk/LC_MESSAGES/khangman.mo +share/locale/xh/LC_MESSAGES/khangman.mo share/locale/zh_CN/LC_MESSAGES/khangman.mo share/locale/zh_TW/LC_MESSAGES/khangman.mo share/metainfo/org.kde.khangman.appdata.xml diff --git a/games/kigo/distinfo b/games/kigo/distinfo index b2789202253e..f088e3e5415a 100644 --- a/games/kigo/distinfo +++ b/games/kigo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539523 -SHA256 (KDE/release-service/22.08.3/kigo-22.08.3.tar.xz) = 8c438595133171c684109152ac075a643793d81b27cd9d3c060be2540cc53f30 -SIZE (KDE/release-service/22.08.3/kigo-22.08.3.tar.xz) = 5256268 +TIMESTAMP = 1670513142 +SHA256 (KDE/release-service/22.12.0/kigo-22.12.0.tar.xz) = 9b3b984f35371adfbcea069b47e6a64dac8d572f03c52916b0371129b8185d2a +SIZE (KDE/release-service/22.12.0/kigo-22.12.0.tar.xz) = 5264284 diff --git a/games/kigo/pkg-plist b/games/kigo/pkg-plist index 5d061a14c237..c04fde13540c 100644 --- a/games/kigo/pkg-plist +++ b/games/kigo/pkg-plist @@ -1,70 +1,78 @@ bin/kigo share/applications/org.kde.kigo.desktop share/config.kcfg/kigo.kcfg +share/icons/hicolor/128x128/apps/kigo.png share/icons/hicolor/16x16/apps/kigo.png share/icons/hicolor/22x22/apps/kigo.png share/icons/hicolor/32x32/apps/kigo.png share/icons/hicolor/48x48/apps/kigo.png share/icons/hicolor/64x64/apps/kigo.png -share/icons/hicolor/128x128/apps/kigo.png %%DATADIR%%/games/Honinbo-51-5.sgf %%DATADIR%%/games/Mehin-21-2.sgf %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/kigo_default.png %%DATADIR%%/themes/kigo_default.svgz %%DATADIR%%/themes/kigo_plain.png %%DATADIR%%/themes/kigo_plain.svgz %%DATADIR%%/themes/plain.desktop share/knsrcfiles/kigo-games.knsrc share/knsrcfiles/kigo.knsrc share/locale/ar/LC_MESSAGES/kigo.mo share/locale/bg/LC_MESSAGES/kigo.mo share/locale/bs/LC_MESSAGES/kigo.mo share/locale/ca/LC_MESSAGES/kigo.mo share/locale/ca@valencia/LC_MESSAGES/kigo.mo share/locale/cs/LC_MESSAGES/kigo.mo share/locale/da/LC_MESSAGES/kigo.mo share/locale/de/LC_MESSAGES/kigo.mo share/locale/el/LC_MESSAGES/kigo.mo share/locale/en_GB/LC_MESSAGES/kigo.mo share/locale/eo/LC_MESSAGES/kigo.mo share/locale/es/LC_MESSAGES/kigo.mo share/locale/et/LC_MESSAGES/kigo.mo share/locale/eu/LC_MESSAGES/kigo.mo share/locale/fi/LC_MESSAGES/kigo.mo share/locale/fr/LC_MESSAGES/kigo.mo share/locale/ga/LC_MESSAGES/kigo.mo share/locale/gl/LC_MESSAGES/kigo.mo share/locale/hr/LC_MESSAGES/kigo.mo +share/locale/hsb/LC_MESSAGES/kigo.mo share/locale/hu/LC_MESSAGES/kigo.mo share/locale/id/LC_MESSAGES/kigo.mo share/locale/is/LC_MESSAGES/kigo.mo share/locale/it/LC_MESSAGES/kigo.mo share/locale/ja/LC_MESSAGES/kigo.mo +share/locale/ka/LC_MESSAGES/kigo.mo share/locale/kk/LC_MESSAGES/kigo.mo share/locale/km/LC_MESSAGES/kigo.mo share/locale/ko/LC_MESSAGES/kigo.mo share/locale/lt/LC_MESSAGES/kigo.mo share/locale/lv/LC_MESSAGES/kigo.mo +share/locale/mai/LC_MESSAGES/kigo.mo share/locale/ml/LC_MESSAGES/kigo.mo share/locale/mr/LC_MESSAGES/kigo.mo +share/locale/ms/LC_MESSAGES/kigo.mo share/locale/nb/LC_MESSAGES/kigo.mo share/locale/nds/LC_MESSAGES/kigo.mo share/locale/nl/LC_MESSAGES/kigo.mo share/locale/nn/LC_MESSAGES/kigo.mo share/locale/pl/LC_MESSAGES/kigo.mo share/locale/pt/LC_MESSAGES/kigo.mo share/locale/pt_BR/LC_MESSAGES/kigo.mo share/locale/ro/LC_MESSAGES/kigo.mo share/locale/ru/LC_MESSAGES/kigo.mo share/locale/sk/LC_MESSAGES/kigo.mo share/locale/sl/LC_MESSAGES/kigo.mo share/locale/sr/LC_MESSAGES/kigo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kigo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kigo.mo +share/locale/sr@latin/LC_MESSAGES/kigo.mo share/locale/sv/LC_MESSAGES/kigo.mo +share/locale/th/LC_MESSAGES/kigo.mo share/locale/tr/LC_MESSAGES/kigo.mo share/locale/ug/LC_MESSAGES/kigo.mo share/locale/uk/LC_MESSAGES/kigo.mo share/locale/zh_CN/LC_MESSAGES/kigo.mo share/locale/zh_TW/LC_MESSAGES/kigo.mo share/metainfo/org.kde.kigo.appdata.xml share/qlogging-categories5/kigo.categories diff --git a/games/killbots/distinfo b/games/killbots/distinfo index fead440d0789..f933e0a3cf8a 100644 --- a/games/killbots/distinfo +++ b/games/killbots/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539526 -SHA256 (KDE/release-service/22.08.3/killbots-22.08.3.tar.xz) = 25da182c9e47dc54c3d8d51f5a10d57d5c82192501a006173d753b854095ea00 -SIZE (KDE/release-service/22.08.3/killbots-22.08.3.tar.xz) = 1198068 +TIMESTAMP = 1670513145 +SHA256 (KDE/release-service/22.12.0/killbots-22.12.0.tar.xz) = baabccde5449fd75ffe88a84f5c86a981e39cc12a428d3ed8b1098c92847e871 +SIZE (KDE/release-service/22.12.0/killbots-22.12.0.tar.xz) = 1201428 diff --git a/games/killbots/pkg-plist b/games/killbots/pkg-plist index b6608af0d4e5..3d8e7db00e67 100644 --- a/games/killbots/pkg-plist +++ b/games/killbots/pkg-plist @@ -1,77 +1,82 @@ bin/killbots share/applications/org.kde.killbots.desktop share/config.kcfg/killbots.kcfg +share/icons/hicolor/128x128/apps/killbots.png share/icons/hicolor/16x16/apps/killbots.png share/icons/hicolor/22x22/apps/killbots.png share/icons/hicolor/32x32/apps/killbots.png share/icons/hicolor/48x48/apps/killbots.png share/icons/hicolor/64x64/apps/killbots.png -share/icons/hicolor/128x128/apps/killbots.png %%DATADIR%%/rulesets/classic.desktop %%DATADIR%%/rulesets/daleks.desktop %%DATADIR%%/rulesets/default.desktop %%DATADIR%%/rulesets/easy.desktop %%DATADIR%%/rulesets/energycrisis.desktop %%DATADIR%%/themes/classic.desktop %%DATADIR%%/themes/classic.png %%DATADIR%%/themes/classic.svgz %%DATADIR%%/themes/mountainadventure.desktop %%DATADIR%%/themes/mountainadventure.png %%DATADIR%%/themes/mountainadventure.svgz %%DATADIR%%/themes/mummymadness.desktop %%DATADIR%%/themes/mummymadness.png %%DATADIR%%/themes/mummymadness.svgz %%DATADIR%%/themes/robotkill.desktop %%DATADIR%%/themes/robotkill.png %%DATADIR%%/themes/robotkill.svgz share/locale/ar/LC_MESSAGES/killbots.mo share/locale/bg/LC_MESSAGES/killbots.mo share/locale/bs/LC_MESSAGES/killbots.mo share/locale/ca/LC_MESSAGES/killbots.mo share/locale/ca@valencia/LC_MESSAGES/killbots.mo share/locale/cs/LC_MESSAGES/killbots.mo share/locale/da/LC_MESSAGES/killbots.mo share/locale/de/LC_MESSAGES/killbots.mo share/locale/el/LC_MESSAGES/killbots.mo share/locale/en_GB/LC_MESSAGES/killbots.mo share/locale/eo/LC_MESSAGES/killbots.mo share/locale/es/LC_MESSAGES/killbots.mo share/locale/et/LC_MESSAGES/killbots.mo share/locale/eu/LC_MESSAGES/killbots.mo share/locale/fi/LC_MESSAGES/killbots.mo share/locale/fr/LC_MESSAGES/killbots.mo share/locale/ga/LC_MESSAGES/killbots.mo share/locale/gl/LC_MESSAGES/killbots.mo share/locale/hr/LC_MESSAGES/killbots.mo share/locale/hu/LC_MESSAGES/killbots.mo share/locale/id/LC_MESSAGES/killbots.mo share/locale/is/LC_MESSAGES/killbots.mo share/locale/it/LC_MESSAGES/killbots.mo share/locale/ja/LC_MESSAGES/killbots.mo +share/locale/ka/LC_MESSAGES/killbots.mo share/locale/kk/LC_MESSAGES/killbots.mo share/locale/km/LC_MESSAGES/killbots.mo share/locale/ko/LC_MESSAGES/killbots.mo share/locale/lt/LC_MESSAGES/killbots.mo share/locale/lv/LC_MESSAGES/killbots.mo +share/locale/mai/LC_MESSAGES/killbots.mo share/locale/ml/LC_MESSAGES/killbots.mo share/locale/mr/LC_MESSAGES/killbots.mo share/locale/nb/LC_MESSAGES/killbots.mo share/locale/nds/LC_MESSAGES/killbots.mo share/locale/nl/LC_MESSAGES/killbots.mo share/locale/nn/LC_MESSAGES/killbots.mo share/locale/pl/LC_MESSAGES/killbots.mo share/locale/pt/LC_MESSAGES/killbots.mo share/locale/pt_BR/LC_MESSAGES/killbots.mo share/locale/ro/LC_MESSAGES/killbots.mo share/locale/ru/LC_MESSAGES/killbots.mo share/locale/sk/LC_MESSAGES/killbots.mo share/locale/sl/LC_MESSAGES/killbots.mo share/locale/sr/LC_MESSAGES/killbots.mo +share/locale/sr@ijekavian/LC_MESSAGES/killbots.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/killbots.mo +share/locale/sr@latin/LC_MESSAGES/killbots.mo share/locale/sv/LC_MESSAGES/killbots.mo share/locale/tr/LC_MESSAGES/killbots.mo share/locale/ug/LC_MESSAGES/killbots.mo share/locale/uk/LC_MESSAGES/killbots.mo share/locale/zh_CN/LC_MESSAGES/killbots.mo share/locale/zh_TW/LC_MESSAGES/killbots.mo share/metainfo/org.kde.killbots.appdata.xml share/qlogging-categories5/killbots.categories diff --git a/games/kiriki/distinfo b/games/kiriki/distinfo index 543ae6e0543e..049c13ae4562 100644 --- a/games/kiriki/distinfo +++ b/games/kiriki/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539531 -SHA256 (KDE/release-service/22.08.3/kiriki-22.08.3.tar.xz) = fd234e4a4aebe759d8f824faf3f5ac8cbee43ee2607675518f80cb5a0a110e86 -SIZE (KDE/release-service/22.08.3/kiriki-22.08.3.tar.xz) = 366824 +TIMESTAMP = 1670513151 +SHA256 (KDE/release-service/22.12.0/kiriki-22.12.0.tar.xz) = af154e5aa92fc6d90c90d15d6b674e2ce53e3a5ef03d9261169cc65bb628c3e7 +SIZE (KDE/release-service/22.12.0/kiriki-22.12.0.tar.xz) = 368796 diff --git a/games/kiriki/pkg-plist b/games/kiriki/pkg-plist index 5a047bb09c31..706002fce779 100644 --- a/games/kiriki/pkg-plist +++ b/games/kiriki/pkg-plist @@ -1,68 +1,76 @@ 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 -share/icons/hicolor/128x128/apps/kiriki.png %%DATADIR%%/images/dice-1.png %%DATADIR%%/images/dice-2.png %%DATADIR%%/images/dice-3.png %%DATADIR%%/images/dice-4.png %%DATADIR%%/images/dice-5.png %%DATADIR%%/images/dice-6.png %%DATADIR%%/images/dice-none.png share/locale/ar/LC_MESSAGES/kiriki.mo share/locale/be/LC_MESSAGES/kiriki.mo share/locale/bg/LC_MESSAGES/kiriki.mo share/locale/bs/LC_MESSAGES/kiriki.mo share/locale/ca/LC_MESSAGES/kiriki.mo share/locale/ca@valencia/LC_MESSAGES/kiriki.mo share/locale/cs/LC_MESSAGES/kiriki.mo +share/locale/csb/LC_MESSAGES/kiriki.mo share/locale/da/LC_MESSAGES/kiriki.mo share/locale/de/LC_MESSAGES/kiriki.mo share/locale/el/LC_MESSAGES/kiriki.mo share/locale/en_GB/LC_MESSAGES/kiriki.mo share/locale/eo/LC_MESSAGES/kiriki.mo share/locale/es/LC_MESSAGES/kiriki.mo share/locale/et/LC_MESSAGES/kiriki.mo share/locale/eu/LC_MESSAGES/kiriki.mo share/locale/fi/LC_MESSAGES/kiriki.mo share/locale/fr/LC_MESSAGES/kiriki.mo share/locale/ga/LC_MESSAGES/kiriki.mo share/locale/gl/LC_MESSAGES/kiriki.mo share/locale/hi/LC_MESSAGES/kiriki.mo +share/locale/hne/LC_MESSAGES/kiriki.mo share/locale/hr/LC_MESSAGES/kiriki.mo share/locale/hu/LC_MESSAGES/kiriki.mo share/locale/id/LC_MESSAGES/kiriki.mo share/locale/is/LC_MESSAGES/kiriki.mo share/locale/it/LC_MESSAGES/kiriki.mo share/locale/ja/LC_MESSAGES/kiriki.mo +share/locale/ka/LC_MESSAGES/kiriki.mo share/locale/kk/LC_MESSAGES/kiriki.mo share/locale/km/LC_MESSAGES/kiriki.mo share/locale/ko/LC_MESSAGES/kiriki.mo share/locale/lt/LC_MESSAGES/kiriki.mo share/locale/lv/LC_MESSAGES/kiriki.mo +share/locale/mai/LC_MESSAGES/kiriki.mo share/locale/ml/LC_MESSAGES/kiriki.mo share/locale/mr/LC_MESSAGES/kiriki.mo share/locale/nb/LC_MESSAGES/kiriki.mo share/locale/nds/LC_MESSAGES/kiriki.mo share/locale/nl/LC_MESSAGES/kiriki.mo share/locale/nn/LC_MESSAGES/kiriki.mo +share/locale/oc/LC_MESSAGES/kiriki.mo share/locale/pl/LC_MESSAGES/kiriki.mo share/locale/pt/LC_MESSAGES/kiriki.mo share/locale/pt_BR/LC_MESSAGES/kiriki.mo share/locale/ro/LC_MESSAGES/kiriki.mo share/locale/ru/LC_MESSAGES/kiriki.mo share/locale/se/LC_MESSAGES/kiriki.mo share/locale/sk/LC_MESSAGES/kiriki.mo share/locale/sl/LC_MESSAGES/kiriki.mo share/locale/sr/LC_MESSAGES/kiriki.mo +share/locale/sr@ijekavian/LC_MESSAGES/kiriki.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kiriki.mo +share/locale/sr@latin/LC_MESSAGES/kiriki.mo share/locale/sv/LC_MESSAGES/kiriki.mo share/locale/tr/LC_MESSAGES/kiriki.mo share/locale/ug/LC_MESSAGES/kiriki.mo share/locale/uk/LC_MESSAGES/kiriki.mo share/locale/zh_CN/LC_MESSAGES/kiriki.mo share/locale/zh_TW/LC_MESSAGES/kiriki.mo share/metainfo/org.kde.kiriki.appdata.xml diff --git a/games/kjumpingcube/distinfo b/games/kjumpingcube/distinfo index c330fc6d5399..c14f79332a79 100644 --- a/games/kjumpingcube/distinfo +++ b/games/kjumpingcube/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539498 -SHA256 (KDE/release-service/22.08.3/kjumpingcube-22.08.3.tar.xz) = b45b41e5793afe743a9b533e1f2c3aadbc1d7014375bfdf3fb8520cf592f24e0 -SIZE (KDE/release-service/22.08.3/kjumpingcube-22.08.3.tar.xz) = 325984 +TIMESTAMP = 1670513110 +SHA256 (KDE/release-service/22.12.0/kjumpingcube-22.12.0.tar.xz) = 14babc3499139e383fd2a000ba14044f250c741e6420ec75aacd7cdc7d110a23 +SIZE (KDE/release-service/22.12.0/kjumpingcube-22.12.0.tar.xz) = 334444 diff --git a/games/kjumpingcube/pkg-plist b/games/kjumpingcube/pkg-plist index cda5c33fec10..9b83751dae74 100644 --- a/games/kjumpingcube/pkg-plist +++ b/games/kjumpingcube/pkg-plist @@ -1,72 +1,86 @@ bin/kjumpingcube share/applications/org.kde.kjumpingcube.desktop share/config.kcfg/kjumpingcube.kcfg +share/icons/hicolor/128x128/apps/kjumpingcube.png share/icons/hicolor/16x16/apps/kjumpingcube.png share/icons/hicolor/22x22/apps/kjumpingcube.png share/icons/hicolor/32x32/apps/kjumpingcube.png share/icons/hicolor/48x48/apps/kjumpingcube.png share/icons/hicolor/64x64/apps/kjumpingcube.png -share/icons/hicolor/128x128/apps/kjumpingcube.png %%DATADIR%%/pics/default.desktop %%DATADIR%%/pics/default.svg +share/locale/af/LC_MESSAGES/kjumpingcube.mo share/locale/ar/LC_MESSAGES/kjumpingcube.mo share/locale/be/LC_MESSAGES/kjumpingcube.mo share/locale/bg/LC_MESSAGES/kjumpingcube.mo +share/locale/br/LC_MESSAGES/kjumpingcube.mo share/locale/bs/LC_MESSAGES/kjumpingcube.mo share/locale/ca/LC_MESSAGES/kjumpingcube.mo share/locale/ca@valencia/LC_MESSAGES/kjumpingcube.mo share/locale/cs/LC_MESSAGES/kjumpingcube.mo +share/locale/cy/LC_MESSAGES/kjumpingcube.mo share/locale/da/LC_MESSAGES/kjumpingcube.mo share/locale/de/LC_MESSAGES/kjumpingcube.mo share/locale/el/LC_MESSAGES/kjumpingcube.mo share/locale/en_GB/LC_MESSAGES/kjumpingcube.mo share/locale/eo/LC_MESSAGES/kjumpingcube.mo share/locale/es/LC_MESSAGES/kjumpingcube.mo share/locale/et/LC_MESSAGES/kjumpingcube.mo share/locale/eu/LC_MESSAGES/kjumpingcube.mo share/locale/fa/LC_MESSAGES/kjumpingcube.mo share/locale/fi/LC_MESSAGES/kjumpingcube.mo share/locale/fr/LC_MESSAGES/kjumpingcube.mo share/locale/ga/LC_MESSAGES/kjumpingcube.mo share/locale/gl/LC_MESSAGES/kjumpingcube.mo share/locale/he/LC_MESSAGES/kjumpingcube.mo share/locale/hi/LC_MESSAGES/kjumpingcube.mo +share/locale/hne/LC_MESSAGES/kjumpingcube.mo share/locale/hr/LC_MESSAGES/kjumpingcube.mo share/locale/hu/LC_MESSAGES/kjumpingcube.mo share/locale/id/LC_MESSAGES/kjumpingcube.mo share/locale/is/LC_MESSAGES/kjumpingcube.mo share/locale/it/LC_MESSAGES/kjumpingcube.mo share/locale/ja/LC_MESSAGES/kjumpingcube.mo +share/locale/ka/LC_MESSAGES/kjumpingcube.mo share/locale/kk/LC_MESSAGES/kjumpingcube.mo share/locale/km/LC_MESSAGES/kjumpingcube.mo share/locale/ko/LC_MESSAGES/kjumpingcube.mo share/locale/lt/LC_MESSAGES/kjumpingcube.mo share/locale/lv/LC_MESSAGES/kjumpingcube.mo +share/locale/mai/LC_MESSAGES/kjumpingcube.mo +share/locale/mk/LC_MESSAGES/kjumpingcube.mo share/locale/ml/LC_MESSAGES/kjumpingcube.mo share/locale/mr/LC_MESSAGES/kjumpingcube.mo share/locale/nb/LC_MESSAGES/kjumpingcube.mo share/locale/nds/LC_MESSAGES/kjumpingcube.mo +share/locale/ne/LC_MESSAGES/kjumpingcube.mo share/locale/nl/LC_MESSAGES/kjumpingcube.mo share/locale/nn/LC_MESSAGES/kjumpingcube.mo +share/locale/oc/LC_MESSAGES/kjumpingcube.mo share/locale/pa/LC_MESSAGES/kjumpingcube.mo share/locale/pl/LC_MESSAGES/kjumpingcube.mo share/locale/pt/LC_MESSAGES/kjumpingcube.mo share/locale/pt_BR/LC_MESSAGES/kjumpingcube.mo share/locale/ro/LC_MESSAGES/kjumpingcube.mo share/locale/ru/LC_MESSAGES/kjumpingcube.mo share/locale/se/LC_MESSAGES/kjumpingcube.mo share/locale/sk/LC_MESSAGES/kjumpingcube.mo share/locale/sl/LC_MESSAGES/kjumpingcube.mo share/locale/sq/LC_MESSAGES/kjumpingcube.mo share/locale/sr/LC_MESSAGES/kjumpingcube.mo +share/locale/sr@ijekavian/LC_MESSAGES/kjumpingcube.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kjumpingcube.mo +share/locale/sr@latin/LC_MESSAGES/kjumpingcube.mo share/locale/sv/LC_MESSAGES/kjumpingcube.mo share/locale/ta/LC_MESSAGES/kjumpingcube.mo +share/locale/te/LC_MESSAGES/kjumpingcube.mo share/locale/tg/LC_MESSAGES/kjumpingcube.mo share/locale/tr/LC_MESSAGES/kjumpingcube.mo share/locale/ug/LC_MESSAGES/kjumpingcube.mo share/locale/uk/LC_MESSAGES/kjumpingcube.mo share/locale/vi/LC_MESSAGES/kjumpingcube.mo +share/locale/xh/LC_MESSAGES/kjumpingcube.mo share/locale/zh_CN/LC_MESSAGES/kjumpingcube.mo share/locale/zh_TW/LC_MESSAGES/kjumpingcube.mo share/metainfo/org.kde.kjumpingcube.appdata.xml share/qlogging-categories5/kjumpingcube.categories diff --git a/games/klickety/distinfo b/games/klickety/distinfo index dbd6cfbee113..b27eec3443d1 100644 --- a/games/klickety/distinfo +++ b/games/klickety/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539540 -SHA256 (KDE/release-service/22.08.3/klickety-22.08.3.tar.xz) = b0c55642dd21e6f2d76e0a22429fcd8a70b222fd48efa2857a328c2d070cd6e2 -SIZE (KDE/release-service/22.08.3/klickety-22.08.3.tar.xz) = 1496012 +TIMESTAMP = 1670513163 +SHA256 (KDE/release-service/22.12.0/klickety-22.12.0.tar.xz) = 88dace5d74457a782a6ac613ff8ce3e526e1fa824f665ad0c463e2ef85658f34 +SIZE (KDE/release-service/22.12.0/klickety-22.12.0.tar.xz) = 1498628 diff --git a/games/klickety/pkg-plist b/games/klickety/pkg-plist index f7e4adf731a4..de786ca5625c 100644 --- a/games/klickety/pkg-plist +++ b/games/klickety/pkg-plist @@ -1,75 +1,80 @@ bin/klickety share/applications/org.kde.klickety.desktop share/applications/org.kde.ksame.desktop +share/icons/hicolor/128x128/apps/klickety.png +share/icons/hicolor/128x128/apps/ksame.png share/icons/hicolor/16x16/apps/klickety.png share/icons/hicolor/16x16/apps/ksame.png share/icons/hicolor/22x22/apps/klickety.png share/icons/hicolor/22x22/apps/ksame.png share/icons/hicolor/32x32/apps/klickety.png share/icons/hicolor/32x32/apps/ksame.png share/icons/hicolor/48x48/apps/klickety.png share/icons/hicolor/48x48/apps/ksame.png share/icons/hicolor/64x64/apps/klickety.png share/icons/hicolor/64x64/apps/ksame.png -share/icons/hicolor/128x128/apps/klickety.png -share/icons/hicolor/128x128/apps/ksame.png share/kconf_update/klickety-2.0-inherit-ksame-highscore.pl share/kconf_update/klickety.upd %%DATADIR%%/klickety.kcfg %%DATADIR%%/themes/classic.svg %%DATADIR%%/themes/classic_preview.png %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/ksame.desktop %%DATADIR%%/themes/ksame.svg %%DATADIR%%/themes/ksame_old.desktop %%DATADIR%%/themes/ksame_old.svg %%DATADIR%%/themes/ksame_old_preview.png %%DATADIR%%/themes/ksame_preview.png share/locale/bg/LC_MESSAGES/klickety.mo share/locale/bs/LC_MESSAGES/klickety.mo share/locale/ca/LC_MESSAGES/klickety.mo share/locale/ca@valencia/LC_MESSAGES/klickety.mo share/locale/cs/LC_MESSAGES/klickety.mo share/locale/da/LC_MESSAGES/klickety.mo share/locale/de/LC_MESSAGES/klickety.mo share/locale/el/LC_MESSAGES/klickety.mo share/locale/en_GB/LC_MESSAGES/klickety.mo share/locale/es/LC_MESSAGES/klickety.mo share/locale/et/LC_MESSAGES/klickety.mo share/locale/fi/LC_MESSAGES/klickety.mo share/locale/fr/LC_MESSAGES/klickety.mo share/locale/ga/LC_MESSAGES/klickety.mo share/locale/gl/LC_MESSAGES/klickety.mo share/locale/hu/LC_MESSAGES/klickety.mo share/locale/id/LC_MESSAGES/klickety.mo share/locale/is/LC_MESSAGES/klickety.mo share/locale/it/LC_MESSAGES/klickety.mo share/locale/ja/LC_MESSAGES/klickety.mo +share/locale/ka/LC_MESSAGES/klickety.mo share/locale/kk/LC_MESSAGES/klickety.mo share/locale/ko/LC_MESSAGES/klickety.mo share/locale/lt/LC_MESSAGES/klickety.mo share/locale/lv/LC_MESSAGES/klickety.mo +share/locale/mai/LC_MESSAGES/klickety.mo share/locale/ml/LC_MESSAGES/klickety.mo share/locale/mr/LC_MESSAGES/klickety.mo share/locale/nb/LC_MESSAGES/klickety.mo share/locale/nds/LC_MESSAGES/klickety.mo share/locale/nl/LC_MESSAGES/klickety.mo share/locale/nn/LC_MESSAGES/klickety.mo share/locale/pl/LC_MESSAGES/klickety.mo share/locale/pt/LC_MESSAGES/klickety.mo share/locale/pt_BR/LC_MESSAGES/klickety.mo share/locale/ro/LC_MESSAGES/klickety.mo share/locale/ru/LC_MESSAGES/klickety.mo share/locale/sk/LC_MESSAGES/klickety.mo share/locale/sl/LC_MESSAGES/klickety.mo share/locale/sr/LC_MESSAGES/klickety.mo +share/locale/sr@ijekavian/LC_MESSAGES/klickety.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/klickety.mo +share/locale/sr@latin/LC_MESSAGES/klickety.mo share/locale/sv/LC_MESSAGES/klickety.mo share/locale/tr/LC_MESSAGES/klickety.mo share/locale/ug/LC_MESSAGES/klickety.mo share/locale/uk/LC_MESSAGES/klickety.mo share/locale/zh_CN/LC_MESSAGES/klickety.mo share/locale/zh_TW/LC_MESSAGES/klickety.mo share/metainfo/org.kde.klickety.appdata.xml share/metainfo/org.kde.ksame.appdata.xml share/sounds/klickety/game-finished.ogg share/sounds/klickety/remove.ogg diff --git a/games/klines/distinfo b/games/klines/distinfo index be897693463f..6861cbf880b5 100644 --- a/games/klines/distinfo +++ b/games/klines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539503 -SHA256 (KDE/release-service/22.08.3/klines-22.08.3.tar.xz) = a537adcf54a82c269e5d7d91dd8e765f242f098f48d52dd1a7c34675e7771c0f -SIZE (KDE/release-service/22.08.3/klines-22.08.3.tar.xz) = 1728656 +TIMESTAMP = 1670513117 +SHA256 (KDE/release-service/22.12.0/klines-22.12.0.tar.xz) = d21013af9a4e304d43f6755436d4f3591b33868c57d494bb64ad2bbc5d7e4fe4 +SIZE (KDE/release-service/22.12.0/klines-22.12.0.tar.xz) = 1738288 diff --git a/games/klines/pkg-plist b/games/klines/pkg-plist index b51883101b01..a2c40aab8481 100644 --- a/games/klines/pkg-plist +++ b/games/klines/pkg-plist @@ -1,84 +1,100 @@ 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 -share/icons/hicolor/128x128/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/af/LC_MESSAGES/klines.mo share/locale/ar/LC_MESSAGES/klines.mo share/locale/be/LC_MESSAGES/klines.mo share/locale/bg/LC_MESSAGES/klines.mo +share/locale/br/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/csb/LC_MESSAGES/klines.mo +share/locale/cy/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/hne/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/ka/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/mai/LC_MESSAGES/klines.mo +share/locale/mk/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/ne/LC_MESSAGES/klines.mo share/locale/nl/LC_MESSAGES/klines.mo share/locale/nn/LC_MESSAGES/klines.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/klines.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/klines.mo +share/locale/sr@latin/LC_MESSAGES/klines.mo share/locale/sv/LC_MESSAGES/klines.mo share/locale/ta/LC_MESSAGES/klines.mo +share/locale/te/LC_MESSAGES/klines.mo share/locale/tg/LC_MESSAGES/klines.mo +share/locale/th/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/xh/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 3bf01c059edd..dab75fad71a5 100644 --- a/games/kmahjongg/distinfo +++ b/games/kmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539519 -SHA256 (KDE/release-service/22.08.3/kmahjongg-22.08.3.tar.xz) = 24360d1ed40c77257780578fc09c45dc74191c7d449dcfb89920b2e8a1dcbc9c -SIZE (KDE/release-service/22.08.3/kmahjongg-22.08.3.tar.xz) = 4073448 +TIMESTAMP = 1670513137 +SHA256 (KDE/release-service/22.12.0/kmahjongg-22.12.0.tar.xz) = 2db76249f42af3d0b18d4241292c41e3ca262749d5f622dc481a58e4a9c9c338 +SIZE (KDE/release-service/22.12.0/kmahjongg-22.12.0.tar.xz) = 4094116 diff --git a/games/kmahjongg/pkg-plist b/games/kmahjongg/pkg-plist index 24457cc67434..4f5186487b38 100644 --- a/games/kmahjongg/pkg-plist +++ b/games/kmahjongg/pkg-plist @@ -1,215 +1,231 @@ bin/kmahjongg share/applications/org.kde.kmahjongg.desktop share/config.kcfg/kmahjongg.kcfg +share/icons/hicolor/128x128/apps/kmahjongg.png share/icons/hicolor/16x16/apps/kmahjongg.png share/icons/hicolor/22x22/apps/kmahjongg.png share/icons/hicolor/32x32/apps/kmahjongg.png share/icons/hicolor/48x48/apps/kmahjongg.png share/icons/hicolor/64x64/apps/kmahjongg.png -share/icons/hicolor/128x128/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/castle2.desktop -%%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/castle.desktop %%DATADIR%%/layouts/castle.layout +%%DATADIR%%/layouts/castle2.desktop +%%DATADIR%%/layouts/castle2.layout %%DATADIR%%/layouts/cat.desktop %%DATADIR%%/layouts/cat.layout %%DATADIR%%/layouts/chains.desktop %%DATADIR%%/layouts/chains.layout %%DATADIR%%/layouts/checkered.desktop %%DATADIR%%/layouts/checkered.layout %%DATADIR%%/layouts/chip.desktop %%DATADIR%%/layouts/chip.layout %%DATADIR%%/layouts/clubs.desktop %%DATADIR%%/layouts/clubs.layout %%DATADIR%%/layouts/columns.desktop %%DATADIR%%/layouts/columns.layout %%DATADIR%%/layouts/crab.desktop %%DATADIR%%/layouts/crab.layout %%DATADIR%%/layouts/cross.desktop %%DATADIR%%/layouts/cross.layout %%DATADIR%%/layouts/default.desktop %%DATADIR%%/layouts/default.layout %%DATADIR%%/layouts/dragon.desktop %%DATADIR%%/layouts/dragon.layout %%DATADIR%%/layouts/eagle.desktop %%DATADIR%%/layouts/eagle.layout %%DATADIR%%/layouts/enterprise.desktop %%DATADIR%%/layouts/enterprise.layout %%DATADIR%%/layouts/explosion.desktop %%DATADIR%%/layouts/explosion.layout %%DATADIR%%/layouts/flowers.desktop %%DATADIR%%/layouts/flowers.layout %%DATADIR%%/layouts/future.desktop %%DATADIR%%/layouts/future.layout %%DATADIR%%/layouts/galaxy.desktop %%DATADIR%%/layouts/galaxy.layout %%DATADIR%%/layouts/garden.desktop %%DATADIR%%/layouts/garden.layout %%DATADIR%%/layouts/girl.desktop %%DATADIR%%/layouts/girl.layout %%DATADIR%%/layouts/glade.desktop %%DATADIR%%/layouts/glade.layout %%DATADIR%%/layouts/grid.desktop %%DATADIR%%/layouts/grid.layout %%DATADIR%%/layouts/helios.desktop %%DATADIR%%/layouts/helios.layout %%DATADIR%%/layouts/hole.desktop %%DATADIR%%/layouts/hole.layout %%DATADIR%%/layouts/inner_circle.desktop %%DATADIR%%/layouts/inner_circle.layout %%DATADIR%%/layouts/key.desktop %%DATADIR%%/layouts/key.layout %%DATADIR%%/layouts/km.desktop %%DATADIR%%/layouts/km.layout %%DATADIR%%/layouts/labyrinth.desktop %%DATADIR%%/layouts/labyrinth.layout %%DATADIR%%/layouts/mask.desktop %%DATADIR%%/layouts/mask.layout %%DATADIR%%/layouts/maya.desktop %%DATADIR%%/layouts/maya.layout %%DATADIR%%/layouts/maze.desktop %%DATADIR%%/layouts/maze.layout %%DATADIR%%/layouts/mesh.desktop %%DATADIR%%/layouts/mesh.layout %%DATADIR%%/layouts/moth.desktop %%DATADIR%%/layouts/moth.layout %%DATADIR%%/layouts/order.desktop %%DATADIR%%/layouts/order.layout %%DATADIR%%/layouts/pattern.desktop %%DATADIR%%/layouts/pattern.layout %%DATADIR%%/layouts/penta.desktop %%DATADIR%%/layouts/penta.layout %%DATADIR%%/layouts/pillars.desktop %%DATADIR%%/layouts/pillars.layout %%DATADIR%%/layouts/pirates.desktop %%DATADIR%%/layouts/pirates.layout %%DATADIR%%/layouts/pyramid.desktop %%DATADIR%%/layouts/pyramid.layout %%DATADIR%%/layouts/rocket.desktop %%DATADIR%%/layouts/rocket.layout %%DATADIR%%/layouts/shield.desktop %%DATADIR%%/layouts/shield.layout %%DATADIR%%/layouts/spider.desktop %%DATADIR%%/layouts/spider.layout %%DATADIR%%/layouts/squares.desktop %%DATADIR%%/layouts/squares.layout %%DATADIR%%/layouts/squaring.desktop %%DATADIR%%/layouts/squaring.layout %%DATADIR%%/layouts/stadion.desktop %%DATADIR%%/layouts/stadion.layout %%DATADIR%%/layouts/stairs.desktop %%DATADIR%%/layouts/stairs.layout %%DATADIR%%/layouts/star.desktop %%DATADIR%%/layouts/star.layout %%DATADIR%%/layouts/star_ship.desktop %%DATADIR%%/layouts/star_ship.layout %%DATADIR%%/layouts/stax.desktop %%DATADIR%%/layouts/stax.layout %%DATADIR%%/layouts/swirl.desktop %%DATADIR%%/layouts/swirl.layout %%DATADIR%%/layouts/temple.desktop %%DATADIR%%/layouts/temple.layout %%DATADIR%%/layouts/the_door.desktop %%DATADIR%%/layouts/the_door.layout %%DATADIR%%/layouts/theatre.desktop %%DATADIR%%/layouts/theatre.layout %%DATADIR%%/layouts/time_tunnel.desktop %%DATADIR%%/layouts/time_tunnel.layout %%DATADIR%%/layouts/tomb.desktop %%DATADIR%%/layouts/tomb.layout %%DATADIR%%/layouts/totem.desktop %%DATADIR%%/layouts/totem.layout %%DATADIR%%/layouts/tower.desktop %%DATADIR%%/layouts/tower.layout %%DATADIR%%/layouts/triangle.desktop %%DATADIR%%/layouts/triangle.layout %%DATADIR%%/layouts/up&down.desktop %%DATADIR%%/layouts/up&down.layout %%DATADIR%%/layouts/well.desktop %%DATADIR%%/layouts/well.layout +share/locale/af/LC_MESSAGES/kmahjongg.mo share/locale/ar/LC_MESSAGES/kmahjongg.mo share/locale/be/LC_MESSAGES/kmahjongg.mo share/locale/bg/LC_MESSAGES/kmahjongg.mo +share/locale/bn/LC_MESSAGES/kmahjongg.mo +share/locale/br/LC_MESSAGES/kmahjongg.mo share/locale/bs/LC_MESSAGES/kmahjongg.mo share/locale/ca/LC_MESSAGES/kmahjongg.mo share/locale/ca@valencia/LC_MESSAGES/kmahjongg.mo share/locale/cs/LC_MESSAGES/kmahjongg.mo +share/locale/csb/LC_MESSAGES/kmahjongg.mo +share/locale/cy/LC_MESSAGES/kmahjongg.mo share/locale/da/LC_MESSAGES/kmahjongg.mo share/locale/de/LC_MESSAGES/kmahjongg.mo share/locale/el/LC_MESSAGES/kmahjongg.mo share/locale/en_GB/LC_MESSAGES/kmahjongg.mo share/locale/eo/LC_MESSAGES/kmahjongg.mo share/locale/es/LC_MESSAGES/kmahjongg.mo share/locale/et/LC_MESSAGES/kmahjongg.mo share/locale/eu/LC_MESSAGES/kmahjongg.mo share/locale/fa/LC_MESSAGES/kmahjongg.mo share/locale/fi/LC_MESSAGES/kmahjongg.mo share/locale/fr/LC_MESSAGES/kmahjongg.mo share/locale/ga/LC_MESSAGES/kmahjongg.mo share/locale/gl/LC_MESSAGES/kmahjongg.mo share/locale/he/LC_MESSAGES/kmahjongg.mo share/locale/hi/LC_MESSAGES/kmahjongg.mo +share/locale/hne/LC_MESSAGES/kmahjongg.mo share/locale/hr/LC_MESSAGES/kmahjongg.mo share/locale/hu/LC_MESSAGES/kmahjongg.mo share/locale/id/LC_MESSAGES/kmahjongg.mo share/locale/is/LC_MESSAGES/kmahjongg.mo share/locale/it/LC_MESSAGES/kmahjongg.mo share/locale/ja/LC_MESSAGES/kmahjongg.mo +share/locale/ka/LC_MESSAGES/kmahjongg.mo share/locale/kk/LC_MESSAGES/kmahjongg.mo share/locale/km/LC_MESSAGES/kmahjongg.mo share/locale/ko/LC_MESSAGES/kmahjongg.mo share/locale/lt/LC_MESSAGES/kmahjongg.mo share/locale/lv/LC_MESSAGES/kmahjongg.mo +share/locale/mai/LC_MESSAGES/kmahjongg.mo +share/locale/mk/LC_MESSAGES/kmahjongg.mo share/locale/ml/LC_MESSAGES/kmahjongg.mo share/locale/mr/LC_MESSAGES/kmahjongg.mo share/locale/nb/LC_MESSAGES/kmahjongg.mo share/locale/nds/LC_MESSAGES/kmahjongg.mo +share/locale/ne/LC_MESSAGES/kmahjongg.mo share/locale/nl/LC_MESSAGES/kmahjongg.mo share/locale/nn/LC_MESSAGES/kmahjongg.mo +share/locale/oc/LC_MESSAGES/kmahjongg.mo share/locale/pa/LC_MESSAGES/kmahjongg.mo share/locale/pl/LC_MESSAGES/kmahjongg.mo share/locale/pt/LC_MESSAGES/kmahjongg.mo share/locale/pt_BR/LC_MESSAGES/kmahjongg.mo share/locale/ro/LC_MESSAGES/kmahjongg.mo share/locale/ru/LC_MESSAGES/kmahjongg.mo share/locale/se/LC_MESSAGES/kmahjongg.mo share/locale/sk/LC_MESSAGES/kmahjongg.mo share/locale/sl/LC_MESSAGES/kmahjongg.mo share/locale/sq/LC_MESSAGES/kmahjongg.mo share/locale/sr/LC_MESSAGES/kmahjongg.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmahjongg.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmahjongg.mo +share/locale/sr@latin/LC_MESSAGES/kmahjongg.mo share/locale/sv/LC_MESSAGES/kmahjongg.mo share/locale/ta/LC_MESSAGES/kmahjongg.mo share/locale/tg/LC_MESSAGES/kmahjongg.mo +share/locale/th/LC_MESSAGES/kmahjongg.mo share/locale/tr/LC_MESSAGES/kmahjongg.mo share/locale/ug/LC_MESSAGES/kmahjongg.mo share/locale/uk/LC_MESSAGES/kmahjongg.mo share/locale/wa/LC_MESSAGES/kmahjongg.mo +share/locale/xh/LC_MESSAGES/kmahjongg.mo share/locale/zh_CN/LC_MESSAGES/kmahjongg.mo share/locale/zh_TW/LC_MESSAGES/kmahjongg.mo share/metainfo/org.kde.kmahjongg.appdata.xml share/qlogging-categories5/kmahjongg.categories diff --git a/games/kmines/distinfo b/games/kmines/distinfo index a67b5524b832..31a9ba1d1cf4 100644 --- a/games/kmines/distinfo +++ b/games/kmines/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539508 -SHA256 (KDE/release-service/22.08.3/kmines-22.08.3.tar.xz) = 2c051194a5def732cdff46117785cdd4e2a1c2265264c0e647a6216eaa68b1b6 -SIZE (KDE/release-service/22.08.3/kmines-22.08.3.tar.xz) = 993860 +TIMESTAMP = 1670513124 +SHA256 (KDE/release-service/22.12.0/kmines-22.12.0.tar.xz) = 2fdf791a32439f213e185543dc19d1a83f65ebf5b94696e310838b6c909575e3 +SIZE (KDE/release-service/22.12.0/kmines-22.12.0.tar.xz) = 1008040 diff --git a/games/kmines/pkg-plist b/games/kmines/pkg-plist index 0a4c1f58a510..b11213d355f1 100644 --- a/games/kmines/pkg-plist +++ b/games/kmines/pkg-plist @@ -1,81 +1,97 @@ 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 -share/icons/hicolor/128x128/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/af/LC_MESSAGES/kmines.mo share/locale/ar/LC_MESSAGES/kmines.mo share/locale/be/LC_MESSAGES/kmines.mo share/locale/bg/LC_MESSAGES/kmines.mo +share/locale/bn/LC_MESSAGES/kmines.mo +share/locale/br/LC_MESSAGES/kmines.mo share/locale/bs/LC_MESSAGES/kmines.mo share/locale/ca/LC_MESSAGES/kmines.mo share/locale/ca@valencia/LC_MESSAGES/kmines.mo share/locale/cs/LC_MESSAGES/kmines.mo +share/locale/cy/LC_MESSAGES/kmines.mo share/locale/da/LC_MESSAGES/kmines.mo share/locale/de/LC_MESSAGES/kmines.mo share/locale/el/LC_MESSAGES/kmines.mo share/locale/en_GB/LC_MESSAGES/kmines.mo share/locale/eo/LC_MESSAGES/kmines.mo share/locale/es/LC_MESSAGES/kmines.mo share/locale/et/LC_MESSAGES/kmines.mo share/locale/eu/LC_MESSAGES/kmines.mo share/locale/fa/LC_MESSAGES/kmines.mo share/locale/fi/LC_MESSAGES/kmines.mo share/locale/fr/LC_MESSAGES/kmines.mo share/locale/ga/LC_MESSAGES/kmines.mo share/locale/gl/LC_MESSAGES/kmines.mo share/locale/he/LC_MESSAGES/kmines.mo share/locale/hi/LC_MESSAGES/kmines.mo +share/locale/hne/LC_MESSAGES/kmines.mo share/locale/hr/LC_MESSAGES/kmines.mo share/locale/hu/LC_MESSAGES/kmines.mo share/locale/id/LC_MESSAGES/kmines.mo share/locale/is/LC_MESSAGES/kmines.mo share/locale/it/LC_MESSAGES/kmines.mo share/locale/ja/LC_MESSAGES/kmines.mo +share/locale/ka/LC_MESSAGES/kmines.mo share/locale/kk/LC_MESSAGES/kmines.mo share/locale/km/LC_MESSAGES/kmines.mo share/locale/ko/LC_MESSAGES/kmines.mo share/locale/lt/LC_MESSAGES/kmines.mo share/locale/lv/LC_MESSAGES/kmines.mo +share/locale/mai/LC_MESSAGES/kmines.mo +share/locale/mk/LC_MESSAGES/kmines.mo share/locale/ml/LC_MESSAGES/kmines.mo share/locale/mr/LC_MESSAGES/kmines.mo +share/locale/ms/LC_MESSAGES/kmines.mo share/locale/nb/LC_MESSAGES/kmines.mo share/locale/nds/LC_MESSAGES/kmines.mo +share/locale/ne/LC_MESSAGES/kmines.mo share/locale/nl/LC_MESSAGES/kmines.mo share/locale/nn/LC_MESSAGES/kmines.mo +share/locale/oc/LC_MESSAGES/kmines.mo share/locale/pa/LC_MESSAGES/kmines.mo share/locale/pl/LC_MESSAGES/kmines.mo share/locale/pt/LC_MESSAGES/kmines.mo share/locale/pt_BR/LC_MESSAGES/kmines.mo share/locale/ro/LC_MESSAGES/kmines.mo share/locale/ru/LC_MESSAGES/kmines.mo share/locale/se/LC_MESSAGES/kmines.mo share/locale/sk/LC_MESSAGES/kmines.mo share/locale/sl/LC_MESSAGES/kmines.mo share/locale/sq/LC_MESSAGES/kmines.mo share/locale/sr/LC_MESSAGES/kmines.mo +share/locale/sr@ijekavian/LC_MESSAGES/kmines.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kmines.mo +share/locale/sr@latin/LC_MESSAGES/kmines.mo share/locale/sv/LC_MESSAGES/kmines.mo share/locale/ta/LC_MESSAGES/kmines.mo share/locale/tg/LC_MESSAGES/kmines.mo +share/locale/th/LC_MESSAGES/kmines.mo share/locale/tr/LC_MESSAGES/kmines.mo share/locale/ug/LC_MESSAGES/kmines.mo share/locale/uk/LC_MESSAGES/kmines.mo share/locale/wa/LC_MESSAGES/kmines.mo +share/locale/xh/LC_MESSAGES/kmines.mo share/locale/zh_CN/LC_MESSAGES/kmines.mo share/locale/zh_TW/LC_MESSAGES/kmines.mo share/metainfo/org.kde.kmines.appdata.xml share/qlogging-categories5/kmines.categories diff --git a/games/knavalbattle/distinfo b/games/knavalbattle/distinfo index 56e80776ad22..e009820d6394 100644 --- a/games/knavalbattle/distinfo +++ b/games/knavalbattle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539541 -SHA256 (KDE/release-service/22.08.3/knavalbattle-22.08.3.tar.xz) = a20880197c5c1f8c6e5ba39a9cce759222309038178995c0b6117987bc59dbd4 -SIZE (KDE/release-service/22.08.3/knavalbattle-22.08.3.tar.xz) = 1380724 +TIMESTAMP = 1670513165 +SHA256 (KDE/release-service/22.12.0/knavalbattle-22.12.0.tar.xz) = 21aa05d1a8235f99c8318a60e156d3ea51e3fcc1869f6adee1e638946d9c0b34 +SIZE (KDE/release-service/22.12.0/knavalbattle-22.12.0.tar.xz) = 1399140 diff --git a/games/knavalbattle/pkg-plist b/games/knavalbattle/pkg-plist index 469cdab77b1d..668d9fbdd658 100644 --- a/games/knavalbattle/pkg-plist +++ b/games/knavalbattle/pkg-plist @@ -1,75 +1,91 @@ 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/icons/hicolor/128x128/apps/knavalbattle.png %%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-player-shoot-water.ogg %%DATADIR%%/sounds/ship-sink.ogg +share/locale/af/LC_MESSAGES/knavalbattle.mo share/locale/ar/LC_MESSAGES/knavalbattle.mo share/locale/be/LC_MESSAGES/knavalbattle.mo share/locale/bg/LC_MESSAGES/knavalbattle.mo +share/locale/bn/LC_MESSAGES/knavalbattle.mo +share/locale/br/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/csb/LC_MESSAGES/knavalbattle.mo +share/locale/cy/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/hne/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/ka/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/mai/LC_MESSAGES/knavalbattle.mo +share/locale/mk/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/ne/LC_MESSAGES/knavalbattle.mo share/locale/nl/LC_MESSAGES/knavalbattle.mo share/locale/nn/LC_MESSAGES/knavalbattle.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/knavalbattle.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/knavalbattle.mo +share/locale/sr@latin/LC_MESSAGES/knavalbattle.mo share/locale/sv/LC_MESSAGES/knavalbattle.mo share/locale/ta/LC_MESSAGES/knavalbattle.mo +share/locale/te/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/xh/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 2169ca0b29f5..6ce034a609d9 100644 --- a/games/knetwalk/distinfo +++ b/games/knetwalk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539515 -SHA256 (KDE/release-service/22.08.3/knetwalk-22.08.3.tar.xz) = 6d7bc0cd6b1841c6482263652b6750561d8b4d3f3e954afd90042c95daaa2027 -SIZE (KDE/release-service/22.08.3/knetwalk-22.08.3.tar.xz) = 1098276 +TIMESTAMP = 1670513133 +SHA256 (KDE/release-service/22.12.0/knetwalk-22.12.0.tar.xz) = 1caaabb9db99b459144c541082805227b50bb2f585e5c12172c4395e77bcb8b4 +SIZE (KDE/release-service/22.12.0/knetwalk-22.12.0.tar.xz) = 1103868 diff --git a/games/knetwalk/pkg-plist b/games/knetwalk/pkg-plist index 337c589935fc..5eceff6fe9bf 100644 --- a/games/knetwalk/pkg-plist +++ b/games/knetwalk/pkg-plist @@ -1,81 +1,96 @@ bin/knetwalk share/applications/org.kde.knetwalk.desktop +share/icons/hicolor/128x128/apps/knetwalk.png share/icons/hicolor/16x16/apps/knetwalk.png share/icons/hicolor/22x22/apps/knetwalk.png share/icons/hicolor/32x32/apps/knetwalk.png share/icons/hicolor/48x48/apps/knetwalk.png share/icons/hicolor/64x64/apps/knetwalk.png -share/icons/hicolor/128x128/apps/knetwalk.png +share/icons/hicolor/scalable/apps/knetwalk.svgz %%DATADIR%%/qml/Cable.qml %%DATADIR%%/qml/CanvasItem.qml %%DATADIR%%/qml/Cell.qml %%DATADIR%%/qml/logic.js %%DATADIR%%/qml/main.qml %%DATADIR%%/sounds/click.wav %%DATADIR%%/sounds/connect.wav %%DATADIR%%/sounds/start.wav %%DATADIR%%/sounds/turn.wav %%DATADIR%%/sounds/win.wav %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/default_preview.png %%DATADIR%%/themes/electronic.desktop %%DATADIR%%/themes/electronic.svgz %%DATADIR%%/themes/electronic_preview.png share/locale/ar/LC_MESSAGES/knetwalk.mo share/locale/be/LC_MESSAGES/knetwalk.mo share/locale/bg/LC_MESSAGES/knetwalk.mo +share/locale/br/LC_MESSAGES/knetwalk.mo share/locale/bs/LC_MESSAGES/knetwalk.mo share/locale/ca/LC_MESSAGES/knetwalk.mo share/locale/ca@valencia/LC_MESSAGES/knetwalk.mo share/locale/cs/LC_MESSAGES/knetwalk.mo +share/locale/csb/LC_MESSAGES/knetwalk.mo +share/locale/cy/LC_MESSAGES/knetwalk.mo share/locale/da/LC_MESSAGES/knetwalk.mo share/locale/de/LC_MESSAGES/knetwalk.mo share/locale/el/LC_MESSAGES/knetwalk.mo share/locale/en_GB/LC_MESSAGES/knetwalk.mo share/locale/eo/LC_MESSAGES/knetwalk.mo share/locale/es/LC_MESSAGES/knetwalk.mo share/locale/et/LC_MESSAGES/knetwalk.mo share/locale/eu/LC_MESSAGES/knetwalk.mo share/locale/fa/LC_MESSAGES/knetwalk.mo share/locale/fi/LC_MESSAGES/knetwalk.mo share/locale/fr/LC_MESSAGES/knetwalk.mo share/locale/ga/LC_MESSAGES/knetwalk.mo share/locale/gl/LC_MESSAGES/knetwalk.mo share/locale/he/LC_MESSAGES/knetwalk.mo share/locale/hi/LC_MESSAGES/knetwalk.mo +share/locale/hne/LC_MESSAGES/knetwalk.mo share/locale/hr/LC_MESSAGES/knetwalk.mo share/locale/hu/LC_MESSAGES/knetwalk.mo share/locale/id/LC_MESSAGES/knetwalk.mo share/locale/is/LC_MESSAGES/knetwalk.mo share/locale/it/LC_MESSAGES/knetwalk.mo share/locale/ja/LC_MESSAGES/knetwalk.mo +share/locale/ka/LC_MESSAGES/knetwalk.mo share/locale/kk/LC_MESSAGES/knetwalk.mo share/locale/km/LC_MESSAGES/knetwalk.mo share/locale/ko/LC_MESSAGES/knetwalk.mo share/locale/lt/LC_MESSAGES/knetwalk.mo share/locale/lv/LC_MESSAGES/knetwalk.mo +share/locale/mai/LC_MESSAGES/knetwalk.mo +share/locale/mk/LC_MESSAGES/knetwalk.mo share/locale/ml/LC_MESSAGES/knetwalk.mo share/locale/mr/LC_MESSAGES/knetwalk.mo share/locale/nb/LC_MESSAGES/knetwalk.mo share/locale/nds/LC_MESSAGES/knetwalk.mo +share/locale/ne/LC_MESSAGES/knetwalk.mo share/locale/nl/LC_MESSAGES/knetwalk.mo share/locale/nn/LC_MESSAGES/knetwalk.mo +share/locale/oc/LC_MESSAGES/knetwalk.mo share/locale/pa/LC_MESSAGES/knetwalk.mo share/locale/pl/LC_MESSAGES/knetwalk.mo share/locale/pt/LC_MESSAGES/knetwalk.mo share/locale/pt_BR/LC_MESSAGES/knetwalk.mo share/locale/ro/LC_MESSAGES/knetwalk.mo share/locale/ru/LC_MESSAGES/knetwalk.mo share/locale/se/LC_MESSAGES/knetwalk.mo share/locale/sk/LC_MESSAGES/knetwalk.mo share/locale/sl/LC_MESSAGES/knetwalk.mo share/locale/sq/LC_MESSAGES/knetwalk.mo share/locale/sr/LC_MESSAGES/knetwalk.mo +share/locale/sr@ijekavian/LC_MESSAGES/knetwalk.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/knetwalk.mo +share/locale/sr@latin/LC_MESSAGES/knetwalk.mo share/locale/sv/LC_MESSAGES/knetwalk.mo +share/locale/te/LC_MESSAGES/knetwalk.mo +share/locale/th/LC_MESSAGES/knetwalk.mo share/locale/tr/LC_MESSAGES/knetwalk.mo share/locale/ug/LC_MESSAGES/knetwalk.mo share/locale/uk/LC_MESSAGES/knetwalk.mo share/locale/zh_CN/LC_MESSAGES/knetwalk.mo share/locale/zh_TW/LC_MESSAGES/knetwalk.mo share/metainfo/org.kde.knetwalk.appdata.xml diff --git a/games/knights/distinfo b/games/knights/distinfo index 75661251fddf..1d799b5b2c8f 100644 --- a/games/knights/distinfo +++ b/games/knights/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539539 -SHA256 (KDE/release-service/22.08.3/knights-22.08.3.tar.xz) = 734cd731338ac542d4dcb1ad476f2dfcc6fd0db1755af2a6066e241def7d60a6 -SIZE (KDE/release-service/22.08.3/knights-22.08.3.tar.xz) = 3322984 +TIMESTAMP = 1670513161 +SHA256 (KDE/release-service/22.12.0/knights-22.12.0.tar.xz) = f100113ae88f07bf0378f8dab97182b263a40f3648e9019cfa717efdaf98666d +SIZE (KDE/release-service/22.12.0/knights-22.12.0.tar.xz) = 3328976 diff --git a/games/knights/pkg-plist b/games/knights/pkg-plist index c84c72ee33f8..fad4b44f9df7 100644 --- a/games/knights/pkg-plist +++ b/games/knights/pkg-plist @@ -1,77 +1,81 @@ bin/knights share/applications/org.kde.knights.desktop share/config.kcfg/knights.kcfg share/dbus-1/interfaces/org.kde.Knights.xml share/icons/hicolor/16x16/apps/knights.png share/icons/hicolor/32x32/apps/knights.png share/icons/hicolor/48x48/apps/knights.png share/icons/hicolor/64x64/apps/knights.png %%DATADIR%%/sounds/capture_black.ogg %%DATADIR%%/sounds/capture_white.ogg %%DATADIR%%/sounds/move_black.ogg %%DATADIR%%/sounds/move_white.ogg %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/east_west.desktop %%DATADIR%%/themes/east_west.png %%DATADIR%%/themes/east_west.svgz %%DATADIR%%/themes/gray.png %%DATADIR%%/themes/gray.svgz %%DATADIR%%/themes/knights.desktop %%DATADIR%%/themes/knights.png %%DATADIR%%/themes/knights.svgz %%DATADIR%%/themes/plain.desktop %%DATADIR%%/themes/plain.png %%DATADIR%%/themes/plain.svgz %%DATADIR%%/themes/xboard2.desktop %%DATADIR%%/themes/xboard2.png %%DATADIR%%/themes/xboard2.svgz share/knsrcfiles/knights.knsrc share/kxmlgui5/knights/knightsui.rc share/locale/ar/LC_MESSAGES/knights.mo share/locale/bg/LC_MESSAGES/knights.mo share/locale/bs/LC_MESSAGES/knights.mo share/locale/ca/LC_MESSAGES/knights.mo share/locale/ca@valencia/LC_MESSAGES/knights.mo share/locale/cs/LC_MESSAGES/knights.mo share/locale/da/LC_MESSAGES/knights.mo share/locale/de/LC_MESSAGES/knights.mo share/locale/el/LC_MESSAGES/knights.mo share/locale/en_GB/LC_MESSAGES/knights.mo share/locale/eo/LC_MESSAGES/knights.mo share/locale/es/LC_MESSAGES/knights.mo share/locale/et/LC_MESSAGES/knights.mo share/locale/eu/LC_MESSAGES/knights.mo share/locale/fa/LC_MESSAGES/knights.mo share/locale/fi/LC_MESSAGES/knights.mo share/locale/fr/LC_MESSAGES/knights.mo share/locale/ga/LC_MESSAGES/knights.mo share/locale/gl/LC_MESSAGES/knights.mo share/locale/hu/LC_MESSAGES/knights.mo share/locale/id/LC_MESSAGES/knights.mo share/locale/it/LC_MESSAGES/knights.mo share/locale/ja/LC_MESSAGES/knights.mo +share/locale/ka/LC_MESSAGES/knights.mo share/locale/km/LC_MESSAGES/knights.mo share/locale/ko/LC_MESSAGES/knights.mo share/locale/lt/LC_MESSAGES/knights.mo share/locale/ml/LC_MESSAGES/knights.mo share/locale/mr/LC_MESSAGES/knights.mo share/locale/nb/LC_MESSAGES/knights.mo share/locale/nds/LC_MESSAGES/knights.mo share/locale/nl/LC_MESSAGES/knights.mo share/locale/nn/LC_MESSAGES/knights.mo share/locale/pl/LC_MESSAGES/knights.mo share/locale/pt/LC_MESSAGES/knights.mo share/locale/pt_BR/LC_MESSAGES/knights.mo share/locale/ro/LC_MESSAGES/knights.mo share/locale/ru/LC_MESSAGES/knights.mo share/locale/sk/LC_MESSAGES/knights.mo share/locale/sl/LC_MESSAGES/knights.mo share/locale/sr/LC_MESSAGES/knights.mo +share/locale/sr@ijekavian/LC_MESSAGES/knights.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/knights.mo +share/locale/sr@latin/LC_MESSAGES/knights.mo share/locale/sv/LC_MESSAGES/knights.mo share/locale/tr/LC_MESSAGES/knights.mo share/locale/ug/LC_MESSAGES/knights.mo share/locale/uk/LC_MESSAGES/knights.mo share/locale/zh_CN/LC_MESSAGES/knights.mo share/locale/zh_TW/LC_MESSAGES/knights.mo share/metainfo/org.kde.knights.appdata.xml share/qlogging-categories5/knights.categories diff --git a/games/kolf/distinfo b/games/kolf/distinfo index f53eaaebd23f..c49c1b35122b 100644 --- a/games/kolf/distinfo +++ b/games/kolf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539532 -SHA256 (KDE/release-service/22.08.3/kolf-22.08.3.tar.xz) = 4d200037236559297c0509e93020f2d4394655107d5eba73c49c7f29e65eb62e -SIZE (KDE/release-service/22.08.3/kolf-22.08.3.tar.xz) = 1051508 +TIMESTAMP = 1670513152 +SHA256 (KDE/release-service/22.12.0/kolf-22.12.0.tar.xz) = 24d7c6d4297a29dfa5ace977755e7bea8b280dcb7abc3717d7ec029200efe0fd +SIZE (KDE/release-service/22.12.0/kolf-22.12.0.tar.xz) = 1068508 diff --git a/games/kolf/pkg-plist b/games/kolf/pkg-plist index e0d6fee1756e..ca0e63aa6429 100644 --- a/games/kolf/pkg-plist +++ b/games/kolf/pkg-plist @@ -1,90 +1,104 @@ 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/128x128/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/af/LC_MESSAGES/kolf.mo share/locale/ar/LC_MESSAGES/kolf.mo share/locale/be/LC_MESSAGES/kolf.mo share/locale/bg/LC_MESSAGES/kolf.mo +share/locale/br/LC_MESSAGES/kolf.mo share/locale/bs/LC_MESSAGES/kolf.mo share/locale/ca/LC_MESSAGES/kolf.mo share/locale/ca@valencia/LC_MESSAGES/kolf.mo share/locale/cs/LC_MESSAGES/kolf.mo +share/locale/cy/LC_MESSAGES/kolf.mo share/locale/da/LC_MESSAGES/kolf.mo share/locale/de/LC_MESSAGES/kolf.mo share/locale/el/LC_MESSAGES/kolf.mo share/locale/en_GB/LC_MESSAGES/kolf.mo share/locale/eo/LC_MESSAGES/kolf.mo share/locale/es/LC_MESSAGES/kolf.mo share/locale/et/LC_MESSAGES/kolf.mo share/locale/eu/LC_MESSAGES/kolf.mo share/locale/fa/LC_MESSAGES/kolf.mo share/locale/fi/LC_MESSAGES/kolf.mo share/locale/fr/LC_MESSAGES/kolf.mo share/locale/ga/LC_MESSAGES/kolf.mo share/locale/gl/LC_MESSAGES/kolf.mo share/locale/he/LC_MESSAGES/kolf.mo share/locale/hi/LC_MESSAGES/kolf.mo +share/locale/hne/LC_MESSAGES/kolf.mo share/locale/hr/LC_MESSAGES/kolf.mo share/locale/hu/LC_MESSAGES/kolf.mo share/locale/is/LC_MESSAGES/kolf.mo share/locale/it/LC_MESSAGES/kolf.mo share/locale/ja/LC_MESSAGES/kolf.mo +share/locale/ka/LC_MESSAGES/kolf.mo share/locale/kk/LC_MESSAGES/kolf.mo share/locale/km/LC_MESSAGES/kolf.mo share/locale/ko/LC_MESSAGES/kolf.mo share/locale/lt/LC_MESSAGES/kolf.mo share/locale/lv/LC_MESSAGES/kolf.mo +share/locale/mai/LC_MESSAGES/kolf.mo +share/locale/mk/LC_MESSAGES/kolf.mo share/locale/ml/LC_MESSAGES/kolf.mo share/locale/mr/LC_MESSAGES/kolf.mo +share/locale/ms/LC_MESSAGES/kolf.mo share/locale/nb/LC_MESSAGES/kolf.mo share/locale/nds/LC_MESSAGES/kolf.mo +share/locale/ne/LC_MESSAGES/kolf.mo share/locale/nl/LC_MESSAGES/kolf.mo share/locale/nn/LC_MESSAGES/kolf.mo +share/locale/oc/LC_MESSAGES/kolf.mo share/locale/pa/LC_MESSAGES/kolf.mo share/locale/pl/LC_MESSAGES/kolf.mo share/locale/pt/LC_MESSAGES/kolf.mo share/locale/pt_BR/LC_MESSAGES/kolf.mo share/locale/ro/LC_MESSAGES/kolf.mo share/locale/ru/LC_MESSAGES/kolf.mo share/locale/se/LC_MESSAGES/kolf.mo share/locale/sk/LC_MESSAGES/kolf.mo share/locale/sl/LC_MESSAGES/kolf.mo share/locale/sq/LC_MESSAGES/kolf.mo share/locale/sr/LC_MESSAGES/kolf.mo +share/locale/sr@ijekavian/LC_MESSAGES/kolf.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kolf.mo +share/locale/sr@latin/LC_MESSAGES/kolf.mo share/locale/sv/LC_MESSAGES/kolf.mo share/locale/ta/LC_MESSAGES/kolf.mo share/locale/tg/LC_MESSAGES/kolf.mo share/locale/tr/LC_MESSAGES/kolf.mo share/locale/ug/LC_MESSAGES/kolf.mo share/locale/uk/LC_MESSAGES/kolf.mo +share/locale/xh/LC_MESSAGES/kolf.mo share/locale/zh_CN/LC_MESSAGES/kolf.mo share/locale/zh_TW/LC_MESSAGES/kolf.mo share/metainfo/org.kde.kolf.appdata.xml diff --git a/games/kollision/distinfo b/games/kollision/distinfo index 90e3d93d6b37..cf12a91330ad 100644 --- a/games/kollision/distinfo +++ b/games/kollision/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539504 -SHA256 (KDE/release-service/22.08.3/kollision-22.08.3.tar.xz) = a0ee3fe5f42492e0d07f98fe6af1e44c6c8ef17a8426361eae00a97ae9115393 -SIZE (KDE/release-service/22.08.3/kollision-22.08.3.tar.xz) = 303180 +TIMESTAMP = 1670513119 +SHA256 (KDE/release-service/22.12.0/kollision-22.12.0.tar.xz) = f7985e1ccd2f7b8b7a8cdb689b557084828a949fbc15ce5e3fa4c832f1cc5910 +SIZE (KDE/release-service/22.12.0/kollision-22.12.0.tar.xz) = 306388 diff --git a/games/kollision/pkg-plist b/games/kollision/pkg-plist index de5b59bf3214..ed4a4f2707d5 100644 --- a/games/kollision/pkg-plist +++ b/games/kollision/pkg-plist @@ -1,70 +1,78 @@ 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/hicolor/128x128/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 -share/icons/oxygen/128x128/apps/kollision.png %%DATADIR%%/pictures/theme.svgz %%DATADIR%%/sounds/ball_leaving.ogg %%DATADIR%%/sounds/hit_wall.ogg %%DATADIR%%/sounds/start.ogg %%DATADIR%%/sounds/you_lose.ogg share/locale/ar/LC_MESSAGES/kollision.mo share/locale/bg/LC_MESSAGES/kollision.mo share/locale/bs/LC_MESSAGES/kollision.mo share/locale/ca/LC_MESSAGES/kollision.mo share/locale/ca@valencia/LC_MESSAGES/kollision.mo share/locale/cs/LC_MESSAGES/kollision.mo share/locale/da/LC_MESSAGES/kollision.mo share/locale/de/LC_MESSAGES/kollision.mo share/locale/el/LC_MESSAGES/kollision.mo share/locale/en_GB/LC_MESSAGES/kollision.mo share/locale/eo/LC_MESSAGES/kollision.mo share/locale/es/LC_MESSAGES/kollision.mo share/locale/et/LC_MESSAGES/kollision.mo +share/locale/eu/LC_MESSAGES/kollision.mo share/locale/fi/LC_MESSAGES/kollision.mo share/locale/fr/LC_MESSAGES/kollision.mo share/locale/ga/LC_MESSAGES/kollision.mo share/locale/gl/LC_MESSAGES/kollision.mo +share/locale/gu/LC_MESSAGES/kollision.mo share/locale/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/ka/LC_MESSAGES/kollision.mo share/locale/kk/LC_MESSAGES/kollision.mo share/locale/km/LC_MESSAGES/kollision.mo share/locale/ko/LC_MESSAGES/kollision.mo share/locale/lt/LC_MESSAGES/kollision.mo share/locale/lv/LC_MESSAGES/kollision.mo +share/locale/mai/LC_MESSAGES/kollision.mo share/locale/ml/LC_MESSAGES/kollision.mo share/locale/mr/LC_MESSAGES/kollision.mo share/locale/nb/LC_MESSAGES/kollision.mo share/locale/nds/LC_MESSAGES/kollision.mo share/locale/nl/LC_MESSAGES/kollision.mo share/locale/nn/LC_MESSAGES/kollision.mo share/locale/pa/LC_MESSAGES/kollision.mo share/locale/pl/LC_MESSAGES/kollision.mo share/locale/pt/LC_MESSAGES/kollision.mo share/locale/pt_BR/LC_MESSAGES/kollision.mo share/locale/ro/LC_MESSAGES/kollision.mo share/locale/ru/LC_MESSAGES/kollision.mo share/locale/sk/LC_MESSAGES/kollision.mo share/locale/sl/LC_MESSAGES/kollision.mo share/locale/sq/LC_MESSAGES/kollision.mo share/locale/sr/LC_MESSAGES/kollision.mo +share/locale/sr@ijekavian/LC_MESSAGES/kollision.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kollision.mo +share/locale/sr@latin/LC_MESSAGES/kollision.mo share/locale/sv/LC_MESSAGES/kollision.mo +share/locale/th/LC_MESSAGES/kollision.mo share/locale/tr/LC_MESSAGES/kollision.mo share/locale/ug/LC_MESSAGES/kollision.mo share/locale/uk/LC_MESSAGES/kollision.mo share/locale/zh_CN/LC_MESSAGES/kollision.mo share/locale/zh_TW/LC_MESSAGES/kollision.mo share/metainfo/org.kde.kollision.appdata.xml diff --git a/games/konquest/distinfo b/games/konquest/distinfo index 2c30921bf57b..4d864f72e0a1 100644 --- a/games/konquest/distinfo +++ b/games/konquest/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539545 -SHA256 (KDE/release-service/22.08.3/konquest-22.08.3.tar.xz) = 5606cbde1ff17ffee6ab716877564ca736a1e5ef51b8e8894f60633b7b9192bb -SIZE (KDE/release-service/22.08.3/konquest-22.08.3.tar.xz) = 863268 +TIMESTAMP = 1670513169 +SHA256 (KDE/release-service/22.12.0/konquest-22.12.0.tar.xz) = 5a86631ede17365921e0f2fa8cb88f6ada5a73ca692f3e29073de2fc6984045d +SIZE (KDE/release-service/22.12.0/konquest-22.12.0.tar.xz) = 874780 diff --git a/games/konquest/pkg-plist b/games/konquest/pkg-plist index 8c7b82215ae3..3b0702a053c2 100644 --- a/games/konquest/pkg-plist +++ b/games/konquest/pkg-plist @@ -1,68 +1,81 @@ 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 -share/icons/hicolor/128x128/apps/konquest.png %%DATADIR%%/pics/default_theme.svgz %%DATADIR%%/pics/konquest-splash.png +share/locale/af/LC_MESSAGES/konquest.mo share/locale/ar/LC_MESSAGES/konquest.mo share/locale/be/LC_MESSAGES/konquest.mo share/locale/bg/LC_MESSAGES/konquest.mo +share/locale/br/LC_MESSAGES/konquest.mo share/locale/bs/LC_MESSAGES/konquest.mo share/locale/ca/LC_MESSAGES/konquest.mo share/locale/ca@valencia/LC_MESSAGES/konquest.mo share/locale/cs/LC_MESSAGES/konquest.mo +share/locale/cy/LC_MESSAGES/konquest.mo share/locale/da/LC_MESSAGES/konquest.mo share/locale/de/LC_MESSAGES/konquest.mo share/locale/el/LC_MESSAGES/konquest.mo share/locale/en_GB/LC_MESSAGES/konquest.mo share/locale/eo/LC_MESSAGES/konquest.mo share/locale/es/LC_MESSAGES/konquest.mo share/locale/et/LC_MESSAGES/konquest.mo share/locale/eu/LC_MESSAGES/konquest.mo share/locale/fa/LC_MESSAGES/konquest.mo share/locale/fi/LC_MESSAGES/konquest.mo share/locale/fr/LC_MESSAGES/konquest.mo share/locale/ga/LC_MESSAGES/konquest.mo share/locale/gl/LC_MESSAGES/konquest.mo share/locale/he/LC_MESSAGES/konquest.mo share/locale/hi/LC_MESSAGES/konquest.mo +share/locale/hne/LC_MESSAGES/konquest.mo share/locale/hr/LC_MESSAGES/konquest.mo share/locale/hu/LC_MESSAGES/konquest.mo share/locale/is/LC_MESSAGES/konquest.mo share/locale/it/LC_MESSAGES/konquest.mo share/locale/ja/LC_MESSAGES/konquest.mo +share/locale/ka/LC_MESSAGES/konquest.mo share/locale/kk/LC_MESSAGES/konquest.mo share/locale/km/LC_MESSAGES/konquest.mo share/locale/ko/LC_MESSAGES/konquest.mo share/locale/lt/LC_MESSAGES/konquest.mo share/locale/lv/LC_MESSAGES/konquest.mo +share/locale/mai/LC_MESSAGES/konquest.mo +share/locale/mk/LC_MESSAGES/konquest.mo share/locale/ml/LC_MESSAGES/konquest.mo share/locale/mr/LC_MESSAGES/konquest.mo share/locale/nb/LC_MESSAGES/konquest.mo share/locale/nds/LC_MESSAGES/konquest.mo +share/locale/ne/LC_MESSAGES/konquest.mo share/locale/nl/LC_MESSAGES/konquest.mo share/locale/nn/LC_MESSAGES/konquest.mo +share/locale/oc/LC_MESSAGES/konquest.mo share/locale/pa/LC_MESSAGES/konquest.mo share/locale/pl/LC_MESSAGES/konquest.mo share/locale/pt/LC_MESSAGES/konquest.mo share/locale/pt_BR/LC_MESSAGES/konquest.mo share/locale/ro/LC_MESSAGES/konquest.mo share/locale/ru/LC_MESSAGES/konquest.mo share/locale/se/LC_MESSAGES/konquest.mo share/locale/sk/LC_MESSAGES/konquest.mo share/locale/sl/LC_MESSAGES/konquest.mo share/locale/sq/LC_MESSAGES/konquest.mo share/locale/sr/LC_MESSAGES/konquest.mo +share/locale/sr@ijekavian/LC_MESSAGES/konquest.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/konquest.mo +share/locale/sr@latin/LC_MESSAGES/konquest.mo share/locale/sv/LC_MESSAGES/konquest.mo share/locale/ta/LC_MESSAGES/konquest.mo share/locale/tg/LC_MESSAGES/konquest.mo share/locale/tr/LC_MESSAGES/konquest.mo share/locale/ug/LC_MESSAGES/konquest.mo share/locale/uk/LC_MESSAGES/konquest.mo +share/locale/xh/LC_MESSAGES/konquest.mo share/locale/zh_CN/LC_MESSAGES/konquest.mo share/locale/zh_TW/LC_MESSAGES/konquest.mo share/metainfo/org.kde.konquest.appdata.xml diff --git a/games/kpat/distinfo b/games/kpat/distinfo index bdd0c69186a0..d0f7a4bcc06f 100644 --- a/games/kpat/distinfo +++ b/games/kpat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539534 -SHA256 (KDE/release-service/22.08.3/kpat-22.08.3.tar.xz) = bcf7fe6d4aeea53c685b618e2b4e5bcdcd9c37d3373d06d2a0d5419cb6835f16 -SIZE (KDE/release-service/22.08.3/kpat-22.08.3.tar.xz) = 3731572 +TIMESTAMP = 1670513154 +SHA256 (KDE/release-service/22.12.0/kpat-22.12.0.tar.xz) = d839585a892129bb5e00d862538de82c42809ae84c8d24416f3cdce43d789127 +SIZE (KDE/release-service/22.12.0/kpat-22.12.0.tar.xz) = 3750128 diff --git a/games/kpat/pkg-plist b/games/kpat/pkg-plist index 949981881c14..ba2b221f8838 100644 --- a/games/kpat/pkg-plist +++ b/games/kpat/pkg-plist @@ -1,116 +1,132 @@ bin/kpat 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 -share/icons/hicolor/128x128/apps/kpat.png -share/icons/hicolor/256x256/apps/kpat.png share/knsrcfiles/kcardtheme.knsrc share/knsrcfiles/kpat.knsrc %%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/4.png %%DATADIR%%/previews/5.png %%DATADIR%%/previews/7.png %%DATADIR%%/previews/8.png %%DATADIR%%/previews/9.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%%/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/royalhearts.desktop %%DATADIR%%/themes/royalhearts.png %%DATADIR%%/themes/royalhearts.svgz +share/locale/af/LC_MESSAGES/kpat.mo share/locale/ar/LC_MESSAGES/kpat.mo share/locale/be/LC_MESSAGES/kpat.mo share/locale/bg/LC_MESSAGES/kpat.mo +share/locale/br/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/csb/LC_MESSAGES/kpat.mo +share/locale/cy/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/hne/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/ka/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/mai/LC_MESSAGES/kpat.mo +share/locale/mk/LC_MESSAGES/kpat.mo share/locale/ml/LC_MESSAGES/kpat.mo share/locale/mr/LC_MESSAGES/kpat.mo +share/locale/ms/LC_MESSAGES/kpat.mo share/locale/nb/LC_MESSAGES/kpat.mo share/locale/nds/LC_MESSAGES/kpat.mo +share/locale/ne/LC_MESSAGES/kpat.mo share/locale/nl/LC_MESSAGES/kpat.mo share/locale/nn/LC_MESSAGES/kpat.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kpat.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kpat.mo +share/locale/sr@latin/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/th/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/xh/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 share/qlogging-categories5/kpat.categories diff --git a/games/kreversi/distinfo b/games/kreversi/distinfo index 111058f2f62e..a3628d20ec18 100644 --- a/games/kreversi/distinfo +++ b/games/kreversi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539536 -SHA256 (KDE/release-service/22.08.3/kreversi-22.08.3.tar.xz) = 06710518060a6dd4d8b68684cc6f6e5fd299c8ce3c8738aec9ecaa45f2f98e3e -SIZE (KDE/release-service/22.08.3/kreversi-22.08.3.tar.xz) = 1063624 +TIMESTAMP = 1670513157 +SHA256 (KDE/release-service/22.12.0/kreversi-22.12.0.tar.xz) = c82f57c3d96f38ccd19c7a4b817a9d81b4ea6412ded369e166c75dc7680be401 +SIZE (KDE/release-service/22.12.0/kreversi-22.12.0.tar.xz) = 1076416 diff --git a/games/kreversi/pkg-plist b/games/kreversi/pkg-plist index 6f80d2aa78b6..673b90beed2e 100644 --- a/games/kreversi/pkg-plist +++ b/games/kreversi/pkg-plist @@ -1,89 +1,104 @@ 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/128x128/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/af/LC_MESSAGES/kreversi.mo share/locale/ar/LC_MESSAGES/kreversi.mo share/locale/be/LC_MESSAGES/kreversi.mo share/locale/bg/LC_MESSAGES/kreversi.mo +share/locale/bn/LC_MESSAGES/kreversi.mo +share/locale/br/LC_MESSAGES/kreversi.mo share/locale/bs/LC_MESSAGES/kreversi.mo share/locale/ca/LC_MESSAGES/kreversi.mo share/locale/ca@valencia/LC_MESSAGES/kreversi.mo share/locale/cs/LC_MESSAGES/kreversi.mo +share/locale/cy/LC_MESSAGES/kreversi.mo share/locale/da/LC_MESSAGES/kreversi.mo share/locale/de/LC_MESSAGES/kreversi.mo share/locale/el/LC_MESSAGES/kreversi.mo share/locale/en_GB/LC_MESSAGES/kreversi.mo share/locale/eo/LC_MESSAGES/kreversi.mo share/locale/es/LC_MESSAGES/kreversi.mo share/locale/et/LC_MESSAGES/kreversi.mo share/locale/eu/LC_MESSAGES/kreversi.mo share/locale/fa/LC_MESSAGES/kreversi.mo share/locale/fi/LC_MESSAGES/kreversi.mo share/locale/fr/LC_MESSAGES/kreversi.mo share/locale/ga/LC_MESSAGES/kreversi.mo share/locale/gl/LC_MESSAGES/kreversi.mo share/locale/he/LC_MESSAGES/kreversi.mo share/locale/hi/LC_MESSAGES/kreversi.mo +share/locale/hne/LC_MESSAGES/kreversi.mo share/locale/hr/LC_MESSAGES/kreversi.mo share/locale/hu/LC_MESSAGES/kreversi.mo share/locale/id/LC_MESSAGES/kreversi.mo share/locale/is/LC_MESSAGES/kreversi.mo share/locale/it/LC_MESSAGES/kreversi.mo share/locale/ja/LC_MESSAGES/kreversi.mo +share/locale/ka/LC_MESSAGES/kreversi.mo share/locale/kk/LC_MESSAGES/kreversi.mo share/locale/km/LC_MESSAGES/kreversi.mo share/locale/ko/LC_MESSAGES/kreversi.mo share/locale/lt/LC_MESSAGES/kreversi.mo share/locale/lv/LC_MESSAGES/kreversi.mo +share/locale/mai/LC_MESSAGES/kreversi.mo +share/locale/mk/LC_MESSAGES/kreversi.mo share/locale/ml/LC_MESSAGES/kreversi.mo share/locale/mr/LC_MESSAGES/kreversi.mo share/locale/nb/LC_MESSAGES/kreversi.mo share/locale/nds/LC_MESSAGES/kreversi.mo +share/locale/ne/LC_MESSAGES/kreversi.mo share/locale/nl/LC_MESSAGES/kreversi.mo share/locale/nn/LC_MESSAGES/kreversi.mo +share/locale/oc/LC_MESSAGES/kreversi.mo share/locale/pa/LC_MESSAGES/kreversi.mo share/locale/pl/LC_MESSAGES/kreversi.mo share/locale/pt/LC_MESSAGES/kreversi.mo share/locale/pt_BR/LC_MESSAGES/kreversi.mo share/locale/ro/LC_MESSAGES/kreversi.mo share/locale/ru/LC_MESSAGES/kreversi.mo share/locale/se/LC_MESSAGES/kreversi.mo share/locale/sk/LC_MESSAGES/kreversi.mo share/locale/sl/LC_MESSAGES/kreversi.mo share/locale/sq/LC_MESSAGES/kreversi.mo share/locale/sr/LC_MESSAGES/kreversi.mo +share/locale/sr@ijekavian/LC_MESSAGES/kreversi.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kreversi.mo +share/locale/sr@latin/LC_MESSAGES/kreversi.mo share/locale/sv/LC_MESSAGES/kreversi.mo share/locale/ta/LC_MESSAGES/kreversi.mo share/locale/tg/LC_MESSAGES/kreversi.mo +share/locale/th/LC_MESSAGES/kreversi.mo share/locale/tr/LC_MESSAGES/kreversi.mo share/locale/ug/LC_MESSAGES/kreversi.mo share/locale/uk/LC_MESSAGES/kreversi.mo +share/locale/xh/LC_MESSAGES/kreversi.mo share/locale/zh_CN/LC_MESSAGES/kreversi.mo share/locale/zh_TW/LC_MESSAGES/kreversi.mo share/metainfo/org.kde.kreversi.appdata.xml diff --git a/games/kshisen/distinfo b/games/kshisen/distinfo index a0aae02893db..83729dc841e4 100644 --- a/games/kshisen/distinfo +++ b/games/kshisen/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539549 -SHA256 (KDE/release-service/22.08.3/kshisen-22.08.3.tar.xz) = a76c8a2c40051aec8742775e5f41cdbb12711599b13ccdf6a22fe2514ea74d9d -SIZE (KDE/release-service/22.08.3/kshisen-22.08.3.tar.xz) = 993976 +TIMESTAMP = 1670513174 +SHA256 (KDE/release-service/22.12.0/kshisen-22.12.0.tar.xz) = bdda4dfb87f28f7f7e307c3b15e174c1de321367e7ff4c46a287c3e4983a9df6 +SIZE (KDE/release-service/22.12.0/kshisen-22.12.0.tar.xz) = 1005900 diff --git a/games/kshisen/pkg-plist b/games/kshisen/pkg-plist index 50b041675691..a15161e02074 100644 --- a/games/kshisen/pkg-plist +++ b/games/kshisen/pkg-plist @@ -1,71 +1,86 @@ bin/kshisen share/applications/org.kde.kshisen.desktop share/config.kcfg/kshisen.kcfg +share/icons/hicolor/128x128/apps/kshisen.png share/icons/hicolor/16x16/apps/kshisen.png share/icons/hicolor/22x22/apps/kshisen.png share/icons/hicolor/32x32/apps/kshisen.png share/icons/hicolor/48x48/apps/kshisen.png share/icons/hicolor/64x64/apps/kshisen.png -share/icons/hicolor/128x128/apps/kshisen.png +share/locale/af/LC_MESSAGES/kshisen.mo share/locale/ar/LC_MESSAGES/kshisen.mo share/locale/be/LC_MESSAGES/kshisen.mo share/locale/bg/LC_MESSAGES/kshisen.mo +share/locale/bn/LC_MESSAGES/kshisen.mo +share/locale/br/LC_MESSAGES/kshisen.mo share/locale/bs/LC_MESSAGES/kshisen.mo share/locale/ca/LC_MESSAGES/kshisen.mo share/locale/ca@valencia/LC_MESSAGES/kshisen.mo share/locale/cs/LC_MESSAGES/kshisen.mo +share/locale/cy/LC_MESSAGES/kshisen.mo share/locale/da/LC_MESSAGES/kshisen.mo share/locale/de/LC_MESSAGES/kshisen.mo share/locale/el/LC_MESSAGES/kshisen.mo share/locale/en_GB/LC_MESSAGES/kshisen.mo share/locale/eo/LC_MESSAGES/kshisen.mo share/locale/es/LC_MESSAGES/kshisen.mo share/locale/et/LC_MESSAGES/kshisen.mo share/locale/eu/LC_MESSAGES/kshisen.mo share/locale/fa/LC_MESSAGES/kshisen.mo share/locale/fi/LC_MESSAGES/kshisen.mo share/locale/fr/LC_MESSAGES/kshisen.mo share/locale/ga/LC_MESSAGES/kshisen.mo share/locale/gl/LC_MESSAGES/kshisen.mo share/locale/he/LC_MESSAGES/kshisen.mo share/locale/hi/LC_MESSAGES/kshisen.mo +share/locale/hne/LC_MESSAGES/kshisen.mo share/locale/hr/LC_MESSAGES/kshisen.mo share/locale/hu/LC_MESSAGES/kshisen.mo share/locale/id/LC_MESSAGES/kshisen.mo share/locale/is/LC_MESSAGES/kshisen.mo share/locale/it/LC_MESSAGES/kshisen.mo share/locale/ja/LC_MESSAGES/kshisen.mo +share/locale/ka/LC_MESSAGES/kshisen.mo share/locale/kk/LC_MESSAGES/kshisen.mo share/locale/km/LC_MESSAGES/kshisen.mo share/locale/ko/LC_MESSAGES/kshisen.mo share/locale/lt/LC_MESSAGES/kshisen.mo share/locale/lv/LC_MESSAGES/kshisen.mo +share/locale/mai/LC_MESSAGES/kshisen.mo +share/locale/mk/LC_MESSAGES/kshisen.mo share/locale/ml/LC_MESSAGES/kshisen.mo share/locale/mr/LC_MESSAGES/kshisen.mo share/locale/nb/LC_MESSAGES/kshisen.mo share/locale/nds/LC_MESSAGES/kshisen.mo +share/locale/ne/LC_MESSAGES/kshisen.mo share/locale/nl/LC_MESSAGES/kshisen.mo share/locale/nn/LC_MESSAGES/kshisen.mo +share/locale/oc/LC_MESSAGES/kshisen.mo share/locale/pa/LC_MESSAGES/kshisen.mo share/locale/pl/LC_MESSAGES/kshisen.mo share/locale/pt/LC_MESSAGES/kshisen.mo share/locale/pt_BR/LC_MESSAGES/kshisen.mo share/locale/ro/LC_MESSAGES/kshisen.mo share/locale/ru/LC_MESSAGES/kshisen.mo share/locale/se/LC_MESSAGES/kshisen.mo share/locale/sk/LC_MESSAGES/kshisen.mo share/locale/sl/LC_MESSAGES/kshisen.mo share/locale/sq/LC_MESSAGES/kshisen.mo share/locale/sr/LC_MESSAGES/kshisen.mo +share/locale/sr@ijekavian/LC_MESSAGES/kshisen.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kshisen.mo +share/locale/sr@latin/LC_MESSAGES/kshisen.mo share/locale/sv/LC_MESSAGES/kshisen.mo share/locale/ta/LC_MESSAGES/kshisen.mo share/locale/tg/LC_MESSAGES/kshisen.mo +share/locale/th/LC_MESSAGES/kshisen.mo share/locale/tr/LC_MESSAGES/kshisen.mo share/locale/ug/LC_MESSAGES/kshisen.mo share/locale/uk/LC_MESSAGES/kshisen.mo +share/locale/xh/LC_MESSAGES/kshisen.mo share/locale/zh_CN/LC_MESSAGES/kshisen.mo share/locale/zh_TW/LC_MESSAGES/kshisen.mo share/metainfo/org.kde.kshisen.appdata.xml share/qlogging-categories5/kshisen.categories share/sounds/kshisen/tile-fall-tile.ogg share/sounds/kshisen/tile-touch.ogg diff --git a/games/ksirk/distinfo b/games/ksirk/distinfo index 52236804b1bc..630bad1f51e3 100644 --- a/games/ksirk/distinfo +++ b/games/ksirk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539513 -SHA256 (KDE/release-service/22.08.3/ksirk-22.08.3.tar.xz) = 5aa8569a0607074c58dff3b3499a677373b860bf61d0bf58524b23cfe2a8422a -SIZE (KDE/release-service/22.08.3/ksirk-22.08.3.tar.xz) = 7015680 +TIMESTAMP = 1670513130 +SHA256 (KDE/release-service/22.12.0/ksirk-22.12.0.tar.xz) = 09828dcfb7fc65eba65ea6b870c2215ea78cd3c42f73db29f5b0284857ccc0f9 +SIZE (KDE/release-service/22.12.0/ksirk-22.12.0.tar.xz) = 7045656 diff --git a/games/ksirk/pkg-plist b/games/ksirk/pkg-plist index ecbb2658ff91..622e84648832 100644 --- a/games/ksirk/pkg-plist +++ b/games/ksirk/pkg-plist @@ -1,153 +1,166 @@ bin/ksirk bin/ksirkskineditor lib/libiris_ksirk.so lib/libiris_ksirk.so.2 lib/libiris_ksirk.so.2.0.0 share/applications/org.kde.ksirk.desktop share/applications/org.kde.ksirkskineditor.desktop share/config.kcfg/ksirksettings.kcfg share/config.kcfg/ksirkskineditorsettings.kcfg +share/icons/hicolor/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/128x128/apps/ksirk.png share/icons/hicolor/scalable/apps/ksirk.svgz share/knsrcfiles/ksirk.knsrc %%DATADIR%%/jabber.png %%DATADIR%%/skins/default/Data/world.desktop %%DATADIR%%/skins/default/Images/2DownArrow.png %%DATADIR%%/skins/default/Images/2UpArrow.png %%DATADIR%%/skins/default/Images/arena.svg %%DATADIR%%/skins/default/Images/attackAuto.png %%DATADIR%%/skins/default/Images/attackOne.png %%DATADIR%%/skins/default/Images/attackThree.png %%DATADIR%%/skins/default/Images/attackTwo.png %%DATADIR%%/skins/default/Images/cancel.png %%DATADIR%%/skins/default/Images/defendOne.png %%DATADIR%%/skins/default/Images/defendTwo.png %%DATADIR%%/skins/default/Images/downArrow.png %%DATADIR%%/skins/default/Images/loader.gif %%DATADIR%%/skins/default/Images/logoLeft.png %%DATADIR%%/skins/default/Images/logoRight.png %%DATADIR%%/skins/default/Images/map-mask.png %%DATADIR%%/skins/default/Images/moveArmies.png %%DATADIR%%/skins/default/Images/moveBackFive.png %%DATADIR%%/skins/default/Images/moveBackOne.png %%DATADIR%%/skins/default/Images/moveBackTen.png %%DATADIR%%/skins/default/Images/moveFinish.png %%DATADIR%%/skins/default/Images/moveFive.png %%DATADIR%%/skins/default/Images/moveOne.png %%DATADIR%%/skins/default/Images/moveTen.png %%DATADIR%%/skins/default/Images/newNetGame.png %%DATADIR%%/skins/default/Images/nextPlayer.png %%DATADIR%%/skins/default/Images/pool.svg %%DATADIR%%/skins/default/Images/recycling.png %%DATADIR%%/skins/default/Images/recyclingFinished.png %%DATADIR%%/skins/default/Images/snapshot.jpg %%DATADIR%%/skins/default/Images/soldierKneeling.png %%DATADIR%%/skins/default/Images/stopAttackAuto.png %%DATADIR%%/skins/default/Images/upArrow.png %%DATADIR%%/skins/default/Sounds/cannon.wav %%DATADIR%%/skins/default/Sounds/crash.wav %%DATADIR%%/skins/default/Sounds/roll.wav %%DATADIR%%/skins/skinsdir %%DATADIR%%skineditor/cross.png %%DATADIR%%skineditor/target.png share/kxmlgui5/ksirk/ksirkui.rc share/kxmlgui5/ksirkskineditor/ksirkskineditorui.rc share/locale/ar/LC_MESSAGES/ksirk.mo share/locale/be/LC_MESSAGES/ksirk.mo share/locale/bg/LC_MESSAGES/ksirk.mo share/locale/bg/LC_MESSAGES/ksirkskineditor.mo share/locale/bs/LC_MESSAGES/ksirk.mo share/locale/bs/LC_MESSAGES/ksirkskineditor.mo share/locale/ca/LC_MESSAGES/ksirk.mo share/locale/ca/LC_MESSAGES/ksirkskineditor.mo share/locale/ca@valencia/LC_MESSAGES/ksirk.mo share/locale/ca@valencia/LC_MESSAGES/ksirkskineditor.mo share/locale/cs/LC_MESSAGES/ksirk.mo share/locale/cs/LC_MESSAGES/ksirkskineditor.mo share/locale/da/LC_MESSAGES/ksirk.mo share/locale/da/LC_MESSAGES/ksirkskineditor.mo share/locale/de/LC_MESSAGES/ksirk.mo share/locale/de/LC_MESSAGES/ksirkskineditor.mo share/locale/el/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirk.mo share/locale/en_GB/LC_MESSAGES/ksirkskineditor.mo share/locale/eo/LC_MESSAGES/ksirk.mo share/locale/eo/LC_MESSAGES/ksirkskineditor.mo share/locale/es/LC_MESSAGES/ksirk.mo share/locale/es/LC_MESSAGES/ksirkskineditor.mo share/locale/et/LC_MESSAGES/ksirk.mo share/locale/et/LC_MESSAGES/ksirkskineditor.mo share/locale/fi/LC_MESSAGES/ksirk.mo share/locale/fi/LC_MESSAGES/ksirkskineditor.mo share/locale/fr/LC_MESSAGES/ksirk.mo share/locale/fr/LC_MESSAGES/ksirkskineditor.mo share/locale/ga/LC_MESSAGES/ksirk.mo share/locale/ga/LC_MESSAGES/ksirkskineditor.mo share/locale/gl/LC_MESSAGES/ksirk.mo share/locale/gl/LC_MESSAGES/ksirkskineditor.mo share/locale/hi/LC_MESSAGES/ksirk.mo +share/locale/hne/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirk.mo share/locale/hr/LC_MESSAGES/ksirkskineditor.mo share/locale/hu/LC_MESSAGES/ksirk.mo share/locale/hu/LC_MESSAGES/ksirkskineditor.mo share/locale/is/LC_MESSAGES/ksirk.mo share/locale/is/LC_MESSAGES/ksirkskineditor.mo share/locale/it/LC_MESSAGES/ksirk.mo share/locale/it/LC_MESSAGES/ksirkskineditor.mo share/locale/ja/LC_MESSAGES/ksirk.mo share/locale/ja/LC_MESSAGES/ksirkskineditor.mo +share/locale/ka/LC_MESSAGES/ksirk.mo +share/locale/ka/LC_MESSAGES/ksirkskineditor.mo share/locale/kk/LC_MESSAGES/ksirk.mo share/locale/kk/LC_MESSAGES/ksirkskineditor.mo share/locale/km/LC_MESSAGES/ksirk.mo share/locale/km/LC_MESSAGES/ksirkskineditor.mo share/locale/lt/LC_MESSAGES/ksirk.mo share/locale/lt/LC_MESSAGES/ksirkskineditor.mo share/locale/lv/LC_MESSAGES/ksirk.mo share/locale/lv/LC_MESSAGES/ksirkskineditor.mo +share/locale/mai/LC_MESSAGES/ksirk.mo +share/locale/mai/LC_MESSAGES/ksirkskineditor.mo share/locale/ml/LC_MESSAGES/ksirk.mo share/locale/ml/LC_MESSAGES/ksirkskineditor.mo share/locale/mr/LC_MESSAGES/ksirk.mo share/locale/mr/LC_MESSAGES/ksirkskineditor.mo +share/locale/ms/LC_MESSAGES/ksirk.mo share/locale/nb/LC_MESSAGES/ksirk.mo share/locale/nb/LC_MESSAGES/ksirkskineditor.mo share/locale/nds/LC_MESSAGES/ksirk.mo share/locale/nds/LC_MESSAGES/ksirkskineditor.mo share/locale/nl/LC_MESSAGES/ksirk.mo share/locale/nl/LC_MESSAGES/ksirkskineditor.mo share/locale/nn/LC_MESSAGES/ksirk.mo share/locale/nn/LC_MESSAGES/ksirkskineditor.mo +share/locale/oc/LC_MESSAGES/ksirk.mo share/locale/pl/LC_MESSAGES/ksirk.mo share/locale/pl/LC_MESSAGES/ksirkskineditor.mo share/locale/pt/LC_MESSAGES/ksirk.mo share/locale/pt/LC_MESSAGES/ksirkskineditor.mo share/locale/pt_BR/LC_MESSAGES/ksirk.mo share/locale/pt_BR/LC_MESSAGES/ksirkskineditor.mo share/locale/ro/LC_MESSAGES/ksirk.mo share/locale/ro/LC_MESSAGES/ksirkskineditor.mo share/locale/ru/LC_MESSAGES/ksirk.mo share/locale/ru/LC_MESSAGES/ksirkskineditor.mo share/locale/sk/LC_MESSAGES/ksirk.mo share/locale/sk/LC_MESSAGES/ksirkskineditor.mo share/locale/sl/LC_MESSAGES/ksirk.mo share/locale/sl/LC_MESSAGES/ksirkskineditor.mo share/locale/sr/LC_MESSAGES/ksirk.mo share/locale/sr/LC_MESSAGES/ksirkskineditor.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksirk.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksirkskineditor.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksirk.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksirkskineditor.mo +share/locale/sr@latin/LC_MESSAGES/ksirk.mo +share/locale/sr@latin/LC_MESSAGES/ksirkskineditor.mo share/locale/sv/LC_MESSAGES/ksirk.mo share/locale/sv/LC_MESSAGES/ksirkskineditor.mo share/locale/tr/LC_MESSAGES/ksirk.mo share/locale/tr/LC_MESSAGES/ksirkskineditor.mo share/locale/ug/LC_MESSAGES/ksirk.mo share/locale/ug/LC_MESSAGES/ksirkskineditor.mo share/locale/uk/LC_MESSAGES/ksirk.mo share/locale/uk/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_CN/LC_MESSAGES/ksirk.mo share/locale/zh_CN/LC_MESSAGES/ksirkskineditor.mo share/locale/zh_TW/LC_MESSAGES/ksirk.mo share/locale/zh_TW/LC_MESSAGES/ksirkskineditor.mo share/metainfo/org.kde.ksirk.appdata.xml share/qlogging-categories5/ksirk.categories diff --git a/games/ksnakeduel/distinfo b/games/ksnakeduel/distinfo index 7c46046151f9..6a73ac31a7e1 100644 --- a/games/ksnakeduel/distinfo +++ b/games/ksnakeduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539497 -SHA256 (KDE/release-service/22.08.3/ksnakeduel-22.08.3.tar.xz) = 3fdbbdb2a04fdc9f5cf94e80d414ce3aa1c3b0838ba0df4002383cb42a0b4312 -SIZE (KDE/release-service/22.08.3/ksnakeduel-22.08.3.tar.xz) = 608112 +TIMESTAMP = 1670513109 +SHA256 (KDE/release-service/22.12.0/ksnakeduel-22.12.0.tar.xz) = 172d37d4f00be7e499cad2b0de704a67199b7839593a00bd272f37a9eb9a0085 +SIZE (KDE/release-service/22.12.0/ksnakeduel-22.12.0.tar.xz) = 610304 diff --git a/games/ksnakeduel/pkg-plist b/games/ksnakeduel/pkg-plist index 85e4493e3f86..57bd97341ad7 100644 --- a/games/ksnakeduel/pkg-plist +++ b/games/ksnakeduel/pkg-plist @@ -1,68 +1,75 @@ bin/ksnakeduel share/applications/org.kde.ksnakeduel.desktop share/config.kcfg/ksnakeduel.kcfg share/icons/hicolor/128x128/apps/ksnakeduel.png share/icons/hicolor/16x16/apps/ksnakeduel.png share/icons/hicolor/22x22/apps/ksnakeduel.png share/icons/hicolor/256x256/apps/ksnakeduel.png share/icons/hicolor/32x32/apps/ksnakeduel.png share/icons/hicolor/48x48/apps/ksnakeduel.png share/icons/hicolor/64x64/apps/ksnakeduel.png share/knsrcfiles/ksnakeduel.knsrc %%DATADIR%%/themes/default.desktop %%DATADIR%%/themes/default.png %%DATADIR%%/themes/default.svgz %%DATADIR%%/themes/neon.desktop %%DATADIR%%/themes/neon.png %%DATADIR%%/themes/neon.svgz share/locale/ar/LC_MESSAGES/ksnakeduel.mo share/locale/bg/LC_MESSAGES/ksnakeduel.mo share/locale/bs/LC_MESSAGES/ksnakeduel.mo share/locale/ca/LC_MESSAGES/ksnakeduel.mo share/locale/ca@valencia/LC_MESSAGES/ksnakeduel.mo share/locale/cs/LC_MESSAGES/ksnakeduel.mo share/locale/da/LC_MESSAGES/ksnakeduel.mo share/locale/de/LC_MESSAGES/ksnakeduel.mo share/locale/el/LC_MESSAGES/ksnakeduel.mo share/locale/en_GB/LC_MESSAGES/ksnakeduel.mo share/locale/eo/LC_MESSAGES/ksnakeduel.mo share/locale/es/LC_MESSAGES/ksnakeduel.mo share/locale/et/LC_MESSAGES/ksnakeduel.mo share/locale/eu/LC_MESSAGES/ksnakeduel.mo share/locale/fi/LC_MESSAGES/ksnakeduel.mo share/locale/fr/LC_MESSAGES/ksnakeduel.mo share/locale/ga/LC_MESSAGES/ksnakeduel.mo share/locale/gl/LC_MESSAGES/ksnakeduel.mo share/locale/hr/LC_MESSAGES/ksnakeduel.mo +share/locale/hsb/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/ka/LC_MESSAGES/ksnakeduel.mo share/locale/kk/LC_MESSAGES/ksnakeduel.mo share/locale/km/LC_MESSAGES/ksnakeduel.mo share/locale/ko/LC_MESSAGES/ksnakeduel.mo share/locale/lt/LC_MESSAGES/ksnakeduel.mo share/locale/lv/LC_MESSAGES/ksnakeduel.mo +share/locale/mai/LC_MESSAGES/ksnakeduel.mo share/locale/ml/LC_MESSAGES/ksnakeduel.mo share/locale/mr/LC_MESSAGES/ksnakeduel.mo +share/locale/ms/LC_MESSAGES/ksnakeduel.mo share/locale/nb/LC_MESSAGES/ksnakeduel.mo share/locale/nds/LC_MESSAGES/ksnakeduel.mo share/locale/nl/LC_MESSAGES/ksnakeduel.mo share/locale/nn/LC_MESSAGES/ksnakeduel.mo share/locale/pl/LC_MESSAGES/ksnakeduel.mo share/locale/pt/LC_MESSAGES/ksnakeduel.mo share/locale/pt_BR/LC_MESSAGES/ksnakeduel.mo share/locale/ro/LC_MESSAGES/ksnakeduel.mo share/locale/ru/LC_MESSAGES/ksnakeduel.mo share/locale/sk/LC_MESSAGES/ksnakeduel.mo share/locale/sl/LC_MESSAGES/ksnakeduel.mo share/locale/sq/LC_MESSAGES/ksnakeduel.mo share/locale/sr/LC_MESSAGES/ksnakeduel.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksnakeduel.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksnakeduel.mo +share/locale/sr@latin/LC_MESSAGES/ksnakeduel.mo share/locale/sv/LC_MESSAGES/ksnakeduel.mo share/locale/tr/LC_MESSAGES/ksnakeduel.mo share/locale/ug/LC_MESSAGES/ksnakeduel.mo share/locale/uk/LC_MESSAGES/ksnakeduel.mo share/locale/zh_CN/LC_MESSAGES/ksnakeduel.mo share/locale/zh_TW/LC_MESSAGES/ksnakeduel.mo share/metainfo/org.kde.ksnakeduel.appdata.xml share/qlogging-categories5/ksnakeduel.categories diff --git a/games/kspaceduel/distinfo b/games/kspaceduel/distinfo index 871cf7763b9a..3aa2dcf1e9d9 100644 --- a/games/kspaceduel/distinfo +++ b/games/kspaceduel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539510 -SHA256 (KDE/release-service/22.08.3/kspaceduel-22.08.3.tar.xz) = 130266d61b552c1895e19d9f30d096386577befe63db791b3debf774e9caf983 -SIZE (KDE/release-service/22.08.3/kspaceduel-22.08.3.tar.xz) = 651880 +TIMESTAMP = 1670513127 +SHA256 (KDE/release-service/22.12.0/kspaceduel-22.12.0.tar.xz) = de4e281a7b12d0a9ed88f6e4ea818d8898e414abdfc3d53d1f456ee9ffdff7f2 +SIZE (KDE/release-service/22.12.0/kspaceduel-22.12.0.tar.xz) = 659820 diff --git a/games/kspaceduel/pkg-plist b/games/kspaceduel/pkg-plist index 437d56450a7a..7f4ea098a712 100644 --- a/games/kspaceduel/pkg-plist +++ b/games/kspaceduel/pkg-plist @@ -1,89 +1,102 @@ 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 -share/icons/hicolor/128x128/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/af/LC_MESSAGES/kspaceduel.mo share/locale/ar/LC_MESSAGES/kspaceduel.mo share/locale/be/LC_MESSAGES/kspaceduel.mo share/locale/bg/LC_MESSAGES/kspaceduel.mo +share/locale/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/kspaceduel.mo +share/locale/mk/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/ne/LC_MESSAGES/kspaceduel.mo share/locale/nl/LC_MESSAGES/kspaceduel.mo share/locale/nn/LC_MESSAGES/kspaceduel.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kspaceduel.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kspaceduel.mo +share/locale/sr@latin/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/xh/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 3a44cf57532d..0f0ba2bc151f 100644 --- a/games/ksquares/distinfo +++ b/games/ksquares/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539511 -SHA256 (KDE/release-service/22.08.3/ksquares-22.08.3.tar.xz) = b0808f72c94306de54d8ac8f2a441c4d63dd4a3fd0e20ba2cd1fef41e36c1c72 -SIZE (KDE/release-service/22.08.3/ksquares-22.08.3.tar.xz) = 308716 +TIMESTAMP = 1670513128 +SHA256 (KDE/release-service/22.12.0/ksquares-22.12.0.tar.xz) = d23728a2477a93f4d2b6923c743b4fdf05ddb7bcca77b3ea825e7f86968122b9 +SIZE (KDE/release-service/22.12.0/ksquares-22.12.0.tar.xz) = 312280 diff --git a/games/ksquares/pkg-plist b/games/ksquares/pkg-plist index f0f81eaf74a9..6d851c5dc9a8 100644 --- a/games/ksquares/pkg-plist +++ b/games/ksquares/pkg-plist @@ -1,62 +1,69 @@ 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/icons/hicolor/128x128/apps/ksquares.png share/locale/ar/LC_MESSAGES/ksquares.mo share/locale/be/LC_MESSAGES/ksquares.mo share/locale/bg/LC_MESSAGES/ksquares.mo share/locale/bs/LC_MESSAGES/ksquares.mo share/locale/ca/LC_MESSAGES/ksquares.mo share/locale/ca@valencia/LC_MESSAGES/ksquares.mo share/locale/cs/LC_MESSAGES/ksquares.mo share/locale/da/LC_MESSAGES/ksquares.mo share/locale/de/LC_MESSAGES/ksquares.mo share/locale/el/LC_MESSAGES/ksquares.mo share/locale/en_GB/LC_MESSAGES/ksquares.mo share/locale/eo/LC_MESSAGES/ksquares.mo share/locale/es/LC_MESSAGES/ksquares.mo share/locale/et/LC_MESSAGES/ksquares.mo share/locale/eu/LC_MESSAGES/ksquares.mo share/locale/fi/LC_MESSAGES/ksquares.mo share/locale/fr/LC_MESSAGES/ksquares.mo share/locale/ga/LC_MESSAGES/ksquares.mo share/locale/gl/LC_MESSAGES/ksquares.mo share/locale/hi/LC_MESSAGES/ksquares.mo +share/locale/hne/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/ka/LC_MESSAGES/ksquares.mo share/locale/kk/LC_MESSAGES/ksquares.mo share/locale/km/LC_MESSAGES/ksquares.mo share/locale/ko/LC_MESSAGES/ksquares.mo share/locale/lt/LC_MESSAGES/ksquares.mo share/locale/lv/LC_MESSAGES/ksquares.mo +share/locale/mai/LC_MESSAGES/ksquares.mo share/locale/ml/LC_MESSAGES/ksquares.mo share/locale/mr/LC_MESSAGES/ksquares.mo share/locale/nb/LC_MESSAGES/ksquares.mo share/locale/nds/LC_MESSAGES/ksquares.mo share/locale/nl/LC_MESSAGES/ksquares.mo share/locale/nn/LC_MESSAGES/ksquares.mo +share/locale/oc/LC_MESSAGES/ksquares.mo share/locale/pl/LC_MESSAGES/ksquares.mo share/locale/pt/LC_MESSAGES/ksquares.mo share/locale/pt_BR/LC_MESSAGES/ksquares.mo share/locale/ro/LC_MESSAGES/ksquares.mo share/locale/ru/LC_MESSAGES/ksquares.mo share/locale/se/LC_MESSAGES/ksquares.mo share/locale/sk/LC_MESSAGES/ksquares.mo share/locale/sl/LC_MESSAGES/ksquares.mo share/locale/sq/LC_MESSAGES/ksquares.mo share/locale/sr/LC_MESSAGES/ksquares.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksquares.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksquares.mo +share/locale/sr@latin/LC_MESSAGES/ksquares.mo share/locale/sv/LC_MESSAGES/ksquares.mo share/locale/tr/LC_MESSAGES/ksquares.mo share/locale/ug/LC_MESSAGES/ksquares.mo share/locale/uk/LC_MESSAGES/ksquares.mo share/locale/zh_CN/LC_MESSAGES/ksquares.mo share/locale/zh_TW/LC_MESSAGES/ksquares.mo share/metainfo/org.kde.ksquares.appdata.xml diff --git a/games/ksudoku/distinfo b/games/ksudoku/distinfo index 6ece5698f4b7..d251cb01c123 100644 --- a/games/ksudoku/distinfo +++ b/games/ksudoku/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539542 -SHA256 (KDE/release-service/22.08.3/ksudoku-22.08.3.tar.xz) = c779ec124ce0697fdbfa92a9fd0b3e4e4f243dc74ebf35bfd05703933d040e7d -SIZE (KDE/release-service/22.08.3/ksudoku-22.08.3.tar.xz) = 1690032 +TIMESTAMP = 1670513166 +SHA256 (KDE/release-service/22.12.0/ksudoku-22.12.0.tar.xz) = 2491427db2fd92620472a4b336838cb947ba4f8e62658f760b19da23793f2f75 +SIZE (KDE/release-service/22.12.0/ksudoku-22.12.0.tar.xz) = 1701232 diff --git a/games/ksudoku/pkg-plist b/games/ksudoku/pkg-plist index 55cf1ca0f6a4..2fbea1c59ebb 100644 --- a/games/ksudoku/pkg-plist +++ b/games/ksudoku/pkg-plist @@ -1,179 +1,188 @@ 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/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/hne/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/ka/LC_MESSAGES/ksudoku.mo share/locale/kk/LC_MESSAGES/ksudoku.mo share/locale/km/LC_MESSAGES/ksudoku.mo share/locale/ko/LC_MESSAGES/ksudoku.mo share/locale/lt/LC_MESSAGES/ksudoku.mo share/locale/lv/LC_MESSAGES/ksudoku.mo +share/locale/mai/LC_MESSAGES/ksudoku.mo share/locale/ml/LC_MESSAGES/ksudoku.mo share/locale/mr/LC_MESSAGES/ksudoku.mo share/locale/nb/LC_MESSAGES/ksudoku.mo share/locale/nds/LC_MESSAGES/ksudoku.mo share/locale/nl/LC_MESSAGES/ksudoku.mo share/locale/nn/LC_MESSAGES/ksudoku.mo +share/locale/oc/LC_MESSAGES/ksudoku.mo share/locale/pa/LC_MESSAGES/ksudoku.mo share/locale/pl/LC_MESSAGES/ksudoku.mo share/locale/pt/LC_MESSAGES/ksudoku.mo share/locale/pt_BR/LC_MESSAGES/ksudoku.mo share/locale/ro/LC_MESSAGES/ksudoku.mo share/locale/ru/LC_MESSAGES/ksudoku.mo share/locale/se/LC_MESSAGES/ksudoku.mo +share/locale/si/LC_MESSAGES/ksudoku.mo share/locale/sk/LC_MESSAGES/ksudoku.mo share/locale/sl/LC_MESSAGES/ksudoku.mo share/locale/sr/LC_MESSAGES/ksudoku.mo +share/locale/sr@ijekavian/LC_MESSAGES/ksudoku.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksudoku.mo +share/locale/sr@latin/LC_MESSAGES/ksudoku.mo share/locale/sv/LC_MESSAGES/ksudoku.mo +share/locale/th/LC_MESSAGES/ksudoku.mo share/locale/tr/LC_MESSAGES/ksudoku.mo share/locale/ug/LC_MESSAGES/ksudoku.mo share/locale/uk/LC_MESSAGES/ksudoku.mo share/locale/zh_CN/LC_MESSAGES/ksudoku.mo share/locale/zh_TW/LC_MESSAGES/ksudoku.mo share/metainfo/org.kde.ksudoku.appdata.xml diff --git a/games/ktuberling/distinfo b/games/ktuberling/distinfo index 91a77305099e..50977a5ab591 100644 --- a/games/ktuberling/distinfo +++ b/games/ktuberling/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539528 -SHA256 (KDE/release-service/22.08.3/ktuberling-22.08.3.tar.xz) = 3a509bc5916ac2591a0b233bcdc8938b8f621e7a735710db24b5902a811f7713 -SIZE (KDE/release-service/22.08.3/ktuberling-22.08.3.tar.xz) = 71431696 +TIMESTAMP = 1670513148 +SHA256 (KDE/release-service/22.12.0/ktuberling-22.12.0.tar.xz) = fbf67aafd0ac24f6c146699352bb06bf7774666dcf5ac009f1a7983d81072fa8 +SIZE (KDE/release-service/22.12.0/ktuberling-22.12.0.tar.xz) = 71402152 diff --git a/games/ktuberling/pkg-plist b/games/ktuberling/pkg-plist index 24f743bf7cea..ae0051e181ff 100644 --- a/games/ktuberling/pkg-plist +++ b/games/ktuberling/pkg-plist @@ -1,1977 +1,2038 @@ 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/nn.soundtheme %%DATADIR%%/sounds/nn/ball.opus %%DATADIR%%/sounds/nn/bow.opus %%DATADIR%%/sounds/nn/butterflies_body.opus %%DATADIR%%/sounds/nn/butterflies_circle.opus %%DATADIR%%/sounds/nn/butterflies_circles.opus %%DATADIR%%/sounds/nn/butterflies_eye.opus %%DATADIR%%/sounds/nn/butterflies_heart.opus %%DATADIR%%/sounds/nn/butterflies_purple_shape.opus %%DATADIR%%/sounds/nn/butterflies_spiral.opus %%DATADIR%%/sounds/nn/butterflies_wing.opus %%DATADIR%%/sounds/nn/coat.opus %%DATADIR%%/sounds/nn/ear.opus %%DATADIR%%/sounds/nn/earring.opus %%DATADIR%%/sounds/nn/egypt_arch.opus %%DATADIR%%/sounds/nn/egypt_birds.opus %%DATADIR%%/sounds/nn/egypt_boy.opus %%DATADIR%%/sounds/nn/egypt_bridge.opus %%DATADIR%%/sounds/nn/egypt_camel.opus %%DATADIR%%/sounds/nn/egypt_cart.opus %%DATADIR%%/sounds/nn/egypt_column.opus %%DATADIR%%/sounds/nn/egypt_donkey.opus %%DATADIR%%/sounds/nn/egypt_girl.opus %%DATADIR%%/sounds/nn/egypt_grass.opus %%DATADIR%%/sounds/nn/egypt_man.opus %%DATADIR%%/sounds/nn/egypt_oasis.opus %%DATADIR%%/sounds/nn/egypt_palmtree.opus %%DATADIR%%/sounds/nn/egypt_pyramid.opus %%DATADIR%%/sounds/nn/egypt_road.opus %%DATADIR%%/sounds/nn/egypt_sphynx.opus %%DATADIR%%/sounds/nn/egypt_well.opus %%DATADIR%%/sounds/nn/egypt_woman.opus %%DATADIR%%/sounds/nn/eye.opus %%DATADIR%%/sounds/nn/eyebrow.opus %%DATADIR%%/sounds/nn/flower.opus %%DATADIR%%/sounds/nn/frier-tux.opus %%DATADIR%%/sounds/nn/guard-tux.opus %%DATADIR%%/sounds/nn/hair.opus %%DATADIR%%/sounds/nn/hat.opus %%DATADIR%%/sounds/nn/kid-tux.opus %%DATADIR%%/sounds/nn/little-tux.opus %%DATADIR%%/sounds/nn/maiden-tux.opus %%DATADIR%%/sounds/nn/moon_alien.opus %%DATADIR%%/sounds/nn/moon_astronaut.opus %%DATADIR%%/sounds/nn/moon_earth.opus %%DATADIR%%/sounds/nn/moon_fallingstar.opus %%DATADIR%%/sounds/nn/moon_hotel.opus %%DATADIR%%/sounds/nn/moon_monster.opus %%DATADIR%%/sounds/nn/moon_moonwalker.opus %%DATADIR%%/sounds/nn/moon_planet.opus %%DATADIR%%/sounds/nn/moon_radar.opus %%DATADIR%%/sounds/nn/moon_rocket.opus %%DATADIR%%/sounds/nn/moon_satellite.opus %%DATADIR%%/sounds/nn/moon_sign.opus %%DATADIR%%/sounds/nn/moon_star.opus %%DATADIR%%/sounds/nn/moon_ufo.opus %%DATADIR%%/sounds/nn/moustache.opus %%DATADIR%%/sounds/nn/mouth.opus %%DATADIR%%/sounds/nn/nose.opus %%DATADIR%%/sounds/nn/pizzeria_anchovy.opus %%DATADIR%%/sounds/nn/pizzeria_bacon.opus %%DATADIR%%/sounds/nn/pizzeria_brocolli.opus %%DATADIR%%/sounds/nn/pizzeria_cheese.opus %%DATADIR%%/sounds/nn/pizzeria_cucumber.opus %%DATADIR%%/sounds/nn/pizzeria_mushroom.opus %%DATADIR%%/sounds/nn/pizzeria_olive.opus %%DATADIR%%/sounds/nn/pizzeria_onion.opus %%DATADIR%%/sounds/nn/pizzeria_oregano.opus %%DATADIR%%/sounds/nn/pizzeria_pepper.opus %%DATADIR%%/sounds/nn/pizzeria_pepperoni.opus %%DATADIR%%/sounds/nn/pizzeria_pineapple.opus %%DATADIR%%/sounds/nn/pizzeria_salami.opus %%DATADIR%%/sounds/nn/pizzeria_tomato.opus %%DATADIR%%/sounds/nn/prince-tux.opus %%DATADIR%%/sounds/nn/robin-tux.opus %%DATADIR%%/sounds/nn/robot_workshop_antenna.opus %%DATADIR%%/sounds/nn/robot_workshop_arm.opus %%DATADIR%%/sounds/nn/robot_workshop_ball.opus %%DATADIR%%/sounds/nn/robot_workshop_base.opus %%DATADIR%%/sounds/nn/robot_workshop_block.opus %%DATADIR%%/sounds/nn/robot_workshop_body.opus %%DATADIR%%/sounds/nn/robot_workshop_claw.opus %%DATADIR%%/sounds/nn/robot_workshop_eye.opus %%DATADIR%%/sounds/nn/robot_workshop_foot.opus %%DATADIR%%/sounds/nn/robot_workshop_hand.opus %%DATADIR%%/sounds/nn/robot_workshop_head.opus %%DATADIR%%/sounds/nn/robot_workshop_panel.opus %%DATADIR%%/sounds/nn/robot_workshop_rocket.opus %%DATADIR%%/sounds/nn/robot_workshop_rod.opus %%DATADIR%%/sounds/nn/robot_workshop_wheel.opus %%DATADIR%%/sounds/nn/sherif-tux.opus %%DATADIR%%/sounds/nn/shoe.opus %%DATADIR%%/sounds/nn/shorts.opus %%DATADIR%%/sounds/nn/skirt.opus %%DATADIR%%/sounds/nn/spectacles.opus %%DATADIR%%/sounds/nn/stick.opus %%DATADIR%%/sounds/nn/sunglasses.opus %%DATADIR%%/sounds/nn/tie.opus %%DATADIR%%/sounds/nn/tux-angry.opus %%DATADIR%%/sounds/nn/tux-apple.opus %%DATADIR%%/sounds/nn/tux-arrow.opus %%DATADIR%%/sounds/nn/tux-arrows.opus %%DATADIR%%/sounds/nn/tux-bow.opus %%DATADIR%%/sounds/nn/tux-bullseye.opus %%DATADIR%%/sounds/nn/tux-candles.opus %%DATADIR%%/sounds/nn/tux-dowe.opus %%DATADIR%%/sounds/nn/tux-fish.opus %%DATADIR%%/sounds/nn/tux-flask.opus %%DATADIR%%/sounds/nn/tux-fly.opus %%DATADIR%%/sounds/nn/tux-goblet.opus %%DATADIR%%/sounds/nn/tux-guitar.opus %%DATADIR%%/sounds/nn/tux-huh.opus %%DATADIR%%/sounds/nn/tux-idea.opus %%DATADIR%%/sounds/nn/tux-key.opus %%DATADIR%%/sounds/nn/tux-laugh.opus %%DATADIR%%/sounds/nn/tux-letter.opus %%DATADIR%%/sounds/nn/tux-love.opus %%DATADIR%%/sounds/nn/tux-note.opus %%DATADIR%%/sounds/nn/tux-notes.opus %%DATADIR%%/sounds/nn/tux-plate.opus %%DATADIR%%/sounds/nn/tux-poison.opus %%DATADIR%%/sounds/nn/tux-shoot.opus %%DATADIR%%/sounds/nn/tux-sick.opus %%DATADIR%%/sounds/nn/tux-stare.opus %%DATADIR%%/sounds/nn/tux-teacup.opus %%DATADIR%%/sounds/nn/tux-vase.opus %%DATADIR%%/sounds/nn/tux-wanted.opus %%DATADIR%%/sounds/nn/tux-what.opus %%DATADIR%%/sounds/nn/tux-wow.opus %%DATADIR%%/sounds/nn/tux-zzz.opus %%DATADIR%%/sounds/nn/tv_accident.opus %%DATADIR%%/sounds/nn/tv_ball.opus %%DATADIR%%/sounds/nn/tv_barrier.opus %%DATADIR%%/sounds/nn/tv_bicycle.opus %%DATADIR%%/sounds/nn/tv_breakdown_lorry.opus %%DATADIR%%/sounds/nn/tv_car.opus %%DATADIR%%/sounds/nn/tv_caravan.opus %%DATADIR%%/sounds/nn/tv_cyclist.opus %%DATADIR%%/sounds/nn/tv_elephant.opus %%DATADIR%%/sounds/nn/tv_excavator.opus %%DATADIR%%/sounds/nn/tv_fence.opus %%DATADIR%%/sounds/nn/tv_fire.opus %%DATADIR%%/sounds/nn/tv_fireengine.opus %%DATADIR%%/sounds/nn/tv_fireman.opus %%DATADIR%%/sounds/nn/tv_fisherman.opus %%DATADIR%%/sounds/nn/tv_giraffe.opus %%DATADIR%%/sounds/nn/tv_guitar.opus %%DATADIR%%/sounds/nn/tv_guitarist.opus %%DATADIR%%/sounds/nn/tv_house.opus %%DATADIR%%/sounds/nn/tv_ladder.opus %%DATADIR%%/sounds/nn/tv_lion.opus %%DATADIR%%/sounds/nn/tv_lorry.opus %%DATADIR%%/sounds/nn/tv_lorry_tractor.opus %%DATADIR%%/sounds/nn/tv_man.opus %%DATADIR%%/sounds/nn/tv_mechanic.opus %%DATADIR%%/sounds/nn/tv_monkey.opus %%DATADIR%%/sounds/nn/tv_path.opus %%DATADIR%%/sounds/nn/tv_rock.opus %%DATADIR%%/sounds/nn/tv_school.opus %%DATADIR%%/sounds/nn/tv_shop.opus %%DATADIR%%/sounds/nn/tv_smoke.opus %%DATADIR%%/sounds/nn/tv_tipper.opus %%DATADIR%%/sounds/nn/tv_trailer.opus %%DATADIR%%/sounds/nn/tv_train.opus %%DATADIR%%/sounds/nn/tv_tree.opus %%DATADIR%%/sounds/nn/tv_tunnel.opus %%DATADIR%%/sounds/nn/tv_volley_net.opus %%DATADIR%%/sounds/nn/tv_wagon.opus %%DATADIR%%/sounds/nn/tv_woman.opus %%DATADIR%%/sounds/nn/umbrella.opus %%DATADIR%%/sounds/nn/whitch-tux.opus %%DATADIR%%/sounds/nn/xmas_angel.opus %%DATADIR%%/sounds/nn/xmas_ball.opus %%DATADIR%%/sounds/nn/xmas_boot.opus %%DATADIR%%/sounds/nn/xmas_candle.opus %%DATADIR%%/sounds/nn/xmas_comet.opus %%DATADIR%%/sounds/nn/xmas_garland.opus %%DATADIR%%/sounds/nn/xmas_lights.opus %%DATADIR%%/sounds/nn/xmas_mistletoe.opus %%DATADIR%%/sounds/nn/xmas_moon.opus %%DATADIR%%/sounds/nn/xmas_owl.opus %%DATADIR%%/sounds/nn/xmas_present.opus %%DATADIR%%/sounds/nn/xmas_rabbit.opus %%DATADIR%%/sounds/nn/xmas_reindeer.opus %%DATADIR%%/sounds/nn/xmas_shoe.opus %%DATADIR%%/sounds/nn/xmas_snowflake.opus %%DATADIR%%/sounds/nn/xmas_snowman.opus %%DATADIR%%/sounds/nn/xmas_star.opus %%DATADIR%%/sounds/nn/xmas_tree.opus %%DATADIR%%/sounds/nn/xmas_turtle.opus %%DATADIR%%/sounds/nn/xmas_tux.opus %%DATADIR%%/sounds/pt.soundtheme %%DATADIR%%/sounds/pt/bigode.wav %%DATADIR%%/sounds/pt/boca.wav %%DATADIR%%/sounds/pt/brincos.wav %%DATADIR%%/sounds/pt/cabelo.wav %%DATADIR%%/sounds/pt/chapeu.wav %%DATADIR%%/sounds/pt/gravata.wav %%DATADIR%%/sounds/pt/laco.wav %%DATADIR%%/sounds/pt/nariz.wav %%DATADIR%%/sounds/pt/oculos-de-sol.wav %%DATADIR%%/sounds/pt/oculos.wav %%DATADIR%%/sounds/pt/olho.wav %%DATADIR%%/sounds/pt/orelha.wav %%DATADIR%%/sounds/pt/sobrancelha.wav %%DATADIR%%/sounds/ro.soundtheme %%DATADIR%%/sounds/ro/cercel.wav %%DATADIR%%/sounds/ro/cravata.wav %%DATADIR%%/sounds/ro/gura.wav %%DATADIR%%/sounds/ro/mustata.wav %%DATADIR%%/sounds/ro/nas.wav %%DATADIR%%/sounds/ro/ochelari-de-soare.wav %%DATADIR%%/sounds/ro/ochelari.wav %%DATADIR%%/sounds/ro/ochi.wav %%DATADIR%%/sounds/ro/palarie.wav %%DATADIR%%/sounds/ro/papion.wav %%DATADIR%%/sounds/ro/par.wav %%DATADIR%%/sounds/ro/sprinceana.wav %%DATADIR%%/sounds/ro/ureche.wav %%DATADIR%%/sounds/ru.soundtheme %%DATADIR%%/sounds/ru/ball.ogg %%DATADIR%%/sounds/ru/bow.ogg %%DATADIR%%/sounds/ru/coat.ogg %%DATADIR%%/sounds/ru/ear.ogg %%DATADIR%%/sounds/ru/earring.ogg %%DATADIR%%/sounds/ru/egypt_arch.ogg %%DATADIR%%/sounds/ru/egypt_birds.ogg %%DATADIR%%/sounds/ru/egypt_boy.ogg %%DATADIR%%/sounds/ru/egypt_bridge.ogg %%DATADIR%%/sounds/ru/egypt_camel.ogg %%DATADIR%%/sounds/ru/egypt_cart.ogg %%DATADIR%%/sounds/ru/egypt_column.ogg %%DATADIR%%/sounds/ru/egypt_donkey.ogg %%DATADIR%%/sounds/ru/egypt_girl.ogg %%DATADIR%%/sounds/ru/egypt_grass.ogg %%DATADIR%%/sounds/ru/egypt_man.ogg %%DATADIR%%/sounds/ru/egypt_oasis.ogg %%DATADIR%%/sounds/ru/egypt_palmtree.ogg %%DATADIR%%/sounds/ru/egypt_pyramid.ogg %%DATADIR%%/sounds/ru/egypt_road.ogg %%DATADIR%%/sounds/ru/egypt_sphynx.ogg %%DATADIR%%/sounds/ru/egypt_well.ogg %%DATADIR%%/sounds/ru/egypt_woman.ogg %%DATADIR%%/sounds/ru/eye.ogg %%DATADIR%%/sounds/ru/eyebrow.ogg %%DATADIR%%/sounds/ru/flower.ogg %%DATADIR%%/sounds/ru/frier-tux.ogg %%DATADIR%%/sounds/ru/guard-tux.ogg %%DATADIR%%/sounds/ru/hair.ogg %%DATADIR%%/sounds/ru/hat.ogg %%DATADIR%%/sounds/ru/kid-tux.ogg %%DATADIR%%/sounds/ru/little-tux.ogg %%DATADIR%%/sounds/ru/maiden-tux.ogg %%DATADIR%%/sounds/ru/moon_alien.ogg %%DATADIR%%/sounds/ru/moon_astronaut.ogg %%DATADIR%%/sounds/ru/moon_earth.ogg %%DATADIR%%/sounds/ru/moon_fallingstar.ogg %%DATADIR%%/sounds/ru/moon_hotel.ogg %%DATADIR%%/sounds/ru/moon_monster.ogg %%DATADIR%%/sounds/ru/moon_moonwalker.ogg %%DATADIR%%/sounds/ru/moon_planet.ogg %%DATADIR%%/sounds/ru/moon_radar.ogg %%DATADIR%%/sounds/ru/moon_rocket.ogg %%DATADIR%%/sounds/ru/moon_satellite.ogg %%DATADIR%%/sounds/ru/moon_sign.ogg %%DATADIR%%/sounds/ru/moon_star.ogg %%DATADIR%%/sounds/ru/moon_ufo.ogg %%DATADIR%%/sounds/ru/moustache.ogg %%DATADIR%%/sounds/ru/mouth.ogg %%DATADIR%%/sounds/ru/nose.ogg %%DATADIR%%/sounds/ru/pizzeria_anchovy.ogg %%DATADIR%%/sounds/ru/pizzeria_bacon.ogg %%DATADIR%%/sounds/ru/pizzeria_brocolli.ogg %%DATADIR%%/sounds/ru/pizzeria_cheese.ogg %%DATADIR%%/sounds/ru/pizzeria_cucumber.ogg %%DATADIR%%/sounds/ru/pizzeria_mushroom.ogg %%DATADIR%%/sounds/ru/pizzeria_olive.ogg %%DATADIR%%/sounds/ru/pizzeria_onion.ogg %%DATADIR%%/sounds/ru/pizzeria_oregano.ogg %%DATADIR%%/sounds/ru/pizzeria_pepper.ogg %%DATADIR%%/sounds/ru/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/ru/pizzeria_pineapple.ogg %%DATADIR%%/sounds/ru/pizzeria_salami.ogg %%DATADIR%%/sounds/ru/pizzeria_tomato.ogg %%DATADIR%%/sounds/ru/prince-tux.ogg %%DATADIR%%/sounds/ru/robin-tux.ogg %%DATADIR%%/sounds/ru/sherif-tux.ogg %%DATADIR%%/sounds/ru/shoe.ogg %%DATADIR%%/sounds/ru/shorts.ogg %%DATADIR%%/sounds/ru/skirt.ogg %%DATADIR%%/sounds/ru/spectacles.ogg %%DATADIR%%/sounds/ru/stick.ogg %%DATADIR%%/sounds/ru/sunglasses.ogg %%DATADIR%%/sounds/ru/tie.ogg %%DATADIR%%/sounds/ru/tux-angry.ogg %%DATADIR%%/sounds/ru/tux-apple.ogg %%DATADIR%%/sounds/ru/tux-arrow.ogg %%DATADIR%%/sounds/ru/tux-arrows.ogg %%DATADIR%%/sounds/ru/tux-bow.ogg %%DATADIR%%/sounds/ru/tux-bullseye.ogg %%DATADIR%%/sounds/ru/tux-dowe.ogg %%DATADIR%%/sounds/ru/tux-fish.ogg %%DATADIR%%/sounds/ru/tux-flask.ogg %%DATADIR%%/sounds/ru/tux-fly.ogg %%DATADIR%%/sounds/ru/tux-goblet.ogg %%DATADIR%%/sounds/ru/tux-guitar.ogg %%DATADIR%%/sounds/ru/tux-huh.ogg %%DATADIR%%/sounds/ru/tux-idea.ogg %%DATADIR%%/sounds/ru/tux-key.ogg %%DATADIR%%/sounds/ru/tux-laugh.ogg %%DATADIR%%/sounds/ru/tux-letter.ogg %%DATADIR%%/sounds/ru/tux-love.ogg %%DATADIR%%/sounds/ru/tux-note.ogg %%DATADIR%%/sounds/ru/tux-notes.ogg %%DATADIR%%/sounds/ru/tux-plate.ogg %%DATADIR%%/sounds/ru/tux-poison.ogg %%DATADIR%%/sounds/ru/tux-shoot.ogg %%DATADIR%%/sounds/ru/tux-sick.ogg %%DATADIR%%/sounds/ru/tux-stare.ogg %%DATADIR%%/sounds/ru/tux-teacup.ogg %%DATADIR%%/sounds/ru/tux-vase.ogg %%DATADIR%%/sounds/ru/tux-what.ogg %%DATADIR%%/sounds/ru/tux-wow.ogg %%DATADIR%%/sounds/ru/tux-zzz.ogg %%DATADIR%%/sounds/ru/tv_accident.ogg %%DATADIR%%/sounds/ru/tv_ball.ogg %%DATADIR%%/sounds/ru/tv_barrier.ogg %%DATADIR%%/sounds/ru/tv_bicycle.ogg %%DATADIR%%/sounds/ru/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/ru/tv_car.ogg %%DATADIR%%/sounds/ru/tv_caravan.ogg %%DATADIR%%/sounds/ru/tv_cyclist.ogg %%DATADIR%%/sounds/ru/tv_elephant.ogg %%DATADIR%%/sounds/ru/tv_excavator.ogg %%DATADIR%%/sounds/ru/tv_fence.ogg %%DATADIR%%/sounds/ru/tv_fire.ogg %%DATADIR%%/sounds/ru/tv_fireengine.ogg %%DATADIR%%/sounds/ru/tv_fireman.ogg %%DATADIR%%/sounds/ru/tv_fisherman.ogg %%DATADIR%%/sounds/ru/tv_giraffe.ogg %%DATADIR%%/sounds/ru/tv_guitar.ogg %%DATADIR%%/sounds/ru/tv_guitarist.ogg %%DATADIR%%/sounds/ru/tv_house.ogg %%DATADIR%%/sounds/ru/tv_ladder.ogg %%DATADIR%%/sounds/ru/tv_lion.ogg %%DATADIR%%/sounds/ru/tv_lorry.ogg %%DATADIR%%/sounds/ru/tv_lorry_tractor.ogg %%DATADIR%%/sounds/ru/tv_man.ogg %%DATADIR%%/sounds/ru/tv_mechanic.ogg %%DATADIR%%/sounds/ru/tv_monkey.ogg %%DATADIR%%/sounds/ru/tv_path.ogg %%DATADIR%%/sounds/ru/tv_rock.ogg %%DATADIR%%/sounds/ru/tv_school.ogg %%DATADIR%%/sounds/ru/tv_shop.ogg %%DATADIR%%/sounds/ru/tv_smoke.ogg %%DATADIR%%/sounds/ru/tv_tipper.ogg %%DATADIR%%/sounds/ru/tv_trailer.ogg %%DATADIR%%/sounds/ru/tv_train.ogg %%DATADIR%%/sounds/ru/tv_tree.ogg %%DATADIR%%/sounds/ru/tv_tunnel.ogg %%DATADIR%%/sounds/ru/tv_volley_net.ogg %%DATADIR%%/sounds/ru/tv_wagon.ogg %%DATADIR%%/sounds/ru/tv_woman.ogg %%DATADIR%%/sounds/ru/umbrella.ogg %%DATADIR%%/sounds/ru/whitch-tux.ogg %%DATADIR%%/sounds/ru/xmas_angel.ogg %%DATADIR%%/sounds/ru/xmas_ball.ogg %%DATADIR%%/sounds/ru/xmas_boot.ogg %%DATADIR%%/sounds/ru/xmas_candle.ogg %%DATADIR%%/sounds/ru/xmas_comet.ogg %%DATADIR%%/sounds/ru/xmas_garland.ogg %%DATADIR%%/sounds/ru/xmas_lights.ogg %%DATADIR%%/sounds/ru/xmas_mistletoe.ogg %%DATADIR%%/sounds/ru/xmas_moon.ogg %%DATADIR%%/sounds/ru/xmas_owl.ogg %%DATADIR%%/sounds/ru/xmas_present.ogg %%DATADIR%%/sounds/ru/xmas_rabbit.ogg %%DATADIR%%/sounds/ru/xmas_reindeer.ogg %%DATADIR%%/sounds/ru/xmas_shoe.ogg %%DATADIR%%/sounds/ru/xmas_snowflake.ogg %%DATADIR%%/sounds/ru/xmas_snowman.ogg %%DATADIR%%/sounds/ru/xmas_star.ogg %%DATADIR%%/sounds/ru/xmas_tree.ogg %%DATADIR%%/sounds/ru/xmas_turtle.ogg %%DATADIR%%/sounds/ru/xmas_tux.ogg %%DATADIR%%/sounds/sl.soundtheme %%DATADIR%%/sounds/sl/ball.ogg %%DATADIR%%/sounds/sl/bow.ogg %%DATADIR%%/sounds/sl/coat.ogg %%DATADIR%%/sounds/sl/ear.ogg %%DATADIR%%/sounds/sl/earring.ogg %%DATADIR%%/sounds/sl/egypt_arch.ogg %%DATADIR%%/sounds/sl/egypt_birds.ogg %%DATADIR%%/sounds/sl/egypt_boy.ogg %%DATADIR%%/sounds/sl/egypt_bridge.ogg %%DATADIR%%/sounds/sl/egypt_camel.ogg %%DATADIR%%/sounds/sl/egypt_cart.ogg %%DATADIR%%/sounds/sl/egypt_column.ogg %%DATADIR%%/sounds/sl/egypt_donkey.ogg %%DATADIR%%/sounds/sl/egypt_girl.ogg %%DATADIR%%/sounds/sl/egypt_grass.ogg %%DATADIR%%/sounds/sl/egypt_man.ogg %%DATADIR%%/sounds/sl/egypt_oasis.ogg %%DATADIR%%/sounds/sl/egypt_palmtree.ogg %%DATADIR%%/sounds/sl/egypt_pyramid.ogg %%DATADIR%%/sounds/sl/egypt_road.ogg %%DATADIR%%/sounds/sl/egypt_sphynx.ogg %%DATADIR%%/sounds/sl/egypt_well.ogg %%DATADIR%%/sounds/sl/egypt_woman.ogg %%DATADIR%%/sounds/sl/eye.ogg %%DATADIR%%/sounds/sl/eyebrow.ogg %%DATADIR%%/sounds/sl/flower.ogg %%DATADIR%%/sounds/sl/hair.ogg %%DATADIR%%/sounds/sl/hat.ogg %%DATADIR%%/sounds/sl/moon_alien.ogg %%DATADIR%%/sounds/sl/moon_astronaut.ogg %%DATADIR%%/sounds/sl/moon_earth.ogg %%DATADIR%%/sounds/sl/moon_fallingstar.ogg %%DATADIR%%/sounds/sl/moon_hotel.ogg %%DATADIR%%/sounds/sl/moon_monster.ogg %%DATADIR%%/sounds/sl/moon_planet.ogg %%DATADIR%%/sounds/sl/moon_radar.ogg %%DATADIR%%/sounds/sl/moon_robot.ogg %%DATADIR%%/sounds/sl/moon_rocket.ogg %%DATADIR%%/sounds/sl/moon_satellite.ogg %%DATADIR%%/sounds/sl/moon_sign.ogg %%DATADIR%%/sounds/sl/moon_star.ogg %%DATADIR%%/sounds/sl/moon_ufo.ogg %%DATADIR%%/sounds/sl/moustache.ogg %%DATADIR%%/sounds/sl/mouth.ogg %%DATADIR%%/sounds/sl/nose.ogg %%DATADIR%%/sounds/sl/pizzeria_anchovy.ogg %%DATADIR%%/sounds/sl/pizzeria_bacon.ogg %%DATADIR%%/sounds/sl/pizzeria_broccolli.ogg %%DATADIR%%/sounds/sl/pizzeria_cheese.ogg %%DATADIR%%/sounds/sl/pizzeria_cucumber.ogg %%DATADIR%%/sounds/sl/pizzeria_mushroom.ogg %%DATADIR%%/sounds/sl/pizzeria_olive.ogg %%DATADIR%%/sounds/sl/pizzeria_onion.ogg %%DATADIR%%/sounds/sl/pizzeria_oregano.ogg %%DATADIR%%/sounds/sl/pizzeria_pepper.ogg %%DATADIR%%/sounds/sl/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/sl/pizzeria_pineapple.ogg %%DATADIR%%/sounds/sl/pizzeria_salami.ogg %%DATADIR%%/sounds/sl/pizzeria_tomato.ogg %%DATADIR%%/sounds/sl/shoe.ogg %%DATADIR%%/sounds/sl/shorts.ogg %%DATADIR%%/sounds/sl/skirt.ogg %%DATADIR%%/sounds/sl/spectacles.ogg %%DATADIR%%/sounds/sl/stick.ogg %%DATADIR%%/sounds/sl/sunglasses.ogg %%DATADIR%%/sounds/sl/tie.ogg %%DATADIR%%/sounds/sl/tv_bicycle.ogg %%DATADIR%%/sounds/sl/tv_car.ogg %%DATADIR%%/sounds/sl/tv_cyclist.ogg %%DATADIR%%/sounds/sl/tv_train.ogg %%DATADIR%%/sounds/sl/umbrella.ogg %%DATADIR%%/sounds/sr.soundtheme %%DATADIR%%/sounds/sr/brkovi.ogg %%DATADIR%%/sounds/sr/cigara.ogg %%DATADIR%%/sounds/sr/krompirko.ogg %%DATADIR%%/sounds/sr/masna.ogg %%DATADIR%%/sounds/sr/mindjusa.ogg %%DATADIR%%/sounds/sr/naocare.ogg %%DATADIR%%/sounds/sr/naocare_za_sunce.ogg %%DATADIR%%/sounds/sr/nos.ogg %%DATADIR%%/sounds/sr/obrva.ogg %%DATADIR%%/sounds/sr/oko.ogg %%DATADIR%%/sounds/sr/sat.ogg %%DATADIR%%/sounds/sr/sesir.ogg %%DATADIR%%/sounds/sr/usta.ogg %%DATADIR%%/sounds/sr/uvo.ogg %%DATADIR%%/sounds/sr/znacka.ogg +%%DATADIR%%/sounds/sr@ijekavian.soundtheme +%%DATADIR%%/sounds/sr@ijekavian/brkovi.ogg +%%DATADIR%%/sounds/sr@ijekavian/cigara.ogg +%%DATADIR%%/sounds/sr@ijekavian/krompirko.ogg +%%DATADIR%%/sounds/sr@ijekavian/masna.ogg +%%DATADIR%%/sounds/sr@ijekavian/mindjusa.ogg +%%DATADIR%%/sounds/sr@ijekavian/naocare.ogg +%%DATADIR%%/sounds/sr@ijekavian/naocare_za_sunce.ogg +%%DATADIR%%/sounds/sr@ijekavian/nos.ogg +%%DATADIR%%/sounds/sr@ijekavian/obrva.ogg +%%DATADIR%%/sounds/sr@ijekavian/oko.ogg +%%DATADIR%%/sounds/sr@ijekavian/sat.ogg +%%DATADIR%%/sounds/sr@ijekavian/sesir.ogg +%%DATADIR%%/sounds/sr@ijekavian/usta.ogg +%%DATADIR%%/sounds/sr@ijekavian/uvo.ogg +%%DATADIR%%/sounds/sr@ijekavian/znacka.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin.soundtheme +%%DATADIR%%/sounds/sr@ijekavianlatin/brkovi.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/cigara.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/krompirko.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/masna.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/mindjusa.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/naocare.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/naocare_za_sunce.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/nos.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/obrva.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/oko.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/sat.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/sesir.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/usta.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/uvo.ogg +%%DATADIR%%/sounds/sr@ijekavianlatin/znacka.ogg +%%DATADIR%%/sounds/sr@latin.soundtheme +%%DATADIR%%/sounds/sr@latin/brkovi.ogg +%%DATADIR%%/sounds/sr@latin/cigara.ogg +%%DATADIR%%/sounds/sr@latin/krompirko.ogg +%%DATADIR%%/sounds/sr@latin/masna.ogg +%%DATADIR%%/sounds/sr@latin/mindjusa.ogg +%%DATADIR%%/sounds/sr@latin/naocare.ogg +%%DATADIR%%/sounds/sr@latin/naocare_za_sunce.ogg +%%DATADIR%%/sounds/sr@latin/nos.ogg +%%DATADIR%%/sounds/sr@latin/obrva.ogg +%%DATADIR%%/sounds/sr@latin/oko.ogg +%%DATADIR%%/sounds/sr@latin/sat.ogg +%%DATADIR%%/sounds/sr@latin/sesir.ogg +%%DATADIR%%/sounds/sr@latin/usta.ogg +%%DATADIR%%/sounds/sr@latin/uvo.ogg +%%DATADIR%%/sounds/sr@latin/znacka.ogg %%DATADIR%%/sounds/sv.soundtheme %%DATADIR%%/sounds/sv/fluga.wav %%DATADIR%%/sounds/sv/glasogon.wav %%DATADIR%%/sounds/sv/har.wav %%DATADIR%%/sounds/sv/hatt.wav %%DATADIR%%/sounds/sv/mun.wav %%DATADIR%%/sounds/sv/mustasch.wav %%DATADIR%%/sounds/sv/nasa.wav %%DATADIR%%/sounds/sv/oga.wav %%DATADIR%%/sounds/sv/ogonbryn.wav %%DATADIR%%/sounds/sv/ora.wav %%DATADIR%%/sounds/sv/orhange.wav %%DATADIR%%/sounds/sv/rosett.wav %%DATADIR%%/sounds/sv/slips.wav %%DATADIR%%/sounds/sv/solglasogon.wav %%DATADIR%%/sounds/uk.soundtheme %%DATADIR%%/sounds/uk/ball.ogg %%DATADIR%%/sounds/uk/bow.ogg %%DATADIR%%/sounds/uk/butterflies_body.ogg %%DATADIR%%/sounds/uk/butterflies_circle.ogg %%DATADIR%%/sounds/uk/butterflies_circles.ogg %%DATADIR%%/sounds/uk/butterflies_eye.ogg %%DATADIR%%/sounds/uk/butterflies_heart.ogg %%DATADIR%%/sounds/uk/butterflies_purple_shape.ogg %%DATADIR%%/sounds/uk/butterflies_spiral.ogg %%DATADIR%%/sounds/uk/butterflies_wing.ogg %%DATADIR%%/sounds/uk/coat.ogg %%DATADIR%%/sounds/uk/ear.ogg %%DATADIR%%/sounds/uk/earring.ogg %%DATADIR%%/sounds/uk/egypt_arch.ogg %%DATADIR%%/sounds/uk/egypt_birds.ogg %%DATADIR%%/sounds/uk/egypt_boy.ogg %%DATADIR%%/sounds/uk/egypt_bridge.ogg %%DATADIR%%/sounds/uk/egypt_camel.ogg %%DATADIR%%/sounds/uk/egypt_cart.ogg %%DATADIR%%/sounds/uk/egypt_column.ogg %%DATADIR%%/sounds/uk/egypt_donkey.ogg %%DATADIR%%/sounds/uk/egypt_girl.ogg %%DATADIR%%/sounds/uk/egypt_grass.ogg %%DATADIR%%/sounds/uk/egypt_man.ogg %%DATADIR%%/sounds/uk/egypt_oasis.ogg %%DATADIR%%/sounds/uk/egypt_palmtree.ogg %%DATADIR%%/sounds/uk/egypt_pyramid.ogg %%DATADIR%%/sounds/uk/egypt_road.ogg %%DATADIR%%/sounds/uk/egypt_sphynx.ogg %%DATADIR%%/sounds/uk/egypt_well.ogg %%DATADIR%%/sounds/uk/egypt_woman.ogg %%DATADIR%%/sounds/uk/eye.ogg %%DATADIR%%/sounds/uk/eyebrow.ogg %%DATADIR%%/sounds/uk/flower.ogg %%DATADIR%%/sounds/uk/frier-tux.ogg %%DATADIR%%/sounds/uk/guard-tux.ogg %%DATADIR%%/sounds/uk/hair.ogg %%DATADIR%%/sounds/uk/hat.ogg %%DATADIR%%/sounds/uk/kid-tux.ogg %%DATADIR%%/sounds/uk/little-tux.ogg %%DATADIR%%/sounds/uk/maiden-tux.ogg %%DATADIR%%/sounds/uk/moon_alien.ogg %%DATADIR%%/sounds/uk/moon_astronaut.ogg %%DATADIR%%/sounds/uk/moon_earth.ogg %%DATADIR%%/sounds/uk/moon_fallingstar.ogg %%DATADIR%%/sounds/uk/moon_hotel.ogg %%DATADIR%%/sounds/uk/moon_monster.ogg %%DATADIR%%/sounds/uk/moon_moonwalker.ogg %%DATADIR%%/sounds/uk/moon_planet.ogg %%DATADIR%%/sounds/uk/moon_radar.ogg %%DATADIR%%/sounds/uk/moon_rocket.ogg %%DATADIR%%/sounds/uk/moon_satellite.ogg %%DATADIR%%/sounds/uk/moon_sign.ogg %%DATADIR%%/sounds/uk/moon_star.ogg %%DATADIR%%/sounds/uk/moon_ufo.ogg %%DATADIR%%/sounds/uk/moustache.ogg %%DATADIR%%/sounds/uk/mouth.ogg %%DATADIR%%/sounds/uk/nose.ogg %%DATADIR%%/sounds/uk/pizzeria_anchovy.ogg %%DATADIR%%/sounds/uk/pizzeria_bacon.ogg %%DATADIR%%/sounds/uk/pizzeria_brocolli.ogg %%DATADIR%%/sounds/uk/pizzeria_cheese.ogg %%DATADIR%%/sounds/uk/pizzeria_cucumber.ogg %%DATADIR%%/sounds/uk/pizzeria_mushroom.ogg %%DATADIR%%/sounds/uk/pizzeria_olive.ogg %%DATADIR%%/sounds/uk/pizzeria_onion.ogg %%DATADIR%%/sounds/uk/pizzeria_oregano.ogg %%DATADIR%%/sounds/uk/pizzeria_pepper.ogg %%DATADIR%%/sounds/uk/pizzeria_pepperoni.ogg %%DATADIR%%/sounds/uk/pizzeria_pineapple.ogg %%DATADIR%%/sounds/uk/pizzeria_salami.ogg %%DATADIR%%/sounds/uk/pizzeria_tomato.ogg %%DATADIR%%/sounds/uk/prince-tux.ogg %%DATADIR%%/sounds/uk/robin-tux.ogg %%DATADIR%%/sounds/uk/robot_workshop_antenna.ogg %%DATADIR%%/sounds/uk/robot_workshop_arm.ogg %%DATADIR%%/sounds/uk/robot_workshop_ball.ogg %%DATADIR%%/sounds/uk/robot_workshop_base.ogg %%DATADIR%%/sounds/uk/robot_workshop_block.ogg %%DATADIR%%/sounds/uk/robot_workshop_body.ogg %%DATADIR%%/sounds/uk/robot_workshop_claw.ogg %%DATADIR%%/sounds/uk/robot_workshop_eye.ogg %%DATADIR%%/sounds/uk/robot_workshop_foot.ogg %%DATADIR%%/sounds/uk/robot_workshop_hand.ogg %%DATADIR%%/sounds/uk/robot_workshop_head.ogg %%DATADIR%%/sounds/uk/robot_workshop_panel.ogg %%DATADIR%%/sounds/uk/robot_workshop_rocket.ogg %%DATADIR%%/sounds/uk/robot_workshop_rod.ogg %%DATADIR%%/sounds/uk/robot_workshop_wheel.ogg %%DATADIR%%/sounds/uk/sherif-tux.ogg %%DATADIR%%/sounds/uk/shoe.ogg %%DATADIR%%/sounds/uk/shorts.ogg %%DATADIR%%/sounds/uk/skirt.ogg %%DATADIR%%/sounds/uk/spectacles.ogg %%DATADIR%%/sounds/uk/stick.ogg %%DATADIR%%/sounds/uk/sunglasses.ogg %%DATADIR%%/sounds/uk/tie.ogg %%DATADIR%%/sounds/uk/train_valley.theme.ogg %%DATADIR%%/sounds/uk/tux-angry.ogg %%DATADIR%%/sounds/uk/tux-apple.ogg %%DATADIR%%/sounds/uk/tux-arrow.ogg %%DATADIR%%/sounds/uk/tux-arrows.ogg %%DATADIR%%/sounds/uk/tux-bow.ogg %%DATADIR%%/sounds/uk/tux-bullseye.ogg %%DATADIR%%/sounds/uk/tux-candles.ogg %%DATADIR%%/sounds/uk/tux-dowe.ogg %%DATADIR%%/sounds/uk/tux-fish.ogg %%DATADIR%%/sounds/uk/tux-flask.ogg %%DATADIR%%/sounds/uk/tux-fly.ogg %%DATADIR%%/sounds/uk/tux-goblet.ogg %%DATADIR%%/sounds/uk/tux-guitar.ogg %%DATADIR%%/sounds/uk/tux-huh.ogg %%DATADIR%%/sounds/uk/tux-idea.ogg %%DATADIR%%/sounds/uk/tux-key.ogg %%DATADIR%%/sounds/uk/tux-laugh.ogg %%DATADIR%%/sounds/uk/tux-letter.ogg %%DATADIR%%/sounds/uk/tux-love.ogg %%DATADIR%%/sounds/uk/tux-note.ogg %%DATADIR%%/sounds/uk/tux-notes.ogg %%DATADIR%%/sounds/uk/tux-plate.ogg %%DATADIR%%/sounds/uk/tux-poison.ogg %%DATADIR%%/sounds/uk/tux-shoot.ogg %%DATADIR%%/sounds/uk/tux-sick.ogg %%DATADIR%%/sounds/uk/tux-stare.ogg %%DATADIR%%/sounds/uk/tux-teacup.ogg %%DATADIR%%/sounds/uk/tux-vase.ogg %%DATADIR%%/sounds/uk/tux-wanted.ogg %%DATADIR%%/sounds/uk/tux-what.ogg %%DATADIR%%/sounds/uk/tux-wow.ogg %%DATADIR%%/sounds/uk/tux-zzz.ogg %%DATADIR%%/sounds/uk/tv_accident.ogg %%DATADIR%%/sounds/uk/tv_ball.ogg %%DATADIR%%/sounds/uk/tv_barrier.ogg %%DATADIR%%/sounds/uk/tv_bicycle.ogg %%DATADIR%%/sounds/uk/tv_breakdown_lorry.ogg %%DATADIR%%/sounds/uk/tv_car.ogg %%DATADIR%%/sounds/uk/tv_caravan.ogg %%DATADIR%%/sounds/uk/tv_cyclist.ogg %%DATADIR%%/sounds/uk/tv_elephant.ogg %%DATADIR%%/sounds/uk/tv_excavator.ogg %%DATADIR%%/sounds/uk/tv_fence.ogg %%DATADIR%%/sounds/uk/tv_fire.ogg %%DATADIR%%/sounds/uk/tv_fireengine.ogg %%DATADIR%%/sounds/uk/tv_fireman.ogg %%DATADIR%%/sounds/uk/tv_fisherman.ogg %%DATADIR%%/sounds/uk/tv_giraffe.ogg %%DATADIR%%/sounds/uk/tv_guitar.ogg %%DATADIR%%/sounds/uk/tv_guitarist.ogg %%DATADIR%%/sounds/uk/tv_house.ogg %%DATADIR%%/sounds/uk/tv_ladder.ogg %%DATADIR%%/sounds/uk/tv_lion.ogg %%DATADIR%%/sounds/uk/tv_lorry.ogg %%DATADIR%%/sounds/uk/tv_lorry_tractor.ogg %%DATADIR%%/sounds/uk/tv_man.ogg %%DATADIR%%/sounds/uk/tv_mechanic.ogg %%DATADIR%%/sounds/uk/tv_monkey.ogg %%DATADIR%%/sounds/uk/tv_path.ogg %%DATADIR%%/sounds/uk/tv_rock.ogg %%DATADIR%%/sounds/uk/tv_school.ogg %%DATADIR%%/sounds/uk/tv_shop.ogg %%DATADIR%%/sounds/uk/tv_smoke.ogg %%DATADIR%%/sounds/uk/tv_tipper.ogg %%DATADIR%%/sounds/uk/tv_trailer.ogg %%DATADIR%%/sounds/uk/tv_train.ogg %%DATADIR%%/sounds/uk/tv_tree.ogg %%DATADIR%%/sounds/uk/tv_tunnel.ogg %%DATADIR%%/sounds/uk/tv_volley_net.ogg %%DATADIR%%/sounds/uk/tv_wagon.ogg %%DATADIR%%/sounds/uk/tv_woman.ogg %%DATADIR%%/sounds/uk/umbrella.ogg %%DATADIR%%/sounds/uk/whitch-tux.ogg %%DATADIR%%/sounds/uk/xmas_angel.ogg %%DATADIR%%/sounds/uk/xmas_ball.ogg %%DATADIR%%/sounds/uk/xmas_boot.ogg %%DATADIR%%/sounds/uk/xmas_candle.ogg %%DATADIR%%/sounds/uk/xmas_comet.ogg %%DATADIR%%/sounds/uk/xmas_garland.ogg %%DATADIR%%/sounds/uk/xmas_lights.ogg %%DATADIR%%/sounds/uk/xmas_mistletoe.ogg %%DATADIR%%/sounds/uk/xmas_moon.ogg %%DATADIR%%/sounds/uk/xmas_owl.ogg %%DATADIR%%/sounds/uk/xmas_present.ogg %%DATADIR%%/sounds/uk/xmas_rabbit.ogg %%DATADIR%%/sounds/uk/xmas_reindeer.ogg %%DATADIR%%/sounds/uk/xmas_shoe.ogg %%DATADIR%%/sounds/uk/xmas_snowflake.ogg %%DATADIR%%/sounds/uk/xmas_snowman.ogg %%DATADIR%%/sounds/uk/xmas_star.ogg %%DATADIR%%/sounds/uk/xmas_tree.ogg %%DATADIR%%/sounds/uk/xmas_turtle.ogg %%DATADIR%%/sounds/uk/xmas_tux.ogg %%DATADIR%%/sounds/wa.soundtheme %%DATADIR%%/sounds/wa/bale.ogg %%DATADIR%%/sounds/wa/berikes-di-solea.ogg %%DATADIR%%/sounds/wa/berikes.ogg %%DATADIR%%/sounds/wa/boke.ogg %%DATADIR%%/sounds/wa/cane.ogg %%DATADIR%%/sounds/wa/chote.ogg %%DATADIR%%/sounds/wa/cigare.ogg %%DATADIR%%/sounds/wa/crawate.ogg %%DATADIR%%/sounds/wa/djupe.ogg %%DATADIR%%/sounds/wa/egypt_atche.ogg %%DATADIR%%/sounds/wa/egypt_badet.ogg %%DATADIR%%/sounds/wa/egypt_bashele.ogg %%DATADIR%%/sounds/wa/egypt_colone.ogg %%DATADIR%%/sounds/wa/egypt_comere.ogg %%DATADIR%%/sounds/wa/egypt_mouxhons.ogg %%DATADIR%%/sounds/wa/egypt_ome.ogg %%DATADIR%%/sounds/wa/egypt_owazisse.ogg %%DATADIR%%/sounds/wa/egypt_palmi.ogg %%DATADIR%%/sounds/wa/egypt_piramide.ogg %%DATADIR%%/sounds/wa/egypt_pont.ogg %%DATADIR%%/sounds/wa/egypt_pousse.ogg %%DATADIR%%/sounds/wa/egypt_sfink.ogg %%DATADIR%%/sounds/wa/egypt_tchamo.ogg %%DATADIR%%/sounds/wa/egypt_tchar.ogg %%DATADIR%%/sounds/wa/egypt_valet.ogg %%DATADIR%%/sounds/wa/egypt_voye.ogg %%DATADIR%%/sounds/wa/egypt_yebe.ogg %%DATADIR%%/sounds/wa/fleur.ogg %%DATADIR%%/sounds/wa/flo.ogg %%DATADIR%%/sounds/wa/medaye.ogg %%DATADIR%%/sounds/wa/monte.ogg %%DATADIR%%/sounds/wa/moon_astronote.ogg %%DATADIR%%/sounds/wa/moon_daegne.ogg %%DATADIR%%/sounds/wa/moon_fuzeye.ogg %%DATADIR%%/sounds/wa/moon_marsyin.ogg %%DATADIR%%/sounds/wa/moon_monsse.ogg %%DATADIR%%/sounds/wa/moon_otel.ogg %%DATADIR%%/sounds/wa/moon_panea.ogg %%DATADIR%%/sounds/wa/moon_planete.ogg %%DATADIR%%/sounds/wa/moon_radar.ogg %%DATADIR%%/sounds/wa/moon_schitante-sitoele.ogg %%DATADIR%%/sounds/wa/moon_sitoele.ogg %%DATADIR%%/sounds/wa/moon_spoutnik.ogg %%DATADIR%%/sounds/wa/moon_stoele.ogg %%DATADIR%%/sounds/wa/moon_volante-soucoupe.ogg %%DATADIR%%/sounds/wa/moon_vweteure-di-leune.ogg %%DATADIR%%/sounds/wa/mostatche.ogg %%DATADIR%%/sounds/wa/mousmint.ogg %%DATADIR%%/sounds/wa/nez.ogg %%DATADIR%%/sounds/wa/oraye.ogg %%DATADIR%%/sounds/wa/ouy.ogg %%DATADIR%%/sounds/wa/paraplu.ogg %%DATADIR%%/sounds/wa/pindant.ogg %%DATADIR%%/sounds/wa/pizzeria_abusson.ogg %%DATADIR%%/sounds/wa/pizzeria_agnon.ogg %%DATADIR%%/sounds/wa/pizzeria_ananasse.ogg %%DATADIR%%/sounds/wa/pizzeria_antchwes.ogg %%DATADIR%%/sounds/wa/pizzeria_brocoli.ogg %%DATADIR%%/sounds/wa/pizzeria_concombe.ogg %%DATADIR%%/sounds/wa/pizzeria_froumaedje.ogg %%DATADIR%%/sounds/wa/pizzeria_lard.ogg %%DATADIR%%/sounds/wa/pizzeria_mariolinne.ogg %%DATADIR%%/sounds/wa/pizzeria_olive.ogg %%DATADIR%%/sounds/wa/pizzeria_pimint.ogg %%DATADIR%%/sounds/wa/pizzeria_pwevron.ogg %%DATADIR%%/sounds/wa/pizzeria_salami.ogg %%DATADIR%%/sounds/wa/pizzeria_tomate.ogg %%DATADIR%%/sounds/wa/sofri.ogg %%DATADIR%%/sounds/wa/tchapea.ogg %%DATADIR%%/sounds/wa/tchasseure.ogg %%DATADIR%%/sounds/wa/tchivea.ogg %%DATADIR%%/sounds/wa/tv_ciclisse.ogg %%DATADIR%%/sounds/wa/tv_trin.ogg %%DATADIR%%/sounds/wa/tv_velo.ogg %%DATADIR%%/sounds/wa/tv_vweteure.ogg -share/kxmlgui5/ktuberling/ktuberlingui.rc +share/locale/af/LC_MESSAGES/ktuberling.mo share/locale/ar/LC_MESSAGES/ktuberling.mo share/locale/be/LC_MESSAGES/ktuberling.mo share/locale/bg/LC_MESSAGES/ktuberling.mo +share/locale/br/LC_MESSAGES/ktuberling.mo share/locale/bs/LC_MESSAGES/ktuberling.mo share/locale/ca/LC_MESSAGES/ktuberling.mo share/locale/ca@valencia/LC_MESSAGES/ktuberling.mo share/locale/cs/LC_MESSAGES/ktuberling.mo +share/locale/csb/LC_MESSAGES/ktuberling.mo +share/locale/cy/LC_MESSAGES/ktuberling.mo share/locale/da/LC_MESSAGES/ktuberling.mo share/locale/de/LC_MESSAGES/ktuberling.mo share/locale/el/LC_MESSAGES/ktuberling.mo share/locale/en_GB/LC_MESSAGES/ktuberling.mo share/locale/eo/LC_MESSAGES/ktuberling.mo share/locale/es/LC_MESSAGES/ktuberling.mo share/locale/et/LC_MESSAGES/ktuberling.mo share/locale/eu/LC_MESSAGES/ktuberling.mo share/locale/fa/LC_MESSAGES/ktuberling.mo share/locale/fi/LC_MESSAGES/ktuberling.mo share/locale/fr/LC_MESSAGES/ktuberling.mo share/locale/ga/LC_MESSAGES/ktuberling.mo share/locale/gl/LC_MESSAGES/ktuberling.mo share/locale/he/LC_MESSAGES/ktuberling.mo share/locale/hi/LC_MESSAGES/ktuberling.mo +share/locale/hne/LC_MESSAGES/ktuberling.mo share/locale/hr/LC_MESSAGES/ktuberling.mo share/locale/hu/LC_MESSAGES/ktuberling.mo share/locale/id/LC_MESSAGES/ktuberling.mo share/locale/is/LC_MESSAGES/ktuberling.mo share/locale/it/LC_MESSAGES/ktuberling.mo share/locale/ja/LC_MESSAGES/ktuberling.mo +share/locale/ka/LC_MESSAGES/ktuberling.mo share/locale/kk/LC_MESSAGES/ktuberling.mo share/locale/km/LC_MESSAGES/ktuberling.mo share/locale/ko/LC_MESSAGES/ktuberling.mo share/locale/lt/LC_MESSAGES/ktuberling.mo share/locale/lv/LC_MESSAGES/ktuberling.mo +share/locale/mai/LC_MESSAGES/ktuberling.mo +share/locale/mk/LC_MESSAGES/ktuberling.mo share/locale/ml/LC_MESSAGES/ktuberling.mo share/locale/mr/LC_MESSAGES/ktuberling.mo share/locale/nb/LC_MESSAGES/ktuberling.mo share/locale/nds/LC_MESSAGES/ktuberling.mo +share/locale/ne/LC_MESSAGES/ktuberling.mo share/locale/nl/LC_MESSAGES/ktuberling.mo share/locale/nn/LC_MESSAGES/ktuberling.mo +share/locale/oc/LC_MESSAGES/ktuberling.mo share/locale/pa/LC_MESSAGES/ktuberling.mo share/locale/pl/LC_MESSAGES/ktuberling.mo share/locale/pt/LC_MESSAGES/ktuberling.mo share/locale/pt_BR/LC_MESSAGES/ktuberling.mo share/locale/ro/LC_MESSAGES/ktuberling.mo share/locale/ru/LC_MESSAGES/ktuberling.mo share/locale/se/LC_MESSAGES/ktuberling.mo share/locale/sk/LC_MESSAGES/ktuberling.mo share/locale/sl/LC_MESSAGES/ktuberling.mo share/locale/sq/LC_MESSAGES/ktuberling.mo share/locale/sr/LC_MESSAGES/ktuberling.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktuberling.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktuberling.mo +share/locale/sr@latin/LC_MESSAGES/ktuberling.mo share/locale/sv/LC_MESSAGES/ktuberling.mo share/locale/ta/LC_MESSAGES/ktuberling.mo share/locale/tg/LC_MESSAGES/ktuberling.mo share/locale/tr/LC_MESSAGES/ktuberling.mo share/locale/ug/LC_MESSAGES/ktuberling.mo share/locale/uk/LC_MESSAGES/ktuberling.mo share/locale/wa/LC_MESSAGES/ktuberling.mo +share/locale/xh/LC_MESSAGES/ktuberling.mo share/locale/zh_CN/LC_MESSAGES/ktuberling.mo share/locale/zh_TW/LC_MESSAGES/ktuberling.mo share/metainfo/org.kde.ktuberling.appdata.xml share/qlogging-categories5/ktuberling.categories diff --git a/games/kubrick/distinfo b/games/kubrick/distinfo index f7d866bb1802..b9468a245a3e 100644 --- a/games/kubrick/distinfo +++ b/games/kubrick/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539500 -SHA256 (KDE/release-service/22.08.3/kubrick-22.08.3.tar.xz) = 47e8e9e85e92b99a216f65ddc294addbf1bdf540301f10dfd3c8cd44964e721f -SIZE (KDE/release-service/22.08.3/kubrick-22.08.3.tar.xz) = 341620 +TIMESTAMP = 1670513114 +SHA256 (KDE/release-service/22.12.0/kubrick-22.12.0.tar.xz) = 26e6b36decf8b38c26a64cfc6c49dbad3352c1a5315088da9230b6749aef6df5 +SIZE (KDE/release-service/22.12.0/kubrick-22.12.0.tar.xz) = 347144 diff --git a/games/kubrick/pkg-plist b/games/kubrick/pkg-plist index 2ada700e4373..90dc86821da2 100644 --- a/games/kubrick/pkg-plist +++ b/games/kubrick/pkg-plist @@ -1,83 +1,87 @@ bin/kubrick share/applications/org.kde.kubrick.desktop +share/icons/hicolor/128x128/apps/kubrick.png share/icons/hicolor/16x16/apps/kubrick.png share/icons/hicolor/22x22/apps/kubrick.png share/icons/hicolor/32x32/apps/kubrick.png share/icons/hicolor/48x48/apps/kubrick.png share/icons/hicolor/64x64/apps/kubrick.png -share/icons/hicolor/128x128/apps/kubrick.png %%DATADIR%%/m333CTwirl2.kbk %%DATADIR%%/m333Complete.kbk %%DATADIR%%/m333E2prX.kbk %%DATADIR%%/m333EFlip2.kbk %%DATADIR%%/m333LLCornerPos.kbk %%DATADIR%%/m333LLCornerRot.kbk %%DATADIR%%/m333LLEdgeFlip.kbk %%DATADIR%%/m333LLEdgePos.kbk %%DATADIR%%/m333Layer1.kbk %%DATADIR%%/m333MEdge1.kbk %%DATADIR%%/m333MEdge2.kbk %%DATADIR%%/p333Bar4.kbk %%DATADIR%%/p333DoubleCube.kbk %%DATADIR%%/p333Plus4.kbk %%DATADIR%%/p333Snake.kbk %%DATADIR%%/p333Spot4.kbk %%DATADIR%%/p333Spot6.kbk %%DATADIR%%/p333Tricolor6.kbk %%DATADIR%%/p333U4.kbk %%DATADIR%%/p333U6.kbk %%DATADIR%%/p333Worm.kbk %%DATADIR%%/p333X2.kbk %%DATADIR%%/p333X6.kbk %%DATADIR%%/themes/default.svgz -share/kxmlgui5/kubrick/kubrickui.rc share/locale/bg/LC_MESSAGES/kubrick.mo share/locale/bs/LC_MESSAGES/kubrick.mo share/locale/ca/LC_MESSAGES/kubrick.mo share/locale/ca@valencia/LC_MESSAGES/kubrick.mo share/locale/cs/LC_MESSAGES/kubrick.mo share/locale/da/LC_MESSAGES/kubrick.mo share/locale/de/LC_MESSAGES/kubrick.mo share/locale/el/LC_MESSAGES/kubrick.mo share/locale/en_GB/LC_MESSAGES/kubrick.mo share/locale/eo/LC_MESSAGES/kubrick.mo share/locale/es/LC_MESSAGES/kubrick.mo share/locale/et/LC_MESSAGES/kubrick.mo share/locale/eu/LC_MESSAGES/kubrick.mo share/locale/fi/LC_MESSAGES/kubrick.mo share/locale/fr/LC_MESSAGES/kubrick.mo share/locale/ga/LC_MESSAGES/kubrick.mo share/locale/gl/LC_MESSAGES/kubrick.mo share/locale/hr/LC_MESSAGES/kubrick.mo share/locale/hu/LC_MESSAGES/kubrick.mo share/locale/id/LC_MESSAGES/kubrick.mo share/locale/is/LC_MESSAGES/kubrick.mo share/locale/it/LC_MESSAGES/kubrick.mo share/locale/ja/LC_MESSAGES/kubrick.mo +share/locale/ka/LC_MESSAGES/kubrick.mo share/locale/kk/LC_MESSAGES/kubrick.mo share/locale/km/LC_MESSAGES/kubrick.mo share/locale/ko/LC_MESSAGES/kubrick.mo share/locale/lt/LC_MESSAGES/kubrick.mo share/locale/lv/LC_MESSAGES/kubrick.mo +share/locale/mai/LC_MESSAGES/kubrick.mo share/locale/ml/LC_MESSAGES/kubrick.mo share/locale/mr/LC_MESSAGES/kubrick.mo share/locale/nb/LC_MESSAGES/kubrick.mo share/locale/nds/LC_MESSAGES/kubrick.mo share/locale/nl/LC_MESSAGES/kubrick.mo share/locale/nn/LC_MESSAGES/kubrick.mo share/locale/pl/LC_MESSAGES/kubrick.mo share/locale/pt/LC_MESSAGES/kubrick.mo share/locale/pt_BR/LC_MESSAGES/kubrick.mo share/locale/ro/LC_MESSAGES/kubrick.mo share/locale/ru/LC_MESSAGES/kubrick.mo share/locale/sk/LC_MESSAGES/kubrick.mo share/locale/sl/LC_MESSAGES/kubrick.mo share/locale/sr/LC_MESSAGES/kubrick.mo +share/locale/sr@ijekavian/LC_MESSAGES/kubrick.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kubrick.mo +share/locale/sr@latin/LC_MESSAGES/kubrick.mo share/locale/sv/LC_MESSAGES/kubrick.mo share/locale/tr/LC_MESSAGES/kubrick.mo share/locale/ug/LC_MESSAGES/kubrick.mo share/locale/uk/LC_MESSAGES/kubrick.mo share/locale/zh_CN/LC_MESSAGES/kubrick.mo share/locale/zh_TW/LC_MESSAGES/kubrick.mo share/metainfo/org.kde.kubrick.appdata.xml share/qlogging-categories5/kubrick.categories diff --git a/games/libkdegames/distinfo b/games/libkdegames/distinfo index 249a2af52a61..44253fb3a2a8 100644 --- a/games/libkdegames/distinfo +++ b/games/libkdegames/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539551 -SHA256 (KDE/release-service/22.08.3/libkdegames-22.08.3.tar.xz) = 4ccf4d5d5530f464d901ece7ea55299d9fb6c2349e824f92e0aa1f8e1732a097 -SIZE (KDE/release-service/22.08.3/libkdegames-22.08.3.tar.xz) = 5985052 +TIMESTAMP = 1670513178 +SHA256 (KDE/release-service/22.12.0/libkdegames-22.12.0.tar.xz) = 9de4123c3c7fdf9e5be8daae8c2991a5ff57cc20b4df04028389215835a4b39c +SIZE (KDE/release-service/22.12.0/libkdegames-22.12.0.tar.xz) = 6024132 diff --git a/games/libkdegames/pkg-plist b/games/libkdegames/pkg-plist index c4833c2ac3fb..f1fd8d36fb75 100644 --- a/games/libkdegames/pkg-plist +++ b/games/libkdegames/pkg-plist @@ -1,188 +1,205 @@ -include/KF5/KF5KDEGames/KGameClock -include/KF5/KF5KDEGames/KGamePopupItem -include/KF5/KF5KDEGames/KGameRenderedItem -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/KgDifficultyLevel -include/KF5/KF5KDEGames/KgSound -include/KF5/KF5KDEGames/KgTheme -include/KF5/KF5KDEGames/KgThemeProvider -include/KF5/KF5KDEGames/KgThemeSelector -include/KF5/KF5KDEGames/highscore/khighscore.h -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 +include/KF5/KDEGames/KGameClock +include/KF5/KDEGames/KGamePopupItem +include/KF5/KDEGames/KGameRenderedItem +include/KF5/KDEGames/KGameRenderedObjectItem +include/KF5/KDEGames/KGameRenderer +include/KF5/KDEGames/KGameRendererClient +include/KF5/KDEGames/KHighscore +include/KF5/KDEGames/KScoreDialog +include/KF5/KDEGames/KStandardGameAction +include/KF5/KDEGames/KgAudioScene +include/KF5/KDEGames/KgDeclarativeView +include/KF5/KDEGames/KgDifficulty +include/KF5/KDEGames/KgDifficultyLevel +include/KF5/KDEGames/KgSound +include/KF5/KDEGames/KgTheme +include/KF5/KDEGames/KgThemeProvider +include/KF5/KDEGames/KgThemeSelector +include/KF5/KDEGames/highscore/khighscore.h +include/KF5/KDEGames/highscore/kscoredialog.h +include/KF5/KDEGames/kdegames_version.h +include/KF5/KDEGames/kgameclock.h +include/KF5/KDEGames/kgamepopupitem.h +include/KF5/KDEGames/kgamerendereditem.h +include/KF5/KDEGames/kgamerenderedobjectitem.h +include/KF5/KDEGames/kgamerenderer.h +include/KF5/KDEGames/kgamerendererclient.h +include/KF5/KDEGames/kgaudioscene.h +include/KF5/KDEGames/kgdeclarativeview.h +include/KF5/KDEGames/kgdifficulty.h +include/KF5/KDEGames/kgsound.h +include/KF5/KDEGames/kgtheme.h +include/KF5/KDEGames/kgthemeprovider.h +include/KF5/KDEGames/kgthemeselector.h +include/KF5/KDEGames/kstandardgameaction.h +include/KF5/KDEGames/libkdegames_capabilities.h +include/KF5/KDEGames/libkdegames_export.h +include/KF5/KDEGames/libkdegamesprivate/kchatbase.h +include/KF5/KDEGames/libkdegamesprivate/kchatbaseitemdelegate.h +include/KF5/KDEGames/libkdegamesprivate/kchatbasemodel.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgame.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgamechat.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgameerror.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgameio.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgamemessage.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgamenetwork.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgameproperty.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgamepropertyhandler.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgamesequence.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kgameversion.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kmessageclient.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kmessageio.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kmessageserver.h +include/KF5/KDEGames/libkdegamesprivate/kgame/kplayer.h +include/KF5/KDEGames/libkdegamesprivate/kgamecanvas.h +include/KF5/KDEGames/libkdegamesprivate/kgamedifficulty.h +include/KF5/KDEGames/libkdegamesprivate/kgamesvgdocument.h +include/KF5/KDEGames/libkdegamesprivate/kgametheme.h +include/KF5/KDEGames/libkdegamesprivate/kgamethemeselector.h +include/KF5/KDEGames/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%%.4.0 +lib/libKF5KDEGames.so.%%SHLIB_SHVER%%.5.0 lib/libKF5KDEGamesPrivate.so lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%% -lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%%.4.0 +lib/libKF5KDEGamesPrivate.so.%%SHLIB_SHVER%%.5.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/af/LC_MESSAGES/libkdegames5.mo share/locale/ar/LC_MESSAGES/libkdegames5.mo share/locale/be/LC_MESSAGES/libkdegames5.mo share/locale/bg/LC_MESSAGES/libkdegames5.mo +share/locale/bn/LC_MESSAGES/libkdegames5.mo +share/locale/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/libkdegames5.mo share/locale/lt/LC_MESSAGES/libkdegames5.mo share/locale/lv/LC_MESSAGES/libkdegames5.mo +share/locale/mai/LC_MESSAGES/libkdegames5.mo +share/locale/mk/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/ne/LC_MESSAGES/libkdegames5.mo share/locale/nl/LC_MESSAGES/libkdegames5.mo share/locale/nn/LC_MESSAGES/libkdegames5.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/libkdegames5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkdegames5.mo +share/locale/sr@latin/LC_MESSAGES/libkdegames5.mo share/locale/sv/LC_MESSAGES/libkdegames5.mo share/locale/ta/LC_MESSAGES/libkdegames5.mo +share/locale/te/LC_MESSAGES/libkdegames5.mo share/locale/tg/LC_MESSAGES/libkdegames5.mo +share/locale/th/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/xh/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 762b8a4d617f..35e368fa4963 100644 --- a/games/libkmahjongg/distinfo +++ b/games/libkmahjongg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539524 -SHA256 (KDE/release-service/22.08.3/libkmahjongg-22.08.3.tar.xz) = 1ee48f0ebf2deb9f431bd2fb50984ded3085a5fc94aa43ce860ae446ad624b6c -SIZE (KDE/release-service/22.08.3/libkmahjongg-22.08.3.tar.xz) = 1685908 +TIMESTAMP = 1670513143 +SHA256 (KDE/release-service/22.12.0/libkmahjongg-22.12.0.tar.xz) = ce8411febf1aa8ab9f85b86b0f984ed4f621ca70d20f6f1b27fd25442db9bc4c +SIZE (KDE/release-service/22.12.0/libkmahjongg-22.12.0.tar.xz) = 1687396 diff --git a/games/libkmahjongg/pkg-plist b/games/libkmahjongg/pkg-plist index b30480d0e151..a8f17e4666cd 100644 --- a/games/libkmahjongg/pkg-plist +++ b/games/libkmahjongg/pkg-plist @@ -1,104 +1,114 @@ include/KF5/KMahjongg/KMahjonggBackground include/KF5/KMahjongg/KMahjonggConfigDialog include/KF5/KMahjongg/KMahjonggTileset include/KF5/KMahjongg/kmahjonggbackground.h include/KF5/KMahjongg/kmahjonggconfigdialog.h include/KF5/KMahjongg/kmahjongglib_version.h include/KF5/KMahjongg/kmahjonggtileset.h include/KF5/KMahjongg/libkmahjongg_export.h lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5KMahjongglib/KF5KMahjonggTargets.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfig.cmake lib/cmake/KF5KMahjongglib/KF5KMahjongglibConfigVersion.cmake lib/libKF5KMahjongglib.so lib/libKF5KMahjongglib.so.5 lib/libKF5KMahjongglib.so.5.1.0 share/kmahjongglib/backgrounds/chinese_landscape.copyright share/kmahjongglib/backgrounds/chinese_landscape.desktop share/kmahjongglib/backgrounds/chinese_landscape.svgz share/kmahjongglib/backgrounds/color_plain.desktop share/kmahjongglib/backgrounds/default.copyright share/kmahjongglib/backgrounds/default.desktop share/kmahjongglib/backgrounds/default.svgz share/kmahjongglib/backgrounds/egyptian.copyright share/kmahjongglib/backgrounds/egyptian.desktop share/kmahjongglib/backgrounds/egyptian.svgz share/kmahjongglib/backgrounds/summerfield.copyright share/kmahjongglib/backgrounds/summerfield.desktop share/kmahjongglib/backgrounds/summerfield.svgz share/kmahjongglib/backgrounds/wood_light.copyright share/kmahjongglib/backgrounds/wood_light.desktop share/kmahjongglib/backgrounds/wood_light.svgz share/kmahjongglib/tilesets/alphabet.copyright share/kmahjongglib/tilesets/alphabet.desktop share/kmahjongglib/tilesets/alphabet.svgz share/kmahjongglib/tilesets/classic.copyright share/kmahjongglib/tilesets/classic.desktop share/kmahjongglib/tilesets/classic.svgz share/kmahjongglib/tilesets/default.copyright share/kmahjongglib/tilesets/default.desktop share/kmahjongglib/tilesets/default.svgz share/kmahjongglib/tilesets/egypt.copyright share/kmahjongglib/tilesets/egypt.desktop share/kmahjongglib/tilesets/egypt.svgz share/kmahjongglib/tilesets/jade.copyright share/kmahjongglib/tilesets/jade.desktop share/kmahjongglib/tilesets/jade.svgz share/kmahjongglib/tilesets/traditional.copyright share/kmahjongglib/tilesets/traditional.desktop share/kmahjongglib/tilesets/traditional.svgz share/locale/ar/LC_MESSAGES/libkmahjongg5.mo share/locale/be/LC_MESSAGES/libkmahjongg5.mo share/locale/bg/LC_MESSAGES/libkmahjongg5.mo share/locale/bs/LC_MESSAGES/libkmahjongg5.mo share/locale/ca/LC_MESSAGES/libkmahjongg5.mo share/locale/ca@valencia/LC_MESSAGES/libkmahjongg5.mo share/locale/cs/LC_MESSAGES/libkmahjongg5.mo +share/locale/csb/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/gu/LC_MESSAGES/libkmahjongg5.mo share/locale/hi/LC_MESSAGES/libkmahjongg5.mo +share/locale/hne/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/ka/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/mai/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/oc/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/sr@ijekavian/LC_MESSAGES/libkmahjongg5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkmahjongg5.mo +share/locale/sr@latin/LC_MESSAGES/libkmahjongg5.mo share/locale/sv/LC_MESSAGES/libkmahjongg5.mo +share/locale/th/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 94631f0c6e01..174c700c1e60 100644 --- a/games/lskat/distinfo +++ b/games/lskat/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539520 -SHA256 (KDE/release-service/22.08.3/lskat-22.08.3.tar.xz) = d627b23ad3c6416ef34525b6214b3193cbf0b18edb1a12dce90d7e0c4f27671c -SIZE (KDE/release-service/22.08.3/lskat-22.08.3.tar.xz) = 1235760 +TIMESTAMP = 1670513139 +SHA256 (KDE/release-service/22.12.0/lskat-22.12.0.tar.xz) = e45cfd88cff4fdf4de36a2e11e5721652e24f84dc596bfaf2e9d2ac2ef139158 +SIZE (KDE/release-service/22.12.0/lskat-22.12.0.tar.xz) = 1248844 diff --git a/games/lskat/pkg-plist b/games/lskat/pkg-plist index aaf34bc1b150..33ffcc8e3389 100644 --- a/games/lskat/pkg-plist +++ b/games/lskat/pkg-plist @@ -1,77 +1,91 @@ bin/lskat share/applications/org.kde.lskat.desktop +share/icons/hicolor/128x128/apps/lskat.png share/icons/hicolor/16x16/apps/lskat.png share/icons/hicolor/22x22/apps/lskat.png share/icons/hicolor/32x32/apps/lskat.png share/icons/hicolor/48x48/apps/lskat.png share/icons/hicolor/64x64/apps/lskat.png -share/icons/hicolor/128x128/apps/lskat.png +share/locale/af/LC_MESSAGES/lskat.mo share/locale/ar/LC_MESSAGES/lskat.mo share/locale/be/LC_MESSAGES/lskat.mo share/locale/bg/LC_MESSAGES/lskat.mo +share/locale/br/LC_MESSAGES/lskat.mo share/locale/bs/LC_MESSAGES/lskat.mo share/locale/ca/LC_MESSAGES/lskat.mo share/locale/ca@valencia/LC_MESSAGES/lskat.mo share/locale/cs/LC_MESSAGES/lskat.mo +share/locale/cy/LC_MESSAGES/lskat.mo share/locale/da/LC_MESSAGES/lskat.mo share/locale/de/LC_MESSAGES/lskat.mo share/locale/el/LC_MESSAGES/lskat.mo share/locale/en_GB/LC_MESSAGES/lskat.mo share/locale/eo/LC_MESSAGES/lskat.mo share/locale/es/LC_MESSAGES/lskat.mo share/locale/et/LC_MESSAGES/lskat.mo share/locale/eu/LC_MESSAGES/lskat.mo share/locale/fa/LC_MESSAGES/lskat.mo share/locale/fi/LC_MESSAGES/lskat.mo share/locale/fr/LC_MESSAGES/lskat.mo share/locale/ga/LC_MESSAGES/lskat.mo share/locale/gl/LC_MESSAGES/lskat.mo share/locale/he/LC_MESSAGES/lskat.mo share/locale/hi/LC_MESSAGES/lskat.mo +share/locale/hne/LC_MESSAGES/lskat.mo share/locale/hr/LC_MESSAGES/lskat.mo share/locale/hu/LC_MESSAGES/lskat.mo share/locale/id/LC_MESSAGES/lskat.mo share/locale/is/LC_MESSAGES/lskat.mo share/locale/it/LC_MESSAGES/lskat.mo share/locale/ja/LC_MESSAGES/lskat.mo +share/locale/ka/LC_MESSAGES/lskat.mo share/locale/kk/LC_MESSAGES/lskat.mo share/locale/km/LC_MESSAGES/lskat.mo share/locale/ko/LC_MESSAGES/lskat.mo share/locale/lt/LC_MESSAGES/lskat.mo share/locale/lv/LC_MESSAGES/lskat.mo +share/locale/mai/LC_MESSAGES/lskat.mo +share/locale/mk/LC_MESSAGES/lskat.mo share/locale/ml/LC_MESSAGES/lskat.mo share/locale/mr/LC_MESSAGES/lskat.mo +share/locale/ms/LC_MESSAGES/lskat.mo share/locale/nb/LC_MESSAGES/lskat.mo share/locale/nds/LC_MESSAGES/lskat.mo +share/locale/ne/LC_MESSAGES/lskat.mo share/locale/nl/LC_MESSAGES/lskat.mo share/locale/nn/LC_MESSAGES/lskat.mo +share/locale/oc/LC_MESSAGES/lskat.mo share/locale/pa/LC_MESSAGES/lskat.mo share/locale/pl/LC_MESSAGES/lskat.mo share/locale/pt/LC_MESSAGES/lskat.mo share/locale/pt_BR/LC_MESSAGES/lskat.mo share/locale/ro/LC_MESSAGES/lskat.mo share/locale/ru/LC_MESSAGES/lskat.mo share/locale/se/LC_MESSAGES/lskat.mo share/locale/sk/LC_MESSAGES/lskat.mo share/locale/sl/LC_MESSAGES/lskat.mo share/locale/sq/LC_MESSAGES/lskat.mo share/locale/sr/LC_MESSAGES/lskat.mo +share/locale/sr@ijekavian/LC_MESSAGES/lskat.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/lskat.mo +share/locale/sr@latin/LC_MESSAGES/lskat.mo share/locale/sv/LC_MESSAGES/lskat.mo share/locale/ta/LC_MESSAGES/lskat.mo share/locale/tg/LC_MESSAGES/lskat.mo share/locale/tr/LC_MESSAGES/lskat.mo share/locale/ug/LC_MESSAGES/lskat.mo share/locale/uk/LC_MESSAGES/lskat.mo +share/locale/xh/LC_MESSAGES/lskat.mo share/locale/zh_CN/LC_MESSAGES/lskat.mo share/locale/zh_TW/LC_MESSAGES/lskat.mo %%DATADIR%%/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 share/qlogging-categories5/lskat.categories diff --git a/games/palapeli/distinfo b/games/palapeli/distinfo index 855b45d347df..aca656bf27e0 100644 --- a/games/palapeli/distinfo +++ b/games/palapeli/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539502 -SHA256 (KDE/release-service/22.08.3/palapeli-22.08.3.tar.xz) = 2f5337c5e5519d25be7de083bb4eb2122dd3a63d2cd0bb46927db304fa839b18 -SIZE (KDE/release-service/22.08.3/palapeli-22.08.3.tar.xz) = 2101612 +TIMESTAMP = 1670513116 +SHA256 (KDE/release-service/22.12.0/palapeli-22.12.0.tar.xz) = bf2d4ffb6acb98f50bcaa803b87033f57723b455d7a107a241dd9ccba687b693 +SIZE (KDE/release-service/22.12.0/palapeli-22.12.0.tar.xz) = 2109924 diff --git a/games/palapeli/pkg-plist b/games/palapeli/pkg-plist index fa2571fb1a7a..a1bf43f12d32 100644 --- a/games/palapeli/pkg-plist +++ b/games/palapeli/pkg-plist @@ -1,108 +1,113 @@ bin/palapeli etc/xdg/palapeli-collectionrc include/Pala/Pala/Slicer include/Pala/Pala/SlicerJob include/Pala/Pala/SlicerMode include/Pala/Pala/SlicerProperty include/Pala/Pala/SlicerPropertySet include/Pala/pala/libpala_export.h include/Pala/pala/slicer.h include/Pala/pala/slicerjob.h include/Pala/pala/slicermode.h include/Pala/pala/slicerproperty.h include/Pala/pala/slicerpropertyset.h lib/cmake/Pala/PalaConfig.cmake lib/cmake/Pala/PalaConfigVersion.cmake lib/cmake/Pala/PalaTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Pala/PalaTargets.cmake lib/libpala.so lib/libpala.so.0 lib/libpala.so.0.2.0 +%%QT_PLUGINDIR%%/kf5/thumbcreator/palathumbcreator.so %%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/icons/hicolor/128x128/apps/palapeli.png -share/icons/hicolor/128x128/mimetypes/application-x-palapeli.png +share/kio/servicemenus/palapeli_servicemenu.desktop share/knotifications5/palapeli.notifyrc -share/kservices5/ServiceMenus/palapeli_servicemenu.desktop -share/kservices5/palathumbcreator.desktop share/locale/bg/LC_MESSAGES/palapeli.mo share/locale/bs/LC_MESSAGES/palapeli.mo share/locale/ca/LC_MESSAGES/palapeli.mo share/locale/ca@valencia/LC_MESSAGES/palapeli.mo share/locale/cs/LC_MESSAGES/palapeli.mo share/locale/da/LC_MESSAGES/palapeli.mo share/locale/de/LC_MESSAGES/palapeli.mo share/locale/el/LC_MESSAGES/palapeli.mo share/locale/en_GB/LC_MESSAGES/palapeli.mo share/locale/eo/LC_MESSAGES/palapeli.mo share/locale/es/LC_MESSAGES/palapeli.mo share/locale/et/LC_MESSAGES/palapeli.mo share/locale/eu/LC_MESSAGES/palapeli.mo share/locale/fi/LC_MESSAGES/palapeli.mo share/locale/fr/LC_MESSAGES/palapeli.mo share/locale/ga/LC_MESSAGES/palapeli.mo share/locale/gl/LC_MESSAGES/palapeli.mo share/locale/hr/LC_MESSAGES/palapeli.mo +share/locale/hsb/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/ka/LC_MESSAGES/palapeli.mo share/locale/kk/LC_MESSAGES/palapeli.mo share/locale/km/LC_MESSAGES/palapeli.mo share/locale/ko/LC_MESSAGES/palapeli.mo share/locale/lt/LC_MESSAGES/palapeli.mo share/locale/lv/LC_MESSAGES/palapeli.mo +share/locale/mai/LC_MESSAGES/palapeli.mo share/locale/ml/LC_MESSAGES/palapeli.mo share/locale/mr/LC_MESSAGES/palapeli.mo share/locale/nb/LC_MESSAGES/palapeli.mo share/locale/nds/LC_MESSAGES/palapeli.mo share/locale/nl/LC_MESSAGES/palapeli.mo share/locale/nn/LC_MESSAGES/palapeli.mo share/locale/pl/LC_MESSAGES/palapeli.mo share/locale/pt/LC_MESSAGES/palapeli.mo share/locale/pt_BR/LC_MESSAGES/palapeli.mo share/locale/ro/LC_MESSAGES/palapeli.mo share/locale/ru/LC_MESSAGES/palapeli.mo share/locale/sk/LC_MESSAGES/palapeli.mo share/locale/sl/LC_MESSAGES/palapeli.mo share/locale/sq/LC_MESSAGES/palapeli.mo share/locale/sr/LC_MESSAGES/palapeli.mo +share/locale/sr@ijekavian/LC_MESSAGES/palapeli.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/palapeli.mo +share/locale/sr@latin/LC_MESSAGES/palapeli.mo share/locale/sv/LC_MESSAGES/palapeli.mo share/locale/tr/LC_MESSAGES/palapeli.mo share/locale/ug/LC_MESSAGES/palapeli.mo share/locale/uk/LC_MESSAGES/palapeli.mo share/locale/zh_CN/LC_MESSAGES/palapeli.mo share/locale/zh_TW/LC_MESSAGES/palapeli.mo share/metainfo/org.kde.palapeli.appdata.xml share/mime/packages/palapeli-mimetypes.xml %%DATADIR%%/backgrounds/Eliminator-Funk-2.jpg %%DATADIR%%/backgrounds/Rear-Admiral-Diplomat-1.jpg %%DATADIR%%/backgrounds/Time-For-Lunch-2.jpg %%DATADIR%%/backgrounds/background.svg %%DATADIR%%/backgrounds/gon-defends-the-critters-1.jpg %%DATADIR%%/backgrounds/mahogany-handjob-1.jpg %%DATADIR%%/collection/castle-maintenon.desktop %%DATADIR%%/collection/castle-maintenon.jpg %%DATADIR%%/collection/cincinnati-bridge.desktop %%DATADIR%%/collection/cincinnati-bridge.jpg %%DATADIR%%/collection/citrus-fruits.desktop %%DATADIR%%/collection/citrus-fruits.jpg %%DATADIR%%/collection/european-honey-bee.desktop %%DATADIR%%/collection/european-honey-bee.jpg %%DATADIR%%/collection/panther-chameleon-female.desktop %%DATADIR%%/collection/panther-chameleon-female.jpg %%DATADIR%%/palapeli.kcfg share/qlogging-categories5/palapeli.categories diff --git a/games/picmi/distinfo b/games/picmi/distinfo index 2496675a7157..f7cb3adf47ea 100644 --- a/games/picmi/distinfo +++ b/games/picmi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539547 -SHA256 (KDE/release-service/22.08.3/picmi-22.08.3.tar.xz) = 702ffaf70801536a7820358e013a51bd764fdb911ff31c7d92fce1c85857e7dc -SIZE (KDE/release-service/22.08.3/picmi-22.08.3.tar.xz) = 1538948 +TIMESTAMP = 1670513172 +SHA256 (KDE/release-service/22.12.0/picmi-22.12.0.tar.xz) = beb079bb06e3991d146ac854073baca2f9a45a9e5bcee774e366992cc111b4ff +SIZE (KDE/release-service/22.12.0/picmi-22.12.0.tar.xz) = 1539536 diff --git a/games/picmi/pkg-plist b/games/picmi/pkg-plist index 3ee665d97174..f835e67e244d 100644 --- a/games/picmi/pkg-plist +++ b/games/picmi/pkg-plist @@ -1,89 +1,92 @@ bin/picmi share/applications/org.kde.picmi.desktop +share/icons/hicolor/128x128/apps/picmi.png share/icons/hicolor/16x16/apps/picmi.png share/icons/hicolor/22x22/apps/picmi.png +share/icons/hicolor/256x256/apps/picmi.png share/icons/hicolor/32x32/apps/picmi.png share/icons/hicolor/48x48/apps/picmi.png share/icons/hicolor/64x64/apps/picmi.png -share/icons/hicolor/128x128/apps/picmi.png -share/icons/hicolor/256x256/apps/picmi.png -share/kxmlgui5/picmi/picmiui.rc share/locale/bs/LC_MESSAGES/picmi.mo share/locale/ca/LC_MESSAGES/picmi.mo share/locale/ca@valencia/LC_MESSAGES/picmi.mo share/locale/cs/LC_MESSAGES/picmi.mo share/locale/da/LC_MESSAGES/picmi.mo share/locale/de/LC_MESSAGES/picmi.mo share/locale/el/LC_MESSAGES/picmi.mo share/locale/en_GB/LC_MESSAGES/picmi.mo share/locale/es/LC_MESSAGES/picmi.mo share/locale/et/LC_MESSAGES/picmi.mo share/locale/eu/LC_MESSAGES/picmi.mo share/locale/fi/LC_MESSAGES/picmi.mo share/locale/fr/LC_MESSAGES/picmi.mo share/locale/ga/LC_MESSAGES/picmi.mo share/locale/gl/LC_MESSAGES/picmi.mo share/locale/hu/LC_MESSAGES/picmi.mo share/locale/it/LC_MESSAGES/picmi.mo share/locale/ja/LC_MESSAGES/picmi.mo +share/locale/ka/LC_MESSAGES/picmi.mo share/locale/kk/LC_MESSAGES/picmi.mo share/locale/ko/LC_MESSAGES/picmi.mo share/locale/lt/LC_MESSAGES/picmi.mo share/locale/lv/LC_MESSAGES/picmi.mo share/locale/ml/LC_MESSAGES/picmi.mo share/locale/mr/LC_MESSAGES/picmi.mo share/locale/nb/LC_MESSAGES/picmi.mo share/locale/nds/LC_MESSAGES/picmi.mo share/locale/nl/LC_MESSAGES/picmi.mo share/locale/nn/LC_MESSAGES/picmi.mo share/locale/pl/LC_MESSAGES/picmi.mo share/locale/pt/LC_MESSAGES/picmi.mo share/locale/pt_BR/LC_MESSAGES/picmi.mo share/locale/ro/LC_MESSAGES/picmi.mo share/locale/ru/LC_MESSAGES/picmi.mo share/locale/sk/LC_MESSAGES/picmi.mo share/locale/sl/LC_MESSAGES/picmi.mo share/locale/sr/LC_MESSAGES/picmi.mo +share/locale/sr@ijekavian/LC_MESSAGES/picmi.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/picmi.mo +share/locale/sr@latin/LC_MESSAGES/picmi.mo share/locale/sv/LC_MESSAGES/picmi.mo share/locale/tr/LC_MESSAGES/picmi.mo share/locale/ug/LC_MESSAGES/picmi.mo share/locale/uk/LC_MESSAGES/picmi.mo share/locale/zh_CN/LC_MESSAGES/picmi.mo share/locale/zh_TW/LC_MESSAGES/picmi.mo share/metainfo/org.kde.picmi.appdata.xml %%DATADIR%%/levels/default.xml %%DATADIR%%/levels/default/antique_phone.xpm %%DATADIR%%/levels/default/baby_chick.xpm %%DATADIR%%/levels/default/baby_panda.xpm %%DATADIR%%/levels/default/basketball.xpm %%DATADIR%%/levels/default/bass_clef.xpm %%DATADIR%%/levels/default/bike.xpm %%DATADIR%%/levels/default/bird.xpm %%DATADIR%%/levels/default/calculator.xpm %%DATADIR%%/levels/default/camera.xpm %%DATADIR%%/levels/default/carlthecat.xpm %%DATADIR%%/levels/default/clarathecat.xpm %%DATADIR%%/levels/default/clausthecat.xpm %%DATADIR%%/levels/default/clef.xpm %%DATADIR%%/levels/default/clown.xpm %%DATADIR%%/levels/default/crocodile.xpm %%DATADIR%%/levels/default/elephant.xpm %%DATADIR%%/levels/default/halloween.xpm %%DATADIR%%/levels/default/hourglass.xpm %%DATADIR%%/levels/default/house.xpm %%DATADIR%%/levels/default/mobile_phone.xpm %%DATADIR%%/levels/default/panda.xpm %%DATADIR%%/levels/default/phone.xpm %%DATADIR%%/levels/default/picmi.xpm %%DATADIR%%/levels/default/pirate_dog.xpm %%DATADIR%%/levels/default/pirate_ship.xpm %%DATADIR%%/levels/default/policeman.xpm %%DATADIR%%/levels/default/robot.xpm %%DATADIR%%/levels/default/santa_claus.xpm %%DATADIR%%/levels/default/shopping_cart.xpm %%DATADIR%%/levels/default/soccer.xpm %%DATADIR%%/levels/default/zebra.xpm %%DATADIR%%/themes/picmi.desktop %%DATADIR%%/themes/picmi.png %%DATADIR%%/themes/picmi.svg share/qlogging-categories5/picmi.categories diff --git a/graphics/gwenview/distinfo b/graphics/gwenview/distinfo index 96e592ac0b82..12536034c10f 100644 --- a/graphics/gwenview/distinfo +++ b/graphics/gwenview/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539578 -SHA256 (KDE/release-service/22.08.3/gwenview-22.08.3.tar.xz) = f125eb729dd81ea265471c9bbca54fe6a7e87348c9a782b321331da72a02aa6e -SIZE (KDE/release-service/22.08.3/gwenview-22.08.3.tar.xz) = 6825392 +TIMESTAMP = 1670513212 +SHA256 (KDE/release-service/22.12.0/gwenview-22.12.0.tar.xz) = 9bb6c6fada2874caa853fac8ddae7bd8dc795d95c3d9f453fc5239e9586e8a01 +SIZE (KDE/release-service/22.12.0/gwenview-22.12.0.tar.xz) = 6875456 diff --git a/graphics/gwenview/pkg-plist b/graphics/gwenview/pkg-plist index a680e0e83b0c..653bf69c98eb 100644 --- a/graphics/gwenview/pkg-plist +++ b/graphics/gwenview/pkg-plist @@ -1,88 +1,99 @@ 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 share/applications/org.kde.gwenview_importer.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/icons/hicolor/128x128/actions/document-share.png -share/icons/hicolor/128x128/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/bn/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/hne/LC_MESSAGES/gwenview.mo share/locale/hr/LC_MESSAGES/gwenview.mo +share/locale/hsb/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/ie/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/ka/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/ku/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/oc/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/sr@ijekavian/LC_MESSAGES/gwenview.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/gwenview.mo +share/locale/sr@latin/LC_MESSAGES/gwenview.mo share/locale/sv/LC_MESSAGES/gwenview.mo share/locale/ta/LC_MESSAGES/gwenview.mo +share/locale/th/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 diff --git a/graphics/kamera/distinfo b/graphics/kamera/distinfo index dca6f150cfea..d31792b92600 100644 --- a/graphics/kamera/distinfo +++ b/graphics/kamera/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539561 -SHA256 (KDE/release-service/22.08.3/kamera-22.08.3.tar.xz) = 3205599b094b2ad87b72822b87a133f214367b10e813d3dbce6a44d03603f4e3 -SIZE (KDE/release-service/22.08.3/kamera-22.08.3.tar.xz) = 120016 +TIMESTAMP = 1670513190 +SHA256 (KDE/release-service/22.12.0/kamera-22.12.0.tar.xz) = 4161edd09ec36cd4bd8b1635d34052f4a444432794883c957a62d530382dfa4a +SIZE (KDE/release-service/22.12.0/kamera-22.12.0.tar.xz) = 131880 diff --git a/graphics/kamera/pkg-plist b/graphics/kamera/pkg-plist index 908da4c152a7..c8919f7525a2 100644 --- a/graphics/kamera/pkg-plist +++ b/graphics/kamera/pkg-plist @@ -1,104 +1,118 @@ %%QT_PLUGINDIR%%/kf5/kio/kio_kamera.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kamera.so share/applications/kamera.desktop +share/locale/af/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kcmkamera.mo share/locale/ar/LC_MESSAGES/kio5_kamera.mo -share/locale/ast/LC_MESSAGES/kio5_kamera.mo share/locale/az/LC_MESSAGES/kcmkamera.mo share/locale/az/LC_MESSAGES/kio5_kamera.mo share/locale/be/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kcmkamera.mo share/locale/bg/LC_MESSAGES/kio5_kamera.mo +share/locale/br/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/cy/LC_MESSAGES/kcmkamera.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/fy/LC_MESSAGES/kcmkamera.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/hne/LC_MESSAGES/kcmkamera.mo share/locale/hr/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kcmkamera.mo share/locale/hu/LC_MESSAGES/kio5_kamera.mo share/locale/ia/LC_MESSAGES/kcmkamera.mo share/locale/ia/LC_MESSAGES/kio5_kamera.mo share/locale/is/LC_MESSAGES/kcmkamera.mo share/locale/is/LC_MESSAGES/kio5_kamera.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/ka/LC_MESSAGES/kcmkamera.mo +share/locale/ka/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/mk/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/ms/LC_MESSAGES/kcmkamera.mo share/locale/nb/LC_MESSAGES/kcmkamera.mo share/locale/nds/LC_MESSAGES/kcmkamera.mo +share/locale/ne/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/oc/LC_MESSAGES/kcmkamera.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/si/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/th/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kcmkamera.mo share/locale/tr/LC_MESSAGES/kio5_kamera.mo share/locale/ug/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kcmkamera.mo share/locale/uk/LC_MESSAGES/kio5_kamera.mo share/locale/vi/LC_MESSAGES/kcmkamera.mo share/locale/vi/LC_MESSAGES/kio5_kamera.mo +share/locale/xh/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kcmkamera.mo share/locale/zh_CN/LC_MESSAGES/kio5_kamera.mo +share/locale/zh_HK/LC_MESSAGES/kcmkamera.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 b04dae1849d6..5503dd6bac3a 100644 --- a/graphics/kcolorchooser/distinfo +++ b/graphics/kcolorchooser/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539569 -SHA256 (KDE/release-service/22.08.3/kcolorchooser-22.08.3.tar.xz) = 1d9c328469f7eaf19b3be9de418fc0db51a5a709282857e1b20f92cb6d6104fd -SIZE (KDE/release-service/22.08.3/kcolorchooser-22.08.3.tar.xz) = 31028 +TIMESTAMP = 1670513200 +SHA256 (KDE/release-service/22.12.0/kcolorchooser-22.12.0.tar.xz) = 08a63c281d0680bae1dae293957d7715eba8d8c7b7ec0769cddf7adc1ba894e2 +SIZE (KDE/release-service/22.12.0/kcolorchooser-22.12.0.tar.xz) = 32728 diff --git a/graphics/kcolorchooser/pkg-plist b/graphics/kcolorchooser/pkg-plist index 221572bd18f7..ba62db7e11b2 100644 --- a/graphics/kcolorchooser/pkg-plist +++ b/graphics/kcolorchooser/pkg-plist @@ -1,62 +1,72 @@ bin/kcolorchooser 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/az/LC_MESSAGES/kcolorchooser.mo share/locale/be/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/hne/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/ka/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/ku/LC_MESSAGES/kcolorchooser.mo share/locale/lt/LC_MESSAGES/kcolorchooser.mo share/locale/lv/LC_MESSAGES/kcolorchooser.mo +share/locale/mk/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/oc/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/si/LC_MESSAGES/kcolorchooser.mo share/locale/sk/LC_MESSAGES/kcolorchooser.mo share/locale/sl/LC_MESSAGES/kcolorchooser.mo share/locale/sq/LC_MESSAGES/kcolorchooser.mo share/locale/sr/LC_MESSAGES/kcolorchooser.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcolorchooser.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcolorchooser.mo +share/locale/sr@latin/LC_MESSAGES/kcolorchooser.mo share/locale/sv/LC_MESSAGES/kcolorchooser.mo +share/locale/th/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/vi/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 42734e645e08..aaaef88ac9bb 100644 --- a/graphics/kdegraphics-mobipocket/distinfo +++ b/graphics/kdegraphics-mobipocket/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539567 -SHA256 (KDE/release-service/22.08.3/kdegraphics-mobipocket-22.08.3.tar.xz) = 9c70467d7b574dc8c61dd88f4714e50606f5a9c6da5e83016c5bde451cec58ca -SIZE (KDE/release-service/22.08.3/kdegraphics-mobipocket-22.08.3.tar.xz) = 12604 +TIMESTAMP = 1670513197 +SHA256 (KDE/release-service/22.12.0/kdegraphics-mobipocket-22.12.0.tar.xz) = 6537a1783bab8ec121a3e2f182234b9fef531705d39246ca12f3cfae24c5d09c +SIZE (KDE/release-service/22.12.0/kdegraphics-mobipocket-22.12.0.tar.xz) = 12608 diff --git a/graphics/kdegraphics-svgpart/distinfo b/graphics/kdegraphics-svgpart/distinfo index f517cfb5da93..d76a141c80e7 100644 --- a/graphics/kdegraphics-svgpart/distinfo +++ b/graphics/kdegraphics-svgpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539573 -SHA256 (KDE/release-service/22.08.3/svgpart-22.08.3.tar.xz) = df21c001279a77193a4dd92cd237a0246cad57d4aac435226c24a8e5fd0c5276 -SIZE (KDE/release-service/22.08.3/svgpart-22.08.3.tar.xz) = 27608 +TIMESTAMP = 1670513205 +SHA256 (KDE/release-service/22.12.0/svgpart-22.12.0.tar.xz) = 874b2bd37b96fb0028755c4b00be0d217a913466e85021559c6326609295fbea +SIZE (KDE/release-service/22.12.0/svgpart-22.12.0.tar.xz) = 28344 diff --git a/graphics/kdegraphics-svgpart/pkg-plist b/graphics/kdegraphics-svgpart/pkg-plist index a9a3e6b28ae5..7aa7165e953c 100644 --- a/graphics/kdegraphics-svgpart/pkg-plist +++ b/graphics/kdegraphics-svgpart/pkg-plist @@ -1,59 +1,64 @@ %%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/id/LC_MESSAGES/svgpart.mo share/locale/is/LC_MESSAGES/svgpart.mo share/locale/it/LC_MESSAGES/svgpart.mo share/locale/ja/LC_MESSAGES/svgpart.mo +share/locale/ka/LC_MESSAGES/svgpart.mo share/locale/kk/LC_MESSAGES/svgpart.mo share/locale/km/LC_MESSAGES/svgpart.mo share/locale/ko/LC_MESSAGES/svgpart.mo +share/locale/ku/LC_MESSAGES/svgpart.mo share/locale/lt/LC_MESSAGES/svgpart.mo share/locale/lv/LC_MESSAGES/svgpart.mo +share/locale/mk/LC_MESSAGES/svgpart.mo share/locale/ml/LC_MESSAGES/svgpart.mo share/locale/mr/LC_MESSAGES/svgpart.mo share/locale/nb/LC_MESSAGES/svgpart.mo share/locale/nds/LC_MESSAGES/svgpart.mo share/locale/nl/LC_MESSAGES/svgpart.mo share/locale/nn/LC_MESSAGES/svgpart.mo share/locale/pa/LC_MESSAGES/svgpart.mo share/locale/pl/LC_MESSAGES/svgpart.mo share/locale/pt/LC_MESSAGES/svgpart.mo share/locale/pt_BR/LC_MESSAGES/svgpart.mo share/locale/ro/LC_MESSAGES/svgpart.mo share/locale/ru/LC_MESSAGES/svgpart.mo +share/locale/si/LC_MESSAGES/svgpart.mo share/locale/sk/LC_MESSAGES/svgpart.mo share/locale/sl/LC_MESSAGES/svgpart.mo share/locale/sq/LC_MESSAGES/svgpart.mo share/locale/sv/LC_MESSAGES/svgpart.mo share/locale/ta/LC_MESSAGES/svgpart.mo +share/locale/th/LC_MESSAGES/svgpart.mo share/locale/tr/LC_MESSAGES/svgpart.mo share/locale/ug/LC_MESSAGES/svgpart.mo share/locale/uk/LC_MESSAGES/svgpart.mo share/locale/vi/LC_MESSAGES/svgpart.mo share/locale/wa/LC_MESSAGES/svgpart.mo share/locale/zh_CN/LC_MESSAGES/svgpart.mo share/locale/zh_TW/LC_MESSAGES/svgpart.mo share/metainfo/org.kde.svgpart.metainfo.xml diff --git a/graphics/kdegraphics-thumbnailers/distinfo b/graphics/kdegraphics-thumbnailers/distinfo index 0834a24856a3..ebc3e80d579b 100644 --- a/graphics/kdegraphics-thumbnailers/distinfo +++ b/graphics/kdegraphics-thumbnailers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539558 -SHA256 (KDE/release-service/22.08.3/kdegraphics-thumbnailers-22.08.3.tar.xz) = 3d0496a25dd292b4c6e2caef934be5b84b2f5bcfbdbf87e5c819d62d88dead73 -SIZE (KDE/release-service/22.08.3/kdegraphics-thumbnailers-22.08.3.tar.xz) = 48996 +TIMESTAMP = 1670513186 +SHA256 (KDE/release-service/22.12.0/kdegraphics-thumbnailers-22.12.0.tar.xz) = 9b126ed9f8f955e9a5f4cf832c493161b830fe8c1765517fc9ffb70d333de164 +SIZE (KDE/release-service/22.12.0/kdegraphics-thumbnailers-22.12.0.tar.xz) = 48996 diff --git a/graphics/kimagemapeditor/distinfo b/graphics/kimagemapeditor/distinfo index 9bf2f8b426e4..1b818f4b9df2 100644 --- a/graphics/kimagemapeditor/distinfo +++ b/graphics/kimagemapeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539568 -SHA256 (KDE/release-service/22.08.3/kimagemapeditor-22.08.3.tar.xz) = 2e0862815bf964b79b527f726a57c03b6e66c0e725a1c4b6c8a9001e7db3cb14 -SIZE (KDE/release-service/22.08.3/kimagemapeditor-22.08.3.tar.xz) = 1090904 +TIMESTAMP = 1670513199 +SHA256 (KDE/release-service/22.12.0/kimagemapeditor-22.12.0.tar.xz) = d687744b43ec4cddf3bb0a62f224d27e2b40fcf4eef459ccdcf0213c0ac744b5 +SIZE (KDE/release-service/22.12.0/kimagemapeditor-22.12.0.tar.xz) = 1101916 diff --git a/graphics/kimagemapeditor/pkg-plist b/graphics/kimagemapeditor/pkg-plist index 085f0a1d6a55..facc2e46c521 100644 --- a/graphics/kimagemapeditor/pkg-plist +++ b/graphics/kimagemapeditor/pkg-plist @@ -1,79 +1,87 @@ bin/kimagemapeditor %%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/circle2.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/128x128/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/br/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/cy/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/hne/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/ka/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/ms/LC_MESSAGES/kimagemapeditor.mo share/locale/nb/LC_MESSAGES/kimagemapeditor.mo share/locale/nds/LC_MESSAGES/kimagemapeditor.mo +share/locale/ne/LC_MESSAGES/kimagemapeditor.mo share/locale/nl/LC_MESSAGES/kimagemapeditor.mo share/locale/nn/LC_MESSAGES/kimagemapeditor.mo +share/locale/oc/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_HK/LC_MESSAGES/kimagemapeditor.mo share/locale/zh_TW/LC_MESSAGES/kimagemapeditor.mo share/metainfo/org.kde.kimagemapeditor.appdata.xml share/qlogging-categories5/kimagemapeditor.categories diff --git a/graphics/kipi-plugins/distinfo b/graphics/kipi-plugins/distinfo index ed1fec5978c9..c6f2ad7760d9 100644 --- a/graphics/kipi-plugins/distinfo +++ b/graphics/kipi-plugins/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539565 -SHA256 (KDE/release-service/22.08.3/kipi-plugins-22.08.3.tar.xz) = 56db5de2b70b6394f39fae34081eb69bb037a1216f7863249e7a8157af5c92f8 -SIZE (KDE/release-service/22.08.3/kipi-plugins-22.08.3.tar.xz) = 1525036 +TIMESTAMP = 1670513194 +SHA256 (KDE/release-service/22.12.0/kipi-plugins-22.12.0.tar.xz) = 4426c6f7cdff34198388f74cb947d5aef1a569bd12f447601752a1f51638a062 +SIZE (KDE/release-service/22.12.0/kipi-plugins-22.12.0.tar.xz) = 1559436 diff --git a/graphics/kipi-plugins/pkg-plist b/graphics/kipi-plugins/pkg-plist index 551461ad9b9c..a23c63766bec 100644 --- a/graphics/kipi-plugins/pkg-plist +++ b/graphics/kipi-plugins/pkg-plist @@ -1,899 +1,944 @@ lib/libKF5kipiplugins.so lib/libKF5kipiplugins.so.5.9.1 %%QT_PLUGINDIR%%/kipiplugin_dropbox.so %%QT_PLUGINDIR%%/kipiplugin_facebook.so %%QT_PLUGINDIR%%/kipiplugin_flickr.so %%QT_PLUGINDIR%%/kipiplugin_googleservices.so %%QT_PLUGINDIR%%/kipiplugin_imageshack.so %%QT_PLUGINDIR%%/kipiplugin_imgur.so %%QT_PLUGINDIR%%/kipiplugin_jalbum.so %%QT_PLUGINDIR%%/kipiplugin_kmlexport.so %%QT_PLUGINDIR%%/kipiplugin_piwigo.so %%QT_PLUGINDIR%%/kipiplugin_printimages.so %%QT_PLUGINDIR%%/kipiplugin_rajce.so %%QT_PLUGINDIR%%/kipiplugin_remotestorage.so %%QT_PLUGINDIR%%/kipiplugin_sendimages.so %%QT_PLUGINDIR%%/kipiplugin_smug.so %%MEDIAWIKI%%%%QT_PLUGINDIR%%/kipiplugin_wikimedia.so %%QT_PLUGINDIR%%/kipiplugin_yandexfotki.so share/applications/kipiplugins.desktop share/icons/hicolor/16x16/apps/kipi-dropbox.png share/icons/hicolor/16x16/apps/kipi-facebook.png share/icons/hicolor/16x16/apps/kipi-flickr.png share/icons/hicolor/16x16/apps/kipi-googledrive.png share/icons/hicolor/16x16/apps/kipi-googlephoto.png share/icons/hicolor/16x16/apps/kipi-hq.png share/icons/hicolor/16x16/apps/kipi-imgur.png share/icons/hicolor/16x16/apps/kipi-jalbum.png share/icons/hicolor/16x16/apps/kipi-piwigo.png share/icons/hicolor/16x16/apps/kipi-rajce.png share/icons/hicolor/16x16/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/16x16/apps/kipi-wikimedia.png share/icons/hicolor/22x22/apps/kipi-dropbox.png share/icons/hicolor/22x22/apps/kipi-facebook.png share/icons/hicolor/22x22/apps/kipi-flickr.png share/icons/hicolor/22x22/apps/kipi-googledrive.png share/icons/hicolor/22x22/apps/kipi-googlephoto.png share/icons/hicolor/22x22/apps/kipi-hq.png share/icons/hicolor/22x22/apps/kipi-imgur.png share/icons/hicolor/22x22/apps/kipi-piwigo.png share/icons/hicolor/22x22/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/22x22/apps/kipi-wikimedia.png share/icons/hicolor/24x24/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-dropbox.png share/icons/hicolor/32x32/apps/kipi-facebook.png share/icons/hicolor/32x32/apps/kipi-flickr.png share/icons/hicolor/32x32/apps/kipi-googledrive.png share/icons/hicolor/32x32/apps/kipi-googlephoto.png share/icons/hicolor/32x32/apps/kipi-hq.png share/icons/hicolor/32x32/apps/kipi-imageshack.png share/icons/hicolor/32x32/apps/kipi-imgur.png share/icons/hicolor/32x32/apps/kipi-jalbum.png share/icons/hicolor/32x32/apps/kipi-piwigo.png share/icons/hicolor/32x32/apps/kipi-rajce.png share/icons/hicolor/32x32/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/32x32/apps/kipi-wikimedia.png share/icons/hicolor/48x48/apps/kipi-dropbox.png share/icons/hicolor/48x48/apps/kipi-facebook.png share/icons/hicolor/48x48/apps/kipi-flickr.png share/icons/hicolor/48x48/apps/kipi-googledrive.png share/icons/hicolor/48x48/apps/kipi-googlephoto.png share/icons/hicolor/48x48/apps/kipi-hq.png share/icons/hicolor/48x48/apps/kipi-imageshack.png share/icons/hicolor/48x48/apps/kipi-imgur.png share/icons/hicolor/48x48/apps/kipi-piwigo.png share/icons/hicolor/48x48/apps/kipi-rajce.png share/icons/hicolor/48x48/apps/kipi-smugmug.png %%MEDIAWIKI%%share/icons/hicolor/48x48/apps/kipi-wikimedia.png share/icons/hicolor/64x64/apps/kipi-imageshack.png share/icons/hicolor/64x64/apps/kipi-rajce.png share/icons/hicolor/scalable/apps/kipi-facebook.svgz share/icons/hicolor/scalable/apps/kipi-flickr.svgz share/icons/hicolor/scalable/apps/kipi-googlephoto.svgz share/icons/hicolor/scalable/apps/kipi-hq.svgz share/icons/hicolor/scalable/apps/kipi-imgur.svgz share/icons/hicolor/scalable/apps/kipi-piwigo.svgz share/icons/hicolor/scalable/apps/kipi-smugmug.svgz %%MEDIAWIKI%%share/icons/hicolor/scalable/apps/kipi-wikimedia.svgz share/kipiplugin_piwigo/pics/piwigo_logo.png share/kipiplugin_printimages/templates/1_photo_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_flickr.desktop share/kservices5/kipiplugin_googleservices.desktop share/kservices5/kipiplugin_imageshack.desktop share/kservices5/kipiplugin_imgur.desktop share/kservices5/kipiplugin_jalbum.desktop share/kservices5/kipiplugin_kmlexport.desktop share/kservices5/kipiplugin_piwigo.desktop share/kservices5/kipiplugin_printimages.desktop share/kservices5/kipiplugin_rajce.desktop share/kservices5/kipiplugin_remotestorage.desktop share/kservices5/kipiplugin_sendimages.desktop share/kservices5/kipiplugin_smug.desktop %%MEDIAWIKI%%share/kservices5/kipiplugin_wikimedia.desktop share/kservices5/kipiplugin_yandexfotki.desktop share/kxmlgui5/kipi/kipiplugin_dropboxui.rc share/kxmlgui5/kipi/kipiplugin_facebookui.rc share/kxmlgui5/kipi/kipiplugin_flickrui.rc share/kxmlgui5/kipi/kipiplugin_googleservicesui.rc share/kxmlgui5/kipi/kipiplugin_imageshackui.rc share/kxmlgui5/kipi/kipiplugin_imgurui.rc share/kxmlgui5/kipi/kipiplugin_jalbumui.rc share/kxmlgui5/kipi/kipiplugin_kmlexportui.rc share/kxmlgui5/kipi/kipiplugin_piwigoui.rc share/kxmlgui5/kipi/kipiplugin_printimagesui.rc share/kxmlgui5/kipi/kipiplugin_rajceui.rc share/kxmlgui5/kipi/kipiplugin_remotestorageui.rc share/kxmlgui5/kipi/kipiplugin_sendimagesui.rc share/kxmlgui5/kipi/kipiplugin_smugui.rc %%MEDIAWIKI%%share/kxmlgui5/kipi/kipiplugin_wikimediaui.rc share/kxmlgui5/kipi/kipiplugin_yandexfotkiui.rc share/locale/ar/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ar/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ar/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ar/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ar/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ar/LC_MESSAGES/kipiplugins.mo share/locale/be/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/be/LC_MESSAGES/kipiplugins.mo share/locale/bg/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bg/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bg/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bg/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bg/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bg/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bg/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/bg/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bg/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bg/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bg/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bg/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bg/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bg/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bg/LC_MESSAGES/kipiplugin_smug.mo share/locale/bg/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bg/LC_MESSAGES/kipiplugins.mo share/locale/bs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/bs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/bs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/bs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/bs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/bs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/bs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/bs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/bs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/bs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/bs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/bs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/bs/LC_MESSAGES/kipiplugin_smug.mo share/locale/bs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/bs/LC_MESSAGES/kipiplugins.mo share/locale/ca/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca/LC_MESSAGES/kipiplugins.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ca@valencia/LC_MESSAGES/kipiplugins.mo share/locale/cs/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/cs/LC_MESSAGES/kipiplugin_facebook.mo share/locale/cs/LC_MESSAGES/kipiplugin_flickr.mo share/locale/cs/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/cs/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/cs/LC_MESSAGES/kipiplugin_imgur.mo share/locale/cs/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/cs/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/cs/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/cs/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/cs/LC_MESSAGES/kipiplugin_printimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_rajce.mo share/locale/cs/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/cs/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/cs/LC_MESSAGES/kipiplugin_smug.mo share/locale/cs/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/cs/LC_MESSAGES/kipiplugins.mo share/locale/da/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/da/LC_MESSAGES/kipiplugin_facebook.mo share/locale/da/LC_MESSAGES/kipiplugin_flickr.mo share/locale/da/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/da/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/da/LC_MESSAGES/kipiplugin_imgur.mo share/locale/da/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/da/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/da/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/da/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/da/LC_MESSAGES/kipiplugin_printimages.mo share/locale/da/LC_MESSAGES/kipiplugin_rajce.mo share/locale/da/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/da/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/da/LC_MESSAGES/kipiplugin_smug.mo share/locale/da/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/da/LC_MESSAGES/kipiplugins.mo share/locale/de/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/de/LC_MESSAGES/kipiplugin_facebook.mo share/locale/de/LC_MESSAGES/kipiplugin_flickr.mo share/locale/de/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/de/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/de/LC_MESSAGES/kipiplugin_imgur.mo share/locale/de/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/de/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/de/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/de/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/de/LC_MESSAGES/kipiplugin_printimages.mo share/locale/de/LC_MESSAGES/kipiplugin_rajce.mo share/locale/de/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/de/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/de/LC_MESSAGES/kipiplugin_smug.mo share/locale/de/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/de/LC_MESSAGES/kipiplugins.mo share/locale/el/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/el/LC_MESSAGES/kipiplugin_facebook.mo share/locale/el/LC_MESSAGES/kipiplugin_flickr.mo share/locale/el/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/el/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/el/LC_MESSAGES/kipiplugin_imgur.mo share/locale/el/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/el/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/el/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/el/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/el/LC_MESSAGES/kipiplugin_printimages.mo share/locale/el/LC_MESSAGES/kipiplugin_rajce.mo share/locale/el/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/el/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/el/LC_MESSAGES/kipiplugin_smug.mo share/locale/el/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/el/LC_MESSAGES/kipiplugins.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_facebook.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_flickr.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_imgur.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_printimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_rajce.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_smug.mo share/locale/en_GB/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/en_GB/LC_MESSAGES/kipiplugins.mo share/locale/eo/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eo/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eo/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eo/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eo/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eo/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eo/LC_MESSAGES/kipiplugin_smug.mo share/locale/eo/LC_MESSAGES/kipiplugins.mo share/locale/es/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/es/LC_MESSAGES/kipiplugin_facebook.mo share/locale/es/LC_MESSAGES/kipiplugin_flickr.mo share/locale/es/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/es/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/es/LC_MESSAGES/kipiplugin_imgur.mo share/locale/es/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/es/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/es/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/es/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/es/LC_MESSAGES/kipiplugin_printimages.mo share/locale/es/LC_MESSAGES/kipiplugin_rajce.mo share/locale/es/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/es/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/es/LC_MESSAGES/kipiplugin_smug.mo share/locale/es/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/es/LC_MESSAGES/kipiplugins.mo share/locale/et/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/et/LC_MESSAGES/kipiplugin_facebook.mo share/locale/et/LC_MESSAGES/kipiplugin_flickr.mo share/locale/et/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/et/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/et/LC_MESSAGES/kipiplugin_imgur.mo share/locale/et/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/et/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/et/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/et/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/et/LC_MESSAGES/kipiplugin_printimages.mo share/locale/et/LC_MESSAGES/kipiplugin_rajce.mo share/locale/et/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/et/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/et/LC_MESSAGES/kipiplugin_smug.mo share/locale/et/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/et/LC_MESSAGES/kipiplugins.mo share/locale/eu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/eu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/eu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/eu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/eu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/eu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/eu/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/eu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/eu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/eu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/eu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/eu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/eu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/eu/LC_MESSAGES/kipiplugin_smug.mo share/locale/eu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/eu/LC_MESSAGES/kipiplugins.mo share/locale/fi/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fi/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fi/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fi/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fi/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fi/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fi/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fi/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fi/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fi/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fi/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fi/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fi/LC_MESSAGES/kipiplugin_smug.mo share/locale/fi/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fi/LC_MESSAGES/kipiplugins.mo share/locale/fr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/fr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/fr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/fr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/fr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/fr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/fr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/fr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/fr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/fr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/fr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/fr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/fr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/fr/LC_MESSAGES/kipiplugin_smug.mo share/locale/fr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/fr/LC_MESSAGES/kipiplugins.mo share/locale/ga/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ga/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ga/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ga/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ga/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ga/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ga/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ga/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ga/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ga/LC_MESSAGES/kipiplugin_smug.mo share/locale/ga/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ga/LC_MESSAGES/kipiplugins.mo share/locale/gl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/gl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/gl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/gl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/gl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/gl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/gl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/gl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/gl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/gl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/gl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/gl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/gl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/gl/LC_MESSAGES/kipiplugin_smug.mo share/locale/gl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/gl/LC_MESSAGES/kipiplugins.mo share/locale/hi/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hi/LC_MESSAGES/kipiplugins.mo +share/locale/hne/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/hne/LC_MESSAGES/kipiplugins.mo share/locale/hr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hr/LC_MESSAGES/kipiplugin_smug.mo share/locale/hr/LC_MESSAGES/kipiplugins.mo share/locale/hu/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/hu/LC_MESSAGES/kipiplugin_facebook.mo share/locale/hu/LC_MESSAGES/kipiplugin_flickr.mo share/locale/hu/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/hu/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/hu/LC_MESSAGES/kipiplugin_imgur.mo share/locale/hu/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/hu/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/hu/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/hu/LC_MESSAGES/kipiplugin_printimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_rajce.mo share/locale/hu/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/hu/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/hu/LC_MESSAGES/kipiplugin_smug.mo share/locale/hu/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/hu/LC_MESSAGES/kipiplugins.mo share/locale/ia/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ia/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ia/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ia/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ia/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ia/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ia/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ia/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ia/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ia/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ia/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ia/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ia/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ia/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ia/LC_MESSAGES/kipiplugin_smug.mo share/locale/ia/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ia/LC_MESSAGES/kipiplugins.mo share/locale/id/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/id/LC_MESSAGES/kipiplugin_facebook.mo share/locale/id/LC_MESSAGES/kipiplugin_flickr.mo share/locale/id/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/id/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/id/LC_MESSAGES/kipiplugin_imgur.mo share/locale/id/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/id/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/id/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/id/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/id/LC_MESSAGES/kipiplugin_printimages.mo share/locale/id/LC_MESSAGES/kipiplugin_rajce.mo share/locale/id/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/id/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/id/LC_MESSAGES/kipiplugin_smug.mo share/locale/id/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/id/LC_MESSAGES/kipiplugins.mo +share/locale/is/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/is/LC_MESSAGES/kipiplugin_facebook.mo share/locale/is/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/is/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/is/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/is/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/is/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/is/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/is/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/is/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/is/LC_MESSAGES/kipiplugin_printimages.mo share/locale/is/LC_MESSAGES/kipiplugin_rajce.mo share/locale/is/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/is/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/is/LC_MESSAGES/kipiplugin_smug.mo share/locale/is/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/is/LC_MESSAGES/kipiplugins.mo share/locale/it/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/it/LC_MESSAGES/kipiplugin_facebook.mo share/locale/it/LC_MESSAGES/kipiplugin_flickr.mo share/locale/it/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/it/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/it/LC_MESSAGES/kipiplugin_imgur.mo share/locale/it/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/it/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/it/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/it/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/it/LC_MESSAGES/kipiplugin_printimages.mo share/locale/it/LC_MESSAGES/kipiplugin_rajce.mo share/locale/it/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/it/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/it/LC_MESSAGES/kipiplugin_smug.mo share/locale/it/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/it/LC_MESSAGES/kipiplugins.mo share/locale/ja/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ja/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ja/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ja/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ja/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ja/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ja/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ja/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ja/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ja/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ja/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ja/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ja/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ja/LC_MESSAGES/kipiplugin_smug.mo share/locale/ja/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ja/LC_MESSAGES/kipiplugins.mo +share/locale/ka/LC_MESSAGES/kipiplugin_dropbox.mo +share/locale/ka/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/ka/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/ka/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/ka/LC_MESSAGES/kipiplugin_imageshack.mo +share/locale/ka/LC_MESSAGES/kipiplugin_imgur.mo +share/locale/ka/LC_MESSAGES/kipiplugin_jalbum.mo +share/locale/ka/LC_MESSAGES/kipiplugin_kmlexport.mo +share/locale/ka/LC_MESSAGES/kipiplugin_mediawiki.mo +share/locale/ka/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/ka/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/ka/LC_MESSAGES/kipiplugin_rajce.mo +share/locale/ka/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/ka/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/ka/LC_MESSAGES/kipiplugin_smug.mo +share/locale/ka/LC_MESSAGES/kipiplugin_yandexfotki.mo +share/locale/ka/LC_MESSAGES/kipiplugins.mo share/locale/km/LC_MESSAGES/kipiplugin_facebook.mo share/locale/km/LC_MESSAGES/kipiplugin_flickr.mo share/locale/km/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/km/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/km/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/km/LC_MESSAGES/kipiplugin_printimages.mo share/locale/km/LC_MESSAGES/kipiplugin_rajce.mo share/locale/km/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/km/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/km/LC_MESSAGES/kipiplugin_smug.mo share/locale/km/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/km/LC_MESSAGES/kipiplugins.mo share/locale/ko/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ko/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ko/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ko/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ko/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ko/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ko/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ko/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ko/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ko/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ko/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ko/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ko/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ko/LC_MESSAGES/kipiplugin_smug.mo share/locale/ko/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ko/LC_MESSAGES/kipiplugins.mo share/locale/lt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/lt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/lt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/lt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/lt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/lt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/lt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/lt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/lt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/lt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/lt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/lt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/lt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lt/LC_MESSAGES/kipiplugin_smug.mo share/locale/lt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/lt/LC_MESSAGES/kipiplugins.mo share/locale/lv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/lv/LC_MESSAGES/kipiplugins.mo +share/locale/mai/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/mai/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/mai/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/mai/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/mai/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/mai/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/mai/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/mai/LC_MESSAGES/kipiplugin_smug.mo +share/locale/mai/LC_MESSAGES/kipiplugins.mo share/locale/ml/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ml/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ml/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ml/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ml/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ml/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ml/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ml/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ml/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ml/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ml/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ml/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ml/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ml/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ml/LC_MESSAGES/kipiplugin_smug.mo share/locale/ml/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ml/LC_MESSAGES/kipiplugins.mo share/locale/mr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/mr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/mr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/mr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/mr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/mr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/mr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/mr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/mr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/mr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/mr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/mr/LC_MESSAGES/kipiplugin_smug.mo share/locale/mr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/mr/LC_MESSAGES/kipiplugins.mo +share/locale/ms/LC_MESSAGES/kipiplugins.mo share/locale/nb/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nb/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nb/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nb/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nb/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nb/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nb/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nb/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nb/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nb/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nb/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nb/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nb/LC_MESSAGES/kipiplugin_smug.mo share/locale/nb/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nb/LC_MESSAGES/kipiplugins.mo share/locale/nds/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nds/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nds/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nds/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nds/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nds/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nds/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nds/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nds/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nds/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nds/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nds/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nds/LC_MESSAGES/kipiplugin_smug.mo share/locale/nds/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nds/LC_MESSAGES/kipiplugins.mo share/locale/nl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nl/LC_MESSAGES/kipiplugin_smug.mo share/locale/nl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nl/LC_MESSAGES/kipiplugins.mo share/locale/nn/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/nn/LC_MESSAGES/kipiplugin_facebook.mo share/locale/nn/LC_MESSAGES/kipiplugin_flickr.mo share/locale/nn/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/nn/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/nn/LC_MESSAGES/kipiplugin_imgur.mo share/locale/nn/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/nn/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/nn/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/nn/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/nn/LC_MESSAGES/kipiplugin_printimages.mo share/locale/nn/LC_MESSAGES/kipiplugin_rajce.mo share/locale/nn/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/nn/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/nn/LC_MESSAGES/kipiplugin_smug.mo share/locale/nn/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/nn/LC_MESSAGES/kipiplugins.mo +share/locale/oc/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/oc/LC_MESSAGES/kipiplugins.mo share/locale/pa/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pa/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pa/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pa/LC_MESSAGES/kipiplugins.mo share/locale/pl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pl/LC_MESSAGES/kipiplugin_smug.mo share/locale/pl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pl/LC_MESSAGES/kipiplugins.mo share/locale/pt/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt/LC_MESSAGES/kipiplugins.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_facebook.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_flickr.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_imgur.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_printimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_rajce.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_smug.mo share/locale/pt_BR/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/pt_BR/LC_MESSAGES/kipiplugins.mo share/locale/ro/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ro/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ro/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ro/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ro/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ro/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ro/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ro/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ro/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ro/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ro/LC_MESSAGES/kipiplugin_smug.mo share/locale/ro/LC_MESSAGES/kipiplugins.mo share/locale/ru/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/ru/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ru/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ru/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ru/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ru/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ru/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/ru/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ru/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ru/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ru/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ru/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ru/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ru/LC_MESSAGES/kipiplugin_smug.mo share/locale/ru/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ru/LC_MESSAGES/kipiplugins.mo share/locale/se/LC_MESSAGES/kipiplugins.mo share/locale/sk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sk/LC_MESSAGES/kipiplugin_smug.mo share/locale/sk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sk/LC_MESSAGES/kipiplugins.mo share/locale/sl/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sl/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sl/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sl/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sl/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sl/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sl/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sl/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sl/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sl/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sl/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sl/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sl/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sl/LC_MESSAGES/kipiplugin_smug.mo share/locale/sl/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sl/LC_MESSAGES/kipiplugins.mo share/locale/sq/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sq/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sq/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sq/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sq/LC_MESSAGES/kipiplugins.mo share/locale/sv/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/sv/LC_MESSAGES/kipiplugin_facebook.mo share/locale/sv/LC_MESSAGES/kipiplugin_flickr.mo share/locale/sv/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/sv/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/sv/LC_MESSAGES/kipiplugin_imgur.mo share/locale/sv/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/sv/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/sv/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/sv/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/sv/LC_MESSAGES/kipiplugin_printimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_rajce.mo share/locale/sv/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/sv/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/sv/LC_MESSAGES/kipiplugin_smug.mo share/locale/sv/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/sv/LC_MESSAGES/kipiplugins.mo +share/locale/th/LC_MESSAGES/kipiplugin_facebook.mo +share/locale/th/LC_MESSAGES/kipiplugin_flickr.mo +share/locale/th/LC_MESSAGES/kipiplugin_googleservices.mo +share/locale/th/LC_MESSAGES/kipiplugin_piwigo.mo +share/locale/th/LC_MESSAGES/kipiplugin_printimages.mo +share/locale/th/LC_MESSAGES/kipiplugin_remotestorage.mo +share/locale/th/LC_MESSAGES/kipiplugin_sendimages.mo +share/locale/th/LC_MESSAGES/kipiplugin_smug.mo +share/locale/th/LC_MESSAGES/kipiplugins.mo share/locale/tr/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/tr/LC_MESSAGES/kipiplugin_facebook.mo share/locale/tr/LC_MESSAGES/kipiplugin_flickr.mo share/locale/tr/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/tr/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/tr/LC_MESSAGES/kipiplugin_imgur.mo share/locale/tr/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/tr/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/tr/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/tr/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/tr/LC_MESSAGES/kipiplugin_printimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_rajce.mo share/locale/tr/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/tr/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/tr/LC_MESSAGES/kipiplugin_smug.mo share/locale/tr/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/tr/LC_MESSAGES/kipiplugins.mo share/locale/ug/LC_MESSAGES/kipiplugin_facebook.mo share/locale/ug/LC_MESSAGES/kipiplugin_flickr.mo share/locale/ug/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/ug/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/ug/LC_MESSAGES/kipiplugin_imgur.mo share/locale/ug/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/ug/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/ug/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/ug/LC_MESSAGES/kipiplugin_printimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_rajce.mo share/locale/ug/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/ug/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/ug/LC_MESSAGES/kipiplugin_smug.mo share/locale/ug/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/ug/LC_MESSAGES/kipiplugins.mo share/locale/uk/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/uk/LC_MESSAGES/kipiplugin_facebook.mo share/locale/uk/LC_MESSAGES/kipiplugin_flickr.mo share/locale/uk/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/uk/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/uk/LC_MESSAGES/kipiplugin_imgur.mo share/locale/uk/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/uk/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/uk/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/uk/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/uk/LC_MESSAGES/kipiplugin_printimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_rajce.mo share/locale/uk/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/uk/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/uk/LC_MESSAGES/kipiplugin_smug.mo share/locale/uk/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/uk/LC_MESSAGES/kipiplugins.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_CN/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_CN/LC_MESSAGES/kipiplugins.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_dropbox.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_facebook.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_flickr.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_googleservices.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imageshack.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_imgur.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_jalbum.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_kmlexport.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_mediawiki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_piwigo.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_printimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_rajce.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_remotestorage.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_sendimages.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_smug.mo share/locale/zh_TW/LC_MESSAGES/kipiplugin_yandexfotki.mo share/locale/zh_TW/LC_MESSAGES/kipiplugins.mo share/metainfo/org.kde.kipi_plugins.metainfo.xml diff --git a/graphics/kolourpaint/distinfo b/graphics/kolourpaint/distinfo index a102d8ca8234..9dea38eed953 100644 --- a/graphics/kolourpaint/distinfo +++ b/graphics/kolourpaint/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539571 -SHA256 (KDE/release-service/22.08.3/kolourpaint-22.08.3.tar.xz) = 347e8cae7b4be169968d7274618e96bd35224c2a963879709b7e07f440eac60f -SIZE (KDE/release-service/22.08.3/kolourpaint-22.08.3.tar.xz) = 5718828 +TIMESTAMP = 1670513202 +SHA256 (KDE/release-service/22.12.0/kolourpaint-22.12.0.tar.xz) = ff8b4b767c1255e4aa430aa7bd63d5ef53bedaf1e079e658e2a08d85fd9d5b85 +SIZE (KDE/release-service/22.12.0/kolourpaint-22.12.0.tar.xz) = 5784272 diff --git a/graphics/kolourpaint/pkg-plist b/graphics/kolourpaint/pkg-plist index 6a8290da49f6..64c1f92a5e8f 100644 --- a/graphics/kolourpaint/pkg-plist +++ b/graphics/kolourpaint/pkg-plist @@ -1,160 +1,175 @@ 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/128x128/apps/kolourpaint.png share/icons/hicolor/scalable/apps/kolourpaint.svgz %%DATADIR%%/icons/hicolor/16x16/actions/tool_brush.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_curve.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_line.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_pen.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/16x16/actions/tool_text.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_brush.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_curve.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_line.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_pen.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/22x22/actions/tool_text.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_brush.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_curve.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_line.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_pen.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/32x32/actions/tool_text.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_brush.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_color_picker.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_curve.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_ellipse.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_elliptical_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_eraser.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_flood_fill.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_free_form_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_line.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_pen.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polygon.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_polyline.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rect_selection.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_rounded_rectangle.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_spraycan.png %%DATADIR%%/icons/hicolor/48x48/actions/tool_text.png %%DATADIR%%/icons/hicolor/scalable/actions/tool_brush.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_color_picker.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_curve.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_ellipse.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_elliptical_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_eraser.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_flood_fill.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_free_form_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_line.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_pen.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polygon.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_polyline.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rect_selection.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_rounded_rectangle.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_spraycan.svgz %%DATADIR%%/icons/hicolor/scalable/actions/tool_text.svgz share/kxmlgui5/kolourpaint/kolourpaintui.rc share/locale/ar/LC_MESSAGES/kolourpaint.mo share/locale/be/LC_MESSAGES/kolourpaint.mo share/locale/bg/LC_MESSAGES/kolourpaint.mo +share/locale/br/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/cy/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/fy/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/hne/LC_MESSAGES/kolourpaint.mo share/locale/hr/LC_MESSAGES/kolourpaint.mo share/locale/hu/LC_MESSAGES/kolourpaint.mo share/locale/ia/LC_MESSAGES/kolourpaint.mo share/locale/id/LC_MESSAGES/kolourpaint.mo share/locale/is/LC_MESSAGES/kolourpaint.mo share/locale/it/LC_MESSAGES/kolourpaint.mo share/locale/ja/LC_MESSAGES/kolourpaint.mo +share/locale/ka/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/mk/LC_MESSAGES/kolourpaint.mo share/locale/ml/LC_MESSAGES/kolourpaint.mo share/locale/mr/LC_MESSAGES/kolourpaint.mo +share/locale/ms/LC_MESSAGES/kolourpaint.mo share/locale/nb/LC_MESSAGES/kolourpaint.mo share/locale/nds/LC_MESSAGES/kolourpaint.mo +share/locale/ne/LC_MESSAGES/kolourpaint.mo share/locale/nl/LC_MESSAGES/kolourpaint.mo share/locale/nn/LC_MESSAGES/kolourpaint.mo +share/locale/oc/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/si/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/th/LC_MESSAGES/kolourpaint.mo +share/locale/tok/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/uz/LC_MESSAGES/kolourpaint.mo +share/locale/uz@cyrillic/LC_MESSAGES/kolourpaint.mo share/locale/zh_CN/LC_MESSAGES/kolourpaint.mo +share/locale/zh_HK/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 c6a36c527ba1..d3122865da2f 100644 --- a/graphics/kontrast/distinfo +++ b/graphics/kontrast/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539574 -SHA256 (KDE/release-service/22.08.3/kontrast-22.08.3.tar.xz) = 1bf626cc97a9eaeff62e624a3ddfddb688769027808d692266dd84479ba5c915 -SIZE (KDE/release-service/22.08.3/kontrast-22.08.3.tar.xz) = 128100 +TIMESTAMP = 1670513207 +SHA256 (KDE/release-service/22.12.0/kontrast-22.12.0.tar.xz) = f8f4cb82ec364fd9b6365458e3ddbfa4b5617116971322acc90acde0783b7d53 +SIZE (KDE/release-service/22.12.0/kontrast-22.12.0.tar.xz) = 200580 diff --git a/graphics/kontrast/pkg-plist b/graphics/kontrast/pkg-plist index 33992201bd18..35061e14643a 100644 --- a/graphics/kontrast/pkg-plist +++ b/graphics/kontrast/pkg-plist @@ -1,33 +1,34 @@ 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/ka/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/pa/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/tr/LC_MESSAGES/kontrast.mo share/locale/uk/LC_MESSAGES/kontrast.mo share/locale/zh_CN/LC_MESSAGES/kontrast.mo share/locale/zh_TW/LC_MESSAGES/kontrast.mo share/metainfo/org.kde.kontrast.appdata.xml diff --git a/graphics/kqtquickcharts/distinfo b/graphics/kqtquickcharts/distinfo index 831b8550cf80..0c2c02c870c9 100644 --- a/graphics/kqtquickcharts/distinfo +++ b/graphics/kqtquickcharts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539577 -SHA256 (KDE/release-service/22.08.3/kqtquickcharts-22.08.3.tar.xz) = d9c5545781e59f5d506bcb2da577fdf8251eec3d076b509f363727050abd8fed -SIZE (KDE/release-service/22.08.3/kqtquickcharts-22.08.3.tar.xz) = 30196 +TIMESTAMP = 1670513210 +SHA256 (KDE/release-service/22.12.0/kqtquickcharts-22.12.0.tar.xz) = 343edb8629ab8e8e38574904d422fd3b3ddf7352b21888304659745f1fcf3981 +SIZE (KDE/release-service/22.12.0/kqtquickcharts-22.12.0.tar.xz) = 30856 diff --git a/graphics/kqtquickcharts/pkg-plist b/graphics/kqtquickcharts/pkg-plist index f970879f8894..f0f31c707d12 100644 --- a/graphics/kqtquickcharts/pkg-plist +++ b/graphics/kqtquickcharts/pkg-plist @@ -1,10 +1,11 @@ include/KF5/kqtquickcharts_version.h +lib/cmake/KQtQuickCharts/KQtQuickChartsConfig.cmake lib/cmake/KQtQuickCharts/KQtQuickChartsVersion.cmake %%QT_QMLDIR%%/org/kde/charts/BarChart.qml %%QT_QMLDIR%%/org/kde/charts/Label.qml %%QT_QMLDIR%%/org/kde/charts/LegendItem.qml %%QT_QMLDIR%%/org/kde/charts/LineChart.qml %%QT_QMLDIR%%/org/kde/charts/LineLabel.qml %%QT_QMLDIR%%/org/kde/charts/XYChart.qml %%QT_QMLDIR%%/org/kde/charts/libkqtquickcharts.so %%QT_QMLDIR%%/org/kde/charts/qmldir diff --git a/graphics/ksanecore/distinfo b/graphics/ksanecore/distinfo index 8e1b8dcfb581..58c4b698dbb7 100644 --- a/graphics/ksanecore/distinfo +++ b/graphics/ksanecore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539566 -SHA256 (KDE/release-service/22.08.3/ksanecore-22.08.3.tar.xz) = 185b388df7b56fa98760d56cfbb6eb304abcba0dc95eb815d7abe3864e2d03d7 -SIZE (KDE/release-service/22.08.3/ksanecore-22.08.3.tar.xz) = 46660 +TIMESTAMP = 1670513196 +SHA256 (KDE/release-service/22.12.0/ksanecore-22.12.0.tar.xz) = d4c2653ea1bf0cb5012c3971547022535a5f925e6f56c4e2731e27d571376bee +SIZE (KDE/release-service/22.12.0/ksanecore-22.12.0.tar.xz) = 47076 diff --git a/graphics/ksanecore/pkg-plist b/graphics/ksanecore/pkg-plist index 457043eb426f..e681a3a71d53 100644 --- a/graphics/ksanecore/pkg-plist +++ b/graphics/ksanecore/pkg-plist @@ -1,43 +1,44 @@ include/KSaneCore/DeviceInformation include/KSaneCore/Interface include/KSaneCore/Option include/KSaneCore/deviceinformation.h include/KSaneCore/interface.h include/KSaneCore/ksanecore_export.h include/KSaneCore/ksanecore_version.h include/KSaneCore/option.h lib/cmake/KSaneCore/KSaneCoreConfig.cmake lib/cmake/KSaneCore/KSaneCoreConfigVersion.cmake lib/cmake/KSaneCore/KSaneCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KSaneCore/KSaneCoreTargets.cmake lib/libKSaneCore.so lib/libKSaneCore.so.1 lib/libKSaneCore.so.%%KDE_APPLICATIONS_VERSION%% share/locale/ar/LC_MESSAGES/ksanecore.mo share/locale/bg/LC_MESSAGES/ksanecore.mo share/locale/ca/LC_MESSAGES/ksanecore.mo share/locale/ca@valencia/LC_MESSAGES/ksanecore.mo share/locale/cs/LC_MESSAGES/ksanecore.mo share/locale/de/LC_MESSAGES/ksanecore.mo share/locale/en_GB/LC_MESSAGES/ksanecore.mo share/locale/es/LC_MESSAGES/ksanecore.mo share/locale/eu/LC_MESSAGES/ksanecore.mo share/locale/fi/LC_MESSAGES/ksanecore.mo share/locale/fr/LC_MESSAGES/ksanecore.mo share/locale/hi/LC_MESSAGES/ksanecore.mo share/locale/it/LC_MESSAGES/ksanecore.mo share/locale/ja/LC_MESSAGES/ksanecore.mo +share/locale/ka/LC_MESSAGES/ksanecore.mo share/locale/ko/LC_MESSAGES/ksanecore.mo share/locale/nl/LC_MESSAGES/ksanecore.mo share/locale/pl/LC_MESSAGES/ksanecore.mo share/locale/pt/LC_MESSAGES/ksanecore.mo share/locale/pt_BR/LC_MESSAGES/ksanecore.mo share/locale/ro/LC_MESSAGES/ksanecore.mo share/locale/ru/LC_MESSAGES/ksanecore.mo share/locale/sk/LC_MESSAGES/ksanecore.mo share/locale/sl/LC_MESSAGES/ksanecore.mo share/locale/sv/LC_MESSAGES/ksanecore.mo share/locale/tr/LC_MESSAGES/ksanecore.mo share/locale/uk/LC_MESSAGES/ksanecore.mo share/locale/zh_CN/LC_MESSAGES/ksanecore.mo share/locale/zh_TW/LC_MESSAGES/ksanecore.mo diff --git a/graphics/libkdcraw/distinfo b/graphics/libkdcraw/distinfo index a7b88f8ff7db..d057ef72d52f 100644 --- a/graphics/libkdcraw/distinfo +++ b/graphics/libkdcraw/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539576 -SHA256 (KDE/release-service/22.08.3/libkdcraw-22.08.3.tar.xz) = 8d94b9987a4bcc381eb4fe4cbd20f4c57eb5a16a747039d40496ba3562d89fe0 -SIZE (KDE/release-service/22.08.3/libkdcraw-22.08.3.tar.xz) = 37420 +TIMESTAMP = 1670513209 +SHA256 (KDE/release-service/22.12.0/libkdcraw-22.12.0.tar.xz) = e609cbafe53d7e79ed0674bdb514a42c36b8a8984cfd49348d24b3bce163c164 +SIZE (KDE/release-service/22.12.0/libkdcraw-22.12.0.tar.xz) = 37436 diff --git a/graphics/libkexiv2/distinfo b/graphics/libkexiv2/distinfo index f77aa6c36ece..a70b8123daef 100644 --- a/graphics/libkexiv2/distinfo +++ b/graphics/libkexiv2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539560 -SHA256 (KDE/release-service/22.08.3/libkexiv2-22.08.3.tar.xz) = 8dafd704ab51e6078a284ec9b80a9101c770dd6603664c113f2805e291d8afd1 -SIZE (KDE/release-service/22.08.3/libkexiv2-22.08.3.tar.xz) = 59736 +TIMESTAMP = 1670513189 +SHA256 (KDE/release-service/22.12.0/libkexiv2-22.12.0.tar.xz) = 81c7c261638d72ec9f8ee460633f7d965927bf9ce6677ec1abc37362ce3ea8ae +SIZE (KDE/release-service/22.12.0/libkexiv2-22.12.0.tar.xz) = 60008 diff --git a/graphics/libkipi/distinfo b/graphics/libkipi/distinfo index 64c92275027c..03125ba97ce0 100644 --- a/graphics/libkipi/distinfo +++ b/graphics/libkipi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539559 -SHA256 (KDE/release-service/22.08.3/libkipi-22.08.3.tar.xz) = 8e837b86869e78ce1b7ecf60a661f0fc269543f8b7b3c968475afd844dfa3b86 -SIZE (KDE/release-service/22.08.3/libkipi-22.08.3.tar.xz) = 88520 +TIMESTAMP = 1670513187 +SHA256 (KDE/release-service/22.12.0/libkipi-22.12.0.tar.xz) = ea6bec39ccd962e1ae3e0ff554439809db42f2d2d68f8705252378fdf5d6807f +SIZE (KDE/release-service/22.12.0/libkipi-22.12.0.tar.xz) = 88504 diff --git a/graphics/libkipi/pkg-plist b/graphics/libkipi/pkg-plist index 495cf34f99f5..b7c6ee6e4644 100644 --- a/graphics/libkipi/pkg-plist +++ b/graphics/libkipi/pkg-plist @@ -1,37 +1,37 @@ include/KF5/KIPI/KIPI/ConfigWidget include/KF5/KIPI/KIPI/ImageCollection include/KF5/KIPI/KIPI/ImageCollectionSelector include/KF5/KIPI/KIPI/ImageCollectionShared include/KF5/KIPI/KIPI/ImageInfo include/KF5/KIPI/KIPI/ImageInfoShared include/KF5/KIPI/KIPI/Interface include/KF5/KIPI/KIPI/Plugin include/KF5/KIPI/KIPI/PluginLoader include/KF5/KIPI/KIPI/UploadWidget include/KF5/KIPI/kipi/configwidget.h include/KF5/KIPI/kipi/imagecollection.h include/KF5/KIPI/kipi/imagecollectionselector.h include/KF5/KIPI/kipi/imagecollectionshared.h include/KF5/KIPI/kipi/imageinfo.h include/KF5/KIPI/kipi/imageinfoshared.h include/KF5/KIPI/kipi/interface.h include/KF5/KIPI/kipi/libkipi_config.h include/KF5/KIPI/kipi/libkipi_export.h include/KF5/KIPI/kipi/plugin.h include/KF5/KIPI/kipi/pluginloader.h include/KF5/KIPI/kipi/uploadwidget.h -include/KF5/libkipi_version.h +include/KF5/KIPI/libkipi_version.h lib/cmake/KF5Kipi/KF5KipiConfig.cmake lib/cmake/KF5Kipi/KF5KipiConfigVersion.cmake lib/cmake/KF5Kipi/KF5KipiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Kipi/KF5KipiTargets.cmake lib/libKF5Kipi.so lib/libKF5Kipi.so.5.2.0 lib/libKF5Kipi.so.32.0.0 share/icons/hicolor/16x16/apps/kipi.png share/icons/hicolor/22x22/apps/kipi.png share/icons/hicolor/32x32/apps/kipi.png share/icons/hicolor/48x48/apps/kipi.png share/icons/hicolor/128x128/apps/kipi.png share/kservicetypes5/kipiplugin.desktop share/qlogging-categories5/kipi.categories diff --git a/graphics/libksane/distinfo b/graphics/libksane/distinfo index 79a2983bdf09..477cba95ea22 100644 --- a/graphics/libksane/distinfo +++ b/graphics/libksane/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539564 -SHA256 (KDE/release-service/22.08.3/libksane-22.08.3.tar.xz) = f9e9955e322d79c0dab990197ea2de576a1c25526741574d42c1ab1a2ad22e8b -SIZE (KDE/release-service/22.08.3/libksane-22.08.3.tar.xz) = 147720 +TIMESTAMP = 1670513193 +SHA256 (KDE/release-service/22.12.0/libksane-22.12.0.tar.xz) = 692214260436050287e910c88d945c697491c65607bc25ed36d7fc5247c61e7d +SIZE (KDE/release-service/22.12.0/libksane-22.12.0.tar.xz) = 153172 diff --git a/graphics/libksane/pkg-plist b/graphics/libksane/pkg-plist index 2bf9b1297980..106d7a23e6fb 100644 --- a/graphics/libksane/pkg-plist +++ b/graphics/libksane/pkg-plist @@ -1,68 +1,73 @@ 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.%%KDE_APPLICATIONS_VERSION%% lib/libKF5Sane.so.5 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/hne/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/ie/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/ka/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/oc/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/th/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/distinfo b/graphics/okular/distinfo index 42c8542ba400..91ee2b70ff35 100644 --- a/graphics/okular/distinfo +++ b/graphics/okular/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539572 -SHA256 (KDE/release-service/22.08.3/okular-22.08.3.tar.xz) = 42bbaae82d6e914d18becb663d220b35d4e3cfeed21d69dd4fd87b98b774919e -SIZE (KDE/release-service/22.08.3/okular-22.08.3.tar.xz) = 8225824 +TIMESTAMP = 1670513203 +SHA256 (KDE/release-service/22.12.0/okular-22.12.0.tar.xz) = 2ca1a9415d711fc8c9aad75e5c270c06e848891ca7e141872a762541eb316117 +SIZE (KDE/release-service/22.12.0/okular-22.12.0.tar.xz) = 8376212 diff --git a/graphics/okular/pkg-plist b/graphics/okular/pkg-plist index 9e77759ce7cc..c7bd6e23f438 100644 --- a/graphics/okular/pkg-plist +++ b/graphics/okular/pkg-plist @@ -1,1173 +1,1325 @@ bin/okular -etc/xdg/okular.categories include/okular/core/action.h include/okular/core/annotations.h include/okular/core/area.h include/okular/core/document.h include/okular/core/fileprinter.h include/okular/core/fontinfo.h include/okular/core/form.h include/okular/core/generator.h include/okular/core/global.h include/okular/core/observer.h include/okular/core/okularcore_export.h include/okular/core/page.h include/okular/core/pagesize.h include/okular/core/pagetransition.h include/okular/core/printoptionswidget.h include/okular/core/settings_core.h include/okular/core/signatureutils.h include/okular/core/sound.h include/okular/core/sourcereference.h include/okular/core/textdocumentgenerator.h include/okular/core/textdocumentsettings.h include/okular/core/textpage.h include/okular/core/tile.h include/okular/core/utils.h include/okular/core/version.h include/okular/interfaces/configinterface.h include/okular/interfaces/guiinterface.h include/okular/interfaces/printinterface.h include/okular/interfaces/saveinterface.h include/okular/interfaces/viewerinterface.h lib/cmake/Okular5/Okular5Config.cmake lib/cmake/Okular5/Okular5ConfigVersion.cmake lib/cmake/Okular5/Okular5Targets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Okular5/Okular5Targets.cmake lib/libOkular5Core.so lib/libOkular5Core.so.10 lib/libOkular5Core.so.10.0.0 %%QT_PLUGINDIR%%/kf5/kio/kio_msits.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_chmlib.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_comicbook.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_djvu.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_dvi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_epub.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fax.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_fb.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_ghostview.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_kimgio.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_md.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_mobi.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_plucker.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_poppler.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_tiff.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_txt.so %%QT_PLUGINDIR%%/okular/generators/okularGenerator_xps.so %%QT_PLUGINDIR%%/okularpart.so man/ca/man1/okular.1.gz man/de/man1/okular.1.gz man/es/man1/okular.1.gz man/et/man1/okular.1.gz man/fr/man1/okular.1.gz man/it/man1/okular.1.gz man/man1/okular.1.gz man/nl/man1/okular.1.gz man/pt/man1/okular.1.gz man/pt_BR/man1/okular.1.gz man/ru/man1/okular.1.gz man/sv/man1/okular.1.gz man/uk/man1/okular.1.gz share/applications/okularApplication_chm.desktop share/applications/okularApplication_comicbook.desktop share/applications/okularApplication_djvu.desktop share/applications/okularApplication_dvi.desktop share/applications/okularApplication_epub.desktop share/applications/okularApplication_fax.desktop share/applications/okularApplication_fb.desktop share/applications/okularApplication_ghostview.desktop share/applications/okularApplication_kimgio.desktop share/applications/okularApplication_md.desktop share/applications/okularApplication_mobi.desktop share/applications/okularApplication_pdf.desktop share/applications/okularApplication_plucker.desktop share/applications/okularApplication_tiff.desktop share/applications/okularApplication_txt.desktop share/applications/okularApplication_xps.desktop share/applications/org.kde.mobile.okular_chm.desktop share/applications/org.kde.mobile.okular_comicbook.desktop share/applications/org.kde.mobile.okular_djvu.desktop share/applications/org.kde.mobile.okular_dvi.desktop share/applications/org.kde.mobile.okular_epub.desktop share/applications/org.kde.mobile.okular_fax.desktop share/applications/org.kde.mobile.okular_fb.desktop share/applications/org.kde.mobile.okular_ghostview.desktop share/applications/org.kde.mobile.okular_kimgio.desktop share/applications/org.kde.mobile.okular_md.desktop share/applications/org.kde.mobile.okular_mobi.desktop share/applications/org.kde.mobile.okular_pdf.desktop share/applications/org.kde.mobile.okular_plucker.desktop share/applications/org.kde.mobile.okular_tiff.desktop share/applications/org.kde.mobile.okular_txt.desktop share/applications/org.kde.mobile.okular_xps.desktop share/applications/org.kde.okular.desktop share/config.kcfg/gssettings.kcfg share/config.kcfg/okular.kcfg share/config.kcfg/okular_core.kcfg share/config.kcfg/pdfsettings.kcfg share/icons/hicolor/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/okularChm.desktop share/kservices5/okularComicbook.desktop share/kservices5/okularDjvu.desktop share/kservices5/okularDvi.desktop share/kservices5/okularEPub.desktop share/kservices5/okularFax.desktop share/kservices5/okularFb.desktop share/kservices5/okularGhostview.desktop share/kservices5/okularKimgio.desktop share/kservices5/okularMd.desktop share/kservices5/okularMobi.desktop share/kservices5/okularPlucker.desktop share/kservices5/okularPoppler.desktop share/kservices5/okularTiff.desktop share/kservices5/okularTxt.desktop share/kservices5/okularXps.desktop share/kservices5/okular_part.desktop share/kservicetypes5/okularGenerator.desktop share/kxmlgui5/okular/part-viewermode.rc share/kxmlgui5/okular/part.rc share/kxmlgui5/okular/shell.rc share/locale/ar/LC_MESSAGES/okular.mo share/locale/ar/LC_MESSAGES/okular_chm.mo share/locale/ar/LC_MESSAGES/okular_comicbook.mo share/locale/ar/LC_MESSAGES/okular_djvu.mo share/locale/ar/LC_MESSAGES/okular_dvi.mo share/locale/ar/LC_MESSAGES/okular_epub.mo share/locale/ar/LC_MESSAGES/okular_fax.mo share/locale/ar/LC_MESSAGES/okular_fictionbook.mo share/locale/ar/LC_MESSAGES/okular_ghostview.mo share/locale/ar/LC_MESSAGES/okular_kimgio.mo share/locale/ar/LC_MESSAGES/okular_markdown.mo share/locale/ar/LC_MESSAGES/okular_mobi.mo share/locale/ar/LC_MESSAGES/okular_plucker.mo share/locale/ar/LC_MESSAGES/okular_poppler.mo share/locale/ar/LC_MESSAGES/okular_tiff.mo share/locale/ar/LC_MESSAGES/okular_txt.mo share/locale/ar/LC_MESSAGES/okular_xps.mo share/locale/ar/LC_MESSAGES/org.kde.active.documentviewer.mo -share/locale/ast/LC_MESSAGES/okular_chm.mo -share/locale/ast/LC_MESSAGES/okular_fax.mo -share/locale/ast/LC_MESSAGES/okular_plucker.mo -share/locale/ast/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/okular.mo share/locale/az/LC_MESSAGES/okular_chm.mo share/locale/az/LC_MESSAGES/okular_comicbook.mo share/locale/az/LC_MESSAGES/okular_djvu.mo share/locale/az/LC_MESSAGES/okular_dvi.mo share/locale/az/LC_MESSAGES/okular_epub.mo share/locale/az/LC_MESSAGES/okular_fax.mo share/locale/az/LC_MESSAGES/okular_fictionbook.mo share/locale/az/LC_MESSAGES/okular_ghostview.mo share/locale/az/LC_MESSAGES/okular_kimgio.mo share/locale/az/LC_MESSAGES/okular_markdown.mo share/locale/az/LC_MESSAGES/okular_mobi.mo share/locale/az/LC_MESSAGES/okular_plucker.mo share/locale/az/LC_MESSAGES/okular_poppler.mo share/locale/az/LC_MESSAGES/okular_tiff.mo share/locale/az/LC_MESSAGES/okular_txt.mo share/locale/az/LC_MESSAGES/okular_xps.mo share/locale/az/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/be/LC_MESSAGES/okular.mo share/locale/be/LC_MESSAGES/okular_chm.mo share/locale/be/LC_MESSAGES/okular_djvu.mo share/locale/be/LC_MESSAGES/okular_dvi.mo share/locale/be/LC_MESSAGES/okular_fictionbook.mo share/locale/be/LC_MESSAGES/okular_ghostview.mo share/locale/be/LC_MESSAGES/okular_kimgio.mo share/locale/be/LC_MESSAGES/okular_plucker.mo share/locale/be/LC_MESSAGES/okular_poppler.mo share/locale/be/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/okular.mo share/locale/bg/LC_MESSAGES/okular_chm.mo share/locale/bg/LC_MESSAGES/okular_comicbook.mo share/locale/bg/LC_MESSAGES/okular_djvu.mo share/locale/bg/LC_MESSAGES/okular_dvi.mo share/locale/bg/LC_MESSAGES/okular_epub.mo share/locale/bg/LC_MESSAGES/okular_fax.mo share/locale/bg/LC_MESSAGES/okular_fictionbook.mo share/locale/bg/LC_MESSAGES/okular_ghostview.mo share/locale/bg/LC_MESSAGES/okular_kimgio.mo share/locale/bg/LC_MESSAGES/okular_markdown.mo share/locale/bg/LC_MESSAGES/okular_mobi.mo share/locale/bg/LC_MESSAGES/okular_plucker.mo share/locale/bg/LC_MESSAGES/okular_poppler.mo share/locale/bg/LC_MESSAGES/okular_tiff.mo share/locale/bg/LC_MESSAGES/okular_txt.mo share/locale/bg/LC_MESSAGES/okular_xps.mo share/locale/bg/LC_MESSAGES/org.kde.active.documentviewer.mo +share/locale/br/LC_MESSAGES/okular.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/cy/LC_MESSAGES/okular.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/fy/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular.mo share/locale/ga/LC_MESSAGES/okular_chm.mo share/locale/ga/LC_MESSAGES/okular_comicbook.mo share/locale/ga/LC_MESSAGES/okular_djvu.mo share/locale/ga/LC_MESSAGES/okular_dvi.mo share/locale/ga/LC_MESSAGES/okular_epub.mo share/locale/ga/LC_MESSAGES/okular_fax.mo share/locale/ga/LC_MESSAGES/okular_fictionbook.mo share/locale/ga/LC_MESSAGES/okular_ghostview.mo share/locale/ga/LC_MESSAGES/okular_kimgio.mo share/locale/ga/LC_MESSAGES/okular_mobi.mo share/locale/ga/LC_MESSAGES/okular_plucker.mo share/locale/ga/LC_MESSAGES/okular_poppler.mo share/locale/ga/LC_MESSAGES/okular_xps.mo share/locale/ga/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/gl/LC_MESSAGES/okular.mo share/locale/gl/LC_MESSAGES/okular_chm.mo share/locale/gl/LC_MESSAGES/okular_comicbook.mo share/locale/gl/LC_MESSAGES/okular_djvu.mo share/locale/gl/LC_MESSAGES/okular_dvi.mo share/locale/gl/LC_MESSAGES/okular_epub.mo share/locale/gl/LC_MESSAGES/okular_fax.mo share/locale/gl/LC_MESSAGES/okular_fictionbook.mo share/locale/gl/LC_MESSAGES/okular_ghostview.mo share/locale/gl/LC_MESSAGES/okular_kimgio.mo share/locale/gl/LC_MESSAGES/okular_markdown.mo share/locale/gl/LC_MESSAGES/okular_mobi.mo share/locale/gl/LC_MESSAGES/okular_plucker.mo share/locale/gl/LC_MESSAGES/okular_poppler.mo share/locale/gl/LC_MESSAGES/okular_txt.mo share/locale/gl/LC_MESSAGES/okular_xps.mo share/locale/gl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/he/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular.mo share/locale/hi/LC_MESSAGES/okular_chm.mo share/locale/hi/LC_MESSAGES/okular_comicbook.mo share/locale/hi/LC_MESSAGES/okular_djvu.mo share/locale/hi/LC_MESSAGES/okular_dvi.mo share/locale/hi/LC_MESSAGES/okular_epub.mo share/locale/hi/LC_MESSAGES/okular_fax.mo share/locale/hi/LC_MESSAGES/okular_fictionbook.mo share/locale/hi/LC_MESSAGES/okular_ghostview.mo share/locale/hi/LC_MESSAGES/okular_kimgio.mo share/locale/hi/LC_MESSAGES/okular_markdown.mo share/locale/hi/LC_MESSAGES/okular_mobi.mo share/locale/hi/LC_MESSAGES/okular_plucker.mo share/locale/hi/LC_MESSAGES/okular_poppler.mo share/locale/hi/LC_MESSAGES/okular_tiff.mo share/locale/hi/LC_MESSAGES/okular_txt.mo share/locale/hi/LC_MESSAGES/okular_xps.mo share/locale/hi/LC_MESSAGES/org.kde.active.documentviewer.mo +share/locale/hne/LC_MESSAGES/okular.mo +share/locale/hne/LC_MESSAGES/okular_chm.mo +share/locale/hne/LC_MESSAGES/okular_djvu.mo +share/locale/hne/LC_MESSAGES/okular_dvi.mo +share/locale/hne/LC_MESSAGES/okular_fictionbook.mo +share/locale/hne/LC_MESSAGES/okular_ghostview.mo +share/locale/hne/LC_MESSAGES/okular_kimgio.mo +share/locale/hne/LC_MESSAGES/okular_plucker.mo +share/locale/hne/LC_MESSAGES/okular_poppler.mo +share/locale/hne/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/hsb/LC_MESSAGES/okular.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/ie/LC_MESSAGES/okular.mo +share/locale/ie/LC_MESSAGES/okular_chm.mo +share/locale/ie/LC_MESSAGES/okular_comicbook.mo +share/locale/ie/LC_MESSAGES/okular_djvu.mo +share/locale/ie/LC_MESSAGES/okular_epub.mo +share/locale/ie/LC_MESSAGES/okular_fax.mo +share/locale/ie/LC_MESSAGES/okular_fictionbook.mo +share/locale/ie/LC_MESSAGES/okular_ghostview.mo +share/locale/ie/LC_MESSAGES/okular_kimgio.mo +share/locale/ie/LC_MESSAGES/okular_markdown.mo +share/locale/ie/LC_MESSAGES/okular_mobi.mo +share/locale/ie/LC_MESSAGES/okular_plucker.mo +share/locale/ie/LC_MESSAGES/okular_txt.mo +share/locale/ie/LC_MESSAGES/okular_xps.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/ka/LC_MESSAGES/okular.mo +share/locale/ka/LC_MESSAGES/okular_chm.mo +share/locale/ka/LC_MESSAGES/okular_comicbook.mo +share/locale/ka/LC_MESSAGES/okular_djvu.mo +share/locale/ka/LC_MESSAGES/okular_dvi.mo +share/locale/ka/LC_MESSAGES/okular_epub.mo +share/locale/ka/LC_MESSAGES/okular_fax.mo +share/locale/ka/LC_MESSAGES/okular_fictionbook.mo +share/locale/ka/LC_MESSAGES/okular_ghostview.mo +share/locale/ka/LC_MESSAGES/okular_kimgio.mo +share/locale/ka/LC_MESSAGES/okular_markdown.mo +share/locale/ka/LC_MESSAGES/okular_mobi.mo +share/locale/ka/LC_MESSAGES/okular_plucker.mo +share/locale/ka/LC_MESSAGES/okular_poppler.mo +share/locale/ka/LC_MESSAGES/okular_tiff.mo +share/locale/ka/LC_MESSAGES/okular_txt.mo +share/locale/ka/LC_MESSAGES/okular_xps.mo +share/locale/ka/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/ku/LC_MESSAGES/okular.mo +share/locale/ku/LC_MESSAGES/okular_chm.mo +share/locale/ku/LC_MESSAGES/okular_comicbook.mo +share/locale/ku/LC_MESSAGES/okular_djvu.mo +share/locale/ku/LC_MESSAGES/okular_epub.mo +share/locale/ku/LC_MESSAGES/okular_fax.mo +share/locale/ku/LC_MESSAGES/okular_fictionbook.mo +share/locale/ku/LC_MESSAGES/okular_ghostview.mo +share/locale/ku/LC_MESSAGES/okular_kimgio.mo +share/locale/ku/LC_MESSAGES/okular_plucker.mo +share/locale/ku/LC_MESSAGES/okular_xps.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/mk/LC_MESSAGES/okular.mo +share/locale/mk/LC_MESSAGES/okular_chm.mo +share/locale/mk/LC_MESSAGES/okular_djvu.mo +share/locale/mk/LC_MESSAGES/okular_fictionbook.mo +share/locale/mk/LC_MESSAGES/okular_ghostview.mo +share/locale/mk/LC_MESSAGES/okular_kimgio.mo +share/locale/mk/LC_MESSAGES/okular_plucker.mo +share/locale/mk/LC_MESSAGES/okular_poppler.mo +share/locale/mk/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/ms/LC_MESSAGES/okular.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/ne/LC_MESSAGES/okular.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/oc/LC_MESSAGES/okular.mo +share/locale/oc/LC_MESSAGES/okular_chm.mo +share/locale/oc/LC_MESSAGES/okular_djvu.mo +share/locale/oc/LC_MESSAGES/okular_dvi.mo +share/locale/oc/LC_MESSAGES/okular_fictionbook.mo +share/locale/oc/LC_MESSAGES/okular_ghostview.mo +share/locale/oc/LC_MESSAGES/okular_kimgio.mo +share/locale/oc/LC_MESSAGES/okular_plucker.mo +share/locale/oc/LC_MESSAGES/okular_poppler.mo +share/locale/oc/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/okular.mo share/locale/pa/LC_MESSAGES/okular_chm.mo share/locale/pa/LC_MESSAGES/okular_comicbook.mo share/locale/pa/LC_MESSAGES/okular_djvu.mo share/locale/pa/LC_MESSAGES/okular_dvi.mo share/locale/pa/LC_MESSAGES/okular_epub.mo share/locale/pa/LC_MESSAGES/okular_fax.mo share/locale/pa/LC_MESSAGES/okular_fictionbook.mo share/locale/pa/LC_MESSAGES/okular_ghostview.mo share/locale/pa/LC_MESSAGES/okular_kimgio.mo share/locale/pa/LC_MESSAGES/okular_mobi.mo share/locale/pa/LC_MESSAGES/okular_plucker.mo share/locale/pa/LC_MESSAGES/okular_poppler.mo share/locale/pa/LC_MESSAGES/okular_txt.mo share/locale/pa/LC_MESSAGES/okular_xps.mo share/locale/pa/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pl/LC_MESSAGES/okular.mo share/locale/pl/LC_MESSAGES/okular_chm.mo share/locale/pl/LC_MESSAGES/okular_comicbook.mo share/locale/pl/LC_MESSAGES/okular_djvu.mo share/locale/pl/LC_MESSAGES/okular_dvi.mo share/locale/pl/LC_MESSAGES/okular_epub.mo share/locale/pl/LC_MESSAGES/okular_fax.mo share/locale/pl/LC_MESSAGES/okular_fictionbook.mo share/locale/pl/LC_MESSAGES/okular_ghostview.mo share/locale/pl/LC_MESSAGES/okular_kimgio.mo share/locale/pl/LC_MESSAGES/okular_markdown.mo share/locale/pl/LC_MESSAGES/okular_mobi.mo share/locale/pl/LC_MESSAGES/okular_plucker.mo share/locale/pl/LC_MESSAGES/okular_poppler.mo share/locale/pl/LC_MESSAGES/okular_tiff.mo share/locale/pl/LC_MESSAGES/okular_txt.mo share/locale/pl/LC_MESSAGES/okular_xps.mo share/locale/pl/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt/LC_MESSAGES/okular.mo share/locale/pt/LC_MESSAGES/okular_chm.mo share/locale/pt/LC_MESSAGES/okular_comicbook.mo share/locale/pt/LC_MESSAGES/okular_djvu.mo share/locale/pt/LC_MESSAGES/okular_dvi.mo share/locale/pt/LC_MESSAGES/okular_epub.mo share/locale/pt/LC_MESSAGES/okular_fax.mo share/locale/pt/LC_MESSAGES/okular_fictionbook.mo share/locale/pt/LC_MESSAGES/okular_ghostview.mo share/locale/pt/LC_MESSAGES/okular_kimgio.mo share/locale/pt/LC_MESSAGES/okular_markdown.mo share/locale/pt/LC_MESSAGES/okular_mobi.mo share/locale/pt/LC_MESSAGES/okular_plucker.mo share/locale/pt/LC_MESSAGES/okular_poppler.mo share/locale/pt/LC_MESSAGES/okular_tiff.mo share/locale/pt/LC_MESSAGES/okular_txt.mo share/locale/pt/LC_MESSAGES/okular_xps.mo share/locale/pt/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/pt_BR/LC_MESSAGES/okular.mo share/locale/pt_BR/LC_MESSAGES/okular_chm.mo share/locale/pt_BR/LC_MESSAGES/okular_comicbook.mo share/locale/pt_BR/LC_MESSAGES/okular_djvu.mo share/locale/pt_BR/LC_MESSAGES/okular_dvi.mo share/locale/pt_BR/LC_MESSAGES/okular_epub.mo share/locale/pt_BR/LC_MESSAGES/okular_fax.mo share/locale/pt_BR/LC_MESSAGES/okular_fictionbook.mo share/locale/pt_BR/LC_MESSAGES/okular_ghostview.mo share/locale/pt_BR/LC_MESSAGES/okular_kimgio.mo share/locale/pt_BR/LC_MESSAGES/okular_markdown.mo share/locale/pt_BR/LC_MESSAGES/okular_mobi.mo share/locale/pt_BR/LC_MESSAGES/okular_plucker.mo share/locale/pt_BR/LC_MESSAGES/okular_poppler.mo share/locale/pt_BR/LC_MESSAGES/okular_tiff.mo share/locale/pt_BR/LC_MESSAGES/okular_txt.mo share/locale/pt_BR/LC_MESSAGES/okular_xps.mo share/locale/pt_BR/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ro/LC_MESSAGES/okular.mo share/locale/ro/LC_MESSAGES/okular_chm.mo share/locale/ro/LC_MESSAGES/okular_comicbook.mo share/locale/ro/LC_MESSAGES/okular_djvu.mo share/locale/ro/LC_MESSAGES/okular_dvi.mo share/locale/ro/LC_MESSAGES/okular_epub.mo share/locale/ro/LC_MESSAGES/okular_fax.mo share/locale/ro/LC_MESSAGES/okular_fictionbook.mo share/locale/ro/LC_MESSAGES/okular_ghostview.mo share/locale/ro/LC_MESSAGES/okular_kimgio.mo share/locale/ro/LC_MESSAGES/okular_markdown.mo share/locale/ro/LC_MESSAGES/okular_mobi.mo share/locale/ro/LC_MESSAGES/okular_plucker.mo share/locale/ro/LC_MESSAGES/okular_poppler.mo share/locale/ro/LC_MESSAGES/okular_tiff.mo share/locale/ro/LC_MESSAGES/okular_txt.mo share/locale/ro/LC_MESSAGES/okular_xps.mo share/locale/ro/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ru/LC_MESSAGES/okular.mo share/locale/ru/LC_MESSAGES/okular_chm.mo share/locale/ru/LC_MESSAGES/okular_comicbook.mo share/locale/ru/LC_MESSAGES/okular_djvu.mo share/locale/ru/LC_MESSAGES/okular_dvi.mo share/locale/ru/LC_MESSAGES/okular_epub.mo share/locale/ru/LC_MESSAGES/okular_fax.mo share/locale/ru/LC_MESSAGES/okular_fictionbook.mo share/locale/ru/LC_MESSAGES/okular_ghostview.mo share/locale/ru/LC_MESSAGES/okular_kimgio.mo share/locale/ru/LC_MESSAGES/okular_markdown.mo share/locale/ru/LC_MESSAGES/okular_mobi.mo share/locale/ru/LC_MESSAGES/okular_plucker.mo share/locale/ru/LC_MESSAGES/okular_poppler.mo share/locale/ru/LC_MESSAGES/okular_tiff.mo share/locale/ru/LC_MESSAGES/okular_txt.mo share/locale/ru/LC_MESSAGES/okular_xps.mo share/locale/ru/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/se/LC_MESSAGES/okular.mo share/locale/se/LC_MESSAGES/okular_chm.mo share/locale/se/LC_MESSAGES/okular_djvu.mo share/locale/se/LC_MESSAGES/okular_dvi.mo share/locale/se/LC_MESSAGES/okular_fictionbook.mo share/locale/se/LC_MESSAGES/okular_ghostview.mo share/locale/se/LC_MESSAGES/okular_kimgio.mo share/locale/se/LC_MESSAGES/okular_plucker.mo share/locale/se/LC_MESSAGES/okular_poppler.mo share/locale/se/LC_MESSAGES/okular_xps.mo +share/locale/si/LC_MESSAGES/okular.mo +share/locale/si/LC_MESSAGES/okular_chm.mo +share/locale/si/LC_MESSAGES/okular_comicbook.mo +share/locale/si/LC_MESSAGES/okular_djvu.mo +share/locale/si/LC_MESSAGES/okular_dvi.mo +share/locale/si/LC_MESSAGES/okular_epub.mo +share/locale/si/LC_MESSAGES/okular_fax.mo +share/locale/si/LC_MESSAGES/okular_fictionbook.mo +share/locale/si/LC_MESSAGES/okular_ghostview.mo +share/locale/si/LC_MESSAGES/okular_kimgio.mo +share/locale/si/LC_MESSAGES/okular_mobi.mo +share/locale/si/LC_MESSAGES/okular_plucker.mo +share/locale/si/LC_MESSAGES/okular_poppler.mo +share/locale/si/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/sr@ijekavian/LC_MESSAGES/okular.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_chm.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_comicbook.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_djvu.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_dvi.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_epub.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_fax.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_fictionbook.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_ghostview.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_kimgio.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_markdown.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_mobi.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_plucker.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_poppler.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_txt.mo +share/locale/sr@ijekavian/LC_MESSAGES/okular_xps.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_chm.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_comicbook.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_djvu.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_dvi.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_epub.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fax.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_fictionbook.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_ghostview.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_kimgio.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_markdown.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_mobi.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_plucker.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_poppler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_txt.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/okular_xps.mo +share/locale/sr@latin/LC_MESSAGES/okular.mo +share/locale/sr@latin/LC_MESSAGES/okular_chm.mo +share/locale/sr@latin/LC_MESSAGES/okular_comicbook.mo +share/locale/sr@latin/LC_MESSAGES/okular_djvu.mo +share/locale/sr@latin/LC_MESSAGES/okular_dvi.mo +share/locale/sr@latin/LC_MESSAGES/okular_epub.mo +share/locale/sr@latin/LC_MESSAGES/okular_fax.mo +share/locale/sr@latin/LC_MESSAGES/okular_fictionbook.mo +share/locale/sr@latin/LC_MESSAGES/okular_ghostview.mo +share/locale/sr@latin/LC_MESSAGES/okular_kimgio.mo +share/locale/sr@latin/LC_MESSAGES/okular_markdown.mo +share/locale/sr@latin/LC_MESSAGES/okular_mobi.mo +share/locale/sr@latin/LC_MESSAGES/okular_plucker.mo +share/locale/sr@latin/LC_MESSAGES/okular_poppler.mo +share/locale/sr@latin/LC_MESSAGES/okular_txt.mo +share/locale/sr@latin/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/okular.mo share/locale/sv/LC_MESSAGES/okular_chm.mo share/locale/sv/LC_MESSAGES/okular_comicbook.mo share/locale/sv/LC_MESSAGES/okular_djvu.mo share/locale/sv/LC_MESSAGES/okular_dvi.mo share/locale/sv/LC_MESSAGES/okular_epub.mo share/locale/sv/LC_MESSAGES/okular_fax.mo share/locale/sv/LC_MESSAGES/okular_fictionbook.mo share/locale/sv/LC_MESSAGES/okular_ghostview.mo share/locale/sv/LC_MESSAGES/okular_kimgio.mo share/locale/sv/LC_MESSAGES/okular_markdown.mo share/locale/sv/LC_MESSAGES/okular_mobi.mo share/locale/sv/LC_MESSAGES/okular_plucker.mo share/locale/sv/LC_MESSAGES/okular_poppler.mo share/locale/sv/LC_MESSAGES/okular_tiff.mo share/locale/sv/LC_MESSAGES/okular_txt.mo share/locale/sv/LC_MESSAGES/okular_xps.mo share/locale/sv/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ta/LC_MESSAGES/okular.mo share/locale/ta/LC_MESSAGES/okular_djvu.mo share/locale/ta/LC_MESSAGES/okular_epub.mo share/locale/ta/LC_MESSAGES/okular_fax.mo share/locale/ta/LC_MESSAGES/okular_fictionbook.mo share/locale/ta/LC_MESSAGES/okular_ghostview.mo share/locale/ta/LC_MESSAGES/okular_kimgio.mo share/locale/ta/LC_MESSAGES/okular_markdown.mo share/locale/ta/LC_MESSAGES/okular_plucker.mo share/locale/ta/LC_MESSAGES/okular_poppler.mo share/locale/ta/LC_MESSAGES/okular_tiff.mo share/locale/ta/LC_MESSAGES/okular_txt.mo share/locale/ta/LC_MESSAGES/okular_xps.mo share/locale/ta/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/tg/LC_MESSAGES/okular.mo +share/locale/th/LC_MESSAGES/okular.mo +share/locale/th/LC_MESSAGES/okular_chm.mo +share/locale/th/LC_MESSAGES/okular_comicbook.mo +share/locale/th/LC_MESSAGES/okular_djvu.mo +share/locale/th/LC_MESSAGES/okular_dvi.mo +share/locale/th/LC_MESSAGES/okular_epub.mo +share/locale/th/LC_MESSAGES/okular_fax.mo +share/locale/th/LC_MESSAGES/okular_fictionbook.mo +share/locale/th/LC_MESSAGES/okular_ghostview.mo +share/locale/th/LC_MESSAGES/okular_kimgio.mo +share/locale/th/LC_MESSAGES/okular_mobi.mo +share/locale/th/LC_MESSAGES/okular_plucker.mo +share/locale/th/LC_MESSAGES/okular_poppler.mo +share/locale/th/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/okular.mo share/locale/tr/LC_MESSAGES/okular_chm.mo share/locale/tr/LC_MESSAGES/okular_comicbook.mo share/locale/tr/LC_MESSAGES/okular_djvu.mo share/locale/tr/LC_MESSAGES/okular_dvi.mo share/locale/tr/LC_MESSAGES/okular_epub.mo share/locale/tr/LC_MESSAGES/okular_fax.mo share/locale/tr/LC_MESSAGES/okular_fictionbook.mo share/locale/tr/LC_MESSAGES/okular_ghostview.mo share/locale/tr/LC_MESSAGES/okular_kimgio.mo share/locale/tr/LC_MESSAGES/okular_markdown.mo share/locale/tr/LC_MESSAGES/okular_mobi.mo share/locale/tr/LC_MESSAGES/okular_plucker.mo share/locale/tr/LC_MESSAGES/okular_poppler.mo share/locale/tr/LC_MESSAGES/okular_tiff.mo share/locale/tr/LC_MESSAGES/okular_txt.mo share/locale/tr/LC_MESSAGES/okular_xps.mo share/locale/tr/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/ug/LC_MESSAGES/okular.mo share/locale/ug/LC_MESSAGES/okular_chm.mo share/locale/ug/LC_MESSAGES/okular_comicbook.mo share/locale/ug/LC_MESSAGES/okular_djvu.mo share/locale/ug/LC_MESSAGES/okular_dvi.mo share/locale/ug/LC_MESSAGES/okular_epub.mo share/locale/ug/LC_MESSAGES/okular_fax.mo share/locale/ug/LC_MESSAGES/okular_fictionbook.mo share/locale/ug/LC_MESSAGES/okular_ghostview.mo share/locale/ug/LC_MESSAGES/okular_kimgio.mo share/locale/ug/LC_MESSAGES/okular_mobi.mo share/locale/ug/LC_MESSAGES/okular_plucker.mo share/locale/ug/LC_MESSAGES/okular_poppler.mo share/locale/ug/LC_MESSAGES/okular_txt.mo share/locale/ug/LC_MESSAGES/okular_xps.mo share/locale/ug/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/uk/LC_MESSAGES/okular.mo share/locale/uk/LC_MESSAGES/okular_chm.mo share/locale/uk/LC_MESSAGES/okular_comicbook.mo share/locale/uk/LC_MESSAGES/okular_djvu.mo share/locale/uk/LC_MESSAGES/okular_dvi.mo share/locale/uk/LC_MESSAGES/okular_epub.mo share/locale/uk/LC_MESSAGES/okular_fax.mo share/locale/uk/LC_MESSAGES/okular_fictionbook.mo share/locale/uk/LC_MESSAGES/okular_ghostview.mo share/locale/uk/LC_MESSAGES/okular_kimgio.mo share/locale/uk/LC_MESSAGES/okular_markdown.mo share/locale/uk/LC_MESSAGES/okular_mobi.mo share/locale/uk/LC_MESSAGES/okular_plucker.mo share/locale/uk/LC_MESSAGES/okular_poppler.mo share/locale/uk/LC_MESSAGES/okular_tiff.mo share/locale/uk/LC_MESSAGES/okular_txt.mo share/locale/uk/LC_MESSAGES/okular_xps.mo share/locale/uk/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/vi/LC_MESSAGES/okular.mo share/locale/vi/LC_MESSAGES/okular_chm.mo share/locale/vi/LC_MESSAGES/okular_comicbook.mo share/locale/vi/LC_MESSAGES/okular_djvu.mo share/locale/vi/LC_MESSAGES/okular_dvi.mo share/locale/vi/LC_MESSAGES/okular_epub.mo share/locale/vi/LC_MESSAGES/okular_fax.mo share/locale/vi/LC_MESSAGES/okular_fictionbook.mo share/locale/vi/LC_MESSAGES/okular_ghostview.mo share/locale/vi/LC_MESSAGES/okular_kimgio.mo share/locale/vi/LC_MESSAGES/okular_markdown.mo share/locale/vi/LC_MESSAGES/okular_mobi.mo share/locale/vi/LC_MESSAGES/okular_plucker.mo share/locale/vi/LC_MESSAGES/okular_poppler.mo share/locale/vi/LC_MESSAGES/okular_tiff.mo share/locale/vi/LC_MESSAGES/okular_txt.mo share/locale/vi/LC_MESSAGES/okular_xps.mo share/locale/vi/LC_MESSAGES/org.kde.active.documentviewer.mo share/locale/wa/LC_MESSAGES/okular.mo share/locale/wa/LC_MESSAGES/okular_chm.mo share/locale/wa/LC_MESSAGES/okular_comicbook.mo share/locale/wa/LC_MESSAGES/okular_djvu.mo share/locale/wa/LC_MESSAGES/okular_epub.mo share/locale/wa/LC_MESSAGES/okular_fax.mo share/locale/wa/LC_MESSAGES/okular_fictionbook.mo share/locale/wa/LC_MESSAGES/okular_ghostview.mo share/locale/wa/LC_MESSAGES/okular_kimgio.mo share/locale/wa/LC_MESSAGES/okular_mobi.mo share/locale/wa/LC_MESSAGES/okular_plucker.mo share/locale/wa/LC_MESSAGES/okular_poppler.mo share/locale/wa/LC_MESSAGES/okular_xps.mo +share/locale/xh/LC_MESSAGES/okular.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_HK/LC_MESSAGES/okular.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_tiff.mo share/locale/zh_TW/LC_MESSAGES/okular_txt.mo share/locale/zh_TW/LC_MESSAGES/okular_xps.mo share/locale/zh_TW/LC_MESSAGES/org.kde.active.documentviewer.mo share/metainfo/org.kde.okular-chm.metainfo.xml share/metainfo/org.kde.okular-comicbook.metainfo.xml share/metainfo/org.kde.okular-djvu.metainfo.xml share/metainfo/org.kde.okular-dvi.metainfo.xml share/metainfo/org.kde.okular-epub.metainfo.xml share/metainfo/org.kde.okular-fax.metainfo.xml share/metainfo/org.kde.okular-fb.metainfo.xml share/metainfo/org.kde.okular-kimgio.metainfo.xml share/metainfo/org.kde.okular-md.metainfo.xml share/metainfo/org.kde.okular-mobipocket.metainfo.xml share/metainfo/org.kde.okular-plucker.metainfo.xml share/metainfo/org.kde.okular-poppler.metainfo.xml share/metainfo/org.kde.okular-spectre.metainfo.xml share/metainfo/org.kde.okular-tiff.metainfo.xml share/metainfo/org.kde.okular-txt.metainfo.xml share/metainfo/org.kde.okular-xps.metainfo.xml share/metainfo/org.kde.okular.appdata.xml %%DATADIR%%/drawingtools.xml %%DATADIR%%/icons/hicolor/16x16/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/16x16/apps/okular-gv.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-fb2.png %%DATADIR%%/icons/hicolor/32x32/apps/okular-gv.png %%DATADIR%%/icons/hicolor/48x48/apps/okular-fb2.png %%DATADIR%%/pics/checkmark.png %%DATADIR%%/pics/circle.png %%DATADIR%%/pics/comment.png %%DATADIR%%/pics/cross.png %%DATADIR%%/pics/help.png %%DATADIR%%/pics/insert.png %%DATADIR%%/pics/key.png %%DATADIR%%/pics/newparagraph.png %%DATADIR%%/pics/note.png %%DATADIR%%/pics/okular-epub-movie.png %%DATADIR%%/pics/okular-epub-sound-icon.png %%DATADIR%%/pics/paperclip.png %%DATADIR%%/pics/paragraph.png %%DATADIR%%/pics/pushpin.png %%DATADIR%%/pics/rightarrow.png %%DATADIR%%/pics/rightpointer.png %%DATADIR%%/pics/stamps.svg %%DATADIR%%/pics/star.png %%DATADIR%%/pics/tool-base-okular.png %%DATADIR%%/pics/tool-base-okular@2x.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable.png %%DATADIR%%/pics/tool-highlighter-okular-colorizable@2x.png %%DATADIR%%/pics/tool-ink-okular-colorizable.png %%DATADIR%%/pics/tool-ink-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable.png %%DATADIR%%/pics/tool-note-inline-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note-inline.png %%DATADIR%%/pics/tool-note-okular-colorizable.png %%DATADIR%%/pics/tool-note-okular-colorizable@2x.png %%DATADIR%%/pics/tool-note.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable.png %%DATADIR%%/pics/tool-typewriter-okular-colorizable@2x.png %%DATADIR%%/pics/uparrow.png %%DATADIR%%/pics/upleftarrow.png %%DATADIR%%/tools.xml %%DATADIR%%/toolsQuick.xml +share/qlogging-categories5/okular.categories diff --git a/graphics/skanlite/distinfo b/graphics/skanlite/distinfo index c12ab8e9aad1..821478452c00 100644 --- a/graphics/skanlite/distinfo +++ b/graphics/skanlite/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539579 -SHA256 (KDE/release-service/22.08.3/skanlite-22.08.3.tar.xz) = a0359b6f58d61f5c2145bc7242752fcbb3785cbbc06a1a77c8e85c6bbde9362e -SIZE (KDE/release-service/22.08.3/skanlite-22.08.3.tar.xz) = 2441780 +TIMESTAMP = 1670513214 +SHA256 (KDE/release-service/22.12.0/skanlite-22.12.0.tar.xz) = 21e90c42ad3dab91f367faf73b80ec69989eebbf40eaf0ac0761101aa7e5ba10 +SIZE (KDE/release-service/22.12.0/skanlite-22.12.0.tar.xz) = 2444284 diff --git a/graphics/skanlite/pkg-plist b/graphics/skanlite/pkg-plist index 13834a5eb1ca..a788ae4ad22a 100644 --- a/graphics/skanlite/pkg-plist +++ b/graphics/skanlite/pkg-plist @@ -1,126 +1,129 @@ bin/skanlite share/applications/org.kde.skanlite.desktop share/doc/HTML/ca/skanlite/buttons-main.png share/doc/HTML/ca/skanlite/choose-scanner.png share/doc/HTML/ca/skanlite/final-button.png share/doc/HTML/ca/skanlite/index.cache.bz2 share/doc/HTML/ca/skanlite/index.docbook share/doc/HTML/ca/skanlite/main-window.png share/doc/HTML/ca/skanlite/no-scanner-found.png share/doc/HTML/ca/skanlite/other-options.png share/doc/HTML/ca/skanlite/preview-button.png share/doc/HTML/ca/skanlite/scanning.png share/doc/HTML/ca/skanlite/settings.png share/doc/HTML/ca/skanlite/zoom-to-fit.png share/doc/HTML/de/skanlite/buttons-main.png share/doc/HTML/de/skanlite/final-button.png share/doc/HTML/de/skanlite/index.cache.bz2 share/doc/HTML/de/skanlite/index.docbook share/doc/HTML/de/skanlite/main-window.png share/doc/HTML/de/skanlite/no-scanner-found.png share/doc/HTML/de/skanlite/other-options.png share/doc/HTML/de/skanlite/preview-button.png share/doc/HTML/de/skanlite/zoom-to-fit.png share/doc/HTML/en/skanlite/buttons-main.png share/doc/HTML/en/skanlite/choose-scanner.png share/doc/HTML/en/skanlite/final-button.png share/doc/HTML/en/skanlite/index.cache.bz2 share/doc/HTML/en/skanlite/index.docbook share/doc/HTML/en/skanlite/main-window.png share/doc/HTML/en/skanlite/multiple-selections.png share/doc/HTML/en/skanlite/no-scanner-found.png share/doc/HTML/en/skanlite/other-options.png share/doc/HTML/en/skanlite/preview-button.png share/doc/HTML/en/skanlite/preview.png share/doc/HTML/en/skanlite/save-location.png share/doc/HTML/en/skanlite/scanning.png share/doc/HTML/en/skanlite/settings.png share/doc/HTML/en/skanlite/zoom-in.png share/doc/HTML/en/skanlite/zoom-to-fit.png share/doc/HTML/es/skanlite/index.cache.bz2 share/doc/HTML/es/skanlite/index.docbook share/doc/HTML/fr/skanlite/index.cache.bz2 share/doc/HTML/fr/skanlite/index.docbook share/doc/HTML/id/skanlite/index.cache.bz2 share/doc/HTML/id/skanlite/index.docbook share/doc/HTML/it/skanlite/index.cache.bz2 share/doc/HTML/it/skanlite/index.docbook share/doc/HTML/nl/skanlite/index.cache.bz2 share/doc/HTML/nl/skanlite/index.docbook share/doc/HTML/pt/skanlite/index.cache.bz2 share/doc/HTML/pt/skanlite/index.docbook share/doc/HTML/pt_BR/skanlite/index.cache.bz2 share/doc/HTML/pt_BR/skanlite/index.docbook share/doc/HTML/sv/skanlite/index.cache.bz2 share/doc/HTML/sv/skanlite/index.docbook share/doc/HTML/uk/skanlite/buttons-main.png share/doc/HTML/uk/skanlite/choose-scanner.png share/doc/HTML/uk/skanlite/final-button.png share/doc/HTML/uk/skanlite/index.cache.bz2 share/doc/HTML/uk/skanlite/index.docbook share/doc/HTML/uk/skanlite/main-window.png share/doc/HTML/uk/skanlite/multiple-selections.png share/doc/HTML/uk/skanlite/no-scanner-found.png share/doc/HTML/uk/skanlite/other-options.png share/doc/HTML/uk/skanlite/preview-button.png share/doc/HTML/uk/skanlite/preview.png share/doc/HTML/uk/skanlite/save-location.png share/doc/HTML/uk/skanlite/scanning.png share/doc/HTML/uk/skanlite/settings.png share/doc/HTML/uk/skanlite/zoom-in.png share/doc/HTML/uk/skanlite/zoom-to-fit.png share/icons/hicolor/48x48/apps/org.kde.skanlite.svg share/locale/ar/LC_MESSAGES/skanlite.mo share/locale/az/LC_MESSAGES/skanlite.mo share/locale/be/LC_MESSAGES/skanlite.mo share/locale/bg/LC_MESSAGES/skanlite.mo share/locale/bs/LC_MESSAGES/skanlite.mo share/locale/ca/LC_MESSAGES/skanlite.mo share/locale/ca@valencia/LC_MESSAGES/skanlite.mo share/locale/cs/LC_MESSAGES/skanlite.mo share/locale/da/LC_MESSAGES/skanlite.mo share/locale/de/LC_MESSAGES/skanlite.mo share/locale/el/LC_MESSAGES/skanlite.mo share/locale/en_GB/LC_MESSAGES/skanlite.mo share/locale/eo/LC_MESSAGES/skanlite.mo share/locale/es/LC_MESSAGES/skanlite.mo share/locale/et/LC_MESSAGES/skanlite.mo share/locale/eu/LC_MESSAGES/skanlite.mo share/locale/fi/LC_MESSAGES/skanlite.mo share/locale/fr/LC_MESSAGES/skanlite.mo share/locale/ga/LC_MESSAGES/skanlite.mo share/locale/gl/LC_MESSAGES/skanlite.mo share/locale/hi/LC_MESSAGES/skanlite.mo share/locale/hr/LC_MESSAGES/skanlite.mo share/locale/hu/LC_MESSAGES/skanlite.mo share/locale/ia/LC_MESSAGES/skanlite.mo share/locale/id/LC_MESSAGES/skanlite.mo +share/locale/ie/LC_MESSAGES/skanlite.mo share/locale/is/LC_MESSAGES/skanlite.mo share/locale/it/LC_MESSAGES/skanlite.mo share/locale/ja/LC_MESSAGES/skanlite.mo +share/locale/ka/LC_MESSAGES/skanlite.mo share/locale/km/LC_MESSAGES/skanlite.mo share/locale/ko/LC_MESSAGES/skanlite.mo share/locale/lt/LC_MESSAGES/skanlite.mo share/locale/lv/LC_MESSAGES/skanlite.mo +share/locale/mai/LC_MESSAGES/skanlite.mo share/locale/mr/LC_MESSAGES/skanlite.mo share/locale/nb/LC_MESSAGES/skanlite.mo share/locale/nds/LC_MESSAGES/skanlite.mo share/locale/nl/LC_MESSAGES/skanlite.mo share/locale/nn/LC_MESSAGES/skanlite.mo share/locale/pa/LC_MESSAGES/skanlite.mo share/locale/pl/LC_MESSAGES/skanlite.mo share/locale/pt/LC_MESSAGES/skanlite.mo share/locale/pt_BR/LC_MESSAGES/skanlite.mo share/locale/ro/LC_MESSAGES/skanlite.mo share/locale/ru/LC_MESSAGES/skanlite.mo share/locale/sk/LC_MESSAGES/skanlite.mo share/locale/sl/LC_MESSAGES/skanlite.mo share/locale/sq/LC_MESSAGES/skanlite.mo share/locale/sv/LC_MESSAGES/skanlite.mo share/locale/tr/LC_MESSAGES/skanlite.mo share/locale/ug/LC_MESSAGES/skanlite.mo share/locale/uk/LC_MESSAGES/skanlite.mo share/locale/wa/LC_MESSAGES/skanlite.mo share/locale/zh_CN/LC_MESSAGES/skanlite.mo share/locale/zh_TW/LC_MESSAGES/skanlite.mo share/metainfo/org.kde.skanlite.appdata.xml diff --git a/graphics/skanpage/distinfo b/graphics/skanpage/distinfo index e20e0518e0ee..ba6d6f2bd182 100644 --- a/graphics/skanpage/distinfo +++ b/graphics/skanpage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539580 -SHA256 (KDE/release-service/22.08.3/skanpage-22.08.3.tar.xz) = b840dfc9afff8d814d1a76e5e5d1fca05d1140a63086062491afaffd4b925afa -SIZE (KDE/release-service/22.08.3/skanpage-22.08.3.tar.xz) = 1291092 +TIMESTAMP = 1670513216 +SHA256 (KDE/release-service/22.12.0/skanpage-22.12.0.tar.xz) = 70d0bab3d0fc2aebe82f358bbaacba16527a0bba1f0323c23685a9b84ee4e23d +SIZE (KDE/release-service/22.12.0/skanpage-22.12.0.tar.xz) = 1295176 diff --git a/graphics/skanpage/pkg-plist b/graphics/skanpage/pkg-plist index 921df489bd21..66701875171d 100644 --- a/graphics/skanpage/pkg-plist +++ b/graphics/skanpage/pkg-plist @@ -1,34 +1,37 @@ bin/skanpage share/applications/org.kde.skanpage.desktop share/icons/hicolor/48x48/apps/skanpage.png share/icons/hicolor/scalable/apps/skanpage.svg share/locale/ar/LC_MESSAGES/skanpage.mo share/locale/bg/LC_MESSAGES/skanpage.mo share/locale/ca/LC_MESSAGES/skanpage.mo share/locale/ca@valencia/LC_MESSAGES/skanpage.mo share/locale/cs/LC_MESSAGES/skanpage.mo share/locale/de/LC_MESSAGES/skanpage.mo share/locale/el/LC_MESSAGES/skanpage.mo share/locale/en_GB/LC_MESSAGES/skanpage.mo share/locale/es/LC_MESSAGES/skanpage.mo +share/locale/eu/LC_MESSAGES/skanpage.mo share/locale/fi/LC_MESSAGES/skanpage.mo share/locale/fr/LC_MESSAGES/skanpage.mo share/locale/ia/LC_MESSAGES/skanpage.mo share/locale/id/LC_MESSAGES/skanpage.mo +share/locale/is/LC_MESSAGES/skanpage.mo share/locale/it/LC_MESSAGES/skanpage.mo share/locale/ja/LC_MESSAGES/skanpage.mo +share/locale/ka/LC_MESSAGES/skanpage.mo share/locale/ko/LC_MESSAGES/skanpage.mo share/locale/nl/LC_MESSAGES/skanpage.mo share/locale/pl/LC_MESSAGES/skanpage.mo share/locale/pt/LC_MESSAGES/skanpage.mo share/locale/pt_BR/LC_MESSAGES/skanpage.mo share/locale/ru/LC_MESSAGES/skanpage.mo share/locale/sk/LC_MESSAGES/skanpage.mo share/locale/sl/LC_MESSAGES/skanpage.mo share/locale/sv/LC_MESSAGES/skanpage.mo share/locale/tr/LC_MESSAGES/skanpage.mo share/locale/uk/LC_MESSAGES/skanpage.mo share/locale/zh_CN/LC_MESSAGES/skanpage.mo share/locale/zh_TW/LC_MESSAGES/skanpage.mo share/metainfo/org.kde.skanpage.appdata.xml share/qlogging-categories5/skanpage.categories diff --git a/graphics/spectacle/distinfo b/graphics/spectacle/distinfo index 9567c72f0abe..22c6b7be3d00 100644 --- a/graphics/spectacle/distinfo +++ b/graphics/spectacle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539562 -SHA256 (KDE/release-service/22.08.3/spectacle-22.08.3.tar.xz) = 637e38c663d367f20a3ab3ee5e2dd92ea16b138558f166db67daa5652d1df30c -SIZE (KDE/release-service/22.08.3/spectacle-22.08.3.tar.xz) = 1255028 +TIMESTAMP = 1670513191 +SHA256 (KDE/release-service/22.12.0/spectacle-22.12.0.tar.xz) = 3aab82cb2dfe24e17722a89720f26a1b35a4c9a8867af8a62607876609fb1817 +SIZE (KDE/release-service/22.12.0/spectacle-22.12.0.tar.xz) = 1270076 diff --git a/graphics/spectacle/pkg-plist b/graphics/spectacle/pkg-plist index f218746769e2..114f22072afa 100644 --- a/graphics/spectacle/pkg-plist +++ b/graphics/spectacle/pkg-plist @@ -1,66 +1,74 @@ bin/spectacle lib/kconf_update_bin/spectacle-migrate-rememberregion 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/applications/org.kde.spectacle.desktop share/dbus-1/interfaces/org.kde.Spectacle.xml share/dbus-1/services/org.kde.Spectacle.service share/icons/hicolor/scalable/apps/spectacle.svg share/kconf_update/50-clipboard_settings_change.py share/kconf_update/spectacle_clipboard.upd share/kconf_update/spectacle_newConfig.upd share/kconf_update/spectacle_rememberregion.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/hsb/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/ie/LC_MESSAGES/spectacle.mo +share/locale/is/LC_MESSAGES/spectacle.mo share/locale/it/LC_MESSAGES/spectacle.mo share/locale/ja/LC_MESSAGES/spectacle.mo +share/locale/ka/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/pa/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/sr@ijekavian/LC_MESSAGES/spectacle.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/spectacle.mo +share/locale/sr@latin/LC_MESSAGES/spectacle.mo share/locale/sv/LC_MESSAGES/spectacle.mo share/locale/ta/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 share/qlogging-categories5/spectacle.categories diff --git a/irc/konversation/distinfo b/irc/konversation/distinfo index 20e50b760dd1..d973e046ce88 100644 --- a/irc/konversation/distinfo +++ b/irc/konversation/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539408 -SHA256 (KDE/release-service/22.08.3/konversation-22.08.3.tar.xz) = b1d71924c32c0c78d6d60f1a99ab0a5a436b7a0007160f967876fb5bea6b46f1 -SIZE (KDE/release-service/22.08.3/konversation-22.08.3.tar.xz) = 4286292 +TIMESTAMP = 1670512994 +SHA256 (KDE/release-service/22.12.0/konversation-22.12.0.tar.xz) = 55e934251489b4890919b6f4e2eba2714a4a6b20c63fe4f3f6ad22c856758062 +SIZE (KDE/release-service/22.12.0/konversation-22.12.0.tar.xz) = 4447324 diff --git a/irc/konversation/pkg-plist b/irc/konversation/pkg-plist index 4f5c2df5e5cd..0850a668fc9a 100644 --- a/irc/konversation/pkg-plist +++ b/irc/konversation/pkg-plist @@ -1,167 +1,179 @@ bin/konversation share/applications/org.kde.konversation.desktop share/dbus-1/services/org.kde.konversation.service +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/icons/hicolor/128x128/actions/konv_message.png -share/icons/hicolor/128x128/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/br/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/cy/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/eu/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/ie/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/ka/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/ms/LC_MESSAGES/konversation.mo +share/locale/mt/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/rw/LC_MESSAGES/konversation.mo +share/locale/si/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/sr@ijekavian/LC_MESSAGES/konversation.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/konversation.mo +share/locale/sr@latin/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 f00c8c295247..c6ea2aade643 100644 --- a/japanese/kiten/distinfo +++ b/japanese/kiten/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539494 -SHA256 (KDE/release-service/22.08.3/kiten-22.08.3.tar.xz) = 54b8c8ec4094beb383eb748163c4ca84ef28c447134bcb7e9d5107d86218edd2 -SIZE (KDE/release-service/22.08.3/kiten-22.08.3.tar.xz) = 11316148 +TIMESTAMP = 1670513106 +SHA256 (KDE/release-service/22.12.0/kiten-22.12.0.tar.xz) = 5318a181b49a95a07fd2df44b6b18df636a5b91e4026844de4cbac617ef8dc7e +SIZE (KDE/release-service/22.12.0/kiten-22.12.0.tar.xz) = 11332276 diff --git a/japanese/kiten/pkg-plist b/japanese/kiten/pkg-plist index 11adf630ed0e..e0d632b76550 100644 --- a/japanese/kiten/pkg-plist +++ b/japanese/kiten/pkg-plist @@ -1,93 +1,104 @@ 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/128x128/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/af/LC_MESSAGES/kiten.mo share/locale/ar/LC_MESSAGES/kiten.mo share/locale/be/LC_MESSAGES/kiten.mo share/locale/bg/LC_MESSAGES/kiten.mo +share/locale/br/LC_MESSAGES/kiten.mo share/locale/bs/LC_MESSAGES/kiten.mo share/locale/ca/LC_MESSAGES/kiten.mo share/locale/ca@valencia/LC_MESSAGES/kiten.mo share/locale/cs/LC_MESSAGES/kiten.mo +share/locale/cy/LC_MESSAGES/kiten.mo share/locale/da/LC_MESSAGES/kiten.mo share/locale/de/LC_MESSAGES/kiten.mo share/locale/el/LC_MESSAGES/kiten.mo share/locale/en_GB/LC_MESSAGES/kiten.mo share/locale/eo/LC_MESSAGES/kiten.mo share/locale/es/LC_MESSAGES/kiten.mo share/locale/et/LC_MESSAGES/kiten.mo share/locale/eu/LC_MESSAGES/kiten.mo share/locale/fa/LC_MESSAGES/kiten.mo share/locale/fi/LC_MESSAGES/kiten.mo share/locale/fr/LC_MESSAGES/kiten.mo share/locale/ga/LC_MESSAGES/kiten.mo share/locale/gl/LC_MESSAGES/kiten.mo share/locale/hi/LC_MESSAGES/kiten.mo +share/locale/hne/LC_MESSAGES/kiten.mo share/locale/hr/LC_MESSAGES/kiten.mo share/locale/hu/LC_MESSAGES/kiten.mo share/locale/is/LC_MESSAGES/kiten.mo share/locale/it/LC_MESSAGES/kiten.mo share/locale/ja/LC_MESSAGES/kiten.mo +share/locale/ka/LC_MESSAGES/kiten.mo share/locale/kk/LC_MESSAGES/kiten.mo share/locale/km/LC_MESSAGES/kiten.mo share/locale/ko/LC_MESSAGES/kiten.mo share/locale/lt/LC_MESSAGES/kiten.mo share/locale/lv/LC_MESSAGES/kiten.mo +share/locale/mk/LC_MESSAGES/kiten.mo share/locale/ml/LC_MESSAGES/kiten.mo share/locale/mr/LC_MESSAGES/kiten.mo +share/locale/ms/LC_MESSAGES/kiten.mo share/locale/nb/LC_MESSAGES/kiten.mo share/locale/nds/LC_MESSAGES/kiten.mo +share/locale/ne/LC_MESSAGES/kiten.mo share/locale/nl/LC_MESSAGES/kiten.mo share/locale/nn/LC_MESSAGES/kiten.mo +share/locale/oc/LC_MESSAGES/kiten.mo share/locale/pl/LC_MESSAGES/kiten.mo share/locale/pt/LC_MESSAGES/kiten.mo share/locale/pt_BR/LC_MESSAGES/kiten.mo share/locale/ro/LC_MESSAGES/kiten.mo share/locale/ru/LC_MESSAGES/kiten.mo share/locale/se/LC_MESSAGES/kiten.mo +share/locale/si/LC_MESSAGES/kiten.mo share/locale/sk/LC_MESSAGES/kiten.mo share/locale/sl/LC_MESSAGES/kiten.mo share/locale/sq/LC_MESSAGES/kiten.mo share/locale/sv/LC_MESSAGES/kiten.mo share/locale/ta/LC_MESSAGES/kiten.mo share/locale/tg/LC_MESSAGES/kiten.mo share/locale/tr/LC_MESSAGES/kiten.mo share/locale/ug/LC_MESSAGES/kiten.mo share/locale/uk/LC_MESSAGES/kiten.mo +share/locale/xh/LC_MESSAGES/kiten.mo share/locale/zh_CN/LC_MESSAGES/kiten.mo share/locale/zh_TW/LC_MESSAGES/kiten.mo share/metainfo/org.kde.kiten.appdata.xml diff --git a/lang/kross-interpreters/distinfo b/lang/kross-interpreters/distinfo index 3c476107466d..12855b0b39c8 100644 --- a/lang/kross-interpreters/distinfo +++ b/lang/kross-interpreters/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539433 -SHA256 (KDE/release-service/22.08.3/kross-interpreters-22.08.3.tar.xz) = 89d237ad6eadf7d1d9adc710212767b6c835cac9cfdabde03fbd90204af01476 -SIZE (KDE/release-service/22.08.3/kross-interpreters-22.08.3.tar.xz) = 151792 +TIMESTAMP = 1670513028 +SHA256 (KDE/release-service/22.12.0/kross-interpreters-22.12.0.tar.xz) = 6a0ff8016b297901e2ff6508b0bbdc2ecd4891dcb7b645eaab556f72815c692e +SIZE (KDE/release-service/22.12.0/kross-interpreters-22.12.0.tar.xz) = 151720 diff --git a/lang/kturtle/distinfo b/lang/kturtle/distinfo index 75462ac1f8b8..aa0fcb92dfe2 100644 --- a/lang/kturtle/distinfo +++ b/lang/kturtle/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539432 -SHA256 (KDE/release-service/22.08.3/kturtle-22.08.3.tar.xz) = 823c6aa3b3cc6dccc0346a4524b4e97ccaa58f25e5b4e9fcd9e3e360c97b8476 -SIZE (KDE/release-service/22.08.3/kturtle-22.08.3.tar.xz) = 1967656 +TIMESTAMP = 1670513026 +SHA256 (KDE/release-service/22.12.0/kturtle-22.12.0.tar.xz) = 43f9b49bf771a9f8bca564a8fced7fb313a1ebf28e515221c33531cd68cd8630 +SIZE (KDE/release-service/22.12.0/kturtle-22.12.0.tar.xz) = 1999028 diff --git a/lang/kturtle/pkg-plist b/lang/kturtle/pkg-plist index 99b9f9e022d9..b9c207bccc51 100644 --- a/lang/kturtle/pkg-plist +++ b/lang/kturtle/pkg-plist @@ -1,67 +1,79 @@ 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/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/bn/LC_MESSAGES/kturtle.mo +share/locale/br/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/csb/LC_MESSAGES/kturtle.mo +share/locale/cy/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/hne/LC_MESSAGES/kturtle.mo share/locale/hr/LC_MESSAGES/kturtle.mo share/locale/hu/LC_MESSAGES/kturtle.mo +share/locale/hy/LC_MESSAGES/kturtle.mo share/locale/is/LC_MESSAGES/kturtle.mo share/locale/it/LC_MESSAGES/kturtle.mo share/locale/ja/LC_MESSAGES/kturtle.mo +share/locale/ka/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/mk/LC_MESSAGES/kturtle.mo share/locale/ml/LC_MESSAGES/kturtle.mo share/locale/mr/LC_MESSAGES/kturtle.mo +share/locale/ms/LC_MESSAGES/kturtle.mo share/locale/nb/LC_MESSAGES/kturtle.mo share/locale/nds/LC_MESSAGES/kturtle.mo +share/locale/ne/LC_MESSAGES/kturtle.mo share/locale/nl/LC_MESSAGES/kturtle.mo share/locale/nn/LC_MESSAGES/kturtle.mo +share/locale/oc/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/si/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 da77e46083a4..7332600c569c 100644 --- a/math/analitza/distinfo +++ b/math/analitza/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539396 -SHA256 (KDE/release-service/22.08.3/analitza-22.08.3.tar.xz) = beaa65dcc664a1d7cd5320cb07ecce4473b1dc5cd8f42432220460c5fc3f4eea -SIZE (KDE/release-service/22.08.3/analitza-22.08.3.tar.xz) = 349160 +TIMESTAMP = 1670512979 +SHA256 (KDE/release-service/22.12.0/analitza-22.12.0.tar.xz) = 46dcaef7fe08c2a942992057d6c2c6c860a03df6eed6662a780b9f55a18cdfc1 +SIZE (KDE/release-service/22.12.0/analitza-22.12.0.tar.xz) = 351220 diff --git a/math/analitza/pkg-plist b/math/analitza/pkg-plist index 239695ac5139..8a0fbb7a1859 100644 --- a/math/analitza/pkg-plist +++ b/math/analitza/pkg-plist @@ -1,110 +1,111 @@ 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/ka/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/distinfo b/math/cantor/distinfo index d0e43a11fdd0..2532f007c105 100644 --- a/math/cantor/distinfo +++ b/math/cantor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539404 -SHA256 (KDE/release-service/22.08.3/cantor-22.08.3.tar.xz) = 4a5e60036c3a00c36073b5db3f9172a4b7dba7ac67ff14896092796068ffff04 -SIZE (KDE/release-service/22.08.3/cantor-22.08.3.tar.xz) = 9224356 +TIMESTAMP = 1670512989 +SHA256 (KDE/release-service/22.12.0/cantor-22.12.0.tar.xz) = dc2b4fcc200fe865c59bd8f8f1fa28994ca63c2181df982243eeb9ef0ddbfd2f +SIZE (KDE/release-service/22.12.0/cantor-22.12.0.tar.xz) = 9242896 diff --git a/math/cantor/pkg-plist b/math/cantor/pkg-plist index 8b771b90ab58..1d490620b376 100644 --- a/math/cantor/pkg-plist +++ b/math/cantor/pkg-plist @@ -1,181 +1,183 @@ bin/cantor bin/cantor_pythonserver %%R%%bin/cantor_rserver bin/cantor_scripteditor include/cantor/animationresult.h include/cantor/backend.h include/cantor/cantor_export.h include/cantor/cantor_macros.h include/cantor/cantorlibs_version.h include/cantor/completionobject.h include/cantor/defaulthighlighter.h include/cantor/defaultvariablemodel.h include/cantor/epsresult.h include/cantor/expression.h include/cantor/extension.h include/cantor/graphicpackage.h include/cantor/helpresult.h include/cantor/htmlresult.h include/cantor/imageresult.h include/cantor/jupyterutils.h include/cantor/latexresult.h include/cantor/mimeresult.h include/cantor/panelplugin.h include/cantor/panelpluginhandler.h include/cantor/renderer.h include/cantor/result.h include/cantor/session.h include/cantor/syntaxhelpobject.h include/cantor/textresult.h include/cantor/worksheetaccess.h lib/cantor_pythonbackend.so lib/cmake/Cantor/CantorConfig.cmake lib/cmake/Cantor/CantorConfigVersion.cmake lib/cmake/Cantor/CantorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Cantor/CantorTargets.cmake lib/libcantor_config.so lib/libcantorlibs.so lib/libcantorlibs.so.%%KDE_APPLICATIONS_VERSION%% lib/libcantorlibs.so.28 %%QT_PLUGINDIR%%/cantor/assistants/cantor_advancedplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_creatematrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_differentiateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvaluesassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_eigenvectorsassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_importpackageassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_integrateassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_invertmatrixassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot2dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_plot3dassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_qalculateplotassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_runscriptassistant.so %%QT_PLUGINDIR%%/cantor/assistants/cantor_solveassistant.so %%QT_PLUGINDIR%%/cantor/backends/cantor_kalgebrabackend.so %%LUAJIT%%%%QT_PLUGINDIR%%/cantor/backends/cantor_luabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_maximabackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_octavebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_pythonbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_qalculatebackend.so %%R%%%%QT_PLUGINDIR%%/cantor/backends/cantor_rbackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_sagebackend.so %%QT_PLUGINDIR%%/cantor/backends/cantor_scilabbackend.so %%QT_PLUGINDIR%%/cantor/panels/cantor_documentationpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_filebrowserpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_helppanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_tocpanelplugin.so %%QT_PLUGINDIR%%/cantor/panels/cantor_variablemanagerplugin.so %%QT_PLUGINDIR%%/kf5/parts/cantorpart.so share/applications/org.kde.cantor.desktop %%DATADIR%%/latex/preview.sty %%DATADIR%%/maximabackend/cantor-initmaxima.lisp %%DATADIR%%/octave/graphic_packages.xml %%DATADIR%%/octavebackend/cantor_eigenvectors.m %%DATADIR%%/octavebackend/cantor_plot2d.m %%DATADIR%%/octavebackend/cantor_plot3d.m %%DATADIR%%/octavebackend/cantor_print.m %%DATADIR%%/python/graphic_packages.xml %%DATADIR%%/sagebackend/cantor-execsage %%DATADIR%%/xslt/latex.xsl share/config.kcfg/cantor.kcfg share/config.kcfg/cantor_libs.kcfg share/config.kcfg/kalgebrabackend.kcfg %%LUAJIT%%share/config.kcfg/luabackend.kcfg share/config.kcfg/maximabackend.kcfg share/config.kcfg/octavebackend.kcfg.in share/config.kcfg/pythonbackend.kcfg share/config.kcfg/qalculatebackend.kcfg %%R%%share/config.kcfg/rserver.kcfg share/config.kcfg/sagebackend.kcfg share/config.kcfg/scilabbackend.kcfg share/icons/hicolor/16x16/apps/cantor.png share/icons/hicolor/22x22/apps/cantor.png share/icons/hicolor/32x32/apps/cantor.png share/icons/hicolor/48x48/apps/cantor.png share/icons/hicolor/48x48/apps/juliabackend.png share/icons/hicolor/48x48/apps/kalgebrabackend.png share/icons/hicolor/48x48/apps/luabackend.png share/icons/hicolor/48x48/apps/maximabackend.png share/icons/hicolor/48x48/apps/octavebackend.png share/icons/hicolor/48x48/apps/pythonbackend.png share/icons/hicolor/48x48/apps/qalculatebackend.png share/icons/hicolor/48x48/apps/rbackend.png share/icons/hicolor/48x48/apps/sagebackend.png share/icons/hicolor/48x48/apps/scilabbackend.png share/icons/hicolor/64x64/apps/cantor.png share/icons/hicolor/128x128/apps/cantor.png share/knsrcfiles/cantor-documentation.knsrc share/knsrcfiles/cantor.knsrc share/knsrcfiles/cantor_kalgebra.knsrc %%LUAJIT%%share/knsrcfiles/cantor_lua.knsrc share/knsrcfiles/cantor_maxima.knsrc share/knsrcfiles/cantor_octave.knsrc share/knsrcfiles/cantor_python.knsrc share/knsrcfiles/cantor_qalculate.knsrc %%R%%share/knsrcfiles/cantor_r.knsrc share/knsrcfiles/cantor_sage.knsrc share/knsrcfiles/cantor_scilab.knsrc share/kxmlgui5/cantor/cantor_advancedplot_assistant.rc share/kxmlgui5/cantor/cantor_create_matrix_assistant.rc share/kxmlgui5/cantor/cantor_differentiate_assistant.rc share/kxmlgui5/cantor/cantor_eigenvalues_assistant.rc share/kxmlgui5/cantor/cantor_eigenvectors_assistant.rc share/kxmlgui5/cantor/cantor_import_package_assistant.rc share/kxmlgui5/cantor/cantor_integrate_assistant.rc share/kxmlgui5/cantor/cantor_invert_matrix_assistant.rc share/kxmlgui5/cantor/cantor_part.rc share/kxmlgui5/cantor/cantor_plot2d_assistant.rc share/kxmlgui5/cantor/cantor_plot3d_assistant.rc share/kxmlgui5/cantor/cantor_qalculateplotassistant.rc share/kxmlgui5/cantor/cantor_runscript_assistant.rc share/kxmlgui5/cantor/cantor_scripteditor.rc share/kxmlgui5/cantor/cantor_shell.rc share/kxmlgui5/cantor/cantor_solve_assistant.rc share/locale/ar/LC_MESSAGES/cantor.mo share/locale/bg/LC_MESSAGES/cantor.mo share/locale/bs/LC_MESSAGES/cantor.mo share/locale/ca/LC_MESSAGES/cantor.mo share/locale/ca@valencia/LC_MESSAGES/cantor.mo share/locale/cs/LC_MESSAGES/cantor.mo share/locale/da/LC_MESSAGES/cantor.mo share/locale/de/LC_MESSAGES/cantor.mo share/locale/el/LC_MESSAGES/cantor.mo share/locale/en_GB/LC_MESSAGES/cantor.mo share/locale/eo/LC_MESSAGES/cantor.mo share/locale/es/LC_MESSAGES/cantor.mo share/locale/et/LC_MESSAGES/cantor.mo share/locale/eu/LC_MESSAGES/cantor.mo share/locale/fi/LC_MESSAGES/cantor.mo share/locale/fr/LC_MESSAGES/cantor.mo share/locale/ga/LC_MESSAGES/cantor.mo share/locale/gl/LC_MESSAGES/cantor.mo share/locale/hr/LC_MESSAGES/cantor.mo share/locale/hu/LC_MESSAGES/cantor.mo share/locale/ia/LC_MESSAGES/cantor.mo share/locale/it/LC_MESSAGES/cantor.mo share/locale/ja/LC_MESSAGES/cantor.mo +share/locale/ka/LC_MESSAGES/cantor.mo share/locale/kk/LC_MESSAGES/cantor.mo share/locale/ko/LC_MESSAGES/cantor.mo share/locale/lt/LC_MESSAGES/cantor.mo share/locale/lv/LC_MESSAGES/cantor.mo share/locale/ml/LC_MESSAGES/cantor.mo share/locale/mr/LC_MESSAGES/cantor.mo share/locale/nb/LC_MESSAGES/cantor.mo share/locale/nds/LC_MESSAGES/cantor.mo share/locale/nl/LC_MESSAGES/cantor.mo share/locale/nn/LC_MESSAGES/cantor.mo share/locale/pa/LC_MESSAGES/cantor.mo share/locale/pl/LC_MESSAGES/cantor.mo share/locale/pt/LC_MESSAGES/cantor.mo share/locale/pt_BR/LC_MESSAGES/cantor.mo share/locale/ro/LC_MESSAGES/cantor.mo share/locale/ru/LC_MESSAGES/cantor.mo share/locale/sk/LC_MESSAGES/cantor.mo share/locale/sl/LC_MESSAGES/cantor.mo share/locale/sv/LC_MESSAGES/cantor.mo +share/locale/th/LC_MESSAGES/cantor.mo share/locale/tr/LC_MESSAGES/cantor.mo share/locale/ug/LC_MESSAGES/cantor.mo share/locale/uk/LC_MESSAGES/cantor.mo share/locale/zh_CN/LC_MESSAGES/cantor.mo share/locale/zh_TW/LC_MESSAGES/cantor.mo share/metainfo/org.kde.cantor.appdata.xml share/mime/packages/cantor.xml diff --git a/math/kalgebra/distinfo b/math/kalgebra/distinfo index 233e85249c5f..eb4effe1c285 100644 --- a/math/kalgebra/distinfo +++ b/math/kalgebra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539401 -SHA256 (KDE/release-service/22.08.3/kalgebra-22.08.3.tar.xz) = 82e0007a9a71a1771624410449be4a7c2db13fa9583e917b330270265512f977 -SIZE (KDE/release-service/22.08.3/kalgebra-22.08.3.tar.xz) = 1032484 +TIMESTAMP = 1670512985 +SHA256 (KDE/release-service/22.12.0/kalgebra-22.12.0.tar.xz) = bc037d47be0e037bad8060f904e4fbab46cd00dec69026bc6c985e281ba94ad7 +SIZE (KDE/release-service/22.12.0/kalgebra-22.12.0.tar.xz) = 1033408 diff --git a/math/kalgebra/pkg-plist b/math/kalgebra/pkg-plist index 8124dc619c06..0122d528117e 100644 --- a/math/kalgebra/pkg-plist +++ b/math/kalgebra/pkg-plist @@ -1,141 +1,105 @@ bin/calgebra %%WEBENGINE%%bin/kalgebra bin/kalgebramobile %%WEBENGINE%%share/applications/org.kde.kalgebra.desktop share/applications/org.kde.kalgebramobile.desktop share/icons/hicolor/64x64/apps/kalgebra.png share/icons/hicolor/scalable/apps/kalgebra.svgz %%WEBENGINE%%share/katepart5/syntax/kalgebra.xml %%WEBENGINE%%share/kservices5/graphsplasmoid.desktop share/locale/ar/LC_MESSAGES/kalgebra.mo share/locale/ar/LC_MESSAGES/kalgebramobile.mo -share/locale/ar/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/be/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebra.mo share/locale/bg/LC_MESSAGES/kalgebramobile.mo -share/locale/bg/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/bs/LC_MESSAGES/kalgebra.mo -share/locale/bs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca/LC_MESSAGES/kalgebra.mo share/locale/ca/LC_MESSAGES/kalgebramobile.mo -share/locale/ca/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/ca@valencia/LC_MESSAGES/kalgebra.mo share/locale/ca@valencia/LC_MESSAGES/kalgebramobile.mo -share/locale/ca@valencia/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo share/locale/cs/LC_MESSAGES/kalgebra.mo share/locale/cs/LC_MESSAGES/kalgebramobile.mo -share/locale/cs/LC_MESSAGES/plasma_applet_kalgebraplasmoid.mo +share/locale/csb/LC_MESSAGES/kalgebra.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/hne/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/ka/LC_MESSAGES/kalgebra.mo +share/locale/ka/LC_MESSAGES/kalgebramobile.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/mai/LC_MESSAGES/kalgebra.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/oc/LC_MESSAGES/kalgebra.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/si/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/te/LC_MESSAGES/kalgebra.mo share/locale/tg/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/kalgebra.mo share/locale/tr/LC_MESSAGES/kalgebramobile.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 5b441ce56f56..c7c13f8011a6 100644 --- a/math/kbruch/distinfo +++ b/math/kbruch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539399 -SHA256 (KDE/release-service/22.08.3/kbruch-22.08.3.tar.xz) = 90cebb4a06b259b83268b0699bce9632ef97151269d94d95c54af277a042f85b -SIZE (KDE/release-service/22.08.3/kbruch-22.08.3.tar.xz) = 5633736 +TIMESTAMP = 1670512982 +SHA256 (KDE/release-service/22.12.0/kbruch-22.12.0.tar.xz) = 2b11d027af484fa42af3f686127342e0280093fb4fdb59f2a5c1cd9ce60e4194 +SIZE (KDE/release-service/22.12.0/kbruch-22.12.0.tar.xz) = 5654880 diff --git a/math/kbruch/pkg-plist b/math/kbruch/pkg-plist index 675f4994826a..a51b52fe31ca 100644 --- a/math/kbruch/pkg-plist +++ b/math/kbruch/pkg-plist @@ -1,96 +1,108 @@ 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/128x128/apps/kbruch.png share/icons/hicolor/16x16/apps/kbruch.png share/icons/hicolor/22x22/apps/kbruch.png share/icons/hicolor/32x32/apps/kbruch.png share/icons/hicolor/48x48/apps/kbruch.png share/icons/hicolor/64x64/apps/kbruch.png share/icons/hicolor/scalable/apps/kbruch.svgz %%DATADIR%%/pics/exercise_arithmetics.png %%DATADIR%%/pics/exercise_compare.png %%DATADIR%%/pics/exercise_conversion.png %%DATADIR%%/pics/exercise_factorization.png %%DATADIR%%/pics/exercise_mixed.png %%DATADIR%%/pics/exercise_percentage.png %%DATADIR%%/pics/icon_back_arrow.png %%DATADIR%%/pics/icon_freestyle.png %%DATADIR%%/pics/icon_freestyle_1.png %%DATADIR%%/pics/icon_learning.png %%DATADIR%%/pics/icon_learning_1.png %%DATADIR%%/pics/icon_test_case.png %%DATADIR%%/pics/icon_test_case_1.png share/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/bn/LC_MESSAGES/kbruch.mo +share/locale/br/LC_MESSAGES/kbruch.mo share/locale/bs/LC_MESSAGES/kbruch.mo share/locale/ca/LC_MESSAGES/kbruch.mo share/locale/ca@valencia/LC_MESSAGES/kbruch.mo share/locale/cs/LC_MESSAGES/kbruch.mo +share/locale/cy/LC_MESSAGES/kbruch.mo share/locale/da/LC_MESSAGES/kbruch.mo share/locale/de/LC_MESSAGES/kbruch.mo share/locale/el/LC_MESSAGES/kbruch.mo share/locale/en_GB/LC_MESSAGES/kbruch.mo share/locale/eo/LC_MESSAGES/kbruch.mo share/locale/es/LC_MESSAGES/kbruch.mo share/locale/et/LC_MESSAGES/kbruch.mo share/locale/eu/LC_MESSAGES/kbruch.mo share/locale/fa/LC_MESSAGES/kbruch.mo share/locale/fi/LC_MESSAGES/kbruch.mo share/locale/fr/LC_MESSAGES/kbruch.mo share/locale/ga/LC_MESSAGES/kbruch.mo share/locale/gl/LC_MESSAGES/kbruch.mo share/locale/he/LC_MESSAGES/kbruch.mo share/locale/hi/LC_MESSAGES/kbruch.mo +share/locale/hne/LC_MESSAGES/kbruch.mo share/locale/hr/LC_MESSAGES/kbruch.mo share/locale/hu/LC_MESSAGES/kbruch.mo share/locale/is/LC_MESSAGES/kbruch.mo share/locale/it/LC_MESSAGES/kbruch.mo share/locale/ja/LC_MESSAGES/kbruch.mo +share/locale/ka/LC_MESSAGES/kbruch.mo share/locale/kk/LC_MESSAGES/kbruch.mo share/locale/km/LC_MESSAGES/kbruch.mo share/locale/ko/LC_MESSAGES/kbruch.mo share/locale/lt/LC_MESSAGES/kbruch.mo share/locale/lv/LC_MESSAGES/kbruch.mo +share/locale/mk/LC_MESSAGES/kbruch.mo share/locale/ml/LC_MESSAGES/kbruch.mo share/locale/mr/LC_MESSAGES/kbruch.mo +share/locale/ms/LC_MESSAGES/kbruch.mo share/locale/nb/LC_MESSAGES/kbruch.mo share/locale/nds/LC_MESSAGES/kbruch.mo +share/locale/ne/LC_MESSAGES/kbruch.mo share/locale/nl/LC_MESSAGES/kbruch.mo share/locale/nn/LC_MESSAGES/kbruch.mo +share/locale/oc/LC_MESSAGES/kbruch.mo share/locale/pa/LC_MESSAGES/kbruch.mo share/locale/pl/LC_MESSAGES/kbruch.mo share/locale/pt/LC_MESSAGES/kbruch.mo share/locale/pt_BR/LC_MESSAGES/kbruch.mo share/locale/ro/LC_MESSAGES/kbruch.mo share/locale/ru/LC_MESSAGES/kbruch.mo share/locale/se/LC_MESSAGES/kbruch.mo +share/locale/si/LC_MESSAGES/kbruch.mo share/locale/sk/LC_MESSAGES/kbruch.mo share/locale/sl/LC_MESSAGES/kbruch.mo share/locale/sq/LC_MESSAGES/kbruch.mo share/locale/sv/LC_MESSAGES/kbruch.mo share/locale/ta/LC_MESSAGES/kbruch.mo share/locale/tg/LC_MESSAGES/kbruch.mo +share/locale/th/LC_MESSAGES/kbruch.mo share/locale/tr/LC_MESSAGES/kbruch.mo share/locale/ug/LC_MESSAGES/kbruch.mo share/locale/uk/LC_MESSAGES/kbruch.mo +share/locale/xh/LC_MESSAGES/kbruch.mo share/locale/zh_CN/LC_MESSAGES/kbruch.mo share/locale/zh_TW/LC_MESSAGES/kbruch.mo share/metainfo/org.kde.kbruch.appdata.xml diff --git a/math/kcalc/distinfo b/math/kcalc/distinfo index 01bf998d3224..094a52b8f3c9 100644 --- a/math/kcalc/distinfo +++ b/math/kcalc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539395 -SHA256 (KDE/release-service/22.08.3/kcalc-22.08.3.tar.xz) = b43e76cceec89954954895b07f5c79ce8834d7efb35091e428b37941b361fd4b -SIZE (KDE/release-service/22.08.3/kcalc-22.08.3.tar.xz) = 395876 +TIMESTAMP = 1670512977 +SHA256 (KDE/release-service/22.12.0/kcalc-22.12.0.tar.xz) = 272db76a2fa7f7904bf90a987025e4a091e436395992ac2b680e2c2da30eedc5 +SIZE (KDE/release-service/22.12.0/kcalc-22.12.0.tar.xz) = 433912 diff --git a/math/kcalc/pkg-plist b/math/kcalc/pkg-plist index 9f1b22daa040..1af8073a3aec 100644 --- a/math/kcalc/pkg-plist +++ b/math/kcalc/pkg-plist @@ -1,65 +1,82 @@ bin/kcalc share/applications/org.kde.kcalc.desktop share/config.kcfg/kcalc.kcfg share/kconf_update/kcalcrc.upd +share/kglobalaccel/org.kde.kcalc.desktop +share/locale/af/LC_MESSAGES/kcalc.mo share/locale/ar/LC_MESSAGES/kcalc.mo share/locale/az/LC_MESSAGES/kcalc.mo share/locale/be/LC_MESSAGES/kcalc.mo share/locale/bg/LC_MESSAGES/kcalc.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/kcalc.mo share/locale/mr/LC_MESSAGES/kcalc.mo +share/locale/ms/LC_MESSAGES/kcalc.mo share/locale/nb/LC_MESSAGES/kcalc.mo share/locale/nds/LC_MESSAGES/kcalc.mo +share/locale/ne/LC_MESSAGES/kcalc.mo share/locale/nl/LC_MESSAGES/kcalc.mo share/locale/nn/LC_MESSAGES/kcalc.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kcalc.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcalc.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kcalc.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcalc.mo share/locale/wa/LC_MESSAGES/kcalc.mo +share/locale/xh/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 e19e86b7ab65..489198b64be1 100644 --- a/math/kig/distinfo +++ b/math/kig/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539397 -SHA256 (KDE/release-service/22.08.3/kig-22.08.3.tar.xz) = 80cd1cd3b6603a48abd74e79416a5ce2bcc3779fd6a6b1254a3757870161af8e -SIZE (KDE/release-service/22.08.3/kig-22.08.3.tar.xz) = 3184760 +TIMESTAMP = 1670512980 +SHA256 (KDE/release-service/22.12.0/kig-22.12.0.tar.xz) = efa2122c1c5e42c021bdde7bf8b03374952f3132954f32266863cae7fab68e9f +SIZE (KDE/release-service/22.12.0/kig-22.12.0.tar.xz) = 3274592 diff --git a/math/kig/pkg-plist b/math/kig/pkg-plist index e52ba0d2918e..c3a25b64202e 100644 --- a/math/kig/pkg-plist +++ b/math/kig/pkg-plist @@ -1,372 +1,384 @@ bin/kig bin/pykig.py %%QT_PLUGINDIR%%/kf5/parts/kigpart.so 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 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/128x128/apps/kig.png -share/icons/hicolor/128x128/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/bn/LC_MESSAGES/kig.mo +share/locale/br/LC_MESSAGES/kig.mo share/locale/bs/LC_MESSAGES/kig.mo share/locale/ca/LC_MESSAGES/kig.mo share/locale/ca@valencia/LC_MESSAGES/kig.mo share/locale/cs/LC_MESSAGES/kig.mo +share/locale/cy/LC_MESSAGES/kig.mo share/locale/da/LC_MESSAGES/kig.mo share/locale/de/LC_MESSAGES/kig.mo share/locale/el/LC_MESSAGES/kig.mo share/locale/en_GB/LC_MESSAGES/kig.mo share/locale/eo/LC_MESSAGES/kig.mo share/locale/es/LC_MESSAGES/kig.mo share/locale/et/LC_MESSAGES/kig.mo share/locale/eu/LC_MESSAGES/kig.mo share/locale/fa/LC_MESSAGES/kig.mo share/locale/fi/LC_MESSAGES/kig.mo share/locale/fr/LC_MESSAGES/kig.mo share/locale/ga/LC_MESSAGES/kig.mo share/locale/gl/LC_MESSAGES/kig.mo share/locale/hi/LC_MESSAGES/kig.mo +share/locale/hne/LC_MESSAGES/kig.mo share/locale/hr/LC_MESSAGES/kig.mo share/locale/hu/LC_MESSAGES/kig.mo share/locale/is/LC_MESSAGES/kig.mo share/locale/it/LC_MESSAGES/kig.mo share/locale/ja/LC_MESSAGES/kig.mo +share/locale/ka/LC_MESSAGES/kig.mo share/locale/kk/LC_MESSAGES/kig.mo share/locale/km/LC_MESSAGES/kig.mo share/locale/lt/LC_MESSAGES/kig.mo share/locale/lv/LC_MESSAGES/kig.mo +share/locale/mai/LC_MESSAGES/kig.mo +share/locale/mk/LC_MESSAGES/kig.mo share/locale/ml/LC_MESSAGES/kig.mo share/locale/mr/LC_MESSAGES/kig.mo +share/locale/ms/LC_MESSAGES/kig.mo share/locale/nb/LC_MESSAGES/kig.mo share/locale/nds/LC_MESSAGES/kig.mo +share/locale/ne/LC_MESSAGES/kig.mo share/locale/nl/LC_MESSAGES/kig.mo share/locale/nn/LC_MESSAGES/kig.mo +share/locale/oc/LC_MESSAGES/kig.mo share/locale/pa/LC_MESSAGES/kig.mo share/locale/pl/LC_MESSAGES/kig.mo share/locale/pt/LC_MESSAGES/kig.mo share/locale/pt_BR/LC_MESSAGES/kig.mo share/locale/ro/LC_MESSAGES/kig.mo share/locale/ru/LC_MESSAGES/kig.mo share/locale/se/LC_MESSAGES/kig.mo +share/locale/si/LC_MESSAGES/kig.mo share/locale/sk/LC_MESSAGES/kig.mo share/locale/sl/LC_MESSAGES/kig.mo share/locale/sq/LC_MESSAGES/kig.mo share/locale/sv/LC_MESSAGES/kig.mo share/locale/ta/LC_MESSAGES/kig.mo share/locale/tg/LC_MESSAGES/kig.mo share/locale/tr/LC_MESSAGES/kig.mo share/locale/ug/LC_MESSAGES/kig.mo share/locale/uk/LC_MESSAGES/kig.mo +share/locale/xh/LC_MESSAGES/kig.mo share/locale/zh_CN/LC_MESSAGES/kig.mo share/locale/zh_TW/LC_MESSAGES/kig.mo share/metainfo/org.kde.kig.appdata.xml diff --git a/math/kmplot/distinfo b/math/kmplot/distinfo index 5b0a436ef287..c4ed31bbeaf5 100644 --- a/math/kmplot/distinfo +++ b/math/kmplot/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539400 -SHA256 (KDE/release-service/22.08.3/kmplot-22.08.3.tar.xz) = 6aee62d9729ab2e7636725c30813dcbfdc79c7361e85dd5521a5c589791c2b68 -SIZE (KDE/release-service/22.08.3/kmplot-22.08.3.tar.xz) = 3047808 +TIMESTAMP = 1670512984 +SHA256 (KDE/release-service/22.12.0/kmplot-22.12.0.tar.xz) = 31e33d3d6e5ad3aa29f11ee8e444996ea36a5cc6561604fff03f52a54bfb4355 +SIZE (KDE/release-service/22.12.0/kmplot-22.12.0.tar.xz) = 3098232 diff --git a/math/kmplot/pkg-plist b/math/kmplot/pkg-plist index 06ef36657683..2479d6937f81 100644 --- a/math/kmplot/pkg-plist +++ b/math/kmplot/pkg-plist @@ -1,92 +1,105 @@ bin/kmplot %%QT_PLUGINDIR%%/kf5/parts/kmplotpart.so 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 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/128x128/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/af/LC_MESSAGES/kmplot.mo share/locale/ar/LC_MESSAGES/kmplot.mo share/locale/be/LC_MESSAGES/kmplot.mo share/locale/bg/LC_MESSAGES/kmplot.mo +share/locale/bn/LC_MESSAGES/kmplot.mo +share/locale/br/LC_MESSAGES/kmplot.mo share/locale/bs/LC_MESSAGES/kmplot.mo share/locale/ca/LC_MESSAGES/kmplot.mo share/locale/ca@valencia/LC_MESSAGES/kmplot.mo share/locale/cs/LC_MESSAGES/kmplot.mo +share/locale/cy/LC_MESSAGES/kmplot.mo share/locale/da/LC_MESSAGES/kmplot.mo share/locale/de/LC_MESSAGES/kmplot.mo share/locale/el/LC_MESSAGES/kmplot.mo share/locale/en_GB/LC_MESSAGES/kmplot.mo share/locale/eo/LC_MESSAGES/kmplot.mo share/locale/es/LC_MESSAGES/kmplot.mo share/locale/et/LC_MESSAGES/kmplot.mo share/locale/eu/LC_MESSAGES/kmplot.mo share/locale/fa/LC_MESSAGES/kmplot.mo share/locale/fi/LC_MESSAGES/kmplot.mo share/locale/fr/LC_MESSAGES/kmplot.mo share/locale/ga/LC_MESSAGES/kmplot.mo share/locale/gl/LC_MESSAGES/kmplot.mo share/locale/he/LC_MESSAGES/kmplot.mo share/locale/hi/LC_MESSAGES/kmplot.mo +share/locale/hne/LC_MESSAGES/kmplot.mo share/locale/hr/LC_MESSAGES/kmplot.mo share/locale/hu/LC_MESSAGES/kmplot.mo share/locale/is/LC_MESSAGES/kmplot.mo share/locale/it/LC_MESSAGES/kmplot.mo share/locale/ja/LC_MESSAGES/kmplot.mo +share/locale/ka/LC_MESSAGES/kmplot.mo share/locale/kk/LC_MESSAGES/kmplot.mo share/locale/km/LC_MESSAGES/kmplot.mo share/locale/ko/LC_MESSAGES/kmplot.mo share/locale/lt/LC_MESSAGES/kmplot.mo share/locale/lv/LC_MESSAGES/kmplot.mo +share/locale/mai/LC_MESSAGES/kmplot.mo +share/locale/mk/LC_MESSAGES/kmplot.mo share/locale/ml/LC_MESSAGES/kmplot.mo share/locale/mr/LC_MESSAGES/kmplot.mo +share/locale/ms/LC_MESSAGES/kmplot.mo share/locale/nb/LC_MESSAGES/kmplot.mo share/locale/nds/LC_MESSAGES/kmplot.mo +share/locale/ne/LC_MESSAGES/kmplot.mo share/locale/nl/LC_MESSAGES/kmplot.mo share/locale/nn/LC_MESSAGES/kmplot.mo +share/locale/oc/LC_MESSAGES/kmplot.mo share/locale/pa/LC_MESSAGES/kmplot.mo share/locale/pl/LC_MESSAGES/kmplot.mo share/locale/pt/LC_MESSAGES/kmplot.mo share/locale/pt_BR/LC_MESSAGES/kmplot.mo share/locale/ro/LC_MESSAGES/kmplot.mo share/locale/ru/LC_MESSAGES/kmplot.mo share/locale/se/LC_MESSAGES/kmplot.mo +share/locale/si/LC_MESSAGES/kmplot.mo share/locale/sk/LC_MESSAGES/kmplot.mo share/locale/sl/LC_MESSAGES/kmplot.mo share/locale/sq/LC_MESSAGES/kmplot.mo share/locale/sv/LC_MESSAGES/kmplot.mo share/locale/ta/LC_MESSAGES/kmplot.mo share/locale/tg/LC_MESSAGES/kmplot.mo share/locale/tr/LC_MESSAGES/kmplot.mo share/locale/ug/LC_MESSAGES/kmplot.mo share/locale/uk/LC_MESSAGES/kmplot.mo share/locale/vi/LC_MESSAGES/kmplot.mo +share/locale/xh/LC_MESSAGES/kmplot.mo share/locale/zh_CN/LC_MESSAGES/kmplot.mo share/locale/zh_TW/LC_MESSAGES/kmplot.mo share/metainfo/org.kde.kmplot.appdata.xml diff --git a/math/rocs/distinfo b/math/rocs/distinfo index b30197b8509e..1460fe6856f1 100644 --- a/math/rocs/distinfo +++ b/math/rocs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539402 -SHA256 (KDE/release-service/22.08.3/rocs-22.08.3.tar.xz) = 661fbc2ed59198c8f4823e9451e304afc754b93cdacb568c345479104900e990 -SIZE (KDE/release-service/22.08.3/rocs-22.08.3.tar.xz) = 1563876 +TIMESTAMP = 1670512987 +SHA256 (KDE/release-service/22.12.0/rocs-22.12.0.tar.xz) = f853b8917caa580ffc152abdc4f1bd1bddf701832632aea21b5ea5d96a8d2683 +SIZE (KDE/release-service/22.12.0/rocs-22.12.0.tar.xz) = 1565304 diff --git a/math/rocs/pkg-plist b/math/rocs/pkg-plist index e0fca9c1e24b..80cf384daffa 100644 --- a/math/rocs/pkg-plist +++ b/math/rocs/pkg-plist @@ -1,140 +1,144 @@ 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/128x128/apps/rocs.png share/icons/hicolor/scalable/actions/rocsadvancedsetup.svgz share/icons/hicolor/scalable/actions/rocsalignbottom.svgz share/icons/hicolor/scalable/actions/rocsaligncircle.svgz share/icons/hicolor/scalable/actions/rocsalignleft.svgz share/icons/hicolor/scalable/actions/rocsalignmiddle.svgz share/icons/hicolor/scalable/actions/rocsalignright.svgz share/icons/hicolor/scalable/actions/rocsaligntop.svgz share/icons/hicolor/scalable/actions/rocsaligntree.svgz share/icons/hicolor/scalable/actions/rocsalignvmiddle.svgz share/icons/hicolor/scalable/actions/rocsbidirectional.svgz share/icons/hicolor/scalable/actions/rocsdelete.svgz share/icons/hicolor/scalable/actions/rocsedge.svgz share/icons/hicolor/scalable/actions/rocsnode.svgz share/icons/hicolor/scalable/actions/rocsselect.svgz share/icons/hicolor/scalable/actions/rocsunidirectional.svgz share/icons/hicolor/scalable/actions/rocsvisible.svgz share/icons/hicolor/scalable/apps/rocs.svgz share/kxmlgui5/rocs/rocsui.rc share/locale/ar/LC_MESSAGES/libgraphtheory.mo share/locale/ar/LC_MESSAGES/rocs.mo share/locale/bg/LC_MESSAGES/libgraphtheory.mo share/locale/bg/LC_MESSAGES/rocs.mo share/locale/bs/LC_MESSAGES/libgraphtheory.mo share/locale/bs/LC_MESSAGES/rocs.mo share/locale/ca/LC_MESSAGES/libgraphtheory.mo share/locale/ca/LC_MESSAGES/rocs.mo share/locale/ca@valencia/LC_MESSAGES/libgraphtheory.mo share/locale/ca@valencia/LC_MESSAGES/rocs.mo share/locale/cs/LC_MESSAGES/libgraphtheory.mo share/locale/cs/LC_MESSAGES/rocs.mo share/locale/da/LC_MESSAGES/libgraphtheory.mo share/locale/da/LC_MESSAGES/rocs.mo share/locale/de/LC_MESSAGES/libgraphtheory.mo share/locale/de/LC_MESSAGES/rocs.mo share/locale/el/LC_MESSAGES/libgraphtheory.mo share/locale/el/LC_MESSAGES/rocs.mo share/locale/en_GB/LC_MESSAGES/libgraphtheory.mo share/locale/en_GB/LC_MESSAGES/rocs.mo share/locale/eo/LC_MESSAGES/libgraphtheory.mo share/locale/eo/LC_MESSAGES/rocs.mo share/locale/es/LC_MESSAGES/libgraphtheory.mo share/locale/es/LC_MESSAGES/rocs.mo share/locale/et/LC_MESSAGES/libgraphtheory.mo share/locale/et/LC_MESSAGES/rocs.mo share/locale/fi/LC_MESSAGES/libgraphtheory.mo share/locale/fi/LC_MESSAGES/rocs.mo share/locale/fr/LC_MESSAGES/libgraphtheory.mo share/locale/fr/LC_MESSAGES/rocs.mo share/locale/ga/LC_MESSAGES/libgraphtheory.mo share/locale/ga/LC_MESSAGES/rocs.mo share/locale/gl/LC_MESSAGES/libgraphtheory.mo share/locale/gl/LC_MESSAGES/rocs.mo share/locale/hr/LC_MESSAGES/libgraphtheory.mo share/locale/hr/LC_MESSAGES/rocs.mo share/locale/hu/LC_MESSAGES/libgraphtheory.mo share/locale/hu/LC_MESSAGES/rocs.mo share/locale/it/LC_MESSAGES/libgraphtheory.mo share/locale/it/LC_MESSAGES/rocs.mo share/locale/ja/LC_MESSAGES/libgraphtheory.mo share/locale/ja/LC_MESSAGES/rocs.mo +share/locale/ka/LC_MESSAGES/libgraphtheory.mo +share/locale/ka/LC_MESSAGES/rocs.mo share/locale/kk/LC_MESSAGES/libgraphtheory.mo share/locale/kk/LC_MESSAGES/rocs.mo share/locale/ko/LC_MESSAGES/libgraphtheory.mo share/locale/ko/LC_MESSAGES/rocs.mo share/locale/lt/LC_MESSAGES/libgraphtheory.mo share/locale/lt/LC_MESSAGES/rocs.mo share/locale/lv/LC_MESSAGES/libgraphtheory.mo share/locale/lv/LC_MESSAGES/rocs.mo share/locale/ml/LC_MESSAGES/libgraphtheory.mo share/locale/ml/LC_MESSAGES/rocs.mo share/locale/mr/LC_MESSAGES/libgraphtheory.mo share/locale/mr/LC_MESSAGES/rocs.mo share/locale/nb/LC_MESSAGES/libgraphtheory.mo share/locale/nb/LC_MESSAGES/rocs.mo share/locale/nds/LC_MESSAGES/libgraphtheory.mo share/locale/nds/LC_MESSAGES/rocs.mo share/locale/nl/LC_MESSAGES/libgraphtheory.mo share/locale/nl/LC_MESSAGES/rocs.mo share/locale/nn/LC_MESSAGES/libgraphtheory.mo share/locale/nn/LC_MESSAGES/rocs.mo share/locale/pa/LC_MESSAGES/libgraphtheory.mo share/locale/pa/LC_MESSAGES/rocs.mo share/locale/pl/LC_MESSAGES/libgraphtheory.mo share/locale/pl/LC_MESSAGES/rocs.mo share/locale/pt/LC_MESSAGES/libgraphtheory.mo share/locale/pt/LC_MESSAGES/rocs.mo share/locale/pt_BR/LC_MESSAGES/libgraphtheory.mo share/locale/pt_BR/LC_MESSAGES/rocs.mo share/locale/ro/LC_MESSAGES/libgraphtheory.mo share/locale/ro/LC_MESSAGES/rocs.mo share/locale/ru/LC_MESSAGES/libgraphtheory.mo share/locale/ru/LC_MESSAGES/rocs.mo share/locale/sk/LC_MESSAGES/libgraphtheory.mo share/locale/sk/LC_MESSAGES/rocs.mo share/locale/sl/LC_MESSAGES/libgraphtheory.mo share/locale/sl/LC_MESSAGES/rocs.mo share/locale/sv/LC_MESSAGES/libgraphtheory.mo share/locale/sv/LC_MESSAGES/rocs.mo +share/locale/th/LC_MESSAGES/libgraphtheory.mo +share/locale/th/LC_MESSAGES/rocs.mo share/locale/tr/LC_MESSAGES/libgraphtheory.mo share/locale/tr/LC_MESSAGES/rocs.mo share/locale/ug/LC_MESSAGES/libgraphtheory.mo share/locale/ug/LC_MESSAGES/rocs.mo share/locale/uk/LC_MESSAGES/libgraphtheory.mo share/locale/uk/LC_MESSAGES/rocs.mo share/locale/zh_CN/LC_MESSAGES/libgraphtheory.mo share/locale/zh_CN/LC_MESSAGES/rocs.mo share/locale/zh_TW/LC_MESSAGES/libgraphtheory.mo share/locale/zh_TW/LC_MESSAGES/rocs.mo share/metainfo/org.kde.rocs.appdata.xml %%DATADIR%%/kernelapi/console.xml %%DATADIR%%/kernelapi/document.xml %%DATADIR%%/kernelapi/edge.xml %%DATADIR%%/kernelapi/node.xml %%DATADIR%%/plugin/apidoc/objectApi.html %%DATADIR%%/plugin/apidoc/overview.html %%DATADIR%%/schemes/kernelapi.xsd diff --git a/misc/artikulate/distinfo b/misc/artikulate/distinfo index 98862dc54de5..55cec6f2ccf0 100644 --- a/misc/artikulate/distinfo +++ b/misc/artikulate/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539631 -SHA256 (KDE/release-service/22.08.3/artikulate-22.08.3.tar.xz) = d207cbbb37869767810277f0a58ee3372f6d7f4513b73c391aee319c107ede4c -SIZE (KDE/release-service/22.08.3/artikulate-22.08.3.tar.xz) = 1097080 +TIMESTAMP = 1670513287 +SHA256 (KDE/release-service/22.12.0/artikulate-22.12.0.tar.xz) = cbe96fa13e5269b13434b623937888690bb33584a031b5fb52e45fd2c739e89f +SIZE (KDE/release-service/22.12.0/artikulate-22.12.0.tar.xz) = 1094116 diff --git a/misc/artikulate/pkg-plist b/misc/artikulate/pkg-plist index 3b4eecac6049..28497ea19290 100644 --- a/misc/artikulate/pkg-plist +++ b/misc/artikulate/pkg-plist @@ -1,57 +1,57 @@ 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/ar/LC_MESSAGES/artikulate.mo 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/ka/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 ea2daea990d5..79cf32cad34f 100644 --- a/misc/kdeedu-data/distinfo +++ b/misc/kdeedu-data/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539633 -SHA256 (KDE/release-service/22.08.3/kdeedu-data-22.08.3.tar.xz) = 9d0c0fe9e228f6c3c74f3bb44f6f8264c4fa0ec97bc6078c8dbf77948587c9a4 -SIZE (KDE/release-service/22.08.3/kdeedu-data-22.08.3.tar.xz) = 335844 +TIMESTAMP = 1670513289 +SHA256 (KDE/release-service/22.12.0/kdeedu-data-22.12.0.tar.xz) = ae5444801291157844c4555c889ee369c9e68f7df508fcf768986336f818829f +SIZE (KDE/release-service/22.12.0/kdeedu-data-22.12.0.tar.xz) = 333532 diff --git a/misc/kdeedu-data/pkg-plist b/misc/kdeedu-data/pkg-plist index 43bbaddbf2b6..6d282b55183b 100644 --- a/misc/kdeedu-data/pkg-plist +++ b/misc/kdeedu-data/pkg-plist @@ -1,415 +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 f07c0e4517fe..ed554d01abd3 100644 --- a/misc/kgeography/distinfo +++ b/misc/kgeography/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539632 -SHA256 (KDE/release-service/22.08.3/kgeography-22.08.3.tar.xz) = ac66323872f20ef85d2fbf2c41cb09d5dbcaa8db3c654487811d1248caef8f07 -SIZE (KDE/release-service/22.08.3/kgeography-22.08.3.tar.xz) = 11086816 +TIMESTAMP = 1670513288 +SHA256 (KDE/release-service/22.12.0/kgeography-22.12.0.tar.xz) = 19dce45d5902a2e1a534ca82df6e57ff3f14bca78e7cfddbb39688fae8423822 +SIZE (KDE/release-service/22.12.0/kgeography-22.12.0.tar.xz) = 12553920 diff --git a/misc/kgeography/pkg-plist b/misc/kgeography/pkg-plist index b8d1fdc64a30..aa3194981bf7 100644 --- a/misc/kgeography/pkg-plist +++ b/misc/kgeography/pkg-plist @@ -1,1056 +1,1127 @@ 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/128x128/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/blurred_usa_arkansas.png +%%DATADIR%%/flags/blurred_usa_california.png +%%DATADIR%%/flags/blurred_usa_florida.png +%%DATADIR%%/flags/blurred_usa_idaho.png +%%DATADIR%%/flags/blurred_usa_illinois.png +%%DATADIR%%/flags/blurred_usa_iowa.png +%%DATADIR%%/flags/blurred_usa_kansas.png +%%DATADIR%%/flags/blurred_usa_kentucky.png +%%DATADIR%%/flags/blurred_usa_maine.png +%%DATADIR%%/flags/blurred_usa_minnesota.png +%%DATADIR%%/flags/blurred_usa_montana.png +%%DATADIR%%/flags/blurred_usa_nebraska.png +%%DATADIR%%/flags/blurred_usa_nevada.png +%%DATADIR%%/flags/blurred_usa_new_hampshire.png +%%DATADIR%%/flags/blurred_usa_north_carolina.png +%%DATADIR%%/flags/blurred_usa_north_dakota.png +%%DATADIR%%/flags/blurred_usa_oklahoma.png +%%DATADIR%%/flags/blurred_usa_oregon.png +%%DATADIR%%/flags/blurred_usa_south_dakota.png +%%DATADIR%%/flags/blurred_usa_utah.png +%%DATADIR%%/flags/blurred_usa_vermont.png +%%DATADIR%%/flags/blurred_usa_virginia.png +%%DATADIR%%/flags/blurred_usa_washington.png +%%DATADIR%%/flags/blurred_usa_west_virginia.png +%%DATADIR%%/flags/blurred_usa_wisconsin.png +%%DATADIR%%/flags/blurred_usa_wyoming.png %%DATADIR%%/flags/bolivia.png %%DATADIR%%/flags/bosnia_herzegovina.png %%DATADIR%%/flags/botswana.png %%DATADIR%%/flags/brazil.png +%%DATADIR%%/flags/brazil/blurred_br_PN.png +%%DATADIR%%/flags/brazil/blurred_br_RJ.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/blurred_it-cal200.png +%%DATADIR%%/flags/italy/blurred_it-emi200.png +%%DATADIR%%/flags/italy/blurred_it-lat200.png +%%DATADIR%%/flags/italy/blurred_it-mar200.png +%%DATADIR%%/flags/italy/blurred_it-mol200.png +%%DATADIR%%/flags/italy/blurred_it-pug200.png +%%DATADIR%%/flags/italy/blurred_it-ven200.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/blurred_oslo.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/blurred_amazonas.png +%%DATADIR%%/flags/peru/blurred_ancash.png +%%DATADIR%%/flags/peru/blurred_san_martin.png +%%DATADIR%%/flags/peru/blurred_tacna.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/blurred_aveiro.png +%%DATADIR%%/flags/portugal/blurred_beja.png +%%DATADIR%%/flags/portugal/blurred_braga.png +%%DATADIR%%/flags/portugal/blurred_braganca.png +%%DATADIR%%/flags/portugal/blurred_castelo_branco.png +%%DATADIR%%/flags/portugal/blurred_coimbra.png +%%DATADIR%%/flags/portugal/blurred_evora.png +%%DATADIR%%/flags/portugal/blurred_faro.png +%%DATADIR%%/flags/portugal/blurred_guarda.png +%%DATADIR%%/flags/portugal/blurred_leiria.png +%%DATADIR%%/flags/portugal/blurred_lisboa.png +%%DATADIR%%/flags/portugal/blurred_portalegre.png +%%DATADIR%%/flags/portugal/blurred_porto.png +%%DATADIR%%/flags/portugal/blurred_santarem.png +%%DATADIR%%/flags/portugal/blurred_setubal.png +%%DATADIR%%/flags/portugal/blurred_viana_do_castelo.png +%%DATADIR%%/flags/portugal/blurred_vila_real.png +%%DATADIR%%/flags/portugal/blurred_viseu.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/ukraine/blurred_Cherkasy.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%%/virginia.kgm %%DATADIR%%/virginia.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/br/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/cy/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/gu/LC_MESSAGES/kgeography.mo share/locale/he/LC_MESSAGES/kgeography.mo share/locale/hi/LC_MESSAGES/kgeography.mo +share/locale/hne/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/ka/LC_MESSAGES/kgeography.mo 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/mai/LC_MESSAGES/kgeography.mo +share/locale/mk/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/ms/LC_MESSAGES/kgeography.mo share/locale/nb/LC_MESSAGES/kgeography.mo share/locale/nds/LC_MESSAGES/kgeography.mo +share/locale/ne/LC_MESSAGES/kgeography.mo share/locale/nl/LC_MESSAGES/kgeography.mo share/locale/nn/LC_MESSAGES/kgeography.mo +share/locale/oc/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/si/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/th/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 f0856b32bfcb..267480007111 100644 --- a/misc/klettres/distinfo +++ b/misc/klettres/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539630 -SHA256 (KDE/release-service/22.08.3/klettres-22.08.3.tar.xz) = da43ff29075d5e57bb2777fd0a42fe3fd201eb02a8018ac0e1b20c02d548534c -SIZE (KDE/release-service/22.08.3/klettres-22.08.3.tar.xz) = 47188460 +TIMESTAMP = 1670513285 +SHA256 (KDE/release-service/22.12.0/klettres-22.12.0.tar.xz) = 78eb577ce232d14c6667898e193b8bd025fcf3ea68f26167b3b16ded290b23ee +SIZE (KDE/release-service/22.12.0/klettres-22.12.0.tar.xz) = 47838436 diff --git a/misc/klettres/pkg-plist b/misc/klettres/pkg-plist index d45afad5246d..11f22cdedc9e 100644 --- a/misc/klettres/pkg-plist +++ b/misc/klettres/pkg-plist @@ -1,2057 +1,1975 @@ 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 -share/icons/hicolor/128x128/apps/klettres.png %%DATADIR%%/ar/alpha/a-01.ogg %%DATADIR%%/ar/alpha/a-02.ogg %%DATADIR%%/ar/alpha/a-03.ogg %%DATADIR%%/ar/alpha/a-04.ogg %%DATADIR%%/ar/alpha/a-05.ogg %%DATADIR%%/ar/alpha/a-06.ogg %%DATADIR%%/ar/alpha/a-07.ogg %%DATADIR%%/ar/alpha/a-08.ogg %%DATADIR%%/ar/alpha/a-09.ogg %%DATADIR%%/ar/alpha/a-10.ogg %%DATADIR%%/ar/alpha/a-11.ogg %%DATADIR%%/ar/alpha/a-12.ogg %%DATADIR%%/ar/alpha/a-13.ogg %%DATADIR%%/ar/alpha/a-14.ogg %%DATADIR%%/ar/alpha/a-15.ogg %%DATADIR%%/ar/alpha/a-16.ogg %%DATADIR%%/ar/alpha/a-17.ogg %%DATADIR%%/ar/alpha/a-18.ogg %%DATADIR%%/ar/alpha/a-19.ogg %%DATADIR%%/ar/alpha/a-20.ogg %%DATADIR%%/ar/alpha/a-21.ogg %%DATADIR%%/ar/alpha/a-22.ogg %%DATADIR%%/ar/alpha/a-23.ogg %%DATADIR%%/ar/alpha/a-24.ogg %%DATADIR%%/ar/alpha/a-25.ogg %%DATADIR%%/ar/alpha/a-26.ogg %%DATADIR%%/ar/alpha/a-27.ogg %%DATADIR%%/ar/alpha/a-28.ogg %%DATADIR%%/ar/sounds.xml %%DATADIR%%/cs.txt %%DATADIR%%/cs/alpha/a-0.ogg %%DATADIR%%/cs/alpha/a-1.ogg -%%DATADIR%%/cs/alpha/a-2.ogg -%%DATADIR%%/cs/alpha/a-3.ogg -%%DATADIR%%/cs/alpha/a-4.ogg -%%DATADIR%%/cs/alpha/a-5.ogg -%%DATADIR%%/cs/alpha/a-6.ogg -%%DATADIR%%/cs/alpha/a-7.ogg -%%DATADIR%%/cs/alpha/a-8.ogg -%%DATADIR%%/cs/alpha/a-9.ogg %%DATADIR%%/cs/alpha/a-10.ogg %%DATADIR%%/cs/alpha/a-11.ogg %%DATADIR%%/cs/alpha/a-12.ogg %%DATADIR%%/cs/alpha/a-13.ogg %%DATADIR%%/cs/alpha/a-14.ogg %%DATADIR%%/cs/alpha/a-15.ogg %%DATADIR%%/cs/alpha/a-16.ogg %%DATADIR%%/cs/alpha/a-17.ogg %%DATADIR%%/cs/alpha/a-18.ogg %%DATADIR%%/cs/alpha/a-19.ogg +%%DATADIR%%/cs/alpha/a-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-2.ogg -%%DATADIR%%/cs/syllab/ad-3.ogg -%%DATADIR%%/cs/syllab/ad-4.ogg -%%DATADIR%%/cs/syllab/ad-5.ogg -%%DATADIR%%/cs/syllab/ad-6.ogg -%%DATADIR%%/cs/syllab/ad-7.ogg -%%DATADIR%%/cs/syllab/ad-8.ogg -%%DATADIR%%/cs/syllab/ad-9.ogg %%DATADIR%%/cs/syllab/ad-10.ogg %%DATADIR%%/cs/syllab/ad-11.ogg %%DATADIR%%/cs/syllab/ad-12.ogg %%DATADIR%%/cs/syllab/ad-13.ogg %%DATADIR%%/cs/syllab/ad-14.ogg %%DATADIR%%/cs/syllab/ad-15.ogg %%DATADIR%%/cs/syllab/ad-16.ogg %%DATADIR%%/cs/syllab/ad-17.ogg +%%DATADIR%%/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-2.ogg -%%DATADIR%%/da/alpha/a-3.ogg -%%DATADIR%%/da/alpha/a-4.ogg -%%DATADIR%%/da/alpha/a-5.ogg -%%DATADIR%%/da/alpha/a-6.ogg -%%DATADIR%%/da/alpha/a-7.ogg -%%DATADIR%%/da/alpha/a-8.ogg -%%DATADIR%%/da/alpha/a-9.ogg %%DATADIR%%/da/alpha/a-10.ogg %%DATADIR%%/da/alpha/a-11.ogg %%DATADIR%%/da/alpha/a-12.ogg %%DATADIR%%/da/alpha/a-13.ogg %%DATADIR%%/da/alpha/a-14.ogg %%DATADIR%%/da/alpha/a-15.ogg %%DATADIR%%/da/alpha/a-16.ogg %%DATADIR%%/da/alpha/a-17.ogg %%DATADIR%%/da/alpha/a-18.ogg %%DATADIR%%/da/alpha/a-19.ogg +%%DATADIR%%/da/alpha/a-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-2.ogg -%%DATADIR%%/da/syllab/ad-3.ogg -%%DATADIR%%/da/syllab/ad-4.ogg -%%DATADIR%%/da/syllab/ad-5.ogg -%%DATADIR%%/da/syllab/ad-6.ogg -%%DATADIR%%/da/syllab/ad-7.ogg -%%DATADIR%%/da/syllab/ad-8.ogg -%%DATADIR%%/da/syllab/ad-9.ogg %%DATADIR%%/da/syllab/ad-10.ogg %%DATADIR%%/da/syllab/ad-11.ogg %%DATADIR%%/da/syllab/ad-12.ogg %%DATADIR%%/da/syllab/ad-13.ogg %%DATADIR%%/da/syllab/ad-14.ogg %%DATADIR%%/da/syllab/ad-15.ogg %%DATADIR%%/da/syllab/ad-16.ogg %%DATADIR%%/da/syllab/ad-17.ogg %%DATADIR%%/da/syllab/ad-18.ogg %%DATADIR%%/da/syllab/ad-19.ogg +%%DATADIR%%/da/syllab/ad-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%%/data/sounds.xml +%%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%%/de.txt %%DATADIR%%/de/alpha/a.ogg %%DATADIR%%/de/alpha/ae.ogg %%DATADIR%%/de/alpha/b.ogg %%DATADIR%%/de/alpha/c.ogg %%DATADIR%%/de/alpha/d.ogg %%DATADIR%%/de/alpha/e.ogg %%DATADIR%%/de/alpha/f.ogg %%DATADIR%%/de/alpha/g.ogg %%DATADIR%%/de/alpha/h.ogg %%DATADIR%%/de/alpha/i.ogg %%DATADIR%%/de/alpha/j.ogg %%DATADIR%%/de/alpha/k.ogg %%DATADIR%%/de/alpha/l.ogg %%DATADIR%%/de/alpha/m.ogg %%DATADIR%%/de/alpha/n.ogg %%DATADIR%%/de/alpha/o.ogg %%DATADIR%%/de/alpha/oe.ogg %%DATADIR%%/de/alpha/p.ogg %%DATADIR%%/de/alpha/q.ogg %%DATADIR%%/de/alpha/r.ogg %%DATADIR%%/de/alpha/s.ogg %%DATADIR%%/de/alpha/sz.ogg %%DATADIR%%/de/alpha/t.ogg %%DATADIR%%/de/alpha/u.ogg %%DATADIR%%/de/alpha/ue.ogg %%DATADIR%%/de/alpha/v.ogg %%DATADIR%%/de/alpha/w.ogg %%DATADIR%%/de/alpha/x.ogg %%DATADIR%%/de/alpha/y.ogg %%DATADIR%%/de/alpha/z.ogg %%DATADIR%%/de/sounds.xml %%DATADIR%%/de/syllab/affe.ogg %%DATADIR%%/de/syllab/auch.ogg %%DATADIR%%/de/syllab/baer.ogg %%DATADIR%%/de/syllab/bus.ogg %%DATADIR%%/de/syllab/dem.ogg %%DATADIR%%/de/syllab/die.ogg %%DATADIR%%/de/syllab/dir.ogg %%DATADIR%%/de/syllab/ein.ogg %%DATADIR%%/de/syllab/eule.ogg %%DATADIR%%/de/syllab/fisch.ogg %%DATADIR%%/de/syllab/frau.ogg %%DATADIR%%/de/syllab/fusz.ogg %%DATADIR%%/de/syllab/gut.ogg %%DATADIR%%/de/syllab/haus.ogg %%DATADIR%%/de/syllab/heu.ogg %%DATADIR%%/de/syllab/hund.ogg %%DATADIR%%/de/syllab/ist.ogg %%DATADIR%%/de/syllab/ja.ogg %%DATADIR%%/de/syllab/kind.ogg %%DATADIR%%/de/syllab/lisa.ogg %%DATADIR%%/de/syllab/nase.ogg %%DATADIR%%/de/syllab/oel.ogg %%DATADIR%%/de/syllab/opa.ogg %%DATADIR%%/de/syllab/pute.ogg %%DATADIR%%/de/syllab/reh.ogg %%DATADIR%%/de/syllab/rot.ogg %%DATADIR%%/de/syllab/sein.ogg %%DATADIR%%/de/syllab/sitz.ogg %%DATADIR%%/de/syllab/tuer.ogg %%DATADIR%%/de/syllab/vor.ogg %%DATADIR%%/de/syllab/was.ogg %%DATADIR%%/de/syllab/will.ogg %%DATADIR%%/de/syllab/wo.ogg %%DATADIR%%/de/syllab/zu.ogg %%DATADIR%%/en/alpha/A.ogg %%DATADIR%%/en/alpha/B.ogg %%DATADIR%%/en/alpha/C.ogg %%DATADIR%%/en/alpha/D.ogg %%DATADIR%%/en/alpha/E.ogg %%DATADIR%%/en/alpha/F.ogg %%DATADIR%%/en/alpha/G.ogg %%DATADIR%%/en/alpha/H.ogg %%DATADIR%%/en/alpha/I.ogg %%DATADIR%%/en/alpha/J.ogg %%DATADIR%%/en/alpha/K.ogg %%DATADIR%%/en/alpha/L.ogg %%DATADIR%%/en/alpha/M.ogg %%DATADIR%%/en/alpha/N.ogg %%DATADIR%%/en/alpha/O.ogg %%DATADIR%%/en/alpha/P.ogg %%DATADIR%%/en/alpha/Q.ogg %%DATADIR%%/en/alpha/R.ogg %%DATADIR%%/en/alpha/S.ogg %%DATADIR%%/en/alpha/T.ogg %%DATADIR%%/en/alpha/U.ogg %%DATADIR%%/en/alpha/V.ogg %%DATADIR%%/en/alpha/W.ogg %%DATADIR%%/en/alpha/X.ogg %%DATADIR%%/en/alpha/Y.ogg %%DATADIR%%/en/alpha/Z.ogg %%DATADIR%%/en/sounds.xml %%DATADIR%%/en/syllab/aw.ogg %%DATADIR%%/en/syllab/car.ogg %%DATADIR%%/en/syllab/ch.ogg %%DATADIR%%/en/syllab/dog.ogg %%DATADIR%%/en/syllab/fix.ogg %%DATADIR%%/en/syllab/gas.ogg %%DATADIR%%/en/syllab/gem.ogg %%DATADIR%%/en/syllab/hot.ogg %%DATADIR%%/en/syllab/jet.ogg %%DATADIR%%/en/syllab/key.ogg %%DATADIR%%/en/syllab/me.ogg %%DATADIR%%/en/syllab/my.ogg %%DATADIR%%/en/syllab/no.ogg %%DATADIR%%/en/syllab/pet.ogg %%DATADIR%%/en/syllab/saw.ogg %%DATADIR%%/en/syllab/say.ogg %%DATADIR%%/en/syllab/sit.ogg %%DATADIR%%/en/syllab/sky.ogg %%DATADIR%%/en/syllab/th.ogg %%DATADIR%%/en_GB/alpha/a.ogg %%DATADIR%%/en_GB/alpha/b.ogg %%DATADIR%%/en_GB/alpha/c.ogg %%DATADIR%%/en_GB/alpha/d.ogg %%DATADIR%%/en_GB/alpha/e.ogg %%DATADIR%%/en_GB/alpha/f.ogg %%DATADIR%%/en_GB/alpha/g.ogg %%DATADIR%%/en_GB/alpha/h.ogg %%DATADIR%%/en_GB/alpha/i.ogg %%DATADIR%%/en_GB/alpha/j.ogg %%DATADIR%%/en_GB/alpha/k.ogg %%DATADIR%%/en_GB/alpha/l.ogg %%DATADIR%%/en_GB/alpha/m.ogg %%DATADIR%%/en_GB/alpha/n.ogg %%DATADIR%%/en_GB/alpha/o.ogg %%DATADIR%%/en_GB/alpha/p.ogg %%DATADIR%%/en_GB/alpha/q.ogg %%DATADIR%%/en_GB/alpha/r.ogg %%DATADIR%%/en_GB/alpha/s.ogg %%DATADIR%%/en_GB/alpha/t.ogg %%DATADIR%%/en_GB/alpha/u.ogg %%DATADIR%%/en_GB/alpha/v.ogg %%DATADIR%%/en_GB/alpha/w.ogg %%DATADIR%%/en_GB/alpha/x.ogg %%DATADIR%%/en_GB/alpha/y.ogg %%DATADIR%%/en_GB/alpha/z.ogg %%DATADIR%%/en_GB/sounds.xml %%DATADIR%%/en_GB/syllab/arm.ogg %%DATADIR%%/en_GB/syllab/ball.ogg %%DATADIR%%/en_GB/syllab/car.ogg %%DATADIR%%/en_GB/syllab/dog.ogg %%DATADIR%%/en_GB/syllab/ear.ogg %%DATADIR%%/en_GB/syllab/fix.ogg %%DATADIR%%/en_GB/syllab/gas.ogg %%DATADIR%%/en_GB/syllab/gem.ogg %%DATADIR%%/en_GB/syllab/hot.ogg %%DATADIR%%/en_GB/syllab/hut.ogg %%DATADIR%%/en_GB/syllab/jet.ogg %%DATADIR%%/en_GB/syllab/key.ogg %%DATADIR%%/en_GB/syllab/me.ogg %%DATADIR%%/en_GB/syllab/my.ogg %%DATADIR%%/en_GB/syllab/no.ogg %%DATADIR%%/en_GB/syllab/or.ogg %%DATADIR%%/en_GB/syllab/pet.ogg %%DATADIR%%/en_GB/syllab/saw.ogg %%DATADIR%%/en_GB/syllab/say.ogg %%DATADIR%%/en_GB/syllab/sit.ogg %%DATADIR%%/en_GB/syllab/sky.ogg %%DATADIR%%/en_GB/syllab/the.ogg %%DATADIR%%/en_GB/syllab/well.ogg %%DATADIR%%/es.txt %%DATADIR%%/es/alpha/a.ogg %%DATADIR%%/es/alpha/b.ogg %%DATADIR%%/es/alpha/c.ogg %%DATADIR%%/es/alpha/d.ogg %%DATADIR%%/es/alpha/e.ogg %%DATADIR%%/es/alpha/f.ogg %%DATADIR%%/es/alpha/g.ogg %%DATADIR%%/es/alpha/h.ogg %%DATADIR%%/es/alpha/i.ogg %%DATADIR%%/es/alpha/j.ogg %%DATADIR%%/es/alpha/k.ogg %%DATADIR%%/es/alpha/l.ogg %%DATADIR%%/es/alpha/m.ogg %%DATADIR%%/es/alpha/n.ogg %%DATADIR%%/es/alpha/nn.ogg %%DATADIR%%/es/alpha/o.ogg %%DATADIR%%/es/alpha/p.ogg %%DATADIR%%/es/alpha/q.ogg %%DATADIR%%/es/alpha/r.ogg %%DATADIR%%/es/alpha/s.ogg %%DATADIR%%/es/alpha/t.ogg %%DATADIR%%/es/alpha/u.ogg %%DATADIR%%/es/alpha/v.ogg %%DATADIR%%/es/alpha/w.ogg %%DATADIR%%/es/alpha/x.ogg %%DATADIR%%/es/alpha/y.ogg %%DATADIR%%/es/alpha/z.ogg %%DATADIR%%/es/sounds.xml %%DATADIR%%/es/syllab/ba.ogg %%DATADIR%%/es/syllab/be.ogg %%DATADIR%%/es/syllab/bi.ogg %%DATADIR%%/es/syllab/bo.ogg %%DATADIR%%/es/syllab/bu.ogg %%DATADIR%%/es/syllab/ca.ogg %%DATADIR%%/es/syllab/ce.ogg %%DATADIR%%/es/syllab/ci.ogg %%DATADIR%%/es/syllab/co.ogg %%DATADIR%%/es/syllab/cu.ogg %%DATADIR%%/es/syllab/da.ogg %%DATADIR%%/es/syllab/de.ogg %%DATADIR%%/es/syllab/di.ogg %%DATADIR%%/es/syllab/do.ogg %%DATADIR%%/es/syllab/du.ogg %%DATADIR%%/es/syllab/fa.ogg %%DATADIR%%/es/syllab/fe.ogg %%DATADIR%%/es/syllab/fi.ogg %%DATADIR%%/es/syllab/fo.ogg %%DATADIR%%/es/syllab/fu.ogg %%DATADIR%%/es/syllab/ga.ogg %%DATADIR%%/es/syllab/ge.ogg %%DATADIR%%/es/syllab/gi.ogg %%DATADIR%%/es/syllab/go.ogg %%DATADIR%%/es/syllab/gu.ogg %%DATADIR%%/es/syllab/gue.ogg %%DATADIR%%/es/syllab/gui.ogg %%DATADIR%%/es/syllab/guue.ogg %%DATADIR%%/es/syllab/guui.ogg %%DATADIR%%/es/syllab/ha.ogg %%DATADIR%%/es/syllab/he.ogg %%DATADIR%%/es/syllab/hi.ogg %%DATADIR%%/es/syllab/ho.ogg %%DATADIR%%/es/syllab/hu.ogg %%DATADIR%%/es/syllab/ja.ogg %%DATADIR%%/es/syllab/je.ogg %%DATADIR%%/es/syllab/ji.ogg %%DATADIR%%/es/syllab/jo.ogg %%DATADIR%%/es/syllab/ju.ogg %%DATADIR%%/es/syllab/ka.ogg %%DATADIR%%/es/syllab/ke.ogg %%DATADIR%%/es/syllab/ki.ogg %%DATADIR%%/es/syllab/ko.ogg %%DATADIR%%/es/syllab/ku.ogg %%DATADIR%%/es/syllab/la.ogg %%DATADIR%%/es/syllab/le.ogg %%DATADIR%%/es/syllab/li.ogg %%DATADIR%%/es/syllab/ll.ogg %%DATADIR%%/es/syllab/lla.ogg %%DATADIR%%/es/syllab/lle.ogg %%DATADIR%%/es/syllab/lli.ogg %%DATADIR%%/es/syllab/llo.ogg %%DATADIR%%/es/syllab/llu.ogg %%DATADIR%%/es/syllab/lo.ogg %%DATADIR%%/es/syllab/lu.ogg %%DATADIR%%/es/syllab/ma.ogg %%DATADIR%%/es/syllab/me.ogg %%DATADIR%%/es/syllab/mi.ogg %%DATADIR%%/es/syllab/mo.ogg %%DATADIR%%/es/syllab/mu.ogg %%DATADIR%%/es/syllab/na.ogg %%DATADIR%%/es/syllab/ne.ogg %%DATADIR%%/es/syllab/ni.ogg %%DATADIR%%/es/syllab/nna.ogg %%DATADIR%%/es/syllab/nne.ogg %%DATADIR%%/es/syllab/nni.ogg %%DATADIR%%/es/syllab/nno.ogg %%DATADIR%%/es/syllab/nnu.ogg %%DATADIR%%/es/syllab/no.ogg %%DATADIR%%/es/syllab/nu.ogg %%DATADIR%%/es/syllab/pa.ogg %%DATADIR%%/es/syllab/pe.ogg %%DATADIR%%/es/syllab/pi.ogg %%DATADIR%%/es/syllab/po.ogg %%DATADIR%%/es/syllab/pu.ogg %%DATADIR%%/es/syllab/que.ogg %%DATADIR%%/es/syllab/qui.ogg %%DATADIR%%/es/syllab/ra.ogg %%DATADIR%%/es/syllab/re.ogg %%DATADIR%%/es/syllab/ri.ogg %%DATADIR%%/es/syllab/ro.ogg %%DATADIR%%/es/syllab/ru.ogg %%DATADIR%%/es/syllab/sa.ogg %%DATADIR%%/es/syllab/se.ogg %%DATADIR%%/es/syllab/si.ogg %%DATADIR%%/es/syllab/so.ogg %%DATADIR%%/es/syllab/su.ogg %%DATADIR%%/es/syllab/ta.ogg %%DATADIR%%/es/syllab/te.ogg %%DATADIR%%/es/syllab/ti.ogg %%DATADIR%%/es/syllab/to.ogg %%DATADIR%%/es/syllab/tu.ogg %%DATADIR%%/es/syllab/va.ogg %%DATADIR%%/es/syllab/ve.ogg %%DATADIR%%/es/syllab/vi.ogg %%DATADIR%%/es/syllab/vo.ogg %%DATADIR%%/es/syllab/vu.ogg %%DATADIR%%/es/syllab/wa.ogg %%DATADIR%%/es/syllab/we.ogg %%DATADIR%%/es/syllab/wi.ogg %%DATADIR%%/es/syllab/wo.ogg %%DATADIR%%/es/syllab/wu.ogg %%DATADIR%%/es/syllab/xa.ogg %%DATADIR%%/es/syllab/xe.ogg %%DATADIR%%/es/syllab/xi.ogg %%DATADIR%%/es/syllab/xo.ogg %%DATADIR%%/es/syllab/xu.ogg %%DATADIR%%/es/syllab/ya.ogg %%DATADIR%%/es/syllab/ye.ogg %%DATADIR%%/es/syllab/yi.ogg %%DATADIR%%/es/syllab/yo.ogg %%DATADIR%%/es/syllab/yu.ogg %%DATADIR%%/es/syllab/za.ogg %%DATADIR%%/es/syllab/ze.ogg %%DATADIR%%/es/syllab/zi.ogg %%DATADIR%%/es/syllab/zo.ogg %%DATADIR%%/es/syllab/zu.ogg %%DATADIR%%/fr/alpha/a-0.ogg %%DATADIR%%/fr/alpha/a-1.ogg -%%DATADIR%%/fr/alpha/a-2.ogg -%%DATADIR%%/fr/alpha/a-3.ogg -%%DATADIR%%/fr/alpha/a-4.ogg -%%DATADIR%%/fr/alpha/a-5.ogg -%%DATADIR%%/fr/alpha/a-6.ogg -%%DATADIR%%/fr/alpha/a-7.ogg -%%DATADIR%%/fr/alpha/a-8.ogg -%%DATADIR%%/fr/alpha/a-9.ogg %%DATADIR%%/fr/alpha/a-10.ogg %%DATADIR%%/fr/alpha/a-11.ogg %%DATADIR%%/fr/alpha/a-12.ogg %%DATADIR%%/fr/alpha/a-13.ogg %%DATADIR%%/fr/alpha/a-14.ogg %%DATADIR%%/fr/alpha/a-15.ogg %%DATADIR%%/fr/alpha/a-16.ogg %%DATADIR%%/fr/alpha/a-17.ogg %%DATADIR%%/fr/alpha/a-18.ogg %%DATADIR%%/fr/alpha/a-19.ogg +%%DATADIR%%/fr/alpha/a-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-2.ogg -%%DATADIR%%/fr/syllab/ad-3.ogg -%%DATADIR%%/fr/syllab/ad-4.ogg -%%DATADIR%%/fr/syllab/ad-5.ogg -%%DATADIR%%/fr/syllab/ad-6.ogg -%%DATADIR%%/fr/syllab/ad-7.ogg -%%DATADIR%%/fr/syllab/ad-8.ogg -%%DATADIR%%/fr/syllab/ad-9.ogg %%DATADIR%%/fr/syllab/ad-10.ogg %%DATADIR%%/fr/syllab/ad-11.ogg %%DATADIR%%/fr/syllab/ad-12.ogg %%DATADIR%%/fr/syllab/ad-13.ogg %%DATADIR%%/fr/syllab/ad-14.ogg %%DATADIR%%/fr/syllab/ad-15.ogg %%DATADIR%%/fr/syllab/ad-16.ogg %%DATADIR%%/fr/syllab/ad-17.ogg %%DATADIR%%/fr/syllab/ad-18.ogg %%DATADIR%%/fr/syllab/ad-19.ogg +%%DATADIR%%/fr/syllab/ad-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%%/icons/hicolor/128x128/actions/klettres_desert.png -%%DATADIR%%/icons/hicolor/128x128/actions/klettres_grownup.png -%%DATADIR%%/icons/hicolor/128x128/actions/klettres_kids.png -%%DATADIR%%/id/alpha/a.wav -%%DATADIR%%/id/alpha/b.wav -%%DATADIR%%/id/alpha/c.wav -%%DATADIR%%/id/alpha/d.wav -%%DATADIR%%/id/alpha/e.wav -%%DATADIR%%/id/alpha/f.wav -%%DATADIR%%/id/alpha/g.wav -%%DATADIR%%/id/alpha/h.wav -%%DATADIR%%/id/alpha/i.wav -%%DATADIR%%/id/alpha/j.wav -%%DATADIR%%/id/alpha/k.wav -%%DATADIR%%/id/alpha/l.wav -%%DATADIR%%/id/alpha/m.wav -%%DATADIR%%/id/alpha/n.wav -%%DATADIR%%/id/alpha/o.wav -%%DATADIR%%/id/alpha/p.wav -%%DATADIR%%/id/alpha/q.wav -%%DATADIR%%/id/alpha/r.wav -%%DATADIR%%/id/alpha/s.wav -%%DATADIR%%/id/alpha/t.wav -%%DATADIR%%/id/alpha/u.wav -%%DATADIR%%/id/alpha/v.wav -%%DATADIR%%/id/alpha/w.wav -%%DATADIR%%/id/alpha/x.wav -%%DATADIR%%/id/alpha/y.wav -%%DATADIR%%/id/alpha/z.wav %%DATADIR%%/id/sounds.xml -%%DATADIR%%/id/syllab/ba.wav -%%DATADIR%%/id/syllab/be.wav -%%DATADIR%%/id/syllab/bi.wav -%%DATADIR%%/id/syllab/bo.wav -%%DATADIR%%/id/syllab/bu.wav -%%DATADIR%%/id/syllab/ca.wav -%%DATADIR%%/id/syllab/ce.wav -%%DATADIR%%/id/syllab/co.wav -%%DATADIR%%/id/syllab/cu.wav -%%DATADIR%%/id/syllab/da.wav -%%DATADIR%%/id/syllab/de.wav -%%DATADIR%%/id/syllab/di.wav -%%DATADIR%%/id/syllab/do.wav -%%DATADIR%%/id/syllab/du.wav -%%DATADIR%%/id/syllab/fa.wav -%%DATADIR%%/id/syllab/fe.wav -%%DATADIR%%/id/syllab/fi.wav -%%DATADIR%%/id/syllab/fo.wav -%%DATADIR%%/id/syllab/fu.wav -%%DATADIR%%/id/syllab/ga.wav -%%DATADIR%%/id/syllab/go.wav -%%DATADIR%%/id/syllab/gu.wav -%%DATADIR%%/id/syllab/ja.wav -%%DATADIR%%/id/syllab/je.wav -%%DATADIR%%/id/syllab/ji.wav -%%DATADIR%%/id/syllab/jo.wav -%%DATADIR%%/id/syllab/ju.wav -%%DATADIR%%/id/syllab/la.wav -%%DATADIR%%/id/syllab/le.wav -%%DATADIR%%/id/syllab/li.wav -%%DATADIR%%/id/syllab/lo.wav -%%DATADIR%%/id/syllab/lu.wav -%%DATADIR%%/id/syllab/ma.wav -%%DATADIR%%/id/syllab/me.wav -%%DATADIR%%/id/syllab/mi.wav -%%DATADIR%%/id/syllab/mo.wav -%%DATADIR%%/id/syllab/mu.wav -%%DATADIR%%/id/syllab/na.wav -%%DATADIR%%/id/syllab/ne.wav -%%DATADIR%%/id/syllab/ni.wav -%%DATADIR%%/id/syllab/no.wav -%%DATADIR%%/id/syllab/nu.wav -%%DATADIR%%/id/syllab/pa.wav -%%DATADIR%%/id/syllab/pe.wav -%%DATADIR%%/id/syllab/pi.wav -%%DATADIR%%/id/syllab/po.wav -%%DATADIR%%/id/syllab/pu.wav -%%DATADIR%%/id/syllab/ra.wav -%%DATADIR%%/id/syllab/re.wav -%%DATADIR%%/id/syllab/ri.wav -%%DATADIR%%/id/syllab/ro.wav -%%DATADIR%%/id/syllab/ru.wav -%%DATADIR%%/id/syllab/sa.wav -%%DATADIR%%/id/syllab/se.wav -%%DATADIR%%/id/syllab/si.wav -%%DATADIR%%/id/syllab/so.wav -%%DATADIR%%/id/syllab/su.wav -%%DATADIR%%/id/syllab/ta.wav -%%DATADIR%%/id/syllab/te.wav -%%DATADIR%%/id/syllab/ti.wav -%%DATADIR%%/id/syllab/to.wav -%%DATADIR%%/id/syllab/tu.wav -%%DATADIR%%/id/syllab/va.wav -%%DATADIR%%/id/syllab/ve.wav -%%DATADIR%%/id/syllab/vi.wav -%%DATADIR%%/id/syllab/vo.wav -%%DATADIR%%/id/syllab/vu.wav -%%DATADIR%%/id/syllab/wa.wav -%%DATADIR%%/id/syllab/we.wav -%%DATADIR%%/id/syllab/wi.wav -%%DATADIR%%/id/syllab/wo.wav -%%DATADIR%%/id/syllab/wu.wav -%%DATADIR%%/id/syllab/ya.wav -%%DATADIR%%/id/syllab/ye.wav -%%DATADIR%%/id/syllab/yi.wav -%%DATADIR%%/id/syllab/yo.wav -%%DATADIR%%/id/syllab/yu.wav -%%DATADIR%%/id/syllab/za.wav -%%DATADIR%%/id/syllab/ze.wav -%%DATADIR%%/id/syllab/zi.wav -%%DATADIR%%/id/syllab/zo.wav -%%DATADIR%%/id/syllab/zu.wav %%DATADIR%%/it/alpha/a.ogg %%DATADIR%%/it/alpha/b.ogg %%DATADIR%%/it/alpha/c.ogg %%DATADIR%%/it/alpha/d.ogg %%DATADIR%%/it/alpha/e.ogg %%DATADIR%%/it/alpha/f.ogg %%DATADIR%%/it/alpha/g.ogg %%DATADIR%%/it/alpha/h.ogg %%DATADIR%%/it/alpha/i.ogg %%DATADIR%%/it/alpha/j.ogg %%DATADIR%%/it/alpha/k.ogg %%DATADIR%%/it/alpha/l.ogg %%DATADIR%%/it/alpha/m.ogg %%DATADIR%%/it/alpha/n.ogg %%DATADIR%%/it/alpha/o.ogg %%DATADIR%%/it/alpha/p.ogg %%DATADIR%%/it/alpha/q.ogg %%DATADIR%%/it/alpha/r.ogg %%DATADIR%%/it/alpha/s.ogg %%DATADIR%%/it/alpha/t.ogg %%DATADIR%%/it/alpha/u.ogg %%DATADIR%%/it/alpha/w.ogg %%DATADIR%%/it/alpha/x.ogg %%DATADIR%%/it/alpha/y.ogg %%DATADIR%%/it/alpha/z.ogg %%DATADIR%%/it/sounds.xml %%DATADIR%%/it/syllab/ba.ogg %%DATADIR%%/it/syllab/be.ogg %%DATADIR%%/it/syllab/bi.ogg %%DATADIR%%/it/syllab/bo.ogg %%DATADIR%%/it/syllab/bu.ogg %%DATADIR%%/it/syllab/ca.ogg %%DATADIR%%/it/syllab/ce.ogg %%DATADIR%%/it/syllab/ci.ogg %%DATADIR%%/it/syllab/co.ogg %%DATADIR%%/it/syllab/cu.ogg %%DATADIR%%/it/syllab/da.ogg %%DATADIR%%/it/syllab/de.ogg %%DATADIR%%/it/syllab/di.ogg %%DATADIR%%/it/syllab/do.ogg %%DATADIR%%/it/syllab/du.ogg %%DATADIR%%/it/syllab/fa.ogg %%DATADIR%%/it/syllab/fe.ogg %%DATADIR%%/it/syllab/fi.ogg %%DATADIR%%/it/syllab/fo.ogg %%DATADIR%%/it/syllab/ga.ogg %%DATADIR%%/it/syllab/ge.ogg %%DATADIR%%/it/syllab/gi.ogg %%DATADIR%%/it/syllab/gli.ogg %%DATADIR%%/it/syllab/gna.ogg %%DATADIR%%/it/syllab/gne.ogg %%DATADIR%%/it/syllab/gni.ogg %%DATADIR%%/it/syllab/gno.ogg %%DATADIR%%/it/syllab/gnu.ogg %%DATADIR%%/it/syllab/go.ogg %%DATADIR%%/it/syllab/gu.ogg %%DATADIR%%/it/syllab/la.ogg %%DATADIR%%/it/syllab/le.ogg %%DATADIR%%/it/syllab/li.ogg %%DATADIR%%/it/syllab/lo.ogg %%DATADIR%%/it/syllab/lu.ogg %%DATADIR%%/it/syllab/ma.ogg %%DATADIR%%/it/syllab/me.ogg %%DATADIR%%/it/syllab/mi.ogg %%DATADIR%%/it/syllab/mo.ogg %%DATADIR%%/it/syllab/mu.ogg %%DATADIR%%/it/syllab/na.ogg %%DATADIR%%/it/syllab/ne.ogg %%DATADIR%%/it/syllab/ni.ogg %%DATADIR%%/it/syllab/no.ogg %%DATADIR%%/it/syllab/nu.ogg %%DATADIR%%/it/syllab/pa.ogg %%DATADIR%%/it/syllab/pe.ogg %%DATADIR%%/it/syllab/pi.ogg %%DATADIR%%/it/syllab/po.ogg %%DATADIR%%/it/syllab/pu.ogg %%DATADIR%%/it/syllab/ra.ogg %%DATADIR%%/it/syllab/re.ogg %%DATADIR%%/it/syllab/ri.ogg %%DATADIR%%/it/syllab/ro.ogg %%DATADIR%%/it/syllab/ru.ogg %%DATADIR%%/it/syllab/sa.ogg %%DATADIR%%/it/syllab/se.ogg %%DATADIR%%/it/syllab/si.ogg %%DATADIR%%/it/syllab/so.ogg %%DATADIR%%/it/syllab/su.ogg %%DATADIR%%/it/syllab/ta.ogg %%DATADIR%%/it/syllab/te.ogg %%DATADIR%%/it/syllab/ti.ogg %%DATADIR%%/it/syllab/to.ogg %%DATADIR%%/it/syllab/tu.ogg %%DATADIR%%/it/syllab/va.ogg %%DATADIR%%/it/syllab/ve.ogg %%DATADIR%%/it/syllab/vi.ogg %%DATADIR%%/it/syllab/vo.ogg %%DATADIR%%/it/syllab/vu.ogg %%DATADIR%%/it/syllab/za.ogg %%DATADIR%%/it/syllab/ze.ogg %%DATADIR%%/it/syllab/zi.ogg %%DATADIR%%/it/syllab/zo.ogg %%DATADIR%%/it/syllab/zu.ogg -%%DATADIR%%/lt.txt %%DATADIR%%/lt/alpha/a-1.ogg %%DATADIR%%/lt/alpha/a-2.ogg %%DATADIR%%/lt/alpha/b.ogg %%DATADIR%%/lt/alpha/c-1.ogg %%DATADIR%%/lt/alpha/c-2.ogg %%DATADIR%%/lt/alpha/d.ogg %%DATADIR%%/lt/alpha/e-1.ogg %%DATADIR%%/lt/alpha/e-2.ogg %%DATADIR%%/lt/alpha/e-3.ogg %%DATADIR%%/lt/alpha/f.ogg %%DATADIR%%/lt/alpha/g.ogg %%DATADIR%%/lt/alpha/h.ogg %%DATADIR%%/lt/alpha/i-1.ogg %%DATADIR%%/lt/alpha/i-2.ogg %%DATADIR%%/lt/alpha/j.ogg %%DATADIR%%/lt/alpha/k.ogg %%DATADIR%%/lt/alpha/l.ogg %%DATADIR%%/lt/alpha/m.ogg %%DATADIR%%/lt/alpha/n.ogg %%DATADIR%%/lt/alpha/o.ogg %%DATADIR%%/lt/alpha/p.ogg %%DATADIR%%/lt/alpha/r.ogg %%DATADIR%%/lt/alpha/s-1.ogg %%DATADIR%%/lt/alpha/s-2.ogg %%DATADIR%%/lt/alpha/t.ogg %%DATADIR%%/lt/alpha/u-1.ogg %%DATADIR%%/lt/alpha/u-2.ogg %%DATADIR%%/lt/alpha/u-3.ogg %%DATADIR%%/lt/alpha/v.ogg %%DATADIR%%/lt/alpha/y.ogg %%DATADIR%%/lt/alpha/z-1.ogg %%DATADIR%%/lt/alpha/z-2.ogg %%DATADIR%%/lt/sounds.xml %%DATADIR%%/lt/syllab/al.ogg %%DATADIR%%/lt/syllab/am.ogg %%DATADIR%%/lt/syllab/an.ogg %%DATADIR%%/lt/syllab/ar.ogg %%DATADIR%%/lt/syllab/au.ogg %%DATADIR%%/lt/syllab/bals.ogg %%DATADIR%%/lt/syllab/bels.ogg %%DATADIR%%/lt/syllab/bus.ogg %%DATADIR%%/lt/syllab/duos.ogg %%DATADIR%%/lt/syllab/dz2iu.ogg %%DATADIR%%/lt/syllab/dzin.ogg %%DATADIR%%/lt/syllab/eu.ogg %%DATADIR%%/lt/syllab/fui.ogg %%DATADIR%%/lt/syllab/gros.ogg %%DATADIR%%/lt/syllab/ie.ogg %%DATADIR%%/lt/syllab/il.ogg %%DATADIR%%/lt/syllab/im.ogg %%DATADIR%%/lt/syllab/in.ogg %%DATADIR%%/lt/syllab/ir.ogg %%DATADIR%%/lt/syllab/jau.ogg %%DATADIR%%/lt/syllab/jei.ogg %%DATADIR%%/lt/syllab/ji.ogg %%DATADIR%%/lt/syllab/jie.ogg %%DATADIR%%/lt/syllab/jis.ogg %%DATADIR%%/lt/syllab/joks.ogg %%DATADIR%%/lt/syllab/juos.ogg %%DATADIR%%/lt/syllab/jus.ogg %%DATADIR%%/lt/syllab/kaip.ogg %%DATADIR%%/lt/syllab/kas.ogg %%DATADIR%%/lt/syllab/kilo.ogg %%DATADIR%%/lt/syllab/ko.ogg %%DATADIR%%/lt/syllab/lai.ogg %%DATADIR%%/lt/syllab/le3k.ogg %%DATADIR%%/lt/syllab/leis.ogg %%DATADIR%%/lt/syllab/lis.ogg %%DATADIR%%/lt/syllab/lok.ogg %%DATADIR%%/lt/syllab/mels.ogg %%DATADIR%%/lt/syllab/mes.ogg %%DATADIR%%/lt/syllab/mur.ogg %%DATADIR%%/lt/syllab/na.ogg %%DATADIR%%/lt/syllab/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%%/nn/alpha/U0061.opus -%%DATADIR%%/nn/alpha/U0062.opus -%%DATADIR%%/nn/alpha/U0063.opus -%%DATADIR%%/nn/alpha/U0064.opus -%%DATADIR%%/nn/alpha/U0065.opus -%%DATADIR%%/nn/alpha/U0066.opus -%%DATADIR%%/nn/alpha/U0067.opus -%%DATADIR%%/nn/alpha/U0068.opus -%%DATADIR%%/nn/alpha/U0069.opus -%%DATADIR%%/nn/alpha/U006A.opus -%%DATADIR%%/nn/alpha/U006B.opus -%%DATADIR%%/nn/alpha/U006C.opus -%%DATADIR%%/nn/alpha/U006D.opus -%%DATADIR%%/nn/alpha/U006E.opus -%%DATADIR%%/nn/alpha/U006F.opus -%%DATADIR%%/nn/alpha/U0070.opus -%%DATADIR%%/nn/alpha/U0071.opus -%%DATADIR%%/nn/alpha/U0072.opus -%%DATADIR%%/nn/alpha/U0073.opus -%%DATADIR%%/nn/alpha/U0074.opus -%%DATADIR%%/nn/alpha/U0075.opus -%%DATADIR%%/nn/alpha/U0076.opus -%%DATADIR%%/nn/alpha/U0077.opus -%%DATADIR%%/nn/alpha/U0078.opus -%%DATADIR%%/nn/alpha/U0079.opus -%%DATADIR%%/nn/alpha/U007A.opus -%%DATADIR%%/nn/alpha/U00E5.opus -%%DATADIR%%/nn/alpha/U00E6.opus -%%DATADIR%%/nn/alpha/U00F8.opus %%DATADIR%%/nn/sounds.xml %%DATADIR%%/pics/aqua/klettres_aqua.svg %%DATADIR%%/pics/desert/klettres_desert.svg %%DATADIR%%/pics/kids/klettres_kids.svg %%DATADIR%%/pics/klettres_desert.png %%DATADIR%%/pics/klettres_grownup.png %%DATADIR%%/pics/klettres_kids.jpeg %%DATADIR%%/pics/savannah/klettres_savannah.svg %%DATADIR%%/pt_BR/alpha/a.ogg %%DATADIR%%/pt_BR/alpha/b.ogg %%DATADIR%%/pt_BR/alpha/c.ogg %%DATADIR%%/pt_BR/alpha/d.ogg %%DATADIR%%/pt_BR/alpha/e.ogg %%DATADIR%%/pt_BR/alpha/f.ogg %%DATADIR%%/pt_BR/alpha/g.ogg %%DATADIR%%/pt_BR/alpha/h.ogg %%DATADIR%%/pt_BR/alpha/i.ogg %%DATADIR%%/pt_BR/alpha/j.ogg %%DATADIR%%/pt_BR/alpha/k.ogg %%DATADIR%%/pt_BR/alpha/l.ogg %%DATADIR%%/pt_BR/alpha/m.ogg %%DATADIR%%/pt_BR/alpha/n.ogg %%DATADIR%%/pt_BR/alpha/o.ogg %%DATADIR%%/pt_BR/alpha/p.ogg %%DATADIR%%/pt_BR/alpha/q.ogg %%DATADIR%%/pt_BR/alpha/r.ogg %%DATADIR%%/pt_BR/alpha/s.ogg %%DATADIR%%/pt_BR/alpha/t.ogg %%DATADIR%%/pt_BR/alpha/u.ogg %%DATADIR%%/pt_BR/alpha/v.ogg %%DATADIR%%/pt_BR/alpha/w.ogg %%DATADIR%%/pt_BR/alpha/x.ogg %%DATADIR%%/pt_BR/alpha/y.ogg %%DATADIR%%/pt_BR/alpha/z.ogg %%DATADIR%%/pt_BR/sounds.xml %%DATADIR%%/pt_BR/syllab/ba.ogg %%DATADIR%%/pt_BR/syllab/be.ogg %%DATADIR%%/pt_BR/syllab/bi.ogg %%DATADIR%%/pt_BR/syllab/bo.ogg %%DATADIR%%/pt_BR/syllab/bu.ogg %%DATADIR%%/pt_BR/syllab/ca.ogg %%DATADIR%%/pt_BR/syllab/co.ogg %%DATADIR%%/pt_BR/syllab/cu.ogg %%DATADIR%%/pt_BR/syllab/da.ogg %%DATADIR%%/pt_BR/syllab/de.ogg %%DATADIR%%/pt_BR/syllab/di.ogg %%DATADIR%%/pt_BR/syllab/do.ogg %%DATADIR%%/pt_BR/syllab/du.ogg %%DATADIR%%/pt_BR/syllab/fa.ogg %%DATADIR%%/pt_BR/syllab/fe.ogg %%DATADIR%%/pt_BR/syllab/fi.ogg %%DATADIR%%/pt_BR/syllab/fo.ogg %%DATADIR%%/pt_BR/syllab/fu.ogg %%DATADIR%%/pt_BR/syllab/ga.ogg %%DATADIR%%/pt_BR/syllab/go.ogg %%DATADIR%%/pt_BR/syllab/gu.ogg %%DATADIR%%/pt_BR/syllab/ja.ogg %%DATADIR%%/pt_BR/syllab/je.ogg %%DATADIR%%/pt_BR/syllab/ji.ogg %%DATADIR%%/pt_BR/syllab/jo.ogg %%DATADIR%%/pt_BR/syllab/ju.ogg %%DATADIR%%/pt_BR/syllab/la.ogg %%DATADIR%%/pt_BR/syllab/le.ogg %%DATADIR%%/pt_BR/syllab/li.ogg %%DATADIR%%/pt_BR/syllab/lo.ogg %%DATADIR%%/pt_BR/syllab/lu.ogg %%DATADIR%%/pt_BR/syllab/ma.ogg %%DATADIR%%/pt_BR/syllab/me.ogg %%DATADIR%%/pt_BR/syllab/mi.ogg %%DATADIR%%/pt_BR/syllab/mo.ogg %%DATADIR%%/pt_BR/syllab/mu.ogg %%DATADIR%%/pt_BR/syllab/na.ogg %%DATADIR%%/pt_BR/syllab/ne.ogg %%DATADIR%%/pt_BR/syllab/ni.ogg %%DATADIR%%/pt_BR/syllab/no.ogg %%DATADIR%%/pt_BR/syllab/nu.ogg %%DATADIR%%/pt_BR/syllab/pa.ogg %%DATADIR%%/pt_BR/syllab/pe.ogg %%DATADIR%%/pt_BR/syllab/pi.ogg %%DATADIR%%/pt_BR/syllab/po.ogg %%DATADIR%%/pt_BR/syllab/pu.ogg %%DATADIR%%/pt_BR/syllab/ra.ogg %%DATADIR%%/pt_BR/syllab/re.ogg %%DATADIR%%/pt_BR/syllab/ri.ogg %%DATADIR%%/pt_BR/syllab/ro.ogg %%DATADIR%%/pt_BR/syllab/ru.ogg %%DATADIR%%/pt_BR/syllab/sa.ogg %%DATADIR%%/pt_BR/syllab/se.ogg %%DATADIR%%/pt_BR/syllab/si.ogg %%DATADIR%%/pt_BR/syllab/so.ogg %%DATADIR%%/pt_BR/syllab/su.ogg %%DATADIR%%/pt_BR/syllab/ta.ogg %%DATADIR%%/pt_BR/syllab/te.ogg %%DATADIR%%/pt_BR/syllab/ti.ogg %%DATADIR%%/pt_BR/syllab/to.ogg %%DATADIR%%/pt_BR/syllab/tu.ogg %%DATADIR%%/pt_BR/syllab/va.ogg %%DATADIR%%/pt_BR/syllab/ve.ogg %%DATADIR%%/pt_BR/syllab/vi.ogg %%DATADIR%%/pt_BR/syllab/vo.ogg %%DATADIR%%/pt_BR/syllab/vu.ogg %%DATADIR%%/pt_BR/syllab/xa.ogg %%DATADIR%%/pt_BR/syllab/xe.ogg %%DATADIR%%/pt_BR/syllab/xi.ogg %%DATADIR%%/pt_BR/syllab/xo.ogg %%DATADIR%%/pt_BR/syllab/xu.ogg %%DATADIR%%/pt_BR/syllab/za.ogg %%DATADIR%%/pt_BR/syllab/ze.ogg %%DATADIR%%/pt_BR/syllab/zi.ogg %%DATADIR%%/pt_BR/syllab/zo.ogg %%DATADIR%%/pt_BR/syllab/zu.ogg %%DATADIR%%/ru/alpha/a.ogg %%DATADIR%%/ru/alpha/ae.ogg %%DATADIR%%/ru/alpha/be.ogg %%DATADIR%%/ru/alpha/che.ogg %%DATADIR%%/ru/alpha/de.ogg %%DATADIR%%/ru/alpha/e.ogg %%DATADIR%%/ru/alpha/em.ogg %%DATADIR%%/ru/alpha/en.ogg %%DATADIR%%/ru/alpha/er.ogg %%DATADIR%%/ru/alpha/es.ogg %%DATADIR%%/ru/alpha/f.ogg %%DATADIR%%/ru/alpha/ge.ogg %%DATADIR%%/ru/alpha/ha.ogg %%DATADIR%%/ru/alpha/hard.ogg %%DATADIR%%/ru/alpha/i.ogg %%DATADIR%%/ru/alpha/iu.ogg %%DATADIR%%/ru/alpha/k.ogg %%DATADIR%%/ru/alpha/l.ogg %%DATADIR%%/ru/alpha/o.ogg %%DATADIR%%/ru/alpha/pe.ogg %%DATADIR%%/ru/alpha/scha.ogg %%DATADIR%%/ru/alpha/sha.ogg %%DATADIR%%/ru/alpha/soft.ogg %%DATADIR%%/ru/alpha/te.ogg %%DATADIR%%/ru/alpha/tse.ogg %%DATADIR%%/ru/alpha/u.ogg %%DATADIR%%/ru/alpha/ve.ogg %%DATADIR%%/ru/alpha/y.ogg %%DATADIR%%/ru/alpha/ya.ogg %%DATADIR%%/ru/alpha/yo.ogg %%DATADIR%%/ru/alpha/yu.ogg %%DATADIR%%/ru/alpha/ze.ogg %%DATADIR%%/ru/alpha/zh.ogg %%DATADIR%%/ru/sounds.xml %%DATADIR%%/ru/syllab/ba.ogg %%DATADIR%%/ru/syllab/be.ogg %%DATADIR%%/ru/syllab/bro.ogg %%DATADIR%%/ru/syllab/bu.ogg %%DATADIR%%/ru/syllab/chey.ogg %%DATADIR%%/ru/syllab/chka.ogg %%DATADIR%%/ru/syllab/chok.ogg %%DATADIR%%/ru/syllab/chto.ogg %%DATADIR%%/ru/syllab/chu.ogg %%DATADIR%%/ru/syllab/chut.ogg %%DATADIR%%/ru/syllab/chyk.ogg %%DATADIR%%/ru/syllab/da.ogg %%DATADIR%%/ru/syllab/do.ogg %%DATADIR%%/ru/syllab/du.ogg %%DATADIR%%/ru/syllab/ha.ogg %%DATADIR%%/ru/syllab/ka.ogg %%DATADIR%%/ru/syllab/ko.ogg %%DATADIR%%/ru/syllab/ku.ogg %%DATADIR%%/ru/syllab/lo.ogg %%DATADIR%%/ru/syllab/ly.ogg %%DATADIR%%/ru/syllab/lya.ogg %%DATADIR%%/ru/syllab/lyu.ogg %%DATADIR%%/ru/syllab/ma.ogg %%DATADIR%%/ru/syllab/may.ogg %%DATADIR%%/ru/syllab/miu.ogg %%DATADIR%%/ru/syllab/na.ogg %%DATADIR%%/ru/syllab/ne.ogg %%DATADIR%%/ru/syllab/net.ogg %%DATADIR%%/ru/syllab/niuy.ogg %%DATADIR%%/ru/syllab/no.ogg %%DATADIR%%/ru/syllab/noy.ogg %%DATADIR%%/ru/syllab/ny.ogg %%DATADIR%%/ru/syllab/nya.ogg %%DATADIR%%/ru/syllab/pa.ogg %%DATADIR%%/ru/syllab/pi.ogg %%DATADIR%%/ru/syllab/ro.ogg %%DATADIR%%/ru/syllab/russ.ogg %%DATADIR%%/ru/syllab/rys.ogg %%DATADIR%%/ru/syllab/schy.ogg %%DATADIR%%/ru/syllab/sha.ogg %%DATADIR%%/ru/syllab/she.ogg %%DATADIR%%/ru/syllab/ska.ogg %%DATADIR%%/ru/syllab/so.ogg %%DATADIR%%/ru/syllab/sy.ogg %%DATADIR%%/ru/syllab/syt.ogg %%DATADIR%%/ru/syllab/ta.ogg %%DATADIR%%/ru/syllab/te.ogg %%DATADIR%%/ru/syllab/tiu.ogg %%DATADIR%%/ru/syllab/to.ogg %%DATADIR%%/ru/syllab/tsya.ogg %%DATADIR%%/ru/syllab/tvoy.ogg %%DATADIR%%/ru/syllab/ty.ogg %%DATADIR%%/ru/syllab/viu.ogg %%DATADIR%%/ru/syllab/vo.ogg %%DATADIR%%/ru/syllab/vse.ogg %%DATADIR%%/ru/syllab/yizh.ogg %%DATADIR%%/ru/syllab/zhe.ogg %%DATADIR%%/ru/syllab/zhi.ogg %%DATADIR%%/ru/syllab/zhyt.ogg %%DATADIR%%/ru/syllab/zlo.ogg %%DATADIR%%/ru/syllab/zyk.ogg %%DATADIR%%/sk.txt +%%DATADIR%%/tn/alpha/a.ogg +%%DATADIR%%/tn/alpha/e.ogg +%%DATADIR%%/tn/alpha/i.ogg +%%DATADIR%%/tn/alpha/k.ogg +%%DATADIR%%/tn/alpha/l.ogg +%%DATADIR%%/tn/alpha/n.ogg +%%DATADIR%%/tn/alpha/r.ogg +%%DATADIR%%/tn/sounds.xml +%%DATADIR%%/tn/syllab/ba.ogg +%%DATADIR%%/tn/syllab/be.ogg +%%DATADIR%%/tn/syllab/bi.ogg +%%DATADIR%%/tn/syllab/bo.ogg +%%DATADIR%%/tn/syllab/fa.ogg +%%DATADIR%%/tn/syllab/fe.ogg +%%DATADIR%%/tn/syllab/fi.ogg +%%DATADIR%%/tn/syllab/fo.ogg +%%DATADIR%%/tn/syllab/fu.ogg +%%DATADIR%%/tn/syllab/ga.ogg +%%DATADIR%%/tn/syllab/ge.ogg +%%DATADIR%%/tn/syllab/gi.ogg +%%DATADIR%%/tn/syllab/gu.ogg +%%DATADIR%%/tn/syllab/ka.ogg +%%DATADIR%%/tn/syllab/ke.ogg +%%DATADIR%%/tn/syllab/ki.ogg +%%DATADIR%%/tn/syllab/ko.ogg +%%DATADIR%%/tn/syllab/ku.ogg +%%DATADIR%%/tn/syllab/la.ogg +%%DATADIR%%/tn/syllab/li.ogg +%%DATADIR%%/tn/syllab/ma.ogg +%%DATADIR%%/tn/syllab/me.ogg +%%DATADIR%%/tn/syllab/mo.ogg +%%DATADIR%%/tn/syllab/na.ogg +%%DATADIR%%/tn/syllab/ne.ogg +%%DATADIR%%/tn/syllab/po.ogg +%%DATADIR%%/tn/syllab/ra.ogg +%%DATADIR%%/tn/syllab/re.ogg +%%DATADIR%%/tn/syllab/ro.ogg +%%DATADIR%%/tn/syllab/ru.ogg +%%DATADIR%%/tn/syllab/sa.ogg +%%DATADIR%%/tn/syllab/te.ogg +%%DATADIR%%/tn/syllab/to.ogg +%%DATADIR%%/tn/syllab/wa.ogg +%%DATADIR%%/tn/syllab/we.ogg +%%DATADIR%%/tn/syllab/ya.ogg %%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/af/LC_MESSAGES/klettres.mo share/locale/ar/LC_MESSAGES/klettres.mo share/locale/be/LC_MESSAGES/klettres.mo share/locale/bg/LC_MESSAGES/klettres.mo +share/locale/bn/LC_MESSAGES/klettres.mo +share/locale/br/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/cy/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/gu/LC_MESSAGES/klettres.mo share/locale/he/LC_MESSAGES/klettres.mo share/locale/hi/LC_MESSAGES/klettres.mo +share/locale/hne/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/ka/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/mk/LC_MESSAGES/klettres.mo share/locale/ml/LC_MESSAGES/klettres.mo share/locale/mr/LC_MESSAGES/klettres.mo +share/locale/ms/LC_MESSAGES/klettres.mo share/locale/nb/LC_MESSAGES/klettres.mo share/locale/nds/LC_MESSAGES/klettres.mo +share/locale/ne/LC_MESSAGES/klettres.mo share/locale/nl/LC_MESSAGES/klettres.mo share/locale/nn/LC_MESSAGES/klettres.mo +share/locale/oc/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/si/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/xh/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 a6c482b4c69d..7d0672db3f31 100644 --- a/misc/ktouch/distinfo +++ b/misc/ktouch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539624 -SHA256 (KDE/release-service/22.08.3/ktouch-22.08.3.tar.xz) = 0d9b572836d827263d6e4297d67aabc32ddb2a46cc346ae41e6f6cd99f312cb8 -SIZE (KDE/release-service/22.08.3/ktouch-22.08.3.tar.xz) = 4989008 +TIMESTAMP = 1670513279 +SHA256 (KDE/release-service/22.12.0/ktouch-22.12.0.tar.xz) = 195245401c0b51bee84c5758e1502fb701ffcef3d3c5b90e5d905fbbeeba482b +SIZE (KDE/release-service/22.12.0/ktouch-22.12.0.tar.xz) = 5033276 diff --git a/misc/ktouch/pkg-plist b/misc/ktouch/pkg-plist index 79bbf625a12f..e225ce65a763 100644 --- a/misc/ktouch/pkg-plist +++ b/misc/ktouch/pkg-plist @@ -1,181 +1,195 @@ 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/ru/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/in.mal_enhanced1.xml %%DATADIR%%/courses/in.mal_enhanced2.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.mal_enhanced.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/af/LC_MESSAGES/ktouch.mo share/locale/ar/LC_MESSAGES/ktouch.mo share/locale/be/LC_MESSAGES/ktouch.mo share/locale/bg/LC_MESSAGES/ktouch.mo +share/locale/bn/LC_MESSAGES/ktouch.mo +share/locale/br/LC_MESSAGES/ktouch.mo share/locale/bs/LC_MESSAGES/ktouch.mo share/locale/ca/LC_MESSAGES/ktouch.mo share/locale/ca@valencia/LC_MESSAGES/ktouch.mo share/locale/cs/LC_MESSAGES/ktouch.mo +share/locale/cy/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/gu/LC_MESSAGES/ktouch.mo share/locale/he/LC_MESSAGES/ktouch.mo share/locale/hi/LC_MESSAGES/ktouch.mo +share/locale/hne/LC_MESSAGES/ktouch.mo share/locale/hr/LC_MESSAGES/ktouch.mo share/locale/hu/LC_MESSAGES/ktouch.mo share/locale/ia/LC_MESSAGES/ktouch.mo share/locale/id/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/ka/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/mai/LC_MESSAGES/ktouch.mo +share/locale/mk/LC_MESSAGES/ktouch.mo share/locale/ml/LC_MESSAGES/ktouch.mo share/locale/mr/LC_MESSAGES/ktouch.mo +share/locale/ms/LC_MESSAGES/ktouch.mo share/locale/nb/LC_MESSAGES/ktouch.mo share/locale/nds/LC_MESSAGES/ktouch.mo +share/locale/ne/LC_MESSAGES/ktouch.mo share/locale/nl/LC_MESSAGES/ktouch.mo share/locale/nn/LC_MESSAGES/ktouch.mo +share/locale/oc/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/si/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/xh/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 169375907711..e1a3bb1a81e9 100644 --- a/misc/kwordquiz/distinfo +++ b/misc/kwordquiz/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539627 -SHA256 (KDE/release-service/22.08.3/kwordquiz-22.08.3.tar.xz) = e220430a9b84e73960994145de97e8198c915cb8b1c3f373f8820ccc7d0b677d -SIZE (KDE/release-service/22.08.3/kwordquiz-22.08.3.tar.xz) = 4216880 +TIMESTAMP = 1670513283 +SHA256 (KDE/release-service/22.12.0/kwordquiz-22.12.0.tar.xz) = b3da0be2251c9f24706c4961352bd291bea1eb4cd6bdbde9b2dc55534d496541 +SIZE (KDE/release-service/22.12.0/kwordquiz-22.12.0.tar.xz) = 4257452 diff --git a/misc/kwordquiz/pkg-plist b/misc/kwordquiz/pkg-plist index 7c3090c64aac..bc7d69655272 100644 --- a/misc/kwordquiz/pkg-plist +++ b/misc/kwordquiz/pkg-plist @@ -1,225 +1,236 @@ bin/kwordquiz share/applications/org.kde.kwordquiz.desktop share/config.kcfg/kwordquiz.kcfg +share/icons/hicolor/128x128/apps/kwordquiz.png +share/icons/hicolor/128x128/mimetypes/application-x-kwordquiz.png share/icons/hicolor/16x16/apps/kwordquiz.png share/icons/hicolor/16x16/mimetypes/application-x-kwordquiz.png share/icons/hicolor/22x22/apps/kwordquiz.png share/icons/hicolor/22x22/mimetypes/application-x-kwordquiz.png share/icons/hicolor/32x32/apps/kwordquiz.png share/icons/hicolor/32x32/mimetypes/application-x-kwordquiz.png share/icons/hicolor/48x48/apps/kwordquiz.png share/icons/hicolor/48x48/mimetypes/application-x-kwordquiz.png share/icons/hicolor/64x64/apps/kwordquiz.png -share/icons/hicolor/128x128/apps/kwordquiz.png -share/icons/hicolor/128x128/mimetypes/application-x-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/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/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/bn/LC_MESSAGES/kwordquiz.mo +share/locale/br/LC_MESSAGES/kwordquiz.mo share/locale/bs/LC_MESSAGES/kwordquiz.mo share/locale/ca/LC_MESSAGES/kwordquiz.mo share/locale/ca@valencia/LC_MESSAGES/kwordquiz.mo share/locale/cs/LC_MESSAGES/kwordquiz.mo +share/locale/cy/LC_MESSAGES/kwordquiz.mo share/locale/da/LC_MESSAGES/kwordquiz.mo share/locale/de/LC_MESSAGES/kwordquiz.mo share/locale/el/LC_MESSAGES/kwordquiz.mo share/locale/en_GB/LC_MESSAGES/kwordquiz.mo share/locale/eo/LC_MESSAGES/kwordquiz.mo share/locale/es/LC_MESSAGES/kwordquiz.mo share/locale/et/LC_MESSAGES/kwordquiz.mo share/locale/eu/LC_MESSAGES/kwordquiz.mo share/locale/fa/LC_MESSAGES/kwordquiz.mo share/locale/fi/LC_MESSAGES/kwordquiz.mo share/locale/fr/LC_MESSAGES/kwordquiz.mo share/locale/ga/LC_MESSAGES/kwordquiz.mo share/locale/gl/LC_MESSAGES/kwordquiz.mo share/locale/hi/LC_MESSAGES/kwordquiz.mo +share/locale/hne/LC_MESSAGES/kwordquiz.mo share/locale/hr/LC_MESSAGES/kwordquiz.mo share/locale/hu/LC_MESSAGES/kwordquiz.mo share/locale/ia/LC_MESSAGES/kwordquiz.mo share/locale/it/LC_MESSAGES/kwordquiz.mo share/locale/ja/LC_MESSAGES/kwordquiz.mo +share/locale/ka/LC_MESSAGES/kwordquiz.mo share/locale/kk/LC_MESSAGES/kwordquiz.mo share/locale/km/LC_MESSAGES/kwordquiz.mo share/locale/ko/LC_MESSAGES/kwordquiz.mo share/locale/lt/LC_MESSAGES/kwordquiz.mo share/locale/lv/LC_MESSAGES/kwordquiz.mo +share/locale/mai/LC_MESSAGES/kwordquiz.mo +share/locale/mk/LC_MESSAGES/kwordquiz.mo share/locale/ml/LC_MESSAGES/kwordquiz.mo share/locale/mr/LC_MESSAGES/kwordquiz.mo +share/locale/ms/LC_MESSAGES/kwordquiz.mo share/locale/nb/LC_MESSAGES/kwordquiz.mo share/locale/nds/LC_MESSAGES/kwordquiz.mo +share/locale/ne/LC_MESSAGES/kwordquiz.mo share/locale/nl/LC_MESSAGES/kwordquiz.mo share/locale/nn/LC_MESSAGES/kwordquiz.mo +share/locale/oc/LC_MESSAGES/kwordquiz.mo share/locale/pa/LC_MESSAGES/kwordquiz.mo share/locale/pl/LC_MESSAGES/kwordquiz.mo share/locale/pt/LC_MESSAGES/kwordquiz.mo share/locale/pt_BR/LC_MESSAGES/kwordquiz.mo share/locale/ro/LC_MESSAGES/kwordquiz.mo share/locale/ru/LC_MESSAGES/kwordquiz.mo share/locale/se/LC_MESSAGES/kwordquiz.mo +share/locale/si/LC_MESSAGES/kwordquiz.mo share/locale/sk/LC_MESSAGES/kwordquiz.mo share/locale/sl/LC_MESSAGES/kwordquiz.mo share/locale/sq/LC_MESSAGES/kwordquiz.mo share/locale/sv/LC_MESSAGES/kwordquiz.mo share/locale/ta/LC_MESSAGES/kwordquiz.mo share/locale/tg/LC_MESSAGES/kwordquiz.mo share/locale/tr/LC_MESSAGES/kwordquiz.mo share/locale/ug/LC_MESSAGES/kwordquiz.mo share/locale/uk/LC_MESSAGES/kwordquiz.mo share/locale/zh_CN/LC_MESSAGES/kwordquiz.mo share/locale/zh_TW/LC_MESSAGES/kwordquiz.mo share/metainfo/org.kde.kwordquiz.appdata.xml diff --git a/misc/libkeduvocdocument/distinfo b/misc/libkeduvocdocument/distinfo index 31ed71f8d3c6..ff75a7f6ee37 100644 --- a/misc/libkeduvocdocument/distinfo +++ b/misc/libkeduvocdocument/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539625 -SHA256 (KDE/release-service/22.08.3/libkeduvocdocument-22.08.3.tar.xz) = 23f362662ef18763bc7ca46e7fcf25c4bb7de5101f761bea70ff01122ecf3e98 -SIZE (KDE/release-service/22.08.3/libkeduvocdocument-22.08.3.tar.xz) = 214928 +TIMESTAMP = 1670513280 +SHA256 (KDE/release-service/22.12.0/libkeduvocdocument-22.12.0.tar.xz) = 909b2adcb9ec64d3d78e0c8e8228d3969b3699997efc32eec8030e78f8bf91fd +SIZE (KDE/release-service/22.12.0/libkeduvocdocument-22.12.0.tar.xz) = 230244 diff --git a/misc/libkeduvocdocument/pkg-plist b/misc/libkeduvocdocument/pkg-plist index 857d49ee3bce..c753e6fa084a 100644 --- a/misc/libkeduvocdocument/pkg-plist +++ b/misc/libkeduvocdocument/pkg-plist @@ -1,98 +1,109 @@ 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/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/libkeduvocdocument.mo +share/locale/mk/LC_MESSAGES/libkeduvocdocument.mo share/locale/ml/LC_MESSAGES/libkeduvocdocument.mo share/locale/mr/LC_MESSAGES/libkeduvocdocument.mo +share/locale/ms/LC_MESSAGES/libkeduvocdocument.mo share/locale/nb/LC_MESSAGES/libkeduvocdocument.mo share/locale/nds/LC_MESSAGES/libkeduvocdocument.mo +share/locale/ne/LC_MESSAGES/libkeduvocdocument.mo share/locale/nl/LC_MESSAGES/libkeduvocdocument.mo share/locale/nn/LC_MESSAGES/libkeduvocdocument.mo +share/locale/oc/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/si/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/th/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 74c199b6a8e6..384b7241a89a 100644 --- a/misc/parley/distinfo +++ b/misc/parley/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539626 -SHA256 (KDE/release-service/22.08.3/parley-22.08.3.tar.xz) = 7b866d43d2013b0047dc19b86012c89484d06f8531fe0ec324b164b546963dc1 -SIZE (KDE/release-service/22.08.3/parley-22.08.3.tar.xz) = 8484000 +TIMESTAMP = 1670513281 +SHA256 (KDE/release-service/22.12.0/parley-22.12.0.tar.xz) = f99c370cf0e44e355090aace6c52bef4cd3ca96c88280e633ad7e2c5171ed851 +SIZE (KDE/release-service/22.12.0/parley-22.12.0.tar.xz) = 8592752 diff --git a/misc/parley/pkg-plist b/misc/parley/pkg-plist index c1588fc5a61d..74583aaf803e 100644 --- a/misc/parley/pkg-plist +++ b/misc/parley/pkg-plist @@ -1,160 +1,172 @@ 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/128x128/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/af/LC_MESSAGES/parley.mo share/locale/ar/LC_MESSAGES/parley.mo share/locale/be/LC_MESSAGES/parley.mo share/locale/bg/LC_MESSAGES/parley.mo +share/locale/bn/LC_MESSAGES/parley.mo +share/locale/br/LC_MESSAGES/parley.mo share/locale/bs/LC_MESSAGES/parley.mo share/locale/ca/LC_MESSAGES/parley.mo share/locale/ca@valencia/LC_MESSAGES/parley.mo share/locale/cs/LC_MESSAGES/parley.mo +share/locale/cy/LC_MESSAGES/parley.mo share/locale/da/LC_MESSAGES/parley.mo share/locale/de/LC_MESSAGES/parley.mo share/locale/el/LC_MESSAGES/parley.mo share/locale/en_GB/LC_MESSAGES/parley.mo share/locale/eo/LC_MESSAGES/parley.mo share/locale/es/LC_MESSAGES/parley.mo share/locale/et/LC_MESSAGES/parley.mo share/locale/eu/LC_MESSAGES/parley.mo share/locale/fa/LC_MESSAGES/parley.mo share/locale/fi/LC_MESSAGES/parley.mo share/locale/fr/LC_MESSAGES/parley.mo share/locale/ga/LC_MESSAGES/parley.mo share/locale/gl/LC_MESSAGES/parley.mo share/locale/he/LC_MESSAGES/parley.mo share/locale/hi/LC_MESSAGES/parley.mo +share/locale/hne/LC_MESSAGES/parley.mo share/locale/hr/LC_MESSAGES/parley.mo share/locale/hu/LC_MESSAGES/parley.mo share/locale/ia/LC_MESSAGES/parley.mo share/locale/is/LC_MESSAGES/parley.mo share/locale/it/LC_MESSAGES/parley.mo share/locale/ja/LC_MESSAGES/parley.mo +share/locale/ka/LC_MESSAGES/parley.mo share/locale/kk/LC_MESSAGES/parley.mo share/locale/km/LC_MESSAGES/parley.mo share/locale/lt/LC_MESSAGES/parley.mo share/locale/lv/LC_MESSAGES/parley.mo +share/locale/mk/LC_MESSAGES/parley.mo share/locale/ml/LC_MESSAGES/parley.mo share/locale/mr/LC_MESSAGES/parley.mo +share/locale/ms/LC_MESSAGES/parley.mo share/locale/nb/LC_MESSAGES/parley.mo share/locale/nds/LC_MESSAGES/parley.mo +share/locale/ne/LC_MESSAGES/parley.mo share/locale/nl/LC_MESSAGES/parley.mo share/locale/nn/LC_MESSAGES/parley.mo +share/locale/oc/LC_MESSAGES/parley.mo share/locale/pa/LC_MESSAGES/parley.mo share/locale/pl/LC_MESSAGES/parley.mo share/locale/pt/LC_MESSAGES/parley.mo share/locale/pt_BR/LC_MESSAGES/parley.mo share/locale/ro/LC_MESSAGES/parley.mo share/locale/ru/LC_MESSAGES/parley.mo share/locale/se/LC_MESSAGES/parley.mo +share/locale/si/LC_MESSAGES/parley.mo share/locale/sk/LC_MESSAGES/parley.mo share/locale/sl/LC_MESSAGES/parley.mo share/locale/sq/LC_MESSAGES/parley.mo share/locale/sv/LC_MESSAGES/parley.mo share/locale/ta/LC_MESSAGES/parley.mo share/locale/tg/LC_MESSAGES/parley.mo share/locale/tr/LC_MESSAGES/parley.mo share/locale/ug/LC_MESSAGES/parley.mo share/locale/uk/LC_MESSAGES/parley.mo +share/locale/xh/LC_MESSAGES/parley.mo share/locale/zh_CN/LC_MESSAGES/parley.mo share/locale/zh_TW/LC_MESSAGES/parley.mo share/metainfo/org.kde.parley.appdata.xml %%DATADIR%%/themes/bees_theme.desktop %%DATADIR%%/themes/bees_theme.svgz %%DATADIR%%/themes/bees_theme_preview.jpg %%DATADIR%%/themes/theme_reference.desktop %%DATADIR%%/themes/theme_reference.svgz %%DATADIR%%/themes/theme_reference_preview.jpg %%DATADIR%%/xslt/flashcards.xsl %%DATADIR%%/xslt/table.xsl diff --git a/multimedia/dragon/distinfo b/multimedia/dragon/distinfo index f855f2d1f4db..06fb72c0f952 100644 --- a/multimedia/dragon/distinfo +++ b/multimedia/dragon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539409 -SHA256 (KDE/release-service/22.08.3/dragon-22.08.3.tar.xz) = ea699d4c7c780063aa0598a2050f78f3ce93de86c3818f56541e59d20fa9e6ad -SIZE (KDE/release-service/22.08.3/dragon-22.08.3.tar.xz) = 1666824 +TIMESTAMP = 1670512996 +SHA256 (KDE/release-service/22.12.0/dragon-22.12.0.tar.xz) = 9d9f36c55ec9da9b57cce01a4f0f1a4a5c40a313adde5001c68aebcc61629d91 +SIZE (KDE/release-service/22.12.0/dragon-22.12.0.tar.xz) = 1675904 diff --git a/multimedia/dragon/pkg-plist b/multimedia/dragon/pkg-plist index 6147639cf2a3..d972a28826f8 100644 --- a/multimedia/dragon/pkg-plist +++ b/multimedia/dragon/pkg-plist @@ -1,89 +1,97 @@ 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/sr@latin/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/128x128/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/ka/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/ku/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/oc/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/sr@ijekavian/LC_MESSAGES/dragonplayer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/dragonplayer.mo +share/locale/sr@latin/LC_MESSAGES/dragonplayer.mo share/locale/sv/LC_MESSAGES/dragonplayer.mo +share/locale/th/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 96b510e4662b..b4d2cbea31d1 100644 --- a/multimedia/kamoso/distinfo +++ b/multimedia/kamoso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539410 -SHA256 (KDE/release-service/22.08.3/kamoso-22.08.3.tar.xz) = 9295a14c1aabeb9c3c392eee5b2e9af2eead43625e0acc52df7498505b0e20d0 -SIZE (KDE/release-service/22.08.3/kamoso-22.08.3.tar.xz) = 228004 +TIMESTAMP = 1670512998 +SHA256 (KDE/release-service/22.12.0/kamoso-22.12.0.tar.xz) = a191913316d2ce1bfd7f4b4f4740c45172e0127639bee3006e401646f68b2376 +SIZE (KDE/release-service/22.12.0/kamoso-22.12.0.tar.xz) = 229292 diff --git a/multimedia/kamoso/pkg-plist b/multimedia/kamoso/pkg-plist index 69a5d99b9009..2a4282793968 100644 --- a/multimedia/kamoso/pkg-plist +++ b/multimedia/kamoso/pkg-plist @@ -1,61 +1,63 @@ bin/kamoso lib/gstreamer-1.0/gstkamosoqt5videosink.so share/applications/org.kde.kamoso.desktop +share/icons/hicolor/128x128/apps/kamoso.png share/icons/hicolor/16x16/apps/kamoso.png share/icons/hicolor/22x22/apps/kamoso.png share/icons/hicolor/32x32/apps/kamoso.png share/icons/hicolor/48x48/apps/kamoso.png share/icons/hicolor/64x64/apps/kamoso.png -share/icons/hicolor/128x128/apps/kamoso.png share/icons/hicolor/scalable/actions/burst.svgz share/icons/hicolor/scalable/apps/kamoso.svgz share/knotifications5/kamoso.notifyrc share/locale/ar/LC_MESSAGES/kamoso.mo share/locale/bg/LC_MESSAGES/kamoso.mo share/locale/bs/LC_MESSAGES/kamoso.mo share/locale/ca/LC_MESSAGES/kamoso.mo share/locale/ca@valencia/LC_MESSAGES/kamoso.mo share/locale/cs/LC_MESSAGES/kamoso.mo share/locale/da/LC_MESSAGES/kamoso.mo share/locale/de/LC_MESSAGES/kamoso.mo share/locale/el/LC_MESSAGES/kamoso.mo share/locale/en_GB/LC_MESSAGES/kamoso.mo share/locale/eo/LC_MESSAGES/kamoso.mo share/locale/es/LC_MESSAGES/kamoso.mo share/locale/et/LC_MESSAGES/kamoso.mo share/locale/eu/LC_MESSAGES/kamoso.mo share/locale/fi/LC_MESSAGES/kamoso.mo share/locale/fr/LC_MESSAGES/kamoso.mo share/locale/ga/LC_MESSAGES/kamoso.mo share/locale/gl/LC_MESSAGES/kamoso.mo share/locale/hu/LC_MESSAGES/kamoso.mo share/locale/ia/LC_MESSAGES/kamoso.mo share/locale/id/LC_MESSAGES/kamoso.mo share/locale/is/LC_MESSAGES/kamoso.mo share/locale/it/LC_MESSAGES/kamoso.mo share/locale/ja/LC_MESSAGES/kamoso.mo +share/locale/ka/LC_MESSAGES/kamoso.mo share/locale/kk/LC_MESSAGES/kamoso.mo share/locale/ko/LC_MESSAGES/kamoso.mo share/locale/lt/LC_MESSAGES/kamoso.mo share/locale/lv/LC_MESSAGES/kamoso.mo +share/locale/mai/LC_MESSAGES/kamoso.mo share/locale/mr/LC_MESSAGES/kamoso.mo share/locale/nb/LC_MESSAGES/kamoso.mo share/locale/nds/LC_MESSAGES/kamoso.mo share/locale/nl/LC_MESSAGES/kamoso.mo share/locale/nn/LC_MESSAGES/kamoso.mo share/locale/pa/LC_MESSAGES/kamoso.mo share/locale/pl/LC_MESSAGES/kamoso.mo share/locale/pt/LC_MESSAGES/kamoso.mo share/locale/pt_BR/LC_MESSAGES/kamoso.mo share/locale/ro/LC_MESSAGES/kamoso.mo share/locale/ru/LC_MESSAGES/kamoso.mo share/locale/sk/LC_MESSAGES/kamoso.mo share/locale/sl/LC_MESSAGES/kamoso.mo share/locale/sv/LC_MESSAGES/kamoso.mo share/locale/tr/LC_MESSAGES/kamoso.mo share/locale/ug/LC_MESSAGES/kamoso.mo share/locale/uk/LC_MESSAGES/kamoso.mo share/locale/zh_CN/LC_MESSAGES/kamoso.mo share/locale/zh_TW/LC_MESSAGES/kamoso.mo share/metainfo/org.kde.kamoso.appdata.xml share/sounds/kamoso-shutter.wav diff --git a/multimedia/kdemultimedia-ffmpegthumbs/distinfo b/multimedia/kdemultimedia-ffmpegthumbs/distinfo index 30d73bea6e6b..6e1c3ebb27b6 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/distinfo +++ b/multimedia/kdemultimedia-ffmpegthumbs/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539413 -SHA256 (KDE/release-service/22.08.3/ffmpegthumbs-22.08.3.tar.xz) = a66eaf56d7e0b9945e9cdb9f24c627d3278a5cafc2d77523ea0bf3b840630113 -SIZE (KDE/release-service/22.08.3/ffmpegthumbs-22.08.3.tar.xz) = 30820 +TIMESTAMP = 1670513002 +SHA256 (KDE/release-service/22.12.0/ffmpegthumbs-22.12.0.tar.xz) = 9b5b9c071da2910881ad0b03385373068738ea0663d517535c4ca0a618120888 +SIZE (KDE/release-service/22.12.0/ffmpegthumbs-22.12.0.tar.xz) = 31384 diff --git a/multimedia/kdenlive/distinfo b/multimedia/kdenlive/distinfo index 36cf63dd8b7d..c987d4965684 100644 --- a/multimedia/kdenlive/distinfo +++ b/multimedia/kdenlive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539412 -SHA256 (KDE/release-service/22.08.3/kdenlive-22.08.3.tar.xz) = 9c5cc37d24d99d1da4e708ef960fd4df828d3c0abdd4b02adbf7c37aa40d0e29 -SIZE (KDE/release-service/22.08.3/kdenlive-22.08.3.tar.xz) = 12448608 +TIMESTAMP = 1670513000 +SHA256 (KDE/release-service/22.12.0/kdenlive-22.12.0.tar.xz) = 456ca61627eb6a0d6d6ea775dd6a7b1c5a5fbbacb79421c8f4e307d8a2136317 +SIZE (KDE/release-service/22.12.0/kdenlive-22.12.0.tar.xz) = 12523904 diff --git a/multimedia/kdenlive/pkg-plist b/multimedia/kdenlive/pkg-plist index d5aad980d7b0..7d3106bf69ac 100644 --- a/multimedia/kdenlive/pkg-plist +++ b/multimedia/kdenlive/pkg-plist @@ -1,517 +1,546 @@ bin/kdenlive bin/kdenlive_render +%%QT_PLUGINDIR%%/designer/kdenlivewidgets.so %%QT_PLUGINDIR%%/mltpreview.so man/man1/kdenlive.1.gz man/man1/kdenlive_render.1.gz share/applications/org.kde.kdenlive.desktop share/config.kcfg/kdenlivesettings.kcfg %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/BSD-3-Clause.txt +%%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/CC0-1.0.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-2.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/GPL-3.0-or-later.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LGPL-3.0-only.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-GPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/LICENSES/LicenseRef-KDE-Accepted-LGPL.txt %%PORTDOCS%%%%DOCSDIR%%/Kdenlive/README.md share/icons/hicolor/128x128/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/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/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/apps/kdenlive.png share/icons/hicolor/32x32/mimetypes/application-x-kdenlivetitle.png share/icons/hicolor/48x48/apps/kdenlive.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/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 %%DATADIR%%/effect-templates/secondary_color_correction.xml %%DATADIR%%/effect-templates/shut_off.xml %%DATADIR%%/effects/acompressor.xml %%DATADIR%%/effects/aecho.xml %%DATADIR%%/effects/agate.xml %%DATADIR%%/effects/audiobalance.xml %%DATADIR%%/effects/audiolevelgraph.xml %%DATADIR%%/effects/audiomap.xml %%DATADIR%%/effects/audiopan.xml %%DATADIR%%/effects/audiospectrum.xml %%DATADIR%%/effects/audiowave.xml %%DATADIR%%/effects/audiowaveform.xml %%DATADIR%%/effects/avfilter_acontrast.xml %%DATADIR%%/effects/avfilter_acrusher.xml %%DATADIR%%/effects/avfilter_alimiter.xml %%DATADIR%%/effects/avfilter_allpass.xml %%DATADIR%%/effects/avfilter_aphaser.xml %%DATADIR%%/effects/avfilter_apulsator.xml %%DATADIR%%/effects/avfilter_atadenoise.xml %%DATADIR%%/effects/avfilter_avgblur.xml %%DATADIR%%/effects/avfilter_bandpass.xml %%DATADIR%%/effects/avfilter_bandreject.xml %%DATADIR%%/effects/avfilter_bass.xml %%DATADIR%%/effects/avfilter_bilateral.xml %%DATADIR%%/effects/avfilter_boxblur.xml %%DATADIR%%/effects/avfilter_bs2b.xml %%DATADIR%%/effects/avfilter_bwdif.xml %%DATADIR%%/effects/avfilter_cas.xml %%DATADIR%%/effects/avfilter_chromahold.xml %%DATADIR%%/effects/avfilter_chromanr.xml %%DATADIR%%/effects/avfilter_chromashift.xml %%DATADIR%%/effects/avfilter_colorbalance.xml %%DATADIR%%/effects/avfilter_colorchannelmixer.xml %%DATADIR%%/effects/avfilter_colorcontrast.xml %%DATADIR%%/effects/avfilter_colorcorrect.xml %%DATADIR%%/effects/avfilter_colorhold.xml %%DATADIR%%/effects/avfilter_colorize.xml %%DATADIR%%/effects/avfilter_colorlevels.xml %%DATADIR%%/effects/avfilter_colormatrix.xml %%DATADIR%%/effects/avfilter_colorspace.xml %%DATADIR%%/effects/avfilter_colortemperature.xml %%DATADIR%%/effects/avfilter_compand.xml %%DATADIR%%/effects/avfilter_compensationdelay.xml %%DATADIR%%/effects/avfilter_crossfeed.xml %%DATADIR%%/effects/avfilter_crystalizer.xml %%DATADIR%%/effects/avfilter_datascope.xml %%DATADIR%%/effects/avfilter_dcshift.xml %%DATADIR%%/effects/avfilter_dctdnoiz.xml %%DATADIR%%/effects/avfilter_deband.xml %%DATADIR%%/effects/avfilter_deblock.xml %%DATADIR%%/effects/avfilter_dedot.xml %%DATADIR%%/effects/avfilter_deesser.xml %%DATADIR%%/effects/avfilter_deflate.xml %%DATADIR%%/effects/avfilter_delogo.xml %%DATADIR%%/effects/avfilter_derain.xml %%DATADIR%%/effects/avfilter_despill.xml %%DATADIR%%/effects/avfilter_dilation.xml %%DATADIR%%/effects/avfilter_doubleweave.xml %%DATADIR%%/effects/avfilter_drawbox.xml %%DATADIR%%/effects/avfilter_drawgrid.xml %%DATADIR%%/effects/avfilter_edgedetect.xml %%DATADIR%%/effects/avfilter_elbg.xml %%DATADIR%%/effects/avfilter_epx.xml %%DATADIR%%/effects/avfilter_eq.xml %%DATADIR%%/effects/avfilter_equalizer.xml %%DATADIR%%/effects/avfilter_erosion.xml %%DATADIR%%/effects/avfilter_exposure.xml %%DATADIR%%/effects/avfilter_extrastereo.xml %%DATADIR%%/effects/avfilter_fftdnoiz.xml %%DATADIR%%/effects/avfilter_fftfilt.xml %%DATADIR%%/effects/avfilter_field.xml %%DATADIR%%/effects/avfilter_fieldorder.xml %%DATADIR%%/effects/avfilter_fillborders.xml %%DATADIR%%/effects/avfilter_flanger.xml %%DATADIR%%/effects/avfilter_framestep.xml %%DATADIR%%/effects/avfilter_fspp.xml %%DATADIR%%/effects/avfilter_gblur.xml %%DATADIR%%/effects/avfilter_graphmonitor.xml %%DATADIR%%/effects/avfilter_haas.xml %%DATADIR%%/effects/avfilter_hflip.xml %%DATADIR%%/effects/avfilter_highpass.xml %%DATADIR%%/effects/avfilter_highshelf.xml %%DATADIR%%/effects/avfilter_histeq.xml %%DATADIR%%/effects/avfilter_histogram.xml %%DATADIR%%/effects/avfilter_hqdn3d.xml %%DATADIR%%/effects/avfilter_hqx.xml %%DATADIR%%/effects/avfilter_il.xml %%DATADIR%%/effects/avfilter_inflate.xml %%DATADIR%%/effects/avfilter_kerneldeint.xml %%DATADIR%%/effects/avfilter_kirsch.xml %%DATADIR%%/effects/avfilter_lagfun.xml %%DATADIR%%/effects/avfilter_lenscorrection.xml %%DATADIR%%/effects/avfilter_limiter.xml %%DATADIR%%/effects/avfilter_loudnorm.xml %%DATADIR%%/effects/avfilter_lowpass.xml %%DATADIR%%/effects/avfilter_lowshelf.xml %%DATADIR%%/effects/avfilter_lut3d.xml %%DATADIR%%/effects/avfilter_mcdeint.xml %%DATADIR%%/effects/avfilter_median.xml %%DATADIR%%/effects/avfilter_monochrome.xml %%DATADIR%%/effects/avfilter_negate.xml %%DATADIR%%/effects/avfilter_noise.xml %%DATADIR%%/effects/avfilter_normalize.xml %%DATADIR%%/effects/avfilter_phase.xml %%DATADIR%%/effects/avfilter_photosensitivity.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_scroll.xml %%DATADIR%%/effects/avfilter_selectivecolor.xml %%DATADIR%%/effects/avfilter_separatefields.xml %%DATADIR%%/effects/avfilter_setrange.xml %%DATADIR%%/effects/avfilter_shear.xml %%DATADIR%%/effects/avfilter_shuffleplanes.xml %%DATADIR%%/effects/avfilter_smartblur.xml %%DATADIR%%/effects/avfilter_sobel.xml %%DATADIR%%/effects/avfilter_sofalizer.xml %%DATADIR%%/effects/avfilter_sr.xml %%DATADIR%%/effects/avfilter_stereo3D.xml %%DATADIR%%/effects/avfilter_stereotools.xml %%DATADIR%%/effects/avfilter_stereowiden.xml %%DATADIR%%/effects/avfilter_tmix.xml %%DATADIR%%/effects/avfilter_transpose.xml %%DATADIR%%/effects/avfilter_unsharp.xml %%DATADIR%%/effects/avfilter_vaguedenoiser.xml %%DATADIR%%/effects/avfilter_vectorscope.xml %%DATADIR%%/effects/avfilter_vflip.xml %%DATADIR%%/effects/avfilter_vibrance.xml %%DATADIR%%/effects/avfilter_vibrato.xml %%DATADIR%%/effects/avfilter_w3fdif.xml %%DATADIR%%/effects/avfilter_waveform.xml %%DATADIR%%/effects/avfilter_weave.xml %%DATADIR%%/effects/avfilter_xbr.xml %%DATADIR%%/effects/avfilter_yadif.xml %%DATADIR%%/effects/avfilter_zoompan.xml %%DATADIR%%/effects/box_blur.xml %%DATADIR%%/effects/boxblur.xml %%DATADIR%%/effects/brightness.xml %%DATADIR%%/effects/channelcopy.xml %%DATADIR%%/effects/charcoal.xml %%DATADIR%%/effects/chroma.xml %%DATADIR%%/effects/chroma_hold.xml %%DATADIR%%/effects/copychannelstostereo.xml %%DATADIR%%/effects/crop.xml %%DATADIR%%/effects/dance.xml %%DATADIR%%/effects/dust.xml %%DATADIR%%/effects/dynamic_loudness.xml %%DATADIR%%/effects/dynamictext.xml %%DATADIR%%/effects/fade_from_black.xml %%DATADIR%%/effects/fade_to_black.xml %%DATADIR%%/effects/fadein.xml %%DATADIR%%/effects/fadeout.xml %%DATADIR%%/effects/freeze.xml %%DATADIR%%/effects/frei0r_B.xml %%DATADIR%%/effects/frei0r_G.xml %%DATADIR%%/effects/frei0r_R.xml %%DATADIR%%/effects/frei0r_alpha0ps.xml %%DATADIR%%/effects/frei0r_alphagrad.xml %%DATADIR%%/effects/frei0r_alphaspot.xml %%DATADIR%%/effects/frei0r_balanc0r.xml %%DATADIR%%/effects/frei0r_baltan.xml %%DATADIR%%/effects/frei0r_bezier_curves.xml %%DATADIR%%/effects/frei0r_bgsubtract0r.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_mask.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_rect.xml %%DATADIR%%/effects/frei0r_bigsh0t_eq_to_stereo.xml %%DATADIR%%/effects/frei0r_bigsh0t_hemi_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_rect_to_eq.xml %%DATADIR%%/effects/frei0r_bigsh0t_stabilize_360.xml %%DATADIR%%/effects/frei0r_bigsh0t_transform_360.xml %%DATADIR%%/effects/frei0r_brightness.xml %%DATADIR%%/effects/frei0r_c0rners.xml %%DATADIR%%/effects/frei0r_cairogradient.xml %%DATADIR%%/effects/frei0r_cairoimagegrid.xml %%DATADIR%%/effects/frei0r_cartoon.xml %%DATADIR%%/effects/frei0r_cluster.xml %%DATADIR%%/effects/frei0r_colgate.xml %%DATADIR%%/effects/frei0r_coloradj_rgb.xml %%DATADIR%%/effects/frei0r_colordistance.xml %%DATADIR%%/effects/frei0r_colorize.xml %%DATADIR%%/effects/frei0r_colortap.xml %%DATADIR%%/effects/frei0r_contrast0r.xml %%DATADIR%%/effects/frei0r_curves.xml %%DATADIR%%/effects/frei0r_d90stairsteppingfix.xml %%DATADIR%%/effects/frei0r_defish0r.xml %%DATADIR%%/effects/frei0r_delay0r.xml %%DATADIR%%/effects/frei0r_delaygrab.xml %%DATADIR%%/effects/frei0r_distort0r.xml %%DATADIR%%/effects/frei0r_dither.xml %%DATADIR%%/effects/frei0r_edgeglow.xml %%DATADIR%%/effects/frei0r_emboss.xml %%DATADIR%%/effects/frei0r_equaliz0r.xml %%DATADIR%%/effects/frei0r_facebl0r.xml %%DATADIR%%/effects/frei0r_facedetect.xml %%DATADIR%%/effects/frei0r_flippo.xml %%DATADIR%%/effects/frei0r_glitch0r.xml %%DATADIR%%/effects/frei0r_glow.xml %%DATADIR%%/effects/frei0r_hqdn3d.xml %%DATADIR%%/effects/frei0r_hueshift0r.xml %%DATADIR%%/effects/frei0r_iirblur.xml %%DATADIR%%/effects/frei0r_keyspillm0pup.xml %%DATADIR%%/effects/frei0r_lenscorrection.xml %%DATADIR%%/effects/frei0r_letterb0xed.xml %%DATADIR%%/effects/frei0r_levels.xml %%DATADIR%%/effects/frei0r_lightgraffiti.xml %%DATADIR%%/effects/frei0r_luminance.xml %%DATADIR%%/effects/frei0r_mask0mate.xml %%DATADIR%%/effects/frei0r_medians.xml %%DATADIR%%/effects/frei0r_nervous.xml %%DATADIR%%/effects/frei0r_nosync0r.xml %%DATADIR%%/effects/frei0r_pixeliz0r.xml %%DATADIR%%/effects/frei0r_pr0be.xml %%DATADIR%%/effects/frei0r_pr0file.xml %%DATADIR%%/effects/frei0r_primaries.xml %%DATADIR%%/effects/frei0r_rgbnoise.xml %%DATADIR%%/effects/frei0r_rgbparade.xml %%DATADIR%%/effects/frei0r_rgbsplit0r.xml %%DATADIR%%/effects/frei0r_saturat0r.xml %%DATADIR%%/effects/frei0r_scale0tilt.xml %%DATADIR%%/effects/frei0r_scanline0r.xml %%DATADIR%%/effects/frei0r_select0r.xml %%DATADIR%%/effects/frei0r_sharpness.xml %%DATADIR%%/effects/frei0r_sigmoidaltransfer.xml %%DATADIR%%/effects/frei0r_sobel.xml %%DATADIR%%/effects/frei0r_softglow.xml %%DATADIR%%/effects/frei0r_sopsat.xml %%DATADIR%%/effects/frei0r_squareblur.xml %%DATADIR%%/effects/frei0r_tehroxx0r.xml %%DATADIR%%/effects/frei0r_three_point_balance.xml %%DATADIR%%/effects/frei0r_threelay0r.xml %%DATADIR%%/effects/frei0r_threshold0r.xml %%DATADIR%%/effects/frei0r_timeout.xml %%DATADIR%%/effects/frei0r_tint0r.xml %%DATADIR%%/effects/frei0r_transparency.xml %%DATADIR%%/effects/frei0r_twolay0r.xml %%DATADIR%%/effects/frei0r_vectorscope.xml %%DATADIR%%/effects/frei0r_vertigo.xml %%DATADIR%%/effects/frei0r_vignette.xml %%DATADIR%%/effects/gain.xml %%DATADIR%%/effects/gamma.xml %%DATADIR%%/effects/gpstext.xml %%DATADIR%%/effects/grain.xml %%DATADIR%%/effects/greyscale.xml %%DATADIR%%/effects/invert.xml %%DATADIR%%/effects/ladspa_declipper.xml %%DATADIR%%/effects/ladspa_equalizer.xml %%DATADIR%%/effects/ladspa_equalizer_15.xml %%DATADIR%%/effects/ladspa_librnnoise.xml %%DATADIR%%/effects/ladspa_limiter.xml %%DATADIR%%/effects/ladspa_phaser.xml %%DATADIR%%/effects/ladspa_pitch.xml %%DATADIR%%/effects/ladspa_pitch_scale.xml %%DATADIR%%/effects/ladspa_rate_scale.xml %%DATADIR%%/effects/ladspa_reverb.xml %%DATADIR%%/effects/ladspa_room_reverb.xml %%DATADIR%%/effects/ladspa_vinyl.xml %%DATADIR%%/effects/lift_gamma_gain.xml %%DATADIR%%/effects/lightshow.xml %%DATADIR%%/effects/loudness.xml %%DATADIR%%/effects/luma.xml %%DATADIR%%/effects/lumaliftgaingamma.xml %%DATADIR%%/effects/mask_apply.xml %%DATADIR%%/effects/mask_start.xml %%DATADIR%%/effects/mask_start_frei0r_alphaspot.xml %%DATADIR%%/effects/mask_start_frei0r_select0r.xml %%DATADIR%%/effects/mask_start_rotoscoping.xml %%DATADIR%%/effects/mask_start_shape.xml %%DATADIR%%/effects/mirror.xml %%DATADIR%%/effects/mono.xml %%DATADIR%%/effects/movit_blur.xml %%DATADIR%%/effects/movit_deconvolution_sharpen.xml %%DATADIR%%/effects/movit_diffusion.xml %%DATADIR%%/effects/movit_flip.xml %%DATADIR%%/effects/movit_glow.xml %%DATADIR%%/effects/movit_lift_gamma_gain.xml %%DATADIR%%/effects/movit_mirror.xml %%DATADIR%%/effects/movit_opacity.xml %%DATADIR%%/effects/movit_rect.xml %%DATADIR%%/effects/movit_saturation.xml %%DATADIR%%/effects/movit_unsharp_mask.xml %%DATADIR%%/effects/movit_vignette.xml %%DATADIR%%/effects/movit_white_balance.xml %%DATADIR%%/effects/mute.xml %%DATADIR%%/effects/normalise.xml %%DATADIR%%/effects/obscure.xml %%DATADIR%%/effects/oldfilm.xml %%DATADIR%%/effects/pan_zoom.xml %%DATADIR%%/effects/pillar_echo.xml %%DATADIR%%/effects/qtblend.xml %%DATADIR%%/effects/qtcrop.xml %%DATADIR%%/effects/rboctaveshift.xml %%DATADIR%%/effects/rbpitchscale.xml -%%DATADIR%%/effects/region.xml %%DATADIR%%/effects/rotation.xml %%DATADIR%%/effects/rotation_keyframable.xml %%DATADIR%%/effects/rotoscoping.xml %%DATADIR%%/effects/scratchlines.xml %%DATADIR%%/effects/sepia.xml %%DATADIR%%/effects/shape.xml %%DATADIR%%/effects/sox_band.xml %%DATADIR%%/effects/sox_bass.xml %%DATADIR%%/effects/sox_echo.xml %%DATADIR%%/effects/sox_flanger.xml %%DATADIR%%/effects/sox_gain.xml %%DATADIR%%/effects/sox_phaser.xml %%DATADIR%%/effects/sox_stretch.xml %%DATADIR%%/effects/speed.xml %%DATADIR%%/effects/spot_remover.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%%/luts/BLUE_TINT.cube %%DATADIR%%/luts/CINEMATIC.cube %%DATADIR%%/luts/GREEN_TINT.cube %%DATADIR%%/luts/TEAL_ORANGE.cube %%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/checkpackages.py %%DATADIR%%/scripts/otiointerface.py %%DATADIR%%/scripts/speech.py %%DATADIR%%/scripts/speechtotext.py %%DATADIR%%/shortcuts/Premiere %%DATADIR%%/slideanimations.rc %%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_addition.xml +%%DATADIR%%/transitions/frei0r_addition_alpha.xml +%%DATADIR%%/transitions/frei0r_alphaatop.xml +%%DATADIR%%/transitions/frei0r_alphain.xml +%%DATADIR%%/transitions/frei0r_alphaout.xml +%%DATADIR%%/transitions/frei0r_alphaover.xml +%%DATADIR%%/transitions/frei0r_alphaxor.xml +%%DATADIR%%/transitions/frei0r_burn.xml %%DATADIR%%/transitions/frei0r_cairoaffineblend.xml %%DATADIR%%/transitions/frei0r_cairoblend.xml +%%DATADIR%%/transitions/frei0r_color_only.xml +%%DATADIR%%/transitions/frei0r_darken.xml +%%DATADIR%%/transitions/frei0r_difference.xml +%%DATADIR%%/transitions/frei0r_divide.xml +%%DATADIR%%/transitions/frei0r_dodge.xml +%%DATADIR%%/transitions/frei0r_grain_extract.xml +%%DATADIR%%/transitions/frei0r_grain_merge.xml +%%DATADIR%%/transitions/frei0r_hardlight.xml +%%DATADIR%%/transitions/frei0r_hue.xml +%%DATADIR%%/transitions/frei0r_lighten.xml +%%DATADIR%%/transitions/frei0r_multiply.xml +%%DATADIR%%/transitions/frei0r_overlay.xml +%%DATADIR%%/transitions/frei0r_saturation.xml +%%DATADIR%%/transitions/frei0r_screen.xml +%%DATADIR%%/transitions/frei0r_softlight.xml +%%DATADIR%%/transitions/frei0r_subtract.xml +%%DATADIR%%/transitions/frei0r_uvmap.xml +%%DATADIR%%/transitions/frei0r_value.xml %%DATADIR%%/transitions/luma.xml +%%DATADIR%%/transitions/matte.xml %%DATADIR%%/transitions/mix.xml %%DATADIR%%/transitions/qtblend.xml %%DATADIR%%/transitions/region.xml %%DATADIR%%/transitions/slide.xml +%%DATADIR%%/transitions/vqm.xml %%DATADIR%%/transitions/wipe.xml share/knotifications5/kdenlive.notifyrc share/knsrcfiles/kdenlive_effects.knsrc share/knsrcfiles/kdenlive_keyboardschemes.knsrc share/knsrcfiles/kdenlive_luts.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/ka/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 2717c97edaf0..0d889b430b5a 100644 --- a/net-im/kaccounts-integration/distinfo +++ b/net-im/kaccounts-integration/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539426 -SHA256 (KDE/release-service/22.08.3/kaccounts-integration-22.08.3.tar.xz) = 1b42be748877f28cfa983d5c32401203701bf4174be877fe528f79aed6220a12 -SIZE (KDE/release-service/22.08.3/kaccounts-integration-22.08.3.tar.xz) = 88940 +TIMESTAMP = 1670513019 +SHA256 (KDE/release-service/22.12.0/kaccounts-integration-22.12.0.tar.xz) = 8aa20b4ef1748f274fce19fb4c63284ddfca7e92fd8f76fc0b5ac198bc7d0c31 +SIZE (KDE/release-service/22.12.0/kaccounts-integration-22.12.0.tar.xz) = 87616 diff --git a/net-im/kaccounts-integration/pkg-plist b/net-im/kaccounts-integration/pkg-plist index a513be48b224..5a29d5e7c772 100644 --- a/net-im/kaccounts-integration/pkg-plist +++ b/net-im/kaccounts-integration/pkg-plist @@ -1,86 +1,86 @@ 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_PLUGINDIR%%/plasma/kcms/systemsettings/kcm_kaccounts.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/kpackage/kcms/kcm_kaccounts/metadata.desktop -share/kpackage/kcms/kcm_kaccounts/metadata.json -share/kservices5/kcm_kaccounts.desktop +share/kpackage/kcms/kcm_kaccounts/contents/ui/main.qml 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/bg/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/ka/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/sr@ijekavian/LC_MESSAGES/kaccounts-integration.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccounts-integration.mo +share/locale/sr@latin/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 93ce013429af..299f1d890b3c 100644 --- a/net-im/kaccounts-providers/distinfo +++ b/net-im/kaccounts-providers/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539420 -SHA256 (KDE/release-service/22.08.3/kaccounts-providers-22.08.3.tar.xz) = 9aa95f54646104db859f92f1d634c9e054adeb17f6f51c8bfe9ad1270c342d3b -SIZE (KDE/release-service/22.08.3/kaccounts-providers-22.08.3.tar.xz) = 64572 +TIMESTAMP = 1670513011 +SHA256 (KDE/release-service/22.12.0/kaccounts-providers-22.12.0.tar.xz) = cd9646d8fddd2f4c2b6f1a3367a78539614cae496daf384b83e9a9b191b47f2b +SIZE (KDE/release-service/22.12.0/kaccounts-providers-22.12.0.tar.xz) = 65456 diff --git a/net-im/kaccounts-providers/pkg-plist b/net-im/kaccounts-providers/pkg-plist index bb82349a455e..357830ce1d1f 100644 --- a/net-im/kaccounts-providers/pkg-plist +++ b/net-im/kaccounts-providers/pkg-plist @@ -1,67 +1,70 @@ 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/nextcloud_plugin_kaccounts.so %%QT_PLUGINDIR%%/kaccounts/ui/owncloud_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/bg/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/ka/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/pa/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/sr@ijekavian/LC_MESSAGES/kaccounts-providers.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kaccounts-providers.mo +share/locale/sr@latin/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 de5c0a70e3f1..08a9d8ab8406 100644 --- a/net-im/kopete/distinfo +++ b/net-im/kopete/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539422 -SHA256 (KDE/release-service/22.08.3/kopete-22.08.3.tar.xz) = 5a21377d8b19a31bed397a957c0658456f1cc7153d88a93bb7fbde0ff4fd6700 -SIZE (KDE/release-service/22.08.3/kopete-22.08.3.tar.xz) = 9668280 +TIMESTAMP = 1670513014 +SHA256 (KDE/release-service/22.12.0/kopete-22.12.0.tar.xz) = e0692aff98af45ec559b0681a0ab323ce9314d60b6066f2d87269aa6c1ffbd79 +SIZE (KDE/release-service/22.12.0/kopete-22.12.0.tar.xz) = 10274728 diff --git a/net-im/kopete/pkg-plist b/net-im/kopete/pkg-plist index d94fb0ff8ec6..0d14717189c1 100644 --- a/net-im/kopete/pkg-plist +++ b/net-im/kopete/pkg-plist @@ -1,731 +1,766 @@ bin/kopete bin/winpopup-install bin/winpopup-send -etc/xdg/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/128x128/apps/kopete-offline.png -share/icons/hicolor/128x128/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/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/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-pluginloader2.sh -share/kconf_update/kopete-pluginloader2.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_xstatus2.png -%%DATADIR%%/icons/hicolor/16x16/actions/icq_xstatus3.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/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%%/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%%/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/Dark2-Noback.css -%%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark2.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark-Noback.css %%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Dark.css -%%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2-Noback.css -%%DATADIR%%/styles/Hacker/Contents/Resources/Variants/Light2.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/images/background2.png +%%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/bn/LC_MESSAGES/kio_jabberdisco.mo +share/locale/br/LC_MESSAGES/kio_jabberdisco.mo +share/locale/br/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/cy/LC_MESSAGES/kio_jabberdisco.mo +share/locale/cy/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/hne/LC_MESSAGES/kio_jabberdisco.mo +share/locale/hne/LC_MESSAGES/kopete.mo share/locale/hr/LC_MESSAGES/kio_jabberdisco.mo share/locale/hr/LC_MESSAGES/kopete.mo +share/locale/hsb/LC_MESSAGES/kio_jabberdisco.mo +share/locale/hsb/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/ka/LC_MESSAGES/kio_jabberdisco.mo +share/locale/ka/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/ku/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/mai/LC_MESSAGES/kopete.mo +share/locale/mk/LC_MESSAGES/kio_jabberdisco.mo +share/locale/mk/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/ms/LC_MESSAGES/kio_jabberdisco.mo +share/locale/ms/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/ne/LC_MESSAGES/kio_jabberdisco.mo +share/locale/ne/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/oc/LC_MESSAGES/kio_jabberdisco.mo +share/locale/oc/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/si/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/sr@ijekavian/LC_MESSAGES/kio_jabberdisco.mo +share/locale/sr@ijekavian/LC_MESSAGES/kopete.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_jabberdisco.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kopete.mo +share/locale/sr@latin/LC_MESSAGES/kio_jabberdisco.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kio_jabberdisco.mo +share/locale/th/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/uz/LC_MESSAGES/kopete.mo +share/locale/uz@cyrillic/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/xh/LC_MESSAGES/kopete.mo share/locale/zh_CN/LC_MESSAGES/kio_jabberdisco.mo share/locale/zh_CN/LC_MESSAGES/kopete.mo +share/locale/zh_HK/LC_MESSAGES/kio_jabberdisco.mo +share/locale/zh_HK/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/qlogging-categories5/kopete.categories 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 78eddfc36b87..02edaa04fbbd 100644 --- a/net-im/ktp-accounts-kcm/distinfo +++ b/net-im/ktp-accounts-kcm/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539415 -SHA256 (KDE/release-service/22.08.3/ktp-accounts-kcm-22.08.3.tar.xz) = 9201155682b4a6fcf9316a4765f94873d04121c2eeffc5ae301de51c8363f99e -SIZE (KDE/release-service/22.08.3/ktp-accounts-kcm-22.08.3.tar.xz) = 267048 +TIMESTAMP = 1670513005 +SHA256 (KDE/release-service/22.12.0/ktp-accounts-kcm-22.12.0.tar.xz) = 848a7c77d9a72b3ee37d80e50953b97177f363c8c19dcd0e9f5165e3d9f524c7 +SIZE (KDE/release-service/22.12.0/ktp-accounts-kcm-22.12.0.tar.xz) = 275692 diff --git a/net-im/ktp-accounts-kcm/pkg-plist b/net-im/ktp-accounts-kcm/pkg-plist index bcec14254570..09f97701a697 100644 --- a/net-im/ktp-accounts-kcm/pkg-plist +++ b/net-im/ktp-accounts-kcm/pkg-plist @@ -1,527 +1,572 @@ -lib/libktpaccountskcminternal.so.9 lib/libktpaccountskcminternal.so.%%KDE_APPLICATIONS_VERSION%% +lib/libktpaccountskcminternal.so.9 %%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 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/ka/LC_MESSAGES/kcm_ktp_accounts.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo +share/locale/ka/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo +share/locale/ka/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/mai/LC_MESSAGES/kcm_ktp_accounts.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/sr@ijekavian/LC_MESSAGES/kcm_ktp_accounts.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_ktp_accounts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmtelepathyaccounts_plugin_sunshine.mo +share/locale/sr@latin/LC_MESSAGES/kcm_ktp_accounts.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_butterfly.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_gabble.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_haze.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_idle.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_morse.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_pintxo.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_rakia.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_salut.mo +share/locale/sr@latin/LC_MESSAGES/kcmtelepathyaccounts_plugin_sipe.mo +share/locale/sr@latin/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 145786b01571..d86f02c91c3a 100644 --- a/net-im/ktp-approver/distinfo +++ b/net-im/ktp-approver/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539424 -SHA256 (KDE/release-service/22.08.3/ktp-approver-22.08.3.tar.xz) = 8f8e0c91dfc7d022791893e9781d8509589296ebdcb58ec97b5ed7d52ac74aac -SIZE (KDE/release-service/22.08.3/ktp-approver-22.08.3.tar.xz) = 38468 +TIMESTAMP = 1670513016 +SHA256 (KDE/release-service/22.12.0/ktp-approver-22.12.0.tar.xz) = a9346c4ec243d753f4c742fd2c6a51e3886458a271ef32b960f793c0fd50a7eb +SIZE (KDE/release-service/22.12.0/ktp-approver-22.12.0.tar.xz) = 39212 diff --git a/net-im/ktp-approver/pkg-plist b/net-im/ktp-approver/pkg-plist index 7d07ce81baf0..d7f0eb4edc20 100644 --- a/net-im/ktp-approver/pkg-plist +++ b/net-im/ktp-approver/pkg-plist @@ -1,50 +1,54 @@ etc/xdg/ktp_approverrc %%QT_PLUGINDIR%%/kded_ktp_approver.so share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.Approver.service share/kservices5/kded/ktp_approver.desktop share/kservicetypes5/ktp-approver.desktop share/locale/ar/LC_MESSAGES/kded_ktp_approver.mo share/locale/bs/LC_MESSAGES/kded_ktp_approver.mo share/locale/ca/LC_MESSAGES/kded_ktp_approver.mo share/locale/ca@valencia/LC_MESSAGES/kded_ktp_approver.mo share/locale/cs/LC_MESSAGES/kded_ktp_approver.mo share/locale/da/LC_MESSAGES/kded_ktp_approver.mo share/locale/de/LC_MESSAGES/kded_ktp_approver.mo share/locale/el/LC_MESSAGES/kded_ktp_approver.mo share/locale/en_GB/LC_MESSAGES/kded_ktp_approver.mo share/locale/es/LC_MESSAGES/kded_ktp_approver.mo share/locale/et/LC_MESSAGES/kded_ktp_approver.mo share/locale/eu/LC_MESSAGES/kded_ktp_approver.mo share/locale/fi/LC_MESSAGES/kded_ktp_approver.mo share/locale/fr/LC_MESSAGES/kded_ktp_approver.mo share/locale/ga/LC_MESSAGES/kded_ktp_approver.mo share/locale/gl/LC_MESSAGES/kded_ktp_approver.mo share/locale/hi/LC_MESSAGES/kded_ktp_approver.mo share/locale/hu/LC_MESSAGES/kded_ktp_approver.mo share/locale/ia/LC_MESSAGES/kded_ktp_approver.mo share/locale/it/LC_MESSAGES/kded_ktp_approver.mo share/locale/ja/LC_MESSAGES/kded_ktp_approver.mo +share/locale/ka/LC_MESSAGES/kded_ktp_approver.mo share/locale/kk/LC_MESSAGES/kded_ktp_approver.mo share/locale/km/LC_MESSAGES/kded_ktp_approver.mo share/locale/ko/LC_MESSAGES/kded_ktp_approver.mo share/locale/lt/LC_MESSAGES/kded_ktp_approver.mo share/locale/mr/LC_MESSAGES/kded_ktp_approver.mo share/locale/nb/LC_MESSAGES/kded_ktp_approver.mo share/locale/nds/LC_MESSAGES/kded_ktp_approver.mo share/locale/nl/LC_MESSAGES/kded_ktp_approver.mo share/locale/nn/LC_MESSAGES/kded_ktp_approver.mo share/locale/pa/LC_MESSAGES/kded_ktp_approver.mo share/locale/pl/LC_MESSAGES/kded_ktp_approver.mo share/locale/pt/LC_MESSAGES/kded_ktp_approver.mo share/locale/pt_BR/LC_MESSAGES/kded_ktp_approver.mo share/locale/ro/LC_MESSAGES/kded_ktp_approver.mo share/locale/ru/LC_MESSAGES/kded_ktp_approver.mo share/locale/sk/LC_MESSAGES/kded_ktp_approver.mo share/locale/sl/LC_MESSAGES/kded_ktp_approver.mo share/locale/sr/LC_MESSAGES/kded_ktp_approver.mo +share/locale/sr@ijekavian/LC_MESSAGES/kded_ktp_approver.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kded_ktp_approver.mo +share/locale/sr@latin/LC_MESSAGES/kded_ktp_approver.mo share/locale/sv/LC_MESSAGES/kded_ktp_approver.mo share/locale/tr/LC_MESSAGES/kded_ktp_approver.mo share/locale/ug/LC_MESSAGES/kded_ktp_approver.mo share/locale/uk/LC_MESSAGES/kded_ktp_approver.mo share/locale/zh_CN/LC_MESSAGES/kded_ktp_approver.mo share/locale/zh_TW/LC_MESSAGES/kded_ktp_approver.mo diff --git a/net-im/ktp-auth-handler/distinfo b/net-im/ktp-auth-handler/distinfo index 4a054679d630..ceb736f9fb0b 100644 --- a/net-im/ktp-auth-handler/distinfo +++ b/net-im/ktp-auth-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539430 -SHA256 (KDE/release-service/22.08.3/ktp-auth-handler-22.08.3.tar.xz) = 83430cc9202f8716632634e085e07eb46df152a9fe40e3fc0f3e38b441b50a20 -SIZE (KDE/release-service/22.08.3/ktp-auth-handler-22.08.3.tar.xz) = 48080 +TIMESTAMP = 1670513025 +SHA256 (KDE/release-service/22.12.0/ktp-auth-handler-22.12.0.tar.xz) = 8697df71b84180bbe0b8bb391b66f119e7da09666b365ba9889cbd04e2beb21c +SIZE (KDE/release-service/22.12.0/ktp-auth-handler-22.12.0.tar.xz) = 49064 diff --git a/net-im/ktp-auth-handler/pkg-plist b/net-im/ktp-auth-handler/pkg-plist index 9d99944dd864..4179e88e2b60 100644 --- a/net-im/ktp-auth-handler/pkg-plist +++ b/net-im/ktp-auth-handler/pkg-plist @@ -1,52 +1,56 @@ 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/hi/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/ka/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/sr@ijekavian/LC_MESSAGES/ktp-auth-handler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-auth-handler.mo +share/locale/sr@latin/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 0602900166d5..6fafa4e39826 100644 --- a/net-im/ktp-call-ui/distinfo +++ b/net-im/ktp-call-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539427 -SHA256 (KDE/release-service/22.08.3/ktp-call-ui-22.08.3.tar.xz) = bbd22223c56cbcd05ebca026e68c6f54d1395e956b5af7c52e90a7653e3cb6e6 -SIZE (KDE/release-service/22.08.3/ktp-call-ui-22.08.3.tar.xz) = 98516 +TIMESTAMP = 1670513020 +SHA256 (KDE/release-service/22.12.0/ktp-call-ui-22.12.0.tar.xz) = 93651b0f353453a0645579beea34e2407b09962dcf7caefdac92f1bc0134ef8a +SIZE (KDE/release-service/22.12.0/ktp-call-ui-22.12.0.tar.xz) = 103516 diff --git a/net-im/ktp-call-ui/pkg-plist b/net-im/ktp-call-ui/pkg-plist index cd7b5da0f440..83aca14f7b6a 100644 --- a/net-im/ktp-call-ui/pkg-plist +++ b/net-im/ktp-call-ui/pkg-plist @@ -1,60 +1,67 @@ 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/eu/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/is/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/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/ktp-call-ui.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-call-ui.mo +share/locale/sr@latin/LC_MESSAGES/ktp-call-ui.mo share/locale/sv/LC_MESSAGES/ktp-call-ui.mo +share/locale/th/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 fc64f8aef6f7..3d11c8aa40ab 100644 --- a/net-im/ktp-common-internals/distinfo +++ b/net-im/ktp-common-internals/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539421 -SHA256 (KDE/release-service/22.08.3/ktp-common-internals-22.08.3.tar.xz) = ce790b702d82db59260a84e18b162d02fc29ef78a19753e4456a3946dbf65dbc -SIZE (KDE/release-service/22.08.3/ktp-common-internals-22.08.3.tar.xz) = 451676 +TIMESTAMP = 1670513012 +SHA256 (KDE/release-service/22.12.0/ktp-common-internals-22.12.0.tar.xz) = 0223e0e6b08cbcf837699e4c2d352216dafcae4e0253e22b49d5da2948dc8631 +SIZE (KDE/release-service/22.12.0/ktp-common-internals-22.12.0.tar.xz) = 456064 diff --git a/net-im/ktp-common-internals/pkg-plist b/net-im/ktp-common-internals/pkg-plist index 6bec3fdbd268..7fbcfb0540c8 100644 --- a/net-im/ktp-common-internals/pkg-plist +++ b/net-im/ktp-common-internals/pkg-plist @@ -1,236 +1,244 @@ bin/ktp-debugger include/KTp/Logger/abstract-logger-plugin.h include/KTp/Logger/ktplogger_export.h include/KTp/Logger/log-entity.h include/KTp/Logger/log-manager.h include/KTp/Logger/log-message.h include/KTp/Logger/log-search-hit.h include/KTp/Logger/pending-logger-dates.h include/KTp/Logger/pending-logger-entities.h include/KTp/Logger/pending-logger-logs.h include/KTp/Logger/pending-logger-operation.h include/KTp/Logger/pending-logger-search.h include/KTp/Logger/scrollback-manager.h include/KTp/Models/abstract-grouping-proxy-model.h include/KTp/Models/accounts-list-model.h include/KTp/Models/accounts-tree-proxy-model.h include/KTp/Models/contacts-filter-model.h include/KTp/Models/contacts-list-model.h include/KTp/Models/contacts-model.h include/KTp/Models/groups-tree-proxy-model.h include/KTp/Models/ktpmodels_export.h include/KTp/Models/presence-model.h include/KTp/Models/rooms-model.h include/KTp/Models/text-channel-watcher-proxy-model.h include/KTp/OTR/channel-adapter.h include/KTp/OTR/channel-proxy-interface.h include/KTp/OTR/constants.h include/KTp/OTR/ktpotr_export.h include/KTp/OTR/proxy-service-interface.h include/KTp/OTR/types.h include/KTp/OTR/utils.h include/KTp/Widgets/accounts-combo-box.h include/KTp/Widgets/add-contact-dialog.h include/KTp/Widgets/contact-grid-dialog.h include/KTp/Widgets/contact-grid-widget.h include/KTp/Widgets/contact-info-dialog.h include/KTp/Widgets/contact-view-widget.h include/KTp/Widgets/join-chat-room-dialog.h include/KTp/Widgets/notification-config-dialog.h include/KTp/Widgets/settings-kcm-dialog.h include/KTp/Widgets/start-chat-dialog.h include/KTp/abstract-message-filter.h include/KTp/actions.h include/KTp/circular-countdown.h include/KTp/contact-factory.h include/KTp/contact.h include/KTp/core.h include/KTp/debug.h include/KTp/error-dictionary.h include/KTp/global-contact-manager.h include/KTp/global-presence.h include/KTp/ktpcommoninternals_export.h include/KTp/logs-importer.h include/KTp/message-context.h include/KTp/message-filter-config-manager.h include/KTp/message-processor.h include/KTp/message.h include/KTp/outgoing-message.h include/KTp/pending-wallet.h include/KTp/persistent-contact.h include/KTp/presence.h include/KTp/service-availability-checker.h include/KTp/telepathy-handler-application.h include/KTp/text-parser.h include/KTp/types.h include/KTp/wallet-interface.h include/KTp/wallet-utils.h lib/cmake/KTp/KTpConfig.cmake lib/cmake/KTp/KTpConfigVersion.cmake lib/cmake/KTp/KTpTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KTp/KTpTargets.cmake lib/libKTpCommonInternals.so -lib/libKTpCommonInternals.so.9 lib/libKTpCommonInternals.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKTpCommonInternals.so.9 lib/libKTpLogger.so -lib/libKTpLogger.so.9 lib/libKTpLogger.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKTpLogger.so.9 lib/libKTpModels.so -lib/libKTpModels.so.9 lib/libKTpModels.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKTpModels.so.9 lib/libKTpOTR.so -lib/libKTpOTR.so.9 lib/libKTpOTR.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKTpOTR.so.9 lib/libKTpWidgets.so -lib/libKTpWidgets.so.9 lib/libKTpWidgets.so.%%KDE_APPLICATIONS_VERSION%% +lib/libKTpWidgets.so.9 lib/libexec/ktp-proxy %%QT_PLUGINDIR%%/kaccounts/daemonplugins/kaccounts_ktp_plugin.so %%QT_PLUGINDIR%%/kpeople/actions/ktp_kpeople_plugin.so %%QT_PLUGINDIR%%/kpeople/datasource/im_persons_data_source_plugin.so %%QT_PLUGINDIR%%/kpeople/widgets/imdetailswidgetplugin.so %%QT_PLUGINDIR%%/kpeople/widgets/kpeople_chat_plugin.so %%QT_PLUGINDIR%%/ktploggerplugin_tplogger.so %%QT_QMLDIR%%/org/kde/telepathy/libktpqmlplugin.so %%QT_QMLDIR%%/org/kde/telepathy/qmldir share/config.kcfg/ktp-proxy-config.kcfg share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.Proxy.service +share/icons/hicolor/128x128/apps/telepathy-kde.png share/icons/hicolor/16x16/actions/im-groupwise.png share/icons/hicolor/16x16/actions/im-irc.png share/icons/hicolor/16x16/actions/im-local-xmpp.png share/icons/hicolor/16x16/apps/telepathy-kde.png share/icons/hicolor/22x22/actions/im-aim.png share/icons/hicolor/22x22/actions/im-facebook.png share/icons/hicolor/22x22/actions/im-gadugadu.png share/icons/hicolor/22x22/actions/im-google-talk.png share/icons/hicolor/22x22/actions/im-groupwise.png share/icons/hicolor/22x22/actions/im-icq.png share/icons/hicolor/22x22/actions/im-jabber.png share/icons/hicolor/22x22/actions/im-local-xmpp.png share/icons/hicolor/22x22/actions/im-msn.png share/icons/hicolor/22x22/actions/im-qq.png share/icons/hicolor/22x22/actions/im-skype.png share/icons/hicolor/22x22/actions/im-yahoo.png share/icons/hicolor/22x22/actions/show-offline.png share/icons/hicolor/22x22/actions/sort-name.png share/icons/hicolor/22x22/actions/sort-presence.png share/icons/hicolor/22x22/apps/telepathy-kde.png share/icons/hicolor/32x32/actions/im-aim.png share/icons/hicolor/32x32/actions/im-facebook.png share/icons/hicolor/32x32/actions/im-gadugadu.png share/icons/hicolor/32x32/actions/im-google-talk.png share/icons/hicolor/32x32/actions/im-groupwise.png share/icons/hicolor/32x32/actions/im-icq.png share/icons/hicolor/32x32/actions/im-irc.png share/icons/hicolor/32x32/actions/im-jabber.png share/icons/hicolor/32x32/actions/im-local-xmpp.png share/icons/hicolor/32x32/actions/im-msn.png share/icons/hicolor/32x32/actions/im-qq.png share/icons/hicolor/32x32/actions/im-skype.png share/icons/hicolor/32x32/actions/im-yahoo.png share/icons/hicolor/32x32/apps/telepathy-kde.png share/icons/hicolor/48x48/actions/im-aim.png share/icons/hicolor/48x48/actions/im-facebook.png share/icons/hicolor/48x48/actions/im-gadugadu.png share/icons/hicolor/48x48/actions/im-google-talk.png share/icons/hicolor/48x48/actions/im-groupwise.png share/icons/hicolor/48x48/actions/im-icq.png share/icons/hicolor/48x48/actions/im-jabber.png share/icons/hicolor/48x48/actions/im-local-xmpp.png share/icons/hicolor/48x48/actions/im-msn.png share/icons/hicolor/48x48/actions/im-qq.png share/icons/hicolor/48x48/actions/im-skype.png share/icons/hicolor/48x48/actions/im-yahoo.png share/icons/hicolor/48x48/apps/telepathy-kde.png share/icons/hicolor/64x64/apps/telepathy-kde.png -share/icons/hicolor/128x128/apps/telepathy-kde.png share/icons/hicolor/scalable/apps/telepathy-kde.svgz share/katepart5/syntax/ktpdebugoutput.xml share/knotifications5/ktelepathy.notifyrc share/kservices5/ktploggerplugin_tplogger.desktop share/kservicetypes5/ktp_logger_plugin.desktop share/locale/ar/LC_MESSAGES/ktp-debugger.mo share/locale/bs/LC_MESSAGES/ktp-common-internals.mo share/locale/bs/LC_MESSAGES/ktp-debugger.mo share/locale/ca/LC_MESSAGES/ktp-common-internals.mo share/locale/ca/LC_MESSAGES/ktp-debugger.mo share/locale/ca@valencia/LC_MESSAGES/ktp-common-internals.mo share/locale/ca@valencia/LC_MESSAGES/ktp-debugger.mo share/locale/cs/LC_MESSAGES/ktp-common-internals.mo share/locale/cs/LC_MESSAGES/ktp-debugger.mo share/locale/da/LC_MESSAGES/ktp-common-internals.mo share/locale/da/LC_MESSAGES/ktp-debugger.mo share/locale/de/LC_MESSAGES/ktp-common-internals.mo share/locale/de/LC_MESSAGES/ktp-debugger.mo share/locale/el/LC_MESSAGES/ktp-common-internals.mo share/locale/el/LC_MESSAGES/ktp-debugger.mo share/locale/en_GB/LC_MESSAGES/ktp-common-internals.mo share/locale/en_GB/LC_MESSAGES/ktp-debugger.mo share/locale/es/LC_MESSAGES/ktp-common-internals.mo share/locale/es/LC_MESSAGES/ktp-debugger.mo share/locale/et/LC_MESSAGES/ktp-common-internals.mo share/locale/et/LC_MESSAGES/ktp-debugger.mo share/locale/eu/LC_MESSAGES/ktp-common-internals.mo share/locale/eu/LC_MESSAGES/ktp-debugger.mo share/locale/fi/LC_MESSAGES/ktp-common-internals.mo share/locale/fi/LC_MESSAGES/ktp-debugger.mo share/locale/fr/LC_MESSAGES/ktp-common-internals.mo share/locale/fr/LC_MESSAGES/ktp-debugger.mo share/locale/ga/LC_MESSAGES/ktp-common-internals.mo share/locale/ga/LC_MESSAGES/ktp-debugger.mo share/locale/gl/LC_MESSAGES/ktp-common-internals.mo share/locale/gl/LC_MESSAGES/ktp-debugger.mo share/locale/hu/LC_MESSAGES/ktp-common-internals.mo share/locale/hu/LC_MESSAGES/ktp-debugger.mo share/locale/ia/LC_MESSAGES/ktp-common-internals.mo share/locale/ia/LC_MESSAGES/ktp-debugger.mo share/locale/it/LC_MESSAGES/ktp-common-internals.mo share/locale/it/LC_MESSAGES/ktp-debugger.mo share/locale/ja/LC_MESSAGES/ktp-common-internals.mo share/locale/ja/LC_MESSAGES/ktp-debugger.mo +share/locale/ka/LC_MESSAGES/ktp-common-internals.mo +share/locale/ka/LC_MESSAGES/ktp-debugger.mo share/locale/kk/LC_MESSAGES/ktp-common-internals.mo share/locale/kk/LC_MESSAGES/ktp-debugger.mo share/locale/ko/LC_MESSAGES/ktp-common-internals.mo share/locale/ko/LC_MESSAGES/ktp-debugger.mo share/locale/lt/LC_MESSAGES/ktp-common-internals.mo share/locale/lt/LC_MESSAGES/ktp-debugger.mo share/locale/mr/LC_MESSAGES/ktp-common-internals.mo share/locale/mr/LC_MESSAGES/ktp-debugger.mo share/locale/nb/LC_MESSAGES/ktp-common-internals.mo share/locale/nb/LC_MESSAGES/ktp-debugger.mo share/locale/nds/LC_MESSAGES/ktp-common-internals.mo share/locale/nds/LC_MESSAGES/ktp-debugger.mo share/locale/nl/LC_MESSAGES/ktp-common-internals.mo share/locale/nl/LC_MESSAGES/ktp-debugger.mo share/locale/nn/LC_MESSAGES/ktp-common-internals.mo share/locale/nn/LC_MESSAGES/ktp-debugger.mo share/locale/pa/LC_MESSAGES/ktp-common-internals.mo share/locale/pl/LC_MESSAGES/ktp-common-internals.mo share/locale/pl/LC_MESSAGES/ktp-debugger.mo share/locale/pt/LC_MESSAGES/ktp-common-internals.mo share/locale/pt/LC_MESSAGES/ktp-debugger.mo share/locale/pt_BR/LC_MESSAGES/ktp-common-internals.mo share/locale/pt_BR/LC_MESSAGES/ktp-debugger.mo share/locale/ro/LC_MESSAGES/ktp-common-internals.mo share/locale/ro/LC_MESSAGES/ktp-debugger.mo share/locale/ru/LC_MESSAGES/ktp-common-internals.mo share/locale/ru/LC_MESSAGES/ktp-debugger.mo share/locale/sk/LC_MESSAGES/ktp-common-internals.mo share/locale/sk/LC_MESSAGES/ktp-debugger.mo share/locale/sl/LC_MESSAGES/ktp-common-internals.mo share/locale/sl/LC_MESSAGES/ktp-debugger.mo share/locale/sr/LC_MESSAGES/ktp-common-internals.mo share/locale/sr/LC_MESSAGES/ktp-debugger.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-common-internals.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-debugger.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-common-internals.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-debugger.mo +share/locale/sr@latin/LC_MESSAGES/ktp-common-internals.mo +share/locale/sr@latin/LC_MESSAGES/ktp-debugger.mo share/locale/sv/LC_MESSAGES/ktp-common-internals.mo share/locale/sv/LC_MESSAGES/ktp-debugger.mo share/locale/tr/LC_MESSAGES/ktp-common-internals.mo share/locale/tr/LC_MESSAGES/ktp-debugger.mo share/locale/ug/LC_MESSAGES/ktp-common-internals.mo share/locale/ug/LC_MESSAGES/ktp-debugger.mo share/locale/uk/LC_MESSAGES/ktp-common-internals.mo share/locale/uk/LC_MESSAGES/ktp-debugger.mo share/locale/zh_CN/LC_MESSAGES/ktp-common-internals.mo share/locale/zh_CN/LC_MESSAGES/ktp-debugger.mo share/locale/zh_TW/LC_MESSAGES/ktp-common-internals.mo share/locale/zh_TW/LC_MESSAGES/ktp-debugger.mo share/telepathy/clients/KTp.Proxy.client diff --git a/net-im/ktp-contact-list/distinfo b/net-im/ktp-contact-list/distinfo index 4d23c0a21f14..4076681b65fb 100644 --- a/net-im/ktp-contact-list/distinfo +++ b/net-im/ktp-contact-list/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539428 -SHA256 (KDE/release-service/22.08.3/ktp-contact-list-22.08.3.tar.xz) = 9b889f1a0d945910630197232c69de41d79b615ba4185476e1718a021e34a311 -SIZE (KDE/release-service/22.08.3/ktp-contact-list-22.08.3.tar.xz) = 155828 +TIMESTAMP = 1670513022 +SHA256 (KDE/release-service/22.12.0/ktp-contact-list-22.12.0.tar.xz) = a6b730cb575f5dae83204c9627a6c83071dae88029f0f9a0f68aac760a65dbe2 +SIZE (KDE/release-service/22.12.0/ktp-contact-list-22.12.0.tar.xz) = 159240 diff --git a/net-im/ktp-contact-list/pkg-plist b/net-im/ktp-contact-list/pkg-plist index aaed19cf0765..294d1b614be9 100644 --- a/net-im/ktp-contact-list/pkg-plist +++ b/net-im/ktp-contact-list/pkg-plist @@ -1,48 +1,52 @@ 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/ka/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/sr@ijekavian/LC_MESSAGES/ktp-contactlist.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-contactlist.mo +share/locale/sr@latin/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 fd664ff6ab25..668d58f142db 100644 --- a/net-im/ktp-contact-runner/distinfo +++ b/net-im/ktp-contact-runner/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539414 -SHA256 (KDE/release-service/22.08.3/ktp-contact-runner-22.08.3.tar.xz) = da09537997e0fef603beded5edc9faabffb3cf200986e80e3d1df5191c32b10f -SIZE (KDE/release-service/22.08.3/ktp-contact-runner-22.08.3.tar.xz) = 44264 +TIMESTAMP = 1670513003 +SHA256 (KDE/release-service/22.12.0/ktp-contact-runner-22.12.0.tar.xz) = fc0731c709e298dddce8d2b4cfd692c98899168fbe7b07b75d49c7deea3b1040 +SIZE (KDE/release-service/22.12.0/ktp-contact-runner-22.12.0.tar.xz) = 45732 diff --git a/net-im/ktp-contact-runner/pkg-plist b/net-im/ktp-contact-runner/pkg-plist index 89a02675f07f..5ed11384fa3b 100644 --- a/net-im/ktp-contact-runner/pkg-plist +++ b/net-im/ktp-contact-runner/pkg-plist @@ -1,45 +1,49 @@ %%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/ka/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/sr@ijekavian/LC_MESSAGES/plasma_runner_ktp_contacts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_runner_ktp_contacts.mo +share/locale/sr@latin/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 e0c236164d0c..9116be35c84f 100644 --- a/net-im/ktp-desktop-applets/distinfo +++ b/net-im/ktp-desktop-applets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539425 -SHA256 (KDE/release-service/22.08.3/ktp-desktop-applets-22.08.3.tar.xz) = ef189456b5b0a2c97e1850f9821cd727862dcc8b3565827969a77efdaa18294a -SIZE (KDE/release-service/22.08.3/ktp-desktop-applets-22.08.3.tar.xz) = 43968 +TIMESTAMP = 1670513017 +SHA256 (KDE/release-service/22.12.0/ktp-desktop-applets-22.12.0.tar.xz) = 857a9c32452947171f1707bf8f369bc63746270207eda12bbd7ea6b296ed0493 +SIZE (KDE/release-service/22.12.0/ktp-desktop-applets-22.12.0.tar.xz) = 45068 diff --git a/net-im/ktp-desktop-applets/pkg-plist b/net-im/ktp-desktop-applets/pkg-plist index ac53f08d6adf..484bd7f6cb6a 100644 --- a/net-im/ktp-desktop-applets/pkg-plist +++ b/net-im/ktp-desktop-applets/pkg-plist @@ -1,131 +1,143 @@ %%QT_QMLDIR%%/org/kde/ktpchat/libktpchatplugin.so %%QT_QMLDIR%%/org/kde/ktpchat/qmldir %%QT_QMLDIR%%/org/kde/ktpcontactlist/libktpcontactlistplugin.so %%QT_QMLDIR%%/org/kde/ktpcontactlist/qmldir share/kservices5/plasma-applet-org.kde.ktp-chat.desktop share/kservices5/plasma-applet-org.kde.ktp-contactlist.desktop share/kservices5/plasma-applet-org.kde.person.desktop share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ar/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ca/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ca@valencia/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/cs/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/da/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/de/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/el/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/en_GB/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/es/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/et/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/eu/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/fi/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/fr/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/gl/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/hi/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ia/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/it/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ja/LC_MESSAGES/plasma_applet_org.kde.person.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo +share/locale/ka/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ko/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/lt/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/nl/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/nn/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/pl/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/pt/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/pt_BR/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ro/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/ru/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/sk/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/sl/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/sr/LC_MESSAGES/plasma_applet_org.kde.person.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo +share/locale/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.person.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.person.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/sv/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/tr/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/uk/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/zh_CN/LC_MESSAGES/plasma_applet_org.kde.person.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.ktp-chat.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.ktp-contactlist.mo share/locale/zh_TW/LC_MESSAGES/plasma_applet_org.kde.person.mo share/plasma/plasmoids/org.kde.ktp-chat/contents/config/main.xml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/ActionDelegate.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/ChatWidget.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/ConversationDelegate.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/ConversationDelegateButton.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/FullChatList.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/OutgoingDelegate.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/TextDelegate.qml share/plasma/plasmoids/org.kde.ktp-chat/contents/ui/main.qml share/plasma/plasmoids/org.kde.ktp-chat/metadata.desktop share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/ContactList.qml share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/ListContactDelegate.qml share/plasma/plasmoids/org.kde.ktp-contactlist/contents/ui/main.qml share/plasma/plasmoids/org.kde.ktp-contactlist/metadata.desktop share/plasma/plasmoids/org.kde.person/contents/config/config.qml share/plasma/plasmoids/org.kde.person/contents/config/main.xml share/plasma/plasmoids/org.kde.person/contents/ui/Person.qml share/plasma/plasmoids/org.kde.person/contents/ui/main.qml share/plasma/plasmoids/org.kde.person/contents/ui/settingsGeneral.qml share/plasma/plasmoids/org.kde.person/metadata.desktop diff --git a/net-im/ktp-filetransfer-handler/distinfo b/net-im/ktp-filetransfer-handler/distinfo index 50535f31f99a..ee5717d8dfbb 100644 --- a/net-im/ktp-filetransfer-handler/distinfo +++ b/net-im/ktp-filetransfer-handler/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539418 -SHA256 (KDE/release-service/22.08.3/ktp-filetransfer-handler-22.08.3.tar.xz) = 00502c4500efc8bf4f7d8324774d0c97a5e4b20a0f5cf75914571c3be2d7d84f -SIZE (KDE/release-service/22.08.3/ktp-filetransfer-handler-22.08.3.tar.xz) = 46628 +TIMESTAMP = 1670513008 +SHA256 (KDE/release-service/22.12.0/ktp-filetransfer-handler-22.12.0.tar.xz) = 2aa4b821e3bbe0c8baa8efb5a2e2c9af3e208ac8283cc7abe6d555cb0cc75cd1 +SIZE (KDE/release-service/22.12.0/ktp-filetransfer-handler-22.12.0.tar.xz) = 47972 diff --git a/net-im/ktp-filetransfer-handler/pkg-plist b/net-im/ktp-filetransfer-handler/pkg-plist index 3757a73d5de3..89d3c60da785 100644 --- a/net-im/ktp-filetransfer-handler/pkg-plist +++ b/net-im/ktp-filetransfer-handler/pkg-plist @@ -1,44 +1,48 @@ lib/libexec/ktp-filetransfer-handler share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.FileTransferHandler.service share/locale/bs/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ca/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ca@valencia/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/cs/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/da/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/de/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/el/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/en_GB/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/es/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/et/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/eu/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/fi/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/fr/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ga/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/gl/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/hu/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ia/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/it/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ja/LC_MESSAGES/ktp-filetransfer-handler.mo +share/locale/ka/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/kk/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ko/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/lt/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/mr/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/nb/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/nds/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/nl/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/nn/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/pl/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/pt/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/pt_BR/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ro/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ru/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/sk/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/sl/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/sr/LC_MESSAGES/ktp-filetransfer-handler.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-filetransfer-handler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-filetransfer-handler.mo +share/locale/sr@latin/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/sv/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/tr/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/ug/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/uk/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/zh_CN/LC_MESSAGES/ktp-filetransfer-handler.mo share/locale/zh_TW/LC_MESSAGES/ktp-filetransfer-handler.mo share/telepathy/clients/KTp.FileTransferHandler.client diff --git a/net-im/ktp-kded-module/distinfo b/net-im/ktp-kded-module/distinfo index 33e81822d021..db07ac11179a 100644 --- a/net-im/ktp-kded-module/distinfo +++ b/net-im/ktp-kded-module/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539429 -SHA256 (KDE/release-service/22.08.3/ktp-kded-module-22.08.3.tar.xz) = 367c22119e7d67606efa9b77b575450e5d72b2028cdc4dd1a42d9ce21b3e9478 -SIZE (KDE/release-service/22.08.3/ktp-kded-module-22.08.3.tar.xz) = 100712 +TIMESTAMP = 1670513023 +SHA256 (KDE/release-service/22.12.0/ktp-kded-module-22.12.0.tar.xz) = 0752f5b117471dc6b4b2991070b02b1ec0dc22b68a8da86f56b014ad03def238 +SIZE (KDE/release-service/22.12.0/ktp-kded-module-22.12.0.tar.xz) = 102776 diff --git a/net-im/ktp-kded-module/pkg-plist b/net-im/ktp-kded-module/pkg-plist index 6ea849ef6df9..ce69122dd22d 100644 --- a/net-im/ktp-kded-module/pkg-plist +++ b/net-im/ktp-kded-module/pkg-plist @@ -1,48 +1,52 @@ %%QT_PLUGINDIR%%/kcm_ktp_integration_module.so %%QT_PLUGINDIR%%/kf5/kded/ktp_integration_module.so share/dbus-1/services/org.freedesktop.Telepathy.Client.KTp.KdedIntegrationModule.service share/kservices5/kcm_ktp_integration_module.desktop share/locale/ar/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/bs/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ca/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ca@valencia/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/cs/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/da/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/de/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/el/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/en_GB/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/es/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/et/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/eu/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/fi/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/fr/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ga/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/gl/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/hu/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ia/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/it/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ja/LC_MESSAGES/kded_ktp_integration_module.mo +share/locale/ka/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/kk/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/km/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ko/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/lt/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/mr/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/nb/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/nds/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/nl/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/nn/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/pa/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/pl/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/pt/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/pt_BR/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ro/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ru/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/sk/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/sl/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/sr/LC_MESSAGES/kded_ktp_integration_module.mo +share/locale/sr@ijekavian/LC_MESSAGES/kded_ktp_integration_module.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kded_ktp_integration_module.mo +share/locale/sr@latin/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/sv/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/tr/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/ug/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/uk/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/zh_CN/LC_MESSAGES/kded_ktp_integration_module.mo share/locale/zh_TW/LC_MESSAGES/kded_ktp_integration_module.mo diff --git a/net-im/ktp-send-file/distinfo b/net-im/ktp-send-file/distinfo index 7c81b19adf60..a4eb4793f9e2 100644 --- a/net-im/ktp-send-file/distinfo +++ b/net-im/ktp-send-file/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539419 -SHA256 (KDE/release-service/22.08.3/ktp-send-file-22.08.3.tar.xz) = bc0f15cfd2fd9fedd41ce560223120ec935c160dc12c0c9b7a4058a1a98bba85 -SIZE (KDE/release-service/22.08.3/ktp-send-file-22.08.3.tar.xz) = 28864 +TIMESTAMP = 1670513009 +SHA256 (KDE/release-service/22.12.0/ktp-send-file-22.12.0.tar.xz) = 07a8f2643cb4f232bc9a619e58f52a168afff6e2998c38bf985b7fa42eb7f0fe +SIZE (KDE/release-service/22.12.0/ktp-send-file-22.12.0.tar.xz) = 29620 diff --git a/net-im/ktp-send-file/pkg-plist b/net-im/ktp-send-file/pkg-plist index b93e6cb647b0..0c1e120c01c7 100644 --- a/net-im/ktp-send-file/pkg-plist +++ b/net-im/ktp-send-file/pkg-plist @@ -1,47 +1,51 @@ 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/hi/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/ka/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/sr@ijekavian/LC_MESSAGES/ktp-send-file.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-send-file.mo +share/locale/sr@latin/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 732128dd860c..feadbf89fd29 100644 --- a/net-im/ktp-text-ui/distinfo +++ b/net-im/ktp-text-ui/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539416 -SHA256 (KDE/release-service/22.08.3/ktp-text-ui-22.08.3.tar.xz) = 87bedd9a59f3b6c72ebd4919c7b1c6ec1e357ac4a1ea501f0f4dbcd29f330179 -SIZE (KDE/release-service/22.08.3/ktp-text-ui-22.08.3.tar.xz) = 475384 +TIMESTAMP = 1670513007 +SHA256 (KDE/release-service/22.12.0/ktp-text-ui-22.12.0.tar.xz) = eea196ddf9f0950d8e00430997b7be26083b39e69f79fb2df9ecd07386b942e0 +SIZE (KDE/release-service/22.12.0/ktp-text-ui-22.12.0.tar.xz) = 482936 diff --git a/net-im/ktp-text-ui/pkg-plist b/net-im/ktp-text-ui/pkg-plist index 6c4a400e2463..98090345d969 100644 --- a/net-im/ktp-text-ui/pkg-plist +++ b/net-im/ktp-text-ui/pkg-plist @@ -1,607 +1,643 @@ 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/blueIndicator2.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/greenIndicator2.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/redIndicator2.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/steelIndicator2.png 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/yellowIndicator2.png 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/ka/LC_MESSAGES/kcm_ktp_chat_appearance.mo +share/locale/ka/LC_MESSAGES/kcm_ktp_chat_behavior.mo +share/locale/ka/LC_MESSAGES/kcm_ktp_chat_messages.mo +share/locale/ka/LC_MESSAGES/kcm_ktp_chat_otr.mo +share/locale/ka/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo +share/locale/ka/LC_MESSAGES/ktp-filters.mo +share/locale/ka/LC_MESSAGES/ktp-log-viewer.mo +share/locale/ka/LC_MESSAGES/ktp-text-ui.mo +share/locale/ka/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/sr@ijekavian/LC_MESSAGES/kcm_ktp_chat_appearance.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_ktp_chat_behavior.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_ktp_chat_messages.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_ktp_chat_otr.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-filters.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-log-viewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktp-text-ui.mo +share/locale/sr@ijekavian/LC_MESSAGES/ktpchat.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_ktp_chat_appearance.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_ktp_chat_behavior.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_ktp_chat_messages.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_ktp_chat_otr.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-filters.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-log-viewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktp-text-ui.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktpchat.mo +share/locale/sr@latin/LC_MESSAGES/kcm_ktp_chat_appearance.mo +share/locale/sr@latin/LC_MESSAGES/kcm_ktp_chat_behavior.mo +share/locale/sr@latin/LC_MESSAGES/kcm_ktp_chat_messages.mo +share/locale/sr@latin/LC_MESSAGES/kcm_ktp_chat_otr.mo +share/locale/sr@latin/LC_MESSAGES/ktp-adiumxtra-protocol-handler.mo +share/locale/sr@latin/LC_MESSAGES/ktp-filters.mo +share/locale/sr@latin/LC_MESSAGES/ktp-log-viewer.mo +share/locale/sr@latin/LC_MESSAGES/ktp-text-ui.mo +share/locale/sr@latin/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 2de94ff2cfad..d1c46a54d3aa 100644 --- a/net-p2p/ktorrent/distinfo +++ b/net-p2p/ktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539483 -SHA256 (KDE/release-service/22.08.3/ktorrent-22.08.3.tar.xz) = 5932300dd52c563ef2caa43e8269e1120529c952fcb038ee3ecb2b1736e9b5b5 -SIZE (KDE/release-service/22.08.3/ktorrent-22.08.3.tar.xz) = 2058188 +TIMESTAMP = 1670513089 +SHA256 (KDE/release-service/22.12.0/ktorrent-22.12.0.tar.xz) = 09284e2094906d8fa40c9d062aee3d02c46592edad4a761c4bac5e96d5272cb6 +SIZE (KDE/release-service/22.12.0/ktorrent-22.12.0.tar.xz) = 2135300 diff --git a/net-p2p/ktorrent/pkg-plist b/net-p2p/ktorrent/pkg-plist index 8e7b2f20ca57..b33cc6fc884e 100644 --- a/net-p2p/ktorrent/pkg-plist +++ b/net-p2p/ktorrent/pkg-plist @@ -1,178 +1,186 @@ bin/ktmagnetdownloader bin/ktorrent bin/ktupnptest lib/libktcore.so.16 lib/libktcore.so.16.0.0 %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_bwscheduler.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_downloadorder.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_infowidget.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_ipfilter.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_logviewer.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_magnetgenerator.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_mediaplayer.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_scanfolder.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_scanforlostfiles.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_search.so %%WORKSPACE%%%%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_shutdown.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_stats.so %%WEBENGINE%%%%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_syndication.so %%QT_PLUGINDIR%%/ktorrent_plugins/ktorrent_upnp.so %%QT_PLUGINDIR%%/ktorrent_plugins/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/128x128/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 %%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 %%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/hne/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/ka/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/ku/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/ms/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/oc/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/si/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/sr@ijekavian/LC_MESSAGES/ktorrent.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktorrent.mo +share/locale/sr@latin/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 e53568588ac2..f04a2412a30a 100644 --- a/net-p2p/libktorrent/distinfo +++ b/net-p2p/libktorrent/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539482 -SHA256 (KDE/release-service/22.08.3/libktorrent-22.08.3.tar.xz) = 1fa6f76d4eaaa06495afdf43fac6dbaf44d4febfd04d5b67b57a4ff42bad1a36 -SIZE (KDE/release-service/22.08.3/libktorrent-22.08.3.tar.xz) = 595472 +TIMESTAMP = 1670513087 +SHA256 (KDE/release-service/22.12.0/libktorrent-22.12.0.tar.xz) = 5162fda73a96112d473becfad504871342cfd9372bf32c532981171b60f41c58 +SIZE (KDE/release-service/22.12.0/libktorrent-22.12.0.tar.xz) = 616844 diff --git a/net-p2p/libktorrent/pkg-plist b/net-p2p/libktorrent/pkg-plist index 1c55893a95d5..9688157bbe81 100644 --- a/net-p2p/libktorrent/pkg-plist +++ b/net-p2p/libktorrent/pkg-plist @@ -1,242 +1,251 @@ 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.6 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/hne/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/ka/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/ku/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/ms/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/oc/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/si/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/sr@ijekavian/LC_MESSAGES/libktorrent5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libktorrent5.mo +share/locale/sr@latin/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 774ebada27b7..84d819b1e1e0 100644 --- a/net/akonadi-calendar/distinfo +++ b/net/akonadi-calendar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539662 -SHA256 (KDE/release-service/22.08.3/akonadi-calendar-22.08.3.tar.xz) = 2fbfbf905bd11dceb43355588cd43902452c143824c30d10f04c1f1d982885f8 -SIZE (KDE/release-service/22.08.3/akonadi-calendar-22.08.3.tar.xz) = 395312 +TIMESTAMP = 1670513322 +SHA256 (KDE/release-service/22.12.0/akonadi-calendar-22.12.0.tar.xz) = 50c2d07948ffedd1c16038d2af3ab9114456bda0aa377fe14694a601704b8556 +SIZE (KDE/release-service/22.12.0/akonadi-calendar-22.12.0.tar.xz) = 406784 diff --git a/net/akonadi-calendar/pkg-plist b/net/akonadi-calendar/pkg-plist index e238845d07e2..38876c6c96c3 100644 --- a/net/akonadi-calendar/pkg-plist +++ b/net/akonadi-calendar/pkg-plist @@ -1,176 +1,187 @@ bin/kalendarac etc/xdg/autostart/org.kde.kalendarac.desktop include/KF5/AkonadiCalendar/Akonadi/BlockAlarmsAttribute include/KF5/AkonadiCalendar/Akonadi/CalendarBase include/KF5/AkonadiCalendar/Akonadi/CalendarClipboard include/KF5/AkonadiCalendar/Akonadi/CalendarUtils include/KF5/AkonadiCalendar/Akonadi/ETMCalendar include/KF5/AkonadiCalendar/Akonadi/FetchJobCalendar include/KF5/AkonadiCalendar/Akonadi/FreeBusyManager include/KF5/AkonadiCalendar/Akonadi/FreeBusyProviderBase include/KF5/AkonadiCalendar/Akonadi/History include/KF5/AkonadiCalendar/Akonadi/ICalImporter include/KF5/AkonadiCalendar/Akonadi/ITIPHandler include/KF5/AkonadiCalendar/Akonadi/IncidenceChanger include/KF5/AkonadiCalendar/Akonadi/IncidenceTreeModel include/KF5/AkonadiCalendar/Akonadi/PublishDialog include/KF5/AkonadiCalendar/Akonadi/StandardCalendarActionManager include/KF5/AkonadiCalendar/Akonadi/TodoPurger include/KF5/AkonadiCalendar/akonadi-calendar_version.h include/KF5/AkonadiCalendar/akonadi/akonadi-calendar_export.h include/KF5/AkonadiCalendar/akonadi/blockalarmsattribute.h include/KF5/AkonadiCalendar/akonadi/calendarbase.h include/KF5/AkonadiCalendar/akonadi/calendarclipboard.h include/KF5/AkonadiCalendar/akonadi/calendarsettings.h include/KF5/AkonadiCalendar/akonadi/calendarutils.h include/KF5/AkonadiCalendar/akonadi/etmcalendar.h include/KF5/AkonadiCalendar/akonadi/fetchjobcalendar.h include/KF5/AkonadiCalendar/akonadi/freebusymanager.h include/KF5/AkonadiCalendar/akonadi/freebusyproviderbase.h include/KF5/AkonadiCalendar/akonadi/history.h include/KF5/AkonadiCalendar/akonadi/icalimporter.h include/KF5/AkonadiCalendar/akonadi/incidencechanger.h include/KF5/AkonadiCalendar/akonadi/incidencetreemodel.h include/KF5/AkonadiCalendar/akonadi/itiphandler.h include/KF5/AkonadiCalendar/akonadi/publishdialog.h include/KF5/AkonadiCalendar/akonadi/standardcalendaractionmanager.h include/KF5/AkonadiCalendar/akonadi/todopurger.h lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfig.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarConfigVersion.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiCalendar/KF5AkonadiCalendarTargets.cmake lib/libKF5AkonadiCalendar.so lib/libKF5AkonadiCalendar.so.5 lib/libKF5AkonadiCalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiCalendar.pri %%QT_PLUGINDIR%%/akonadi_serializer_kcalcore.so %%QT_PLUGINDIR%%/kf5/org.kde.kcalendarcore.calendars/libakonadicalendarplugin.so share/akonadi/plugins/serializer/akonadi_serializer_kcalcore.desktop share/dbus-1/services/org.kde.kalendarac.service share/knotifications5/kalendarac.notifyrc +share/locale/ar/LC_MESSAGES/kalendarac.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ar/LC_MESSAGES/libakonadi-calendar5.mo share/locale/az/LC_MESSAGES/kalendarac.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/az/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bg/LC_MESSAGES/kalendarac.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bg/LC_MESSAGES/libakonadi-calendar5.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/bs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca/LC_MESSAGES/kalendarac.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ca@valencia/LC_MESSAGES/kalendarac.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/cs/LC_MESSAGES/kalendarac.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/cs/LC_MESSAGES/libakonadi-calendar5.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/da/LC_MESSAGES/libakonadi-calendar5.mo share/locale/de/LC_MESSAGES/kalendarac.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/de/LC_MESSAGES/libakonadi-calendar5.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/el/LC_MESSAGES/libakonadi-calendar5.mo share/locale/en_GB/LC_MESSAGES/kalendarac.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/en_GB/LC_MESSAGES/libakonadi-calendar5.mo share/locale/es/LC_MESSAGES/kalendarac.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/es/LC_MESSAGES/libakonadi-calendar5.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/et/LC_MESSAGES/libakonadi-calendar5.mo share/locale/eu/LC_MESSAGES/kalendarac.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/eu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fi/LC_MESSAGES/kalendarac.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fi/LC_MESSAGES/libakonadi-calendar5.mo share/locale/fr/LC_MESSAGES/kalendarac.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/fr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ga/LC_MESSAGES/libakonadi-calendar5.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/gl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/hu/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ia/LC_MESSAGES/kalendarac.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ia/LC_MESSAGES/libakonadi-calendar5.mo share/locale/id/LC_MESSAGES/kalendarac.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/id/LC_MESSAGES/libakonadi-calendar5.mo share/locale/it/LC_MESSAGES/kalendarac.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/it/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ja/LC_MESSAGES/kalendarac.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ja/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/ka/LC_MESSAGES/kalendarac.mo +share/locale/ka/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/ka/LC_MESSAGES/libakonadi-calendar5.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/kk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/km/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ko/LC_MESSAGES/kalendarac.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ko/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/lt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/lv/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/mai/LC_MESSAGES/libakonadi-calendar5.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/mr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nb/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nds/LC_MESSAGES/libakonadi-calendar5.mo share/locale/nl/LC_MESSAGES/kalendarac.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/nl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pa/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/kalendarac.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt/LC_MESSAGES/kalendarac.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt/LC_MESSAGES/libakonadi-calendar5.mo share/locale/pt_BR/LC_MESSAGES/kalendarac.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/pt_BR/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ro/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ru/LC_MESSAGES/kalendarac.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ru/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sk/LC_MESSAGES/kalendarac.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sl/LC_MESSAGES/kalendarac.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sl/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sr/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/sr@ijekavian/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-calendar5.mo +share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5-serializer.mo +share/locale/sr@latin/LC_MESSAGES/libakonadi-calendar5.mo share/locale/sv/LC_MESSAGES/kalendarac.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/sv/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ta/LC_MESSAGES/kalendarac.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ta/LC_MESSAGES/libakonadi-calendar5.mo share/locale/tr/LC_MESSAGES/kalendarac.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/tr/LC_MESSAGES/libakonadi-calendar5.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/ug/LC_MESSAGES/libakonadi-calendar5.mo share/locale/uk/LC_MESSAGES/kalendarac.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/uk/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_CN/LC_MESSAGES/kalendarac.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-calendar5.mo share/locale/zh_TW/LC_MESSAGES/kalendarac.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5-serializer.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-calendar5.mo share/qlogging-categories5/akonadi-calendar.categories share/qlogging-categories5/akonadi-calendar.renamecategories share/qlogging-categories5/org_kde_kalendarac.categories diff --git a/net/akonadi-contacts/distinfo b/net/akonadi-contacts/distinfo index b9c8d2241564..4924cb8d481b 100644 --- a/net/akonadi-contacts/distinfo +++ b/net/akonadi-contacts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539665 -SHA256 (KDE/release-service/22.08.3/akonadi-contacts-22.08.3.tar.xz) = 1c1ba53d31b7bf5953d7999485fc22c7995a9ef37a0cf5bd14bea1cc03f4f5af -SIZE (KDE/release-service/22.08.3/akonadi-contacts-22.08.3.tar.xz) = 427264 +TIMESTAMP = 1670513325 +SHA256 (KDE/release-service/22.12.0/akonadi-contacts-22.12.0.tar.xz) = c4073b841158e2c7679c8f494b77eb87002fad4ce2ad7c86556a144d540bc8bb +SIZE (KDE/release-service/22.12.0/akonadi-contacts-22.12.0.tar.xz) = 439068 diff --git a/net/akonadi-contacts/pkg-plist b/net/akonadi-contacts/pkg-plist index 7bd3e7c3fd84..464b7c7c2517 100644 --- a/net/akonadi-contacts/pkg-plist +++ b/net/akonadi-contacts/pkg-plist @@ -1,253 +1,267 @@ include/KF5/AkonadiContact/Akonadi/AbstractContactFormatter include/KF5/AkonadiContact/Akonadi/AbstractContactGroupFormatter include/KF5/AkonadiContact/Akonadi/AbstractEmailAddressSelectionDialog include/KF5/AkonadiContact/Akonadi/AddContactJob include/KF5/AkonadiContact/Akonadi/AddEmailAddressJob include/KF5/AkonadiContact/Akonadi/AddEmailDisplayJob include/KF5/AkonadiContact/Akonadi/ContactDefaultActions include/KF5/AkonadiContact/Akonadi/ContactEditor include/KF5/AkonadiContact/Akonadi/ContactEditorDialog include/KF5/AkonadiContact/Akonadi/ContactGrantleeWrapper include/KF5/AkonadiContact/Akonadi/ContactGroupEditor include/KF5/AkonadiContact/Akonadi/ContactGroupEditorDialog include/KF5/AkonadiContact/Akonadi/ContactGroupExpandJob include/KF5/AkonadiContact/Akonadi/ContactGroupSearchJob include/KF5/AkonadiContact/Akonadi/ContactGroupViewer include/KF5/AkonadiContact/Akonadi/ContactParts include/KF5/AkonadiContact/Akonadi/ContactSearchJob include/KF5/AkonadiContact/Akonadi/ContactViewer include/KF5/AkonadiContact/Akonadi/ContactViewerDialog include/KF5/AkonadiContact/Akonadi/ContactsFilterProxyModel include/KF5/AkonadiContact/Akonadi/ContactsTreeModel include/KF5/AkonadiContact/Akonadi/EmailAddressRequester include/KF5/AkonadiContact/Akonadi/EmailAddressSelection include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionDialog include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionModel include/KF5/AkonadiContact/Akonadi/EmailAddressSelectionWidget include/KF5/AkonadiContact/Akonadi/GrantleeContactFormatter include/KF5/AkonadiContact/Akonadi/GrantleeContactGroupFormatter include/KF5/AkonadiContact/Akonadi/GrantleeContactViewer include/KF5/AkonadiContact/Akonadi/GrantleePrint include/KF5/AkonadiContact/Akonadi/OpenEmailAddressJob include/KF5/AkonadiContact/Akonadi/RecipientsEditorManager include/KF5/AkonadiContact/Akonadi/RecipientsPickerWidget include/KF5/AkonadiContact/Akonadi/SelectAddressBookDialog include/KF5/AkonadiContact/Akonadi/StandardContactActionManager include/KF5/AkonadiContact/Akonadi/StandardContactFormatter include/KF5/AkonadiContact/Akonadi/StandardContactGroupFormatter include/KF5/AkonadiContact/akonadi-contact_version.h include/KF5/AkonadiContact/akonadi/abstractcontactformatter.h include/KF5/AkonadiContact/akonadi/abstractcontactgroupformatter.h include/KF5/AkonadiContact/akonadi/abstractemailaddressselectiondialog.h include/KF5/AkonadiContact/akonadi/addcontactjob.h include/KF5/AkonadiContact/akonadi/addemailaddressjob.h include/KF5/AkonadiContact/akonadi/addemaildisplayjob.h include/KF5/AkonadiContact/akonadi/akonadi-contact_export.h include/KF5/AkonadiContact/akonadi/contactdefaultactions.h include/KF5/AkonadiContact/akonadi/contacteditor.h include/KF5/AkonadiContact/akonadi/contacteditordialog.h include/KF5/AkonadiContact/akonadi/contactgrantleewrapper.h include/KF5/AkonadiContact/akonadi/contactgroupeditor.h include/KF5/AkonadiContact/akonadi/contactgroupeditordialog.h include/KF5/AkonadiContact/akonadi/contactgroupexpandjob.h include/KF5/AkonadiContact/akonadi/contactgroupsearchjob.h include/KF5/AkonadiContact/akonadi/contactgroupviewer.h include/KF5/AkonadiContact/akonadi/contactparts.h include/KF5/AkonadiContact/akonadi/contactsearchjob.h include/KF5/AkonadiContact/akonadi/contactsfilterproxymodel.h include/KF5/AkonadiContact/akonadi/contactstreemodel.h include/KF5/AkonadiContact/akonadi/contactviewer.h include/KF5/AkonadiContact/akonadi/contactviewerdialog.h include/KF5/AkonadiContact/akonadi/emailaddressrequester.h include/KF5/AkonadiContact/akonadi/emailaddressselection.h include/KF5/AkonadiContact/akonadi/emailaddressselectiondialog.h include/KF5/AkonadiContact/akonadi/emailaddressselectionmodel.h include/KF5/AkonadiContact/akonadi/emailaddressselectionwidget.h include/KF5/AkonadiContact/akonadi/grantleecontactformatter.h include/KF5/AkonadiContact/akonadi/grantleecontactgroupformatter.h include/KF5/AkonadiContact/akonadi/grantleecontactviewer.h include/KF5/AkonadiContact/akonadi/grantleeprint.h include/KF5/AkonadiContact/akonadi/openemailaddressjob.h include/KF5/AkonadiContact/akonadi/recipientseditormanager.h include/KF5/AkonadiContact/akonadi/recipientspickerwidget.h include/KF5/AkonadiContact/akonadi/selectaddressbookdialog.h include/KF5/AkonadiContact/akonadi/standardcontactactionmanager.h include/KF5/AkonadiContact/akonadi/standardcontactformatter.h include/KF5/AkonadiContact/akonadi/standardcontactgroupformatter.h include/KF5/AkonadiContactEditor/Akonadi/CategoriesEditAbstractWidget include/KF5/AkonadiContactEditor/Akonadi/ContactEditorPagePlugin include/KF5/AkonadiContactEditor/akonadi-contact-editor_version.h include/KF5/AkonadiContactEditor/akonadi/categorieseditabstractwidget.h include/KF5/AkonadiContactEditor/akonadi/contacteditor_export.h include/KF5/AkonadiContactEditor/akonadi/contacteditorpageplugin.h lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfig.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactConfigVersion.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiContact/KF5AkonadiContactTargets.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfig.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorConfigVersion.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5ContactEditor/KF5ContactEditorTargets.cmake lib/libKF5AkonadiContact.so lib/libKF5AkonadiContact.so.5 lib/libKF5AkonadiContact.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5ContactEditor.so lib/libKF5ContactEditor.so.5 lib/libKF5ContactEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiContact.pri %%QT_MKSPECDIR%%/modules/qt_ContactEditor.pri %%QT_PLUGINDIR%%/akonadi_serializer_addressee.so %%QT_PLUGINDIR%%/akonadi_serializer_contactgroup.so %%QT_PLUGINDIR%%/pim5/akonadi/contacts/plugins/categorieseditwidgetplugin.so %%QT_PLUGINDIR%%/pim5/kcms/kaddressbook/kcm_akonadicontact_actions.so share/akonadi/plugins/serializer/akonadi_serializer_addressee.desktop share/akonadi/plugins/serializer/akonadi_serializer_contactgroup.desktop share/kf5/akonadi/contact/data/zone.tab share/kf5/akonadi/contact/pics/world.jpg share/locale/ar/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ar/LC_MESSAGES/akonadicontact5.mo share/locale/ar/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/az/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/az/LC_MESSAGES/akonadicontact5.mo share/locale/az/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bg/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bg/LC_MESSAGES/akonadicontact5.mo share/locale/bg/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/bs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/bs/LC_MESSAGES/akonadicontact5.mo share/locale/bs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca/LC_MESSAGES/akonadicontact5.mo share/locale/ca/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ca@valencia/LC_MESSAGES/akonadicontact5.mo share/locale/ca@valencia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/cs/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/cs/LC_MESSAGES/akonadicontact5.mo share/locale/cs/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/da/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/da/LC_MESSAGES/akonadicontact5.mo share/locale/da/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/de/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/de/LC_MESSAGES/akonadicontact5.mo share/locale/de/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/el/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/el/LC_MESSAGES/akonadicontact5.mo share/locale/el/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/en_GB/LC_MESSAGES/akonadicontact5.mo share/locale/en_GB/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eo/LC_MESSAGES/akonadicontact5.mo share/locale/eo/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/es/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/es/LC_MESSAGES/akonadicontact5.mo share/locale/es/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/et/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/et/LC_MESSAGES/akonadicontact5.mo share/locale/et/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/eu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/eu/LC_MESSAGES/akonadicontact5.mo share/locale/eu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fi/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fi/LC_MESSAGES/akonadicontact5.mo share/locale/fi/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/fr/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/fr/LC_MESSAGES/akonadicontact5.mo share/locale/fr/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ga/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ga/LC_MESSAGES/akonadicontact5.mo share/locale/ga/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/gl/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/gl/LC_MESSAGES/akonadicontact5.mo share/locale/gl/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/he/LC_MESSAGES/akonadicontact5.mo share/locale/he/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/hr/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/hu/LC_MESSAGES/akonadicontact5.mo share/locale/hu/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ia/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ia/LC_MESSAGES/akonadicontact5.mo share/locale/ia/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/it/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/it/LC_MESSAGES/akonadicontact5.mo share/locale/it/LC_MESSAGES/kcm_akonadicontact_actions.mo share/locale/ja/LC_MESSAGES/akonadicontact5-serializer.mo share/locale/ja/LC_MESSAGES/akonadicontact5.mo share/locale/ja/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/locale/ka/LC_MESSAGES/akonadicontact5-serializer.mo +share/locale/ka/LC_MESSAGES/akonadicontact5.mo +share/locale/ka/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/mai/LC_MESSAGES/akonadicontact5.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/sr@ijekavian/LC_MESSAGES/akonadicontact5-serializer.mo +share/locale/sr@ijekavian/LC_MESSAGES/akonadicontact5.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact5-serializer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadicontact5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcm_akonadicontact_actions.mo +share/locale/sr@latin/LC_MESSAGES/akonadicontact5-serializer.mo +share/locale/sr@latin/LC_MESSAGES/akonadicontact5.mo +share/locale/sr@latin/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/th/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 9c27c6730a9e..97032a8fd115 100644 --- a/net/akonadi-mime/distinfo +++ b/net/akonadi-mime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539674 -SHA256 (KDE/release-service/22.08.3/akonadi-mime-22.08.3.tar.xz) = 8468c7d695633d174d8100add80240e38fd7b337134e64c0018deb09228bde70 -SIZE (KDE/release-service/22.08.3/akonadi-mime-22.08.3.tar.xz) = 149668 +TIMESTAMP = 1670513335 +SHA256 (KDE/release-service/22.12.0/akonadi-mime-22.12.0.tar.xz) = 15b5729208206695aefab20f22146e65dfee00fe60753df42a77ba9c0c8a5b24 +SIZE (KDE/release-service/22.12.0/akonadi-mime-22.12.0.tar.xz) = 153684 diff --git a/net/akonadi-mime/pkg-plist b/net/akonadi-mime/pkg-plist index 31d96c96f24a..7c0a0cda730d 100644 --- a/net/akonadi-mime/pkg-plist +++ b/net/akonadi-mime/pkg-plist @@ -1,94 +1,99 @@ include/KF5/AkonadiMime/Akonadi/AddressAttribute include/KF5/AkonadiMime/Akonadi/CommandBase include/KF5/AkonadiMime/Akonadi/MDNStateAttribute include/KF5/AkonadiMime/Akonadi/MarkAsCommand include/KF5/AkonadiMime/Akonadi/MessageFlags include/KF5/AkonadiMime/Akonadi/MessageFolderAttribute include/KF5/AkonadiMime/Akonadi/MessageModel include/KF5/AkonadiMime/Akonadi/MessageParts include/KF5/AkonadiMime/Akonadi/MessageStatus include/KF5/AkonadiMime/Akonadi/MoveCommand include/KF5/AkonadiMime/Akonadi/NewMailNotifierAttribute include/KF5/AkonadiMime/Akonadi/Pop3ResourceAttribute include/KF5/AkonadiMime/Akonadi/RemoveDuplicatesJob include/KF5/AkonadiMime/Akonadi/SpecialMailCollections include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsDiscoveryJob include/KF5/AkonadiMime/Akonadi/SpecialMailCollectionsRequestJob include/KF5/AkonadiMime/Akonadi/StandardMailActionManager include/KF5/AkonadiMime/akonadi-mime_version.h include/KF5/AkonadiMime/akonadi/addressattribute.h include/KF5/AkonadiMime/akonadi/akonadi-mime_export.h include/KF5/AkonadiMime/akonadi/commandbase.h include/KF5/AkonadiMime/akonadi/markascommand.h include/KF5/AkonadiMime/akonadi/mdnstateattribute.h include/KF5/AkonadiMime/akonadi/messageflags.h include/KF5/AkonadiMime/akonadi/messagefolderattribute.h include/KF5/AkonadiMime/akonadi/messagemodel.h include/KF5/AkonadiMime/akonadi/messageparts.h include/KF5/AkonadiMime/akonadi/messagestatus.h include/KF5/AkonadiMime/akonadi/movecommand.h include/KF5/AkonadiMime/akonadi/newmailnotifierattribute.h include/KF5/AkonadiMime/akonadi/pop3resourceattribute.h include/KF5/AkonadiMime/akonadi/removeduplicatesjob.h include/KF5/AkonadiMime/akonadi/specialmailcollections.h include/KF5/AkonadiMime/akonadi/specialmailcollectionsdiscoveryjob.h include/KF5/AkonadiMime/akonadi/specialmailcollectionsrequestjob.h include/KF5/AkonadiMime/akonadi/standardmailactionmanager.h lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfig.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeConfigVersion.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiMime/KF5AkonadiMimeTargets.cmake lib/libKF5AkonadiMime.so lib/libKF5AkonadiMime.so.5 lib/libKF5AkonadiMime.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_AkonadiMime.pri %%QT_PLUGINDIR%%/akonadi_serializer_mail.so share/akonadi/plugins/serializer/akonadi_serializer_mail.desktop share/config.kcfg/specialmailcollections.kcfg share/locale/ar/LC_MESSAGES/libakonadi-kmime5.mo share/locale/az/LC_MESSAGES/libakonadi-kmime5.mo share/locale/bg/LC_MESSAGES/libakonadi-kmime5.mo share/locale/bs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ca@valencia/LC_MESSAGES/libakonadi-kmime5.mo share/locale/cs/LC_MESSAGES/libakonadi-kmime5.mo share/locale/da/LC_MESSAGES/libakonadi-kmime5.mo share/locale/de/LC_MESSAGES/libakonadi-kmime5.mo share/locale/el/LC_MESSAGES/libakonadi-kmime5.mo share/locale/en_GB/LC_MESSAGES/libakonadi-kmime5.mo share/locale/es/LC_MESSAGES/libakonadi-kmime5.mo share/locale/et/LC_MESSAGES/libakonadi-kmime5.mo share/locale/eu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fi/LC_MESSAGES/libakonadi-kmime5.mo share/locale/fr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ga/LC_MESSAGES/libakonadi-kmime5.mo share/locale/gl/LC_MESSAGES/libakonadi-kmime5.mo share/locale/hu/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ia/LC_MESSAGES/libakonadi-kmime5.mo share/locale/it/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ja/LC_MESSAGES/libakonadi-kmime5.mo +share/locale/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/libakonadi-kmime5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libakonadi-kmime5.mo +share/locale/sr@latin/LC_MESSAGES/libakonadi-kmime5.mo share/locale/sv/LC_MESSAGES/libakonadi-kmime5.mo share/locale/tr/LC_MESSAGES/libakonadi-kmime5.mo share/locale/ug/LC_MESSAGES/libakonadi-kmime5.mo share/locale/uk/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_CN/LC_MESSAGES/libakonadi-kmime5.mo share/locale/zh_TW/LC_MESSAGES/libakonadi-kmime5.mo share/mime/packages/x-vnd.kde.contactgroup.xml share/qlogging-categories5/akonadi-mime.categories diff --git a/net/akonadi-notes/distinfo b/net/akonadi-notes/distinfo index 390991136188..a78e74e6a30b 100644 --- a/net/akonadi-notes/distinfo +++ b/net/akonadi-notes/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539639 -SHA256 (KDE/release-service/22.08.3/akonadi-notes-22.08.3.tar.xz) = 8533bd72f8cd028ab41ab70c9f6239be9abcedce736cb092e06294ea99bb0dc1 -SIZE (KDE/release-service/22.08.3/akonadi-notes-22.08.3.tar.xz) = 27412 +TIMESTAMP = 1670513295 +SHA256 (KDE/release-service/22.12.0/akonadi-notes-22.12.0.tar.xz) = c2021d896ea386d8a94d6127dd06e7b67dc91a9eb4fd29b3e04f767b3997fa11 +SIZE (KDE/release-service/22.12.0/akonadi-notes-22.12.0.tar.xz) = 27788 diff --git a/net/akonadi-notes/pkg-plist b/net/akonadi-notes/pkg-plist index f3178b13ce97..025ddd8c1596 100644 --- a/net/akonadi-notes/pkg-plist +++ b/net/akonadi-notes/pkg-plist @@ -1,63 +1,67 @@ include/KF5/AkonadiNotes/Akonadi/NoteUtils include/KF5/AkonadiNotes/akonadi-notes_version.h include/KF5/AkonadiNotes/akonadi/NoteUtils include/KF5/AkonadiNotes/akonadi/akonadi-notes_export.h include/KF5/AkonadiNotes/akonadi/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/hsb/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/ka/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/sr@ijekavian/LC_MESSAGES/akonadinotes5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadinotes5.mo +share/locale/sr@latin/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/vi/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 e033234c2f0b..6f5e32e2d618 100644 --- a/net/akonadi-search/distinfo +++ b/net/akonadi-search/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539646 -SHA256 (KDE/release-service/22.08.3/akonadi-search-22.08.3.tar.xz) = 72e0c05f58379867792b5fd4d60bc4eec7f400b3d286a59dc3678e8bed57ba0f -SIZE (KDE/release-service/22.08.3/akonadi-search-22.08.3.tar.xz) = 100084 +TIMESTAMP = 1670513303 +SHA256 (KDE/release-service/22.12.0/akonadi-search-22.12.0.tar.xz) = fd30e2e6c3681564ab8009e35e82dd8c50e565a233bae4218b4baa9d3f13decb +SIZE (KDE/release-service/22.12.0/akonadi-search-22.12.0.tar.xz) = 101272 diff --git a/net/akonadi-search/pkg-plist b/net/akonadi-search/pkg-plist index 97c5646aa66d..5812a75676e3 100644 --- a/net/akonadi-search/pkg-plist +++ b/net/akonadi-search/pkg-plist @@ -1,94 +1,99 @@ bin/akonadi_indexing_agent include/KF5/AkonadiSearch/Core/Query include/KF5/AkonadiSearch/Core/ResultIterator include/KF5/AkonadiSearch/Core/SearchStore include/KF5/AkonadiSearch/Core/Term include/KF5/AkonadiSearch/Debug/akonadisearchdebugdialog.h include/KF5/AkonadiSearch/Debug/akonadisearchdebugsearchpathcombobox.h include/KF5/AkonadiSearch/Debug/search_debug_export.h include/KF5/AkonadiSearch/PIM/collectionquery.h include/KF5/AkonadiSearch/PIM/contactcompleter.h include/KF5/AkonadiSearch/PIM/contactquery.h include/KF5/AkonadiSearch/PIM/emailquery.h include/KF5/AkonadiSearch/PIM/indexeditems.h include/KF5/AkonadiSearch/PIM/notequery.h include/KF5/AkonadiSearch/PIM/query.h include/KF5/AkonadiSearch/PIM/resultiterator.h include/KF5/AkonadiSearch/PIM/search_pim_export.h include/KF5/AkonadiSearch/Xapian/search_xapian_export.h include/KF5/AkonadiSearch/Xapian/xapiandatabase.h include/KF5/AkonadiSearch/Xapian/xapiandocument.h include/KF5/AkonadiSearch/Xapian/xapianqueryparser.h include/KF5/AkonadiSearch/Xapian/xapiansearchstore.h include/KF5/AkonadiSearch/Xapian/xapiantermgenerator.h include/KF5/AkonadiSearch/akonadi_search_version.h include/KF5/AkonadiSearch/core/query.h include/KF5/AkonadiSearch/core/resultiterator.h include/KF5/AkonadiSearch/core/searchstore.h include/KF5/AkonadiSearch/core/term.h include/KF5/AkonadiSearch/search_core_export.h lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfig.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchConfigVersion.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5AkonadiSearch/KF5AkonadiSearchTargets.cmake lib/libKF5AkonadiSearchCore.so lib/libKF5AkonadiSearchCore.so.5 lib/libKF5AkonadiSearchCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchDebug.so lib/libKF5AkonadiSearchDebug.so.5 lib/libKF5AkonadiSearchDebug.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchPIM.so lib/libKF5AkonadiSearchPIM.so.5 lib/libKF5AkonadiSearchPIM.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5AkonadiSearchXapian.so lib/libKF5AkonadiSearchXapian.so.5 lib/libKF5AkonadiSearchXapian.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_PLUGINDIR%%/kf5/krunner/kcms/kcm_krunner_pimcontacts.so %%QT_PLUGINDIR%%/kf5/krunner/krunner_pimcontacts.so %%QT_PLUGINDIR%%/pim5/akonadi/akonadi_search_plugin.so %%QT_PLUGINDIR%%/pim5/akonadi/calendarsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/contactsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/emailsearchstore.so %%QT_PLUGINDIR%%/pim5/akonadi/notesearchstore.so share/akonadi/agents/akonadiindexingagent.desktop share/locale/ar/LC_MESSAGES/akonadi_search.mo share/locale/az/LC_MESSAGES/akonadi_search.mo share/locale/bg/LC_MESSAGES/akonadi_search.mo share/locale/ca/LC_MESSAGES/akonadi_search.mo share/locale/ca@valencia/LC_MESSAGES/akonadi_search.mo share/locale/cs/LC_MESSAGES/akonadi_search.mo share/locale/da/LC_MESSAGES/akonadi_search.mo share/locale/de/LC_MESSAGES/akonadi_search.mo share/locale/el/LC_MESSAGES/akonadi_search.mo share/locale/en_GB/LC_MESSAGES/akonadi_search.mo share/locale/es/LC_MESSAGES/akonadi_search.mo share/locale/et/LC_MESSAGES/akonadi_search.mo share/locale/eu/LC_MESSAGES/akonadi_search.mo share/locale/fi/LC_MESSAGES/akonadi_search.mo share/locale/fr/LC_MESSAGES/akonadi_search.mo share/locale/gl/LC_MESSAGES/akonadi_search.mo share/locale/hi/LC_MESSAGES/akonadi_search.mo +share/locale/hsb/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/ka/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/sr@ijekavian/LC_MESSAGES/akonadi_search.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akonadi_search.mo +share/locale/sr@latin/LC_MESSAGES/akonadi_search.mo share/locale/sv/LC_MESSAGES/akonadi_search.mo share/locale/tr/LC_MESSAGES/akonadi_search.mo share/locale/uk/LC_MESSAGES/akonadi_search.mo share/locale/zh_CN/LC_MESSAGES/akonadi_search.mo share/locale/zh_TW/LC_MESSAGES/akonadi_search.mo share/qlogging-categories5/akonadi-search.categories share/qlogging-categories5/akonadi-search.renamecategories diff --git a/net/calendarsupport/distinfo b/net/calendarsupport/distinfo index 28b4baebf672..453d08f0aeee 100644 --- a/net/calendarsupport/distinfo +++ b/net/calendarsupport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539670 -SHA256 (KDE/release-service/22.08.3/calendarsupport-22.08.3.tar.xz) = 1dd898ec8709b63cd27383bbf3ae0ae7b1272b4cdaab726c914a77f0cad2bed2 -SIZE (KDE/release-service/22.08.3/calendarsupport-22.08.3.tar.xz) = 751196 +TIMESTAMP = 1670513330 +SHA256 (KDE/release-service/22.12.0/calendarsupport-22.12.0.tar.xz) = f8a497e37cc963d9417eeb7e172ab892fd8d83a8a02b294c4890cbd1b9de4f97 +SIZE (KDE/release-service/22.12.0/calendarsupport-22.12.0.tar.xz) = 985208 diff --git a/net/calendarsupport/pkg-plist b/net/calendarsupport/pkg-plist index 79224d959a7d..409f610cf52a 100644 --- a/net/calendarsupport/pkg-plist +++ b/net/calendarsupport/pkg-plist @@ -1,120 +1,139 @@ include/KF5/CalendarSupport/CalendarSupport/ArchiveDialog include/KF5/CalendarSupport/CalendarSupport/CalPrintDefaultPlugins include/KF5/CalendarSupport/CalendarSupport/CalPrintPluginBase include/KF5/CalendarSupport/CalendarSupport/CalPrinter include/KF5/CalendarSupport/CalendarSupport/CalendarSingleton include/KF5/CalendarSupport/CalendarSupport/CategoryHierarchyReader include/KF5/CalendarSupport/CalendarSupport/CellItem include/KF5/CalendarSupport/CalendarSupport/CollectionSelection include/KF5/CalendarSupport/CalendarSupport/EventArchiver include/KF5/CalendarSupport/CalendarSupport/FreeBusyCalendar include/KF5/CalendarSupport/CalendarSupport/FreeBusyItem include/KF5/CalendarSupport/CalendarSupport/FreeBusyItemModel include/KF5/CalendarSupport/CalendarSupport/FreePeriodModel include/KF5/CalendarSupport/CalendarSupport/IdentityManager include/KF5/CalendarSupport/CalendarSupport/IncidenceViewer include/KF5/CalendarSupport/CalendarSupport/KCalPrefs include/KF5/CalendarSupport/CalendarSupport/MessageWidget include/KF5/CalendarSupport/CalendarSupport/NoteEditDialog include/KF5/CalendarSupport/CalendarSupport/PrintPlugin include/KF5/CalendarSupport/CalendarSupport/UriHandler include/KF5/CalendarSupport/CalendarSupport/Utils include/KF5/CalendarSupport/calendarsupport/archivedialog.h include/KF5/CalendarSupport/calendarsupport/calendarsingleton.h include/KF5/CalendarSupport/calendarsupport/calendarsupport_export.h include/KF5/CalendarSupport/calendarsupport/calprintdefaultplugins.h include/KF5/CalendarSupport/calendarsupport/calprinter.h include/KF5/CalendarSupport/calendarsupport/calprintpluginbase.h include/KF5/CalendarSupport/calendarsupport/categoryhierarchyreader.h include/KF5/CalendarSupport/calendarsupport/cellitem.h include/KF5/CalendarSupport/calendarsupport/collectionselection.h include/KF5/CalendarSupport/calendarsupport/eventarchiver.h include/KF5/CalendarSupport/calendarsupport/freebusycalendar.h include/KF5/CalendarSupport/calendarsupport/freebusyitem.h include/KF5/CalendarSupport/calendarsupport/freebusyitemmodel.h include/KF5/CalendarSupport/calendarsupport/freeperiodmodel.h include/KF5/CalendarSupport/calendarsupport/identitymanager.h include/KF5/CalendarSupport/calendarsupport/incidenceviewer.h include/KF5/CalendarSupport/calendarsupport/kcalprefs.h include/KF5/CalendarSupport/calendarsupport/kcalprefs_base.h include/KF5/CalendarSupport/calendarsupport/messagewidget.h include/KF5/CalendarSupport/calendarsupport/noteeditdialog.h include/KF5/CalendarSupport/calendarsupport/printplugin.h include/KF5/CalendarSupport/calendarsupport/ui_calprintdayconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintincidenceconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintmonthconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprinttodoconfig_base.h include/KF5/CalendarSupport/calendarsupport/ui_calprintweekconfig_base.h include/KF5/CalendarSupport/calendarsupport/urihandler.h include/KF5/CalendarSupport/calendarsupport/utils.h include/KF5/CalendarSupport/calendarsupport_version.h lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfig.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportConfigVersion.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarSupport/KF5CalendarSupportTargets.cmake lib/libKF5CalendarSupport.so lib/libKF5CalendarSupport.so.5 lib/libKF5CalendarSupport.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_CalendarSupport.pri +share/locale/af/LC_MESSAGES/calendarsupport.mo 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/br/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/cy/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/fy/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/hne/LC_MESSAGES/calendarsupport.mo share/locale/hr/LC_MESSAGES/calendarsupport.mo +share/locale/hsb/LC_MESSAGES/calendarsupport.mo share/locale/hu/LC_MESSAGES/calendarsupport.mo share/locale/ia/LC_MESSAGES/calendarsupport.mo share/locale/id/LC_MESSAGES/calendarsupport.mo share/locale/is/LC_MESSAGES/calendarsupport.mo share/locale/it/LC_MESSAGES/calendarsupport.mo share/locale/ja/LC_MESSAGES/calendarsupport.mo +share/locale/ka/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/mai/LC_MESSAGES/calendarsupport.mo +share/locale/mk/LC_MESSAGES/calendarsupport.mo share/locale/mr/LC_MESSAGES/calendarsupport.mo +share/locale/ms/LC_MESSAGES/calendarsupport.mo share/locale/nb/LC_MESSAGES/calendarsupport.mo share/locale/nds/LC_MESSAGES/calendarsupport.mo +share/locale/ne/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/si/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/sr@ijekavian/LC_MESSAGES/calendarsupport.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/calendarsupport.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/calendarsupport.mo +share/locale/uz@cyrillic/LC_MESSAGES/calendarsupport.mo share/locale/wa/LC_MESSAGES/calendarsupport.mo +share/locale/xh/LC_MESSAGES/calendarsupport.mo share/locale/zh_CN/LC_MESSAGES/calendarsupport.mo share/locale/zh_TW/LC_MESSAGES/calendarsupport.mo share/qlogging-categories5/calendarsupport.categories share/qlogging-categories5/calendarsupport.renamecategories diff --git a/net/eventviews/distinfo b/net/eventviews/distinfo index a914d9831522..c674e09bf68b 100644 --- a/net/eventviews/distinfo +++ b/net/eventviews/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539668 -SHA256 (KDE/release-service/22.08.3/eventviews-22.08.3.tar.xz) = 8719a8bc1a8af30742c2efed56c264763bb8350d95965f2797aaa9a5c87b6992 -SIZE (KDE/release-service/22.08.3/eventviews-22.08.3.tar.xz) = 461784 +TIMESTAMP = 1670513329 +SHA256 (KDE/release-service/22.12.0/eventviews-22.12.0.tar.xz) = a6d5ea100486c35946e235835e258aa9349702ec7145b6fe2969f32098a65068 +SIZE (KDE/release-service/22.12.0/eventviews-22.12.0.tar.xz) = 462620 diff --git a/net/eventviews/pkg-plist b/net/eventviews/pkg-plist index 511a3c4a0f4b..039876fcb065 100644 --- a/net/eventviews/pkg-plist +++ b/net/eventviews/pkg-plist @@ -1,93 +1,93 @@ include/KF5/EventViews/EventViews/AgendaView include/KF5/EventViews/EventViews/CalendarDecoration include/KF5/EventViews/EventViews/ConfigDialogInterface include/KF5/EventViews/EventViews/EventView include/KF5/EventViews/EventViews/Helper include/KF5/EventViews/EventViews/JournalView include/KF5/EventViews/EventViews/ListView include/KF5/EventViews/EventViews/MonthView include/KF5/EventViews/EventViews/MultiAgendaView include/KF5/EventViews/EventViews/Prefs include/KF5/EventViews/EventViews/TimeLineView include/KF5/EventViews/EventViews/TodoModel include/KF5/EventViews/EventViews/TodoView include/KF5/EventViews/EventViews/ViewCalendar include/KF5/EventViews/EventViews/WhatsNextView include/KF5/EventViews/EventViews/eventview.h include/KF5/EventViews/EventViews/helper.h include/KF5/EventViews/EventViews/prefs.h include/KF5/EventViews/eventviews/EventView include/KF5/EventViews/eventviews/Helper include/KF5/EventViews/eventviews/Prefs include/KF5/EventViews/eventviews/agendaview.h include/KF5/EventViews/eventviews/calendardecoration.h include/KF5/EventViews/eventviews/configdialoginterface.h include/KF5/EventViews/eventviews/eventview.h include/KF5/EventViews/eventviews/eventviews_export.h include/KF5/EventViews/eventviews/helper.h include/KF5/EventViews/eventviews/journalview.h include/KF5/EventViews/eventviews/listview.h include/KF5/EventViews/eventviews/monthview.h include/KF5/EventViews/eventviews/multiagendaview.h include/KF5/EventViews/eventviews/prefs.h include/KF5/EventViews/eventviews/timelineview.h include/KF5/EventViews/eventviews/todomodel.h include/KF5/EventViews/eventviews/todoview.h include/KF5/EventViews/eventviews/viewcalendar.h include/KF5/EventViews/eventviews/whatsnextview.h include/KF5/EventViews/eventviews_version.h lib/cmake/KF5EventViews/KF5EventViewsConfig.cmake lib/cmake/KF5EventViews/KF5EventViewsConfigVersion.cmake lib/cmake/KF5EventViews/KF5EventViewsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5EventViews/KF5EventViewsTargets.cmake lib/libKF5EventViews.so lib/libKF5EventViews.so.5 lib/libKF5EventViews.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_EventViews.pri -share/kservicetypes5/calendardecoration.desktop share/locale/ar/LC_MESSAGES/libeventviews.mo share/locale/bg/LC_MESSAGES/libeventviews.mo share/locale/bs/LC_MESSAGES/libeventviews.mo share/locale/ca/LC_MESSAGES/libeventviews.mo share/locale/ca@valencia/LC_MESSAGES/libeventviews.mo share/locale/cs/LC_MESSAGES/libeventviews.mo share/locale/da/LC_MESSAGES/libeventviews.mo share/locale/de/LC_MESSAGES/libeventviews.mo share/locale/el/LC_MESSAGES/libeventviews.mo share/locale/en_GB/LC_MESSAGES/libeventviews.mo share/locale/eo/LC_MESSAGES/libeventviews.mo share/locale/es/LC_MESSAGES/libeventviews.mo share/locale/et/LC_MESSAGES/libeventviews.mo share/locale/eu/LC_MESSAGES/libeventviews.mo share/locale/fi/LC_MESSAGES/libeventviews.mo share/locale/fr/LC_MESSAGES/libeventviews.mo share/locale/ga/LC_MESSAGES/libeventviews.mo share/locale/gl/LC_MESSAGES/libeventviews.mo share/locale/hu/LC_MESSAGES/libeventviews.mo share/locale/ia/LC_MESSAGES/libeventviews.mo share/locale/it/LC_MESSAGES/libeventviews.mo share/locale/ja/LC_MESSAGES/libeventviews.mo +share/locale/ka/LC_MESSAGES/libeventviews.mo share/locale/kk/LC_MESSAGES/libeventviews.mo share/locale/ko/LC_MESSAGES/libeventviews.mo share/locale/lt/LC_MESSAGES/libeventviews.mo share/locale/mr/LC_MESSAGES/libeventviews.mo share/locale/nb/LC_MESSAGES/libeventviews.mo share/locale/nds/LC_MESSAGES/libeventviews.mo share/locale/nl/LC_MESSAGES/libeventviews.mo share/locale/pa/LC_MESSAGES/libeventviews.mo share/locale/pl/LC_MESSAGES/libeventviews.mo share/locale/pt/LC_MESSAGES/libeventviews.mo share/locale/pt_BR/LC_MESSAGES/libeventviews.mo share/locale/ro/LC_MESSAGES/libeventviews.mo share/locale/ru/LC_MESSAGES/libeventviews.mo share/locale/sk/LC_MESSAGES/libeventviews.mo share/locale/sl/LC_MESSAGES/libeventviews.mo share/locale/sv/LC_MESSAGES/libeventviews.mo share/locale/ta/LC_MESSAGES/libeventviews.mo share/locale/tr/LC_MESSAGES/libeventviews.mo share/locale/ug/LC_MESSAGES/libeventviews.mo share/locale/uk/LC_MESSAGES/libeventviews.mo share/locale/zh_CN/LC_MESSAGES/libeventviews.mo share/locale/zh_TW/LC_MESSAGES/libeventviews.mo share/qlogging-categories5/eventviews.categories share/qlogging-categories5/eventviews.renamecategories diff --git a/net/incidenceeditor/distinfo b/net/incidenceeditor/distinfo index 19db5622e1d6..78433e85a5ce 100644 --- a/net/incidenceeditor/distinfo +++ b/net/incidenceeditor/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539643 -SHA256 (KDE/release-service/22.08.3/incidenceeditor-22.08.3.tar.xz) = c3ee62dfc0a0dbb810ada4cf27f8dab0a894fab27fab51dbf74b634d4eb9ede4 -SIZE (KDE/release-service/22.08.3/incidenceeditor-22.08.3.tar.xz) = 560456 +TIMESTAMP = 1670513299 +SHA256 (KDE/release-service/22.12.0/incidenceeditor-22.12.0.tar.xz) = 2805d8f2d91a83cc6339c909b28e7323145de6f82c20570dcc27fc0693714734 +SIZE (KDE/release-service/22.12.0/incidenceeditor-22.12.0.tar.xz) = 564876 diff --git a/net/incidenceeditor/pkg-plist b/net/incidenceeditor/pkg-plist index bf449444831d..bb504ec1a1ea 100644 --- a/net/incidenceeditor/pkg-plist +++ b/net/incidenceeditor/pkg-plist @@ -1,72 +1,74 @@ include/KF5/IncidenceEditor/IncidenceEditor/EditorItemManager include/KF5/IncidenceEditor/IncidenceEditor/GroupwareUiDelegate include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDefaults include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDialog include/KF5/IncidenceEditor/IncidenceEditor/IncidenceDialogFactory include/KF5/IncidenceEditor/IncidenceEditor/IncidenceEditor-Ng include/KF5/IncidenceEditor/IncidenceEditor/IncidenceEditorSettings include/KF5/IncidenceEditor/IncidenceEditor/IndividualMailComponentFactory include/KF5/IncidenceEditor/incidenceeditor/editoritemmanager.h include/KF5/IncidenceEditor/incidenceeditor/globalsettings_incidenceeditor.h include/KF5/IncidenceEditor/incidenceeditor/groupwareuidelegate.h include/KF5/IncidenceEditor/incidenceeditor/incidencedefaults.h include/KF5/IncidenceEditor/incidenceeditor/incidencedialog.h include/KF5/IncidenceEditor/incidenceeditor/incidencedialogfactory.h include/KF5/IncidenceEditor/incidenceeditor/incidenceeditor-ng.h include/KF5/IncidenceEditor/incidenceeditor/incidenceeditor_export.h include/KF5/IncidenceEditor/incidenceeditor/incidenceeditorsettings.h include/KF5/IncidenceEditor/incidenceeditor/individualmailcomponentfactory.h include/KF5/IncidenceEditor/incidenceeditor_version.h lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfig.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorConfigVersion.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5IncidenceEditor/KF5IncidenceEditorTargets.cmake lib/libKF5IncidenceEditor.so lib/libKF5IncidenceEditor.so.5 lib/libKF5IncidenceEditor.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_IncidenceEditor.pri share/locale/ar/LC_MESSAGES/libincidenceeditors.mo share/locale/bg/LC_MESSAGES/libincidenceeditors.mo share/locale/bs/LC_MESSAGES/libincidenceeditors.mo share/locale/ca/LC_MESSAGES/libincidenceeditors.mo share/locale/ca@valencia/LC_MESSAGES/libincidenceeditors.mo share/locale/cs/LC_MESSAGES/libincidenceeditors.mo share/locale/da/LC_MESSAGES/libincidenceeditors.mo share/locale/de/LC_MESSAGES/libincidenceeditors.mo share/locale/el/LC_MESSAGES/libincidenceeditors.mo share/locale/en_GB/LC_MESSAGES/libincidenceeditors.mo share/locale/eo/LC_MESSAGES/libincidenceeditors.mo share/locale/es/LC_MESSAGES/libincidenceeditors.mo share/locale/et/LC_MESSAGES/libincidenceeditors.mo share/locale/fi/LC_MESSAGES/libincidenceeditors.mo share/locale/fr/LC_MESSAGES/libincidenceeditors.mo share/locale/ga/LC_MESSAGES/libincidenceeditors.mo share/locale/gl/LC_MESSAGES/libincidenceeditors.mo share/locale/hu/LC_MESSAGES/libincidenceeditors.mo share/locale/ia/LC_MESSAGES/libincidenceeditors.mo share/locale/it/LC_MESSAGES/libincidenceeditors.mo share/locale/ja/LC_MESSAGES/libincidenceeditors.mo +share/locale/ka/LC_MESSAGES/libincidenceeditors.mo share/locale/kk/LC_MESSAGES/libincidenceeditors.mo share/locale/ko/LC_MESSAGES/libincidenceeditors.mo share/locale/lt/LC_MESSAGES/libincidenceeditors.mo +share/locale/mai/LC_MESSAGES/libincidenceeditors.mo share/locale/mr/LC_MESSAGES/libincidenceeditors.mo share/locale/nb/LC_MESSAGES/libincidenceeditors.mo share/locale/nds/LC_MESSAGES/libincidenceeditors.mo share/locale/nl/LC_MESSAGES/libincidenceeditors.mo share/locale/pa/LC_MESSAGES/libincidenceeditors.mo share/locale/pl/LC_MESSAGES/libincidenceeditors.mo share/locale/pt/LC_MESSAGES/libincidenceeditors.mo share/locale/pt_BR/LC_MESSAGES/libincidenceeditors.mo share/locale/ro/LC_MESSAGES/libincidenceeditors.mo share/locale/ru/LC_MESSAGES/libincidenceeditors.mo share/locale/sk/LC_MESSAGES/libincidenceeditors.mo share/locale/sl/LC_MESSAGES/libincidenceeditors.mo share/locale/sv/LC_MESSAGES/libincidenceeditors.mo share/locale/ta/LC_MESSAGES/libincidenceeditors.mo share/locale/tr/LC_MESSAGES/libincidenceeditors.mo share/locale/ug/LC_MESSAGES/libincidenceeditors.mo share/locale/uk/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_CN/LC_MESSAGES/libincidenceeditors.mo share/locale/zh_TW/LC_MESSAGES/libincidenceeditors.mo share/qlogging-categories5/incidenceeditor.categories share/qlogging-categories5/incidenceeditor.renamecategories diff --git a/net/kcalutils/distinfo b/net/kcalutils/distinfo index 5470c1ad9455..ff666979cf5e 100644 --- a/net/kcalutils/distinfo +++ b/net/kcalutils/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539650 -SHA256 (KDE/release-service/22.08.3/kcalutils-22.08.3.tar.xz) = 9515c3573ded296dc1e9b5c788a518276024ef006553ae9a5329b761377bbd56 -SIZE (KDE/release-service/22.08.3/kcalutils-22.08.3.tar.xz) = 348416 +TIMESTAMP = 1670513306 +SHA256 (KDE/release-service/22.12.0/kcalutils-22.12.0.tar.xz) = 2c000a29da9da0b01c6b339d053e33286c12ed8ce3e9f60a1686e616507a43f9 +SIZE (KDE/release-service/22.12.0/kcalutils-22.12.0.tar.xz) = 357700 diff --git a/net/kcalutils/pkg-plist b/net/kcalutils/pkg-plist index b29272dd5d2f..5a7053d060b5 100644 --- a/net/kcalutils/pkg-plist +++ b/net/kcalutils/pkg-plist @@ -1,78 +1,83 @@ include/KF5/KCalUtils/KCalUtils/DndFactory include/KF5/KCalUtils/KCalUtils/HTMLExportSettings include/KF5/KCalUtils/KCalUtils/HtmlExport include/KF5/KCalUtils/KCalUtils/ICalDrag include/KF5/KCalUtils/KCalUtils/IncidenceFormatter include/KF5/KCalUtils/KCalUtils/RecurrenceActions include/KF5/KCalUtils/KCalUtils/Stringify include/KF5/KCalUtils/KCalUtils/VCalDrag include/KF5/KCalUtils/kcalutils/dndfactory.h include/KF5/KCalUtils/kcalutils/htmlexport.h include/KF5/KCalUtils/kcalutils/htmlexportsettings.h include/KF5/KCalUtils/kcalutils/icaldrag.h include/KF5/KCalUtils/kcalutils/incidenceformatter.h include/KF5/KCalUtils/kcalutils/kcalutils_export.h include/KF5/KCalUtils/kcalutils/recurrenceactions.h include/KF5/KCalUtils/kcalutils/stringify.h include/KF5/KCalUtils/kcalutils/vcaldrag.h include/KF5/KCalUtils/kcalutils_version.h lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfig.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsConfigVersion.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5CalendarUtils/KF5CalendarUtilsTargets.cmake lib/grantlee/%%GRANTLEE_VERSION_SHORT%%/kcalendar_grantlee_plugin.so lib/libKF5CalendarUtils.so lib/libKF5CalendarUtils.so.5 lib/libKF5CalendarUtils.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KCalUtils.pri share/locale/ar/LC_MESSAGES/libkcalutils5.mo share/locale/az/LC_MESSAGES/libkcalutils5.mo share/locale/bg/LC_MESSAGES/libkcalutils5.mo share/locale/bs/LC_MESSAGES/libkcalutils5.mo share/locale/ca/LC_MESSAGES/libkcalutils5.mo share/locale/ca@valencia/LC_MESSAGES/libkcalutils5.mo share/locale/cs/LC_MESSAGES/libkcalutils5.mo share/locale/da/LC_MESSAGES/libkcalutils5.mo share/locale/de/LC_MESSAGES/libkcalutils5.mo share/locale/el/LC_MESSAGES/libkcalutils5.mo share/locale/en_GB/LC_MESSAGES/libkcalutils5.mo share/locale/es/LC_MESSAGES/libkcalutils5.mo share/locale/et/LC_MESSAGES/libkcalutils5.mo share/locale/eu/LC_MESSAGES/libkcalutils5.mo share/locale/fi/LC_MESSAGES/libkcalutils5.mo share/locale/fr/LC_MESSAGES/libkcalutils5.mo share/locale/ga/LC_MESSAGES/libkcalutils5.mo share/locale/gl/LC_MESSAGES/libkcalutils5.mo share/locale/hr/LC_MESSAGES/libkcalutils5.mo share/locale/hu/LC_MESSAGES/libkcalutils5.mo share/locale/ia/LC_MESSAGES/libkcalutils5.mo share/locale/it/LC_MESSAGES/libkcalutils5.mo share/locale/ja/LC_MESSAGES/libkcalutils5.mo +share/locale/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/libkcalutils5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkcalutils5.mo +share/locale/sr@latin/LC_MESSAGES/libkcalutils5.mo share/locale/sv/LC_MESSAGES/libkcalutils5.mo share/locale/ta/LC_MESSAGES/libkcalutils5.mo share/locale/tr/LC_MESSAGES/libkcalutils5.mo share/locale/ug/LC_MESSAGES/libkcalutils5.mo share/locale/uk/LC_MESSAGES/libkcalutils5.mo share/locale/zh_CN/LC_MESSAGES/libkcalutils5.mo share/locale/zh_TW/LC_MESSAGES/libkcalutils5.mo share/qlogging-categories5/kcalutils.categories share/qlogging-categories5/kcalutils.renamecategories diff --git a/net/kdenetwork-filesharing/distinfo b/net/kdenetwork-filesharing/distinfo index 8a3e8ef8766d..b5810abc3efc 100644 --- a/net/kdenetwork-filesharing/distinfo +++ b/net/kdenetwork-filesharing/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539673 -SHA256 (KDE/release-service/22.08.3/kdenetwork-filesharing-22.08.3.tar.xz) = 410921ed792f9c4f46ea687485342efc7cb1debd72617674901b46a7dbc4a80d -SIZE (KDE/release-service/22.08.3/kdenetwork-filesharing-22.08.3.tar.xz) = 379024 +TIMESTAMP = 1670513334 +SHA256 (KDE/release-service/22.12.0/kdenetwork-filesharing-22.12.0.tar.xz) = 5fee93f02aad06c01a3eb8d88750903842a4ea8628fcb9a324bd0ec2b0f4cc61 +SIZE (KDE/release-service/22.12.0/kdenetwork-filesharing-22.12.0.tar.xz) = 459092 diff --git a/net/kdenetwork-filesharing/pkg-plist b/net/kdenetwork-filesharing/pkg-plist index c09c94b60d23..1a6ce88f688f 100644 --- a/net/kdenetwork-filesharing/pkg-plist +++ b/net/kdenetwork-filesharing/pkg-plist @@ -1,66 +1,81 @@ lib/libexec/kauth/authhelper +%%QT_PLUGINDIR%%/kf5/propertiesdialog/SambaAcl.so %%QT_PLUGINDIR%%/kf5/propertiesdialog/sambausershareplugin.so share/dbus-1/system-services/org.kde.filesharing.samba.service share/dbus-1/system.d/org.kde.filesharing.samba.conf 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/br/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/cy/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/hne/LC_MESSAGES/kfileshare.mo share/locale/hr/LC_MESSAGES/kfileshare.mo +share/locale/hsb/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/ka/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/mai/LC_MESSAGES/kfileshare.mo +share/locale/mk/LC_MESSAGES/kfileshare.mo share/locale/mr/LC_MESSAGES/kfileshare.mo +share/locale/ms/LC_MESSAGES/kfileshare.mo share/locale/nb/LC_MESSAGES/kfileshare.mo share/locale/nds/LC_MESSAGES/kfileshare.mo +share/locale/ne/LC_MESSAGES/kfileshare.mo share/locale/nl/LC_MESSAGES/kfileshare.mo share/locale/nn/LC_MESSAGES/kfileshare.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kfileshare.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfileshare.mo +share/locale/sr@latin/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/th/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_HK/LC_MESSAGES/kfileshare.mo share/locale/zh_TW/LC_MESSAGES/kfileshare.mo share/metainfo/org.kde.kdenetwork-filesharing.metainfo.xml share/polkit-1/actions/org.kde.filesharing.samba.policy diff --git a/net/kget/distinfo b/net/kget/distinfo index 302718bf034b..f71e80af7fec 100644 --- a/net/kget/distinfo +++ b/net/kget/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539651 -SHA256 (KDE/release-service/22.08.3/kget-22.08.3.tar.xz) = d7d20921095669aecad3f4080a9812902a4c8806d24a006d297989abfaee41ac -SIZE (KDE/release-service/22.08.3/kget-22.08.3.tar.xz) = 5444152 +TIMESTAMP = 1670513309 +SHA256 (KDE/release-service/22.12.0/kget-22.12.0.tar.xz) = f52a80d3cd04d46122270e9638cea0b6b18129595bd7f2e16fdaa2acabc47d4d +SIZE (KDE/release-service/22.12.0/kget-22.12.0.tar.xz) = 5559420 diff --git a/net/kget/pkg-plist b/net/kget/pkg-plist index 5550ebbe17fc..8fe469ec4954 100644 --- a/net/kget/pkg-plist +++ b/net/kget/pkg-plist @@ -1,94 +1,114 @@ bin/kget lib/libkgetcore.so lib/libkgetcore.so.5 lib/libkgetcore.so.5.0.0 %%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_kcms/kcm_kget_bittorrentfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_checksumsearchfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_metalinkfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_mirrorsearchfactory.so %%QT_PLUGINDIR%%/kget_kcms/kcm_kget_multisegkiofactory.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/icons/hicolor/128x128/apps/kget.png share/icons/hicolor/16x16/apps/kget.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/kget.png share/icons/hicolor/32x32/apps/kget.png share/icons/hicolor/48x48/apps/kget.png share/icons/hicolor/64x64/apps/kget.png %%DATADIR%%/pics/kget_splash.png share/kio/servicemenus/kget_download.desktop share/knotifications5/kget.notifyrc share/kservicetypes5/kget_plugin.desktop share/kxmlgui5/kget/kgetui.rc +share/locale/af/LC_MESSAGES/kget.mo share/locale/ar/LC_MESSAGES/kget.mo share/locale/be/LC_MESSAGES/kget.mo share/locale/bg/LC_MESSAGES/kget.mo +share/locale/br/LC_MESSAGES/kget.mo share/locale/bs/LC_MESSAGES/kget.mo share/locale/ca/LC_MESSAGES/kget.mo share/locale/ca@valencia/LC_MESSAGES/kget.mo share/locale/cs/LC_MESSAGES/kget.mo +share/locale/cy/LC_MESSAGES/kget.mo share/locale/da/LC_MESSAGES/kget.mo share/locale/de/LC_MESSAGES/kget.mo share/locale/el/LC_MESSAGES/kget.mo share/locale/en_GB/LC_MESSAGES/kget.mo share/locale/eo/LC_MESSAGES/kget.mo share/locale/es/LC_MESSAGES/kget.mo share/locale/et/LC_MESSAGES/kget.mo share/locale/eu/LC_MESSAGES/kget.mo share/locale/fa/LC_MESSAGES/kget.mo share/locale/fi/LC_MESSAGES/kget.mo share/locale/fr/LC_MESSAGES/kget.mo share/locale/ga/LC_MESSAGES/kget.mo share/locale/gl/LC_MESSAGES/kget.mo share/locale/he/LC_MESSAGES/kget.mo share/locale/hi/LC_MESSAGES/kget.mo +share/locale/hne/LC_MESSAGES/kget.mo share/locale/hr/LC_MESSAGES/kget.mo +share/locale/hsb/LC_MESSAGES/kget.mo share/locale/hu/LC_MESSAGES/kget.mo share/locale/ia/LC_MESSAGES/kget.mo share/locale/id/LC_MESSAGES/kget.mo share/locale/is/LC_MESSAGES/kget.mo share/locale/it/LC_MESSAGES/kget.mo share/locale/ja/LC_MESSAGES/kget.mo +share/locale/ka/LC_MESSAGES/kget.mo share/locale/kk/LC_MESSAGES/kget.mo share/locale/km/LC_MESSAGES/kget.mo share/locale/ko/LC_MESSAGES/kget.mo share/locale/lt/LC_MESSAGES/kget.mo share/locale/lv/LC_MESSAGES/kget.mo +share/locale/mai/LC_MESSAGES/kget.mo +share/locale/mk/LC_MESSAGES/kget.mo share/locale/mr/LC_MESSAGES/kget.mo +share/locale/ms/LC_MESSAGES/kget.mo share/locale/nb/LC_MESSAGES/kget.mo share/locale/nds/LC_MESSAGES/kget.mo +share/locale/ne/LC_MESSAGES/kget.mo share/locale/nl/LC_MESSAGES/kget.mo share/locale/nn/LC_MESSAGES/kget.mo +share/locale/oc/LC_MESSAGES/kget.mo share/locale/pa/LC_MESSAGES/kget.mo share/locale/pl/LC_MESSAGES/kget.mo share/locale/pt/LC_MESSAGES/kget.mo share/locale/pt_BR/LC_MESSAGES/kget.mo share/locale/ro/LC_MESSAGES/kget.mo share/locale/ru/LC_MESSAGES/kget.mo share/locale/se/LC_MESSAGES/kget.mo +share/locale/si/LC_MESSAGES/kget.mo share/locale/sk/LC_MESSAGES/kget.mo share/locale/sl/LC_MESSAGES/kget.mo share/locale/sq/LC_MESSAGES/kget.mo share/locale/sr/LC_MESSAGES/kget.mo +share/locale/sr@ijekavian/LC_MESSAGES/kget.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kget.mo +share/locale/sr@latin/LC_MESSAGES/kget.mo share/locale/sv/LC_MESSAGES/kget.mo share/locale/ta/LC_MESSAGES/kget.mo share/locale/tg/LC_MESSAGES/kget.mo +share/locale/th/LC_MESSAGES/kget.mo share/locale/tr/LC_MESSAGES/kget.mo share/locale/ug/LC_MESSAGES/kget.mo share/locale/uk/LC_MESSAGES/kget.mo +share/locale/uz/LC_MESSAGES/kget.mo +share/locale/uz@cyrillic/LC_MESSAGES/kget.mo share/locale/vi/LC_MESSAGES/kget.mo share/locale/wa/LC_MESSAGES/kget.mo +share/locale/xh/LC_MESSAGES/kget.mo share/locale/zh_CN/LC_MESSAGES/kget.mo +share/locale/zh_HK/LC_MESSAGES/kget.mo share/locale/zh_TW/LC_MESSAGES/kget.mo share/metainfo/org.kde.kget.appdata.xml share/qlogging-categories5/kget.categories diff --git a/net/kidentitymanagement/distinfo b/net/kidentitymanagement/distinfo index 1444a5210952..038f9c8083f4 100644 --- a/net/kidentitymanagement/distinfo +++ b/net/kidentitymanagement/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539675 -SHA256 (KDE/release-service/22.08.3/kidentitymanagement-22.08.3.tar.xz) = 5e3f9c7bd852ca7702063aedbb85eb55954333886505e9cea337eeb441fd0bd9 -SIZE (KDE/release-service/22.08.3/kidentitymanagement-22.08.3.tar.xz) = 159772 +TIMESTAMP = 1670513336 +SHA256 (KDE/release-service/22.12.0/kidentitymanagement-22.12.0.tar.xz) = 3539b5bd7eb8a4f769d869dc572301fea9473a014f453324e9ca7408e7e1e48e +SIZE (KDE/release-service/22.12.0/kidentitymanagement-22.12.0.tar.xz) = 162632 diff --git a/net/kidentitymanagement/pkg-plist b/net/kidentitymanagement/pkg-plist index d0728a373305..c3fb3928058f 100644 --- a/net/kidentitymanagement/pkg-plist +++ b/net/kidentitymanagement/pkg-plist @@ -1,81 +1,87 @@ include/KF5/KIdentityManagement/KIdentityManagement/Identity include/KF5/KIdentityManagement/KIdentityManagement/IdentityManager include/KF5/KIdentityManagement/KIdentityManagement/Signature include/KF5/KIdentityManagement/KIdentityManagement/Utils include/KF5/KIdentityManagement/kidentitymanagement/identity.h include/KF5/KIdentityManagement/kidentitymanagement/identitymanager.h include/KF5/KIdentityManagement/kidentitymanagement/kidentitymanagement_export.h include/KF5/KIdentityManagement/kidentitymanagement/signature.h include/KF5/KIdentityManagement/kidentitymanagement/utils.h include/KF5/KIdentityManagement/kidentitymanagement_version.h include/KF5/KIdentityManagementWidgets/KIdentityManagement/IdentityCombo include/KF5/KIdentityManagementWidgets/KIdentityManagement/SignatureConfigurator include/KF5/KIdentityManagementWidgets/kidentitymanagement/identitycombo.h include/KF5/KIdentityManagementWidgets/kidentitymanagement/kidentitymanagementwidgets_export.h include/KF5/KIdentityManagementWidgets/kidentitymanagement/signatureconfigurator.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%% lib/libKF5IdentityManagementWidgets.so lib/libKF5IdentityManagementWidgets.so.5 lib/libKF5IdentityManagementWidgets.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KIdentityManagement.pri %%QT_MKSPECDIR%%/modules/qt_KIdentityManagementWidgets.pri share/dbus-1/interfaces/kf5_org.kde.pim.IdentityManager.xml share/locale/ar/LC_MESSAGES/libkpimidentities5.mo share/locale/az/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/hne/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/ka/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/sr@ijekavian/LC_MESSAGES/libkpimidentities5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkpimidentities5.mo +share/locale/sr@latin/LC_MESSAGES/libkpimidentities5.mo share/locale/sv/LC_MESSAGES/libkpimidentities5.mo +share/locale/th/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 share/qlogging-categories5/kidentitymanagement.categories share/qlogging-categories5/kidentitymanagement.renamecategories diff --git a/net/kimap/distinfo b/net/kimap/distinfo index 8dd3a499588c..b92b4a846175 100644 --- a/net/kimap/distinfo +++ b/net/kimap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539654 -SHA256 (KDE/release-service/22.08.3/kimap-22.08.3.tar.xz) = 5fedd980f805f3db03c909edd753aead3a23fd2c65c04c99ca856ff34fd495ae -SIZE (KDE/release-service/22.08.3/kimap-22.08.3.tar.xz) = 130292 +TIMESTAMP = 1670513311 +SHA256 (KDE/release-service/22.12.0/kimap-22.12.0.tar.xz) = c4c7485bc847e689f01bacabb580d5d4c3eacde7fe43a1cd7c0558dff91e78c5 +SIZE (KDE/release-service/22.12.0/kimap-22.12.0.tar.xz) = 131864 diff --git a/net/kimap/pkg-plist b/net/kimap/pkg-plist index 257c4a66f9c4..c88048d2510b 100644 --- a/net/kimap/pkg-plist +++ b/net/kimap/pkg-plist @@ -1,184 +1,188 @@ 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/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/ar/LC_MESSAGES/libkimap5.mo 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/ka/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/sr@ijekavian/LC_MESSAGES/libkimap5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkimap5.mo +share/locale/sr@latin/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 share/qlogging-categories5/kimap.categories share/qlogging-categories5/kimap.renamecategories diff --git a/net/kio-gdrive/distinfo b/net/kio-gdrive/distinfo index cb0bf650524c..9460a2716f98 100644 --- a/net/kio-gdrive/distinfo +++ b/net/kio-gdrive/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539650 -SHA256 (KDE/release-service/22.08.3/kio-gdrive-22.08.3.tar.xz) = 2e2f862c5a3a340f0f18fed5de3c942095dfd3ee32a97a3666c61e7cf40db69d -SIZE (KDE/release-service/22.08.3/kio-gdrive-22.08.3.tar.xz) = 73508 +TIMESTAMP = 1670513307 +SHA256 (KDE/release-service/22.12.0/kio-gdrive-22.12.0.tar.xz) = dbfdc84e27cb45fc3ab44b4e58eaefedc81f5ba738072a449031f66ef179db69 +SIZE (KDE/release-service/22.12.0/kio-gdrive-22.12.0.tar.xz) = 77128 diff --git a/net/kio-gdrive/pkg-plist b/net/kio-gdrive/pkg-plist index e9daa9cf9e3b..7f21a5daf72b 100644 --- a/net/kio-gdrive/pkg-plist +++ b/net/kio-gdrive/pkg-plist @@ -1,48 +1,49 @@ %%QT_PLUGINDIR%%/kaccounts/daemonplugins/gdrive.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/gdrivecontextmenuaction.so %%QT_PLUGINDIR%%/kf5/kio/gdrive.so %%QT_PLUGINDIR%%/kf5/propertiesdialog/gdrivepropertiesplugin.so share/accounts/services/kde/google-drive.service share/knotifications5/gdrive.notifyrc share/locale/ar/LC_MESSAGES/kio5_gdrive.mo -share/locale/ast/LC_MESSAGES/kio5_gdrive.mo share/locale/az/LC_MESSAGES/kio5_gdrive.mo share/locale/ca/LC_MESSAGES/kio5_gdrive.mo share/locale/ca@valencia/LC_MESSAGES/kio5_gdrive.mo share/locale/cs/LC_MESSAGES/kio5_gdrive.mo share/locale/da/LC_MESSAGES/kio5_gdrive.mo share/locale/de/LC_MESSAGES/kio5_gdrive.mo share/locale/el/LC_MESSAGES/kio5_gdrive.mo share/locale/en_GB/LC_MESSAGES/kio5_gdrive.mo share/locale/es/LC_MESSAGES/kio5_gdrive.mo share/locale/et/LC_MESSAGES/kio5_gdrive.mo share/locale/eu/LC_MESSAGES/kio5_gdrive.mo share/locale/fi/LC_MESSAGES/kio5_gdrive.mo share/locale/fr/LC_MESSAGES/kio5_gdrive.mo share/locale/gl/LC_MESSAGES/kio5_gdrive.mo share/locale/he/LC_MESSAGES/kio5_gdrive.mo share/locale/hi/LC_MESSAGES/kio5_gdrive.mo share/locale/hu/LC_MESSAGES/kio5_gdrive.mo share/locale/ia/LC_MESSAGES/kio5_gdrive.mo share/locale/id/LC_MESSAGES/kio5_gdrive.mo +share/locale/ie/LC_MESSAGES/kio5_gdrive.mo share/locale/it/LC_MESSAGES/kio5_gdrive.mo share/locale/ja/LC_MESSAGES/kio5_gdrive.mo +share/locale/ka/LC_MESSAGES/kio5_gdrive.mo share/locale/ko/LC_MESSAGES/kio5_gdrive.mo share/locale/lt/LC_MESSAGES/kio5_gdrive.mo share/locale/nl/LC_MESSAGES/kio5_gdrive.mo share/locale/nn/LC_MESSAGES/kio5_gdrive.mo share/locale/pl/LC_MESSAGES/kio5_gdrive.mo share/locale/pt/LC_MESSAGES/kio5_gdrive.mo share/locale/pt_BR/LC_MESSAGES/kio5_gdrive.mo share/locale/ro/LC_MESSAGES/kio5_gdrive.mo share/locale/ru/LC_MESSAGES/kio5_gdrive.mo share/locale/sk/LC_MESSAGES/kio5_gdrive.mo share/locale/sl/LC_MESSAGES/kio5_gdrive.mo share/locale/sv/LC_MESSAGES/kio5_gdrive.mo share/locale/ta/LC_MESSAGES/kio5_gdrive.mo share/locale/tr/LC_MESSAGES/kio5_gdrive.mo share/locale/uk/LC_MESSAGES/kio5_gdrive.mo share/locale/zh_CN/LC_MESSAGES/kio5_gdrive.mo share/locale/zh_TW/LC_MESSAGES/kio5_gdrive.mo share/metainfo/org.kde.kio_gdrive.metainfo.xml share/remoteview/gdrive-network.desktop diff --git a/net/kio-zeroconf/distinfo b/net/kio-zeroconf/distinfo index d3d281813313..b379285998de 100644 --- a/net/kio-zeroconf/distinfo +++ b/net/kio-zeroconf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539656 -SHA256 (KDE/release-service/22.08.3/kio-zeroconf-22.08.3.tar.xz) = 57d7e28f2cdcb00630d046ec0cfc8ed8b0aabee89ba6aed6350f118f5d343493 -SIZE (KDE/release-service/22.08.3/kio-zeroconf-22.08.3.tar.xz) = 39516 +TIMESTAMP = 1670513314 +SHA256 (KDE/release-service/22.12.0/kio-zeroconf-22.12.0.tar.xz) = 4af36b2bb0222ef99a0fd2712d3eac79269e3bc77811a81e58408022a31e1518 +SIZE (KDE/release-service/22.12.0/kio-zeroconf-22.12.0.tar.xz) = 42568 diff --git a/net/kio-zeroconf/pkg-plist b/net/kio-zeroconf/pkg-plist index 19a8223bbc4a..868093c2fe3b 100644 --- a/net/kio-zeroconf/pkg-plist +++ b/net/kio-zeroconf/pkg-plist @@ -1,63 +1,78 @@ %%QT_PLUGINDIR%%/kf5/kded/dnssdwatcher.so %%QT_PLUGINDIR%%/kf5/kio/zeroconf.so share/dbus-1/interfaces/org.kde.kdnssd.xml 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/bn/LC_MESSAGES/kio5_zeroconf.mo +share/locale/br/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/cy/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/hne/LC_MESSAGES/kio5_zeroconf.mo share/locale/hr/LC_MESSAGES/kio5_zeroconf.mo +share/locale/hsb/LC_MESSAGES/kio5_zeroconf.mo share/locale/hu/LC_MESSAGES/kio5_zeroconf.mo share/locale/ia/LC_MESSAGES/kio5_zeroconf.mo share/locale/id/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/ka/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/mk/LC_MESSAGES/kio5_zeroconf.mo share/locale/ml/LC_MESSAGES/kio5_zeroconf.mo share/locale/mr/LC_MESSAGES/kio5_zeroconf.mo +share/locale/ms/LC_MESSAGES/kio5_zeroconf.mo share/locale/nb/LC_MESSAGES/kio5_zeroconf.mo share/locale/nds/LC_MESSAGES/kio5_zeroconf.mo +share/locale/ne/LC_MESSAGES/kio5_zeroconf.mo share/locale/nl/LC_MESSAGES/kio5_zeroconf.mo share/locale/nn/LC_MESSAGES/kio5_zeroconf.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kio5_zeroconf.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio5_zeroconf.mo +share/locale/sr@latin/LC_MESSAGES/kio5_zeroconf.mo share/locale/sv/LC_MESSAGES/kio5_zeroconf.mo share/locale/ta/LC_MESSAGES/kio5_zeroconf.mo +share/locale/th/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_HK/LC_MESSAGES/kio5_zeroconf.mo share/locale/zh_TW/LC_MESSAGES/kio5_zeroconf.mo share/metainfo/org.kde.kio_zeroconf.metainfo.xml share/remoteview/zeroconf.desktop diff --git a/net/kitinerary/distinfo b/net/kitinerary/distinfo index 1cfc7efc0271..fb863e83b63d 100644 --- a/net/kitinerary/distinfo +++ b/net/kitinerary/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539661 -SHA256 (KDE/release-service/22.08.3/kitinerary-22.08.3.tar.xz) = 2b9df58c8fc5697fdd044e4fc306c8ae1a4e82c737d3cc13eccd112e0dea6154 -SIZE (KDE/release-service/22.08.3/kitinerary-22.08.3.tar.xz) = 1698008 +TIMESTAMP = 1670513321 +SHA256 (KDE/release-service/22.12.0/kitinerary-22.12.0.tar.xz) = 8d2392f436a25c5573de6de44658e4c5f3eb51c240c45198a5696449b388b1ac +SIZE (KDE/release-service/22.12.0/kitinerary-22.12.0.tar.xz) = 1719224 diff --git a/net/kitinerary/pkg-plist b/net/kitinerary/pkg-plist index 8e174d54ab30..eab7c0dbc6ba 100644 --- a/net/kitinerary/pkg-plist +++ b/net/kitinerary/pkg-plist @@ -1,170 +1,175 @@ include/KPim/KItinerary/AbstractExtractor include/KPim/KItinerary/Action include/KPim/KItinerary/AlphaId include/KPim/KItinerary/BERElement include/KPim/KItinerary/BarcodeDecoder include/KPim/KItinerary/BoatTrip include/KPim/KItinerary/Brand include/KPim/KItinerary/BusTrip include/KPim/KItinerary/CalendarHandler include/KPim/KItinerary/CountryDb include/KPim/KItinerary/CreativeWork include/KPim/KItinerary/Datatypes include/KPim/KItinerary/DocumentUtil include/KPim/KItinerary/Event include/KPim/KItinerary/ExtractorCapabilities include/KPim/KItinerary/ExtractorDocumentNode include/KPim/KItinerary/ExtractorDocumentNodeFactory include/KPim/KItinerary/ExtractorDocumentProcessor include/KPim/KItinerary/ExtractorEngine include/KPim/KItinerary/ExtractorFilter include/KPim/KItinerary/ExtractorPostprocessor include/KPim/KItinerary/ExtractorRepository include/KPim/KItinerary/ExtractorResult include/KPim/KItinerary/ExtractorValidator include/KPim/KItinerary/File include/KPim/KItinerary/Flight include/KPim/KItinerary/HtmlDocument include/KPim/KItinerary/IataBcbp include/KPim/KItinerary/IataBcbpSections include/KPim/KItinerary/JsonLdDocument include/KPim/KItinerary/KnowledgeDb include/KPim/KItinerary/LocationUtil include/KPim/KItinerary/MergeUtil include/KPim/KItinerary/Organization include/KPim/KItinerary/PdfDocument include/KPim/KItinerary/PdfImage +include/KPim/KItinerary/PdfLink include/KPim/KItinerary/Person include/KPim/KItinerary/Place include/KPim/KItinerary/ProgramMembership include/KPim/KItinerary/Rct2Ticket include/KPim/KItinerary/RentalCar include/KPim/KItinerary/Reservation include/KPim/KItinerary/SSBTicketBase include/KPim/KItinerary/SSBv1Ticket include/KPim/KItinerary/SSBv2Ticket include/KPim/KItinerary/SSBv3Ticket include/KPim/KItinerary/ScriptExtractor include/KPim/KItinerary/SortUtil include/KPim/KItinerary/Taxi include/KPim/KItinerary/Ticket include/KPim/KItinerary/Token include/KPim/KItinerary/TrainTrip include/KPim/KItinerary/Uic9183Block include/KPim/KItinerary/Uic9183Header include/KPim/KItinerary/Uic9183Parser include/KPim/KItinerary/Uic9183TicketLayout include/KPim/KItinerary/Uic9183Utils include/KPim/KItinerary/VdvBasicTypes include/KPim/KItinerary/VdvTicket include/KPim/KItinerary/VdvTicketContent include/KPim/KItinerary/VdvTicketParser include/KPim/KItinerary/Vendor0080Block include/KPim/KItinerary/Vendor0080VUBlockData +include/KPim/KItinerary/Vendor1154Block include/KPim/KItinerary/Visit include/KPim/kitinerary/abstractextractor.h include/KPim/kitinerary/action.h include/KPim/kitinerary/alphaid.h include/KPim/kitinerary/barcodedecoder.h include/KPim/kitinerary/berelement.h include/KPim/kitinerary/boattrip.h include/KPim/kitinerary/brand.h include/KPim/kitinerary/bustrip.h include/KPim/kitinerary/calendarhandler.h include/KPim/kitinerary/countrydb.h include/KPim/kitinerary/creativework.h include/KPim/kitinerary/datatypes.h include/KPim/kitinerary/documentutil.h include/KPim/kitinerary/event.h include/KPim/kitinerary/extractorcapabilities.h include/KPim/kitinerary/extractordocumentnode.h include/KPim/kitinerary/extractordocumentnodefactory.h include/KPim/kitinerary/extractordocumentprocessor.h include/KPim/kitinerary/extractorengine.h include/KPim/kitinerary/extractorfilter.h include/KPim/kitinerary/extractorpostprocessor.h include/KPim/kitinerary/extractorrepository.h include/KPim/kitinerary/extractorresult.h include/KPim/kitinerary/extractorvalidator.h include/KPim/kitinerary/file.h include/KPim/kitinerary/flight.h include/KPim/kitinerary/htmldocument.h include/KPim/kitinerary/iatabcbp.h include/KPim/kitinerary/iatabcbpsections.h include/KPim/kitinerary/jsonlddocument.h include/KPim/kitinerary/kitinerary_export.h include/KPim/kitinerary/knowledgedb.h include/KPim/kitinerary/locationutil.h include/KPim/kitinerary/mergeutil.h include/KPim/kitinerary/organization.h include/KPim/kitinerary/pdfdocument.h include/KPim/kitinerary/pdfimage.h +include/KPim/kitinerary/pdflink.h include/KPim/kitinerary/person.h include/KPim/kitinerary/place.h include/KPim/kitinerary/programmembership.h include/KPim/kitinerary/rct2ticket.h include/KPim/kitinerary/rentalcar.h include/KPim/kitinerary/reservation.h include/KPim/kitinerary/scriptextractor.h include/KPim/kitinerary/sortutil.h include/KPim/kitinerary/ssbticketbase.h include/KPim/kitinerary/ssbv1ticket.h include/KPim/kitinerary/ssbv2ticket.h include/KPim/kitinerary/ssbv3ticket.h include/KPim/kitinerary/taxi.h include/KPim/kitinerary/ticket.h include/KPim/kitinerary/token.h include/KPim/kitinerary/traintrip.h include/KPim/kitinerary/uic9183block.h include/KPim/kitinerary/uic9183header.h include/KPim/kitinerary/uic9183parser.h include/KPim/kitinerary/uic9183ticketlayout.h include/KPim/kitinerary/uic9183utils.h include/KPim/kitinerary/vdvbasictypes.h include/KPim/kitinerary/vdvticket.h include/KPim/kitinerary/vdvticketcontent.h include/KPim/kitinerary/vdvticketparser.h include/KPim/kitinerary/vendor0080block.h include/KPim/kitinerary/vendor0080vublockdata.h +include/KPim/kitinerary/vendor1154block.h include/KPim/kitinerary/visit.h include/KPim/kitinerary_version.h lib/cmake/KPimItinerary/KPimItineraryConfig.cmake lib/cmake/KPimItinerary/KPimItineraryConfigVersion.cmake lib/cmake/KPimItinerary/KPimItineraryTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimItinerary/KPimItineraryTargets.cmake lib/libKPimItinerary.so lib/libKPimItinerary.so.5 lib/libKPimItinerary.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libexec/kf5/kitinerary-extractor share/locale/ar/LC_MESSAGES/kitinerary.mo share/locale/ca/LC_MESSAGES/kitinerary.mo share/locale/ca@valencia/LC_MESSAGES/kitinerary.mo share/locale/cs/LC_MESSAGES/kitinerary.mo share/locale/da/LC_MESSAGES/kitinerary.mo share/locale/de/LC_MESSAGES/kitinerary.mo share/locale/en_GB/LC_MESSAGES/kitinerary.mo share/locale/es/LC_MESSAGES/kitinerary.mo share/locale/et/LC_MESSAGES/kitinerary.mo share/locale/fi/LC_MESSAGES/kitinerary.mo share/locale/fr/LC_MESSAGES/kitinerary.mo share/locale/gl/LC_MESSAGES/kitinerary.mo share/locale/ia/LC_MESSAGES/kitinerary.mo share/locale/it/LC_MESSAGES/kitinerary.mo share/locale/ja/LC_MESSAGES/kitinerary.mo +share/locale/ka/LC_MESSAGES/kitinerary.mo share/locale/ko/LC_MESSAGES/kitinerary.mo share/locale/lt/LC_MESSAGES/kitinerary.mo share/locale/nl/LC_MESSAGES/kitinerary.mo share/locale/nn/LC_MESSAGES/kitinerary.mo share/locale/pl/LC_MESSAGES/kitinerary.mo share/locale/pt/LC_MESSAGES/kitinerary.mo share/locale/pt_BR/LC_MESSAGES/kitinerary.mo share/locale/ru/LC_MESSAGES/kitinerary.mo share/locale/sk/LC_MESSAGES/kitinerary.mo share/locale/sl/LC_MESSAGES/kitinerary.mo share/locale/sv/LC_MESSAGES/kitinerary.mo share/locale/tr/LC_MESSAGES/kitinerary.mo share/locale/uk/LC_MESSAGES/kitinerary.mo share/locale/zh_CN/LC_MESSAGES/kitinerary.mo share/locale/zh_TW/LC_MESSAGES/kitinerary.mo share/mime/packages/application-vnd-kde-itinerary.xml share/qlogging-categories5/org_kde_kitinerary.categories diff --git a/net/kldap/distinfo b/net/kldap/distinfo index d7ec4c1e5159..c338e42c3f93 100644 --- a/net/kldap/distinfo +++ b/net/kldap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539664 -SHA256 (KDE/release-service/22.08.3/kldap-22.08.3.tar.xz) = 74d0b24f4c1d93ab8c7c149242c54ea5322468ba29f2bdb8845d2fd96bba4d9a -SIZE (KDE/release-service/22.08.3/kldap-22.08.3.tar.xz) = 173848 +TIMESTAMP = 1670513324 +SHA256 (KDE/release-service/22.12.0/kldap-22.12.0.tar.xz) = 238cc67ffec52c34d195cd18292ee1aa84ad9de8e21d5170e957c26cc7b46fbd +SIZE (KDE/release-service/22.12.0/kldap-22.12.0.tar.xz) = 181520 diff --git a/net/kldap/pkg-plist b/net/kldap/pkg-plist index 033d1087f236..08e9f60fe59c 100644 --- a/net/kldap/pkg-plist +++ b/net/kldap/pkg-plist @@ -1,159 +1,183 @@ include/KF5/KLDAP/KLDAP/AddHostDialog include/KF5/KLDAP/KLDAP/Ber include/KF5/KLDAP/KLDAP/LdapClient include/KF5/KLDAP/KLDAP/LdapClientSearch include/KF5/KLDAP/KLDAP/LdapClientSearchConfig include/KF5/KLDAP/KLDAP/LdapClientSearchConfigReadConfigJob include/KF5/KLDAP/KLDAP/LdapClientSearchConfigWriteConfigJob include/KF5/KLDAP/KLDAP/LdapConfigWidget include/KF5/KLDAP/KLDAP/LdapConfigureWidget include/KF5/KLDAP/KLDAP/LdapConnection include/KF5/KLDAP/KLDAP/LdapControl include/KF5/KLDAP/KLDAP/LdapDN include/KF5/KLDAP/KLDAP/LdapDefs include/KF5/KLDAP/KLDAP/LdapObject include/KF5/KLDAP/KLDAP/LdapOperation include/KF5/KLDAP/KLDAP/LdapSearch include/KF5/KLDAP/KLDAP/LdapSearchClientReadConfigServerJob include/KF5/KLDAP/KLDAP/LdapServer include/KF5/KLDAP/KLDAP/LdapUrl include/KF5/KLDAP/KLDAP/Ldif include/KF5/KLDAP/kldap/addhostdialog.h include/KF5/KLDAP/kldap/ber.h include/KF5/KLDAP/kldap/kldap_export.h include/KF5/KLDAP/kldap/ldapclient.h include/KF5/KLDAP/kldap/ldapclientsearch.h include/KF5/KLDAP/kldap/ldapclientsearchconfig.h include/KF5/KLDAP/kldap/ldapclientsearchconfigreadconfigjob.h include/KF5/KLDAP/kldap/ldapclientsearchconfigwriteconfigjob.h include/KF5/KLDAP/kldap/ldapconfigurewidget.h include/KF5/KLDAP/kldap/ldapconfigwidget.h include/KF5/KLDAP/kldap/ldapconnection.h include/KF5/KLDAP/kldap/ldapcontrol.h include/KF5/KLDAP/kldap/ldapdefs.h include/KF5/KLDAP/kldap/ldapdn.h include/KF5/KLDAP/kldap/ldapobject.h include/KF5/KLDAP/kldap/ldapoperation.h include/KF5/KLDAP/kldap/ldapsearch.h include/KF5/KLDAP/kldap/ldapsearchclientreadconfigserverjob.h include/KF5/KLDAP/kldap/ldapserver.h include/KF5/KLDAP/kldap/ldapurl.h include/KF5/KLDAP/kldap/ldif.h include/KF5/KLDAP/kldap_version.h lib/cmake/KF5Ldap/KF5LdapConfig.cmake lib/cmake/KF5Ldap/KF5LdapConfigVersion.cmake lib/cmake/KF5Ldap/KF5LdapTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Ldap/KF5LdapTargets.cmake lib/libKF5Ldap.so lib/libKF5Ldap.so.5 lib/libKF5Ldap.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Ldap.pri %%QT_PLUGINDIR%%/kf5/kio/ldap.so +share/locale/af/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/kio_ldap.mo share/locale/ar/LC_MESSAGES/libkldap5.mo share/locale/be/LC_MESSAGES/kio_ldap.mo share/locale/be/LC_MESSAGES/libkldap5.mo share/locale/bg/LC_MESSAGES/kio_ldap.mo share/locale/bg/LC_MESSAGES/libkldap5.mo +share/locale/bn/LC_MESSAGES/kio_ldap.mo +share/locale/br/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/csb/LC_MESSAGES/kio_ldap.mo +share/locale/cy/LC_MESSAGES/kio_ldap.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/eu/LC_MESSAGES/libkldap5.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/fy/LC_MESSAGES/kio_ldap.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/hne/LC_MESSAGES/kio_ldap.mo +share/locale/hne/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/ka/LC_MESSAGES/kio_ldap.mo +share/locale/ka/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/kn/LC_MESSAGES/kio_ldap.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/mk/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/kio_ldap.mo share/locale/mr/LC_MESSAGES/libkldap5.mo +share/locale/ms/LC_MESSAGES/kio_ldap.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/ne/LC_MESSAGES/kio_ldap.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/sr@ijekavian/LC_MESSAGES/kio_ldap.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkldap5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_ldap.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkldap5.mo +share/locale/sr@latin/LC_MESSAGES/kio_ldap.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kio_ldap.mo +share/locale/th/LC_MESSAGES/libkldap5.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/uz/LC_MESSAGES/kio_ldap.mo +share/locale/uz@cyrillic/LC_MESSAGES/kio_ldap.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 a7f859bd3f24..b0bb9930ee70 100644 --- a/net/kmailtransport/distinfo +++ b/net/kmailtransport/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539667 -SHA256 (KDE/release-service/22.08.3/kmailtransport-22.08.3.tar.xz) = 3721e27e3f6fdf7f59f70600f3a267f32854856c1973494e76e5c1225aa0e987 -SIZE (KDE/release-service/22.08.3/kmailtransport-22.08.3.tar.xz) = 180700 +TIMESTAMP = 1670513328 +SHA256 (KDE/release-service/22.12.0/kmailtransport-22.12.0.tar.xz) = a486ff6e6e2e62161bdfd876bd6b11712d921c991d4db6982ed73ea3d98a648b +SIZE (KDE/release-service/22.12.0/kmailtransport-22.12.0.tar.xz) = 189104 diff --git a/net/kmailtransport/pkg-plist b/net/kmailtransport/pkg-plist index fa1b8ecd3019..bde85579ff3c 100644 --- a/net/kmailtransport/pkg-plist +++ b/net/kmailtransport/pkg-plist @@ -1,113 +1,120 @@ include/KF5/MailTransport/MailTransport/PrecommandJob include/KF5/MailTransport/MailTransport/ServerTest include/KF5/MailTransport/MailTransport/Transport include/KF5/MailTransport/MailTransport/TransportAbstractPlugin include/KF5/MailTransport/MailTransport/TransportComboBox include/KF5/MailTransport/MailTransport/TransportConfigWidget include/KF5/MailTransport/MailTransport/TransportJob include/KF5/MailTransport/MailTransport/TransportManagementWidget include/KF5/MailTransport/MailTransport/TransportManager include/KF5/MailTransport/MailTransport/TransportType include/KF5/MailTransport/mailtransport/mailtransport_export.h include/KF5/MailTransport/mailtransport/precommandjob.h include/KF5/MailTransport/mailtransport/private/transportconfigwidget_p.h include/KF5/MailTransport/mailtransport/servertest.h include/KF5/MailTransport/mailtransport/transport.h include/KF5/MailTransport/mailtransport/transportabstractplugin.h include/KF5/MailTransport/mailtransport/transportbase.h include/KF5/MailTransport/mailtransport/transportcombobox.h include/KF5/MailTransport/mailtransport/transportconfigwidget.h include/KF5/MailTransport/mailtransport/transportjob.h include/KF5/MailTransport/mailtransport/transportmanagementwidget.h include/KF5/MailTransport/mailtransport/transportmanager.h include/KF5/MailTransport/mailtransport/transporttype.h include/KF5/MailTransport/mailtransport_version.h include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatchModeAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/DispatcherInterface include/KF5/MailTransportAkonadi/MailTransportAkonadi/ErrorAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/MessageQueueJob include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentActionAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/SentBehaviourAttribute include/KF5/MailTransportAkonadi/MailTransportAkonadi/TransportAttribute include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatcherinterface.h include/KF5/MailTransportAkonadi/mailtransportakonadi/dispatchmodeattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/errorattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/mailtransportakonadi_export.h include/KF5/MailTransportAkonadi/mailtransportakonadi/messagequeuejob.h include/KF5/MailTransportAkonadi/mailtransportakonadi/sentactionattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/sentbehaviourattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi/transportattribute.h include/KF5/MailTransportAkonadi/mailtransportakonadi_version.h lib/cmake/KF5MailTransport/KF5MailTransportConfig.cmake lib/cmake/KF5MailTransport/KF5MailTransportConfigVersion.cmake lib/cmake/KF5MailTransport/KF5MailTransportTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailTransport/KF5MailTransportTargets.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfig.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiConfigVersion.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailTransportAkonadi/KF5MailTransportAkonadiTargets.cmake lib/libKF5MailTransport.so lib/libKF5MailTransport.so.5 lib/libKF5MailTransport.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MailTransportAkonadi.so lib/libKF5MailTransportAkonadi.so.5 lib/libKF5MailTransportAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KMailTransport.pri %%QT_MKSPECDIR%%/modules/qt_KMailTransportAkonadi.pri %%QT_PLUGINDIR%%/kcm_mailtransport.so -%%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_akonadiplugin.so -%%QT_PLUGINDIR%%/kf5/mailtransport/mailtransport_smtpplugin.so +%%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_akonadiplugin.so +%%QT_PLUGINDIR%%/pim5/mailtransport/mailtransport_smtpplugin.so share/config.kcfg/mailtransport.kcfg share/kservices5/kcm_mailtransport.desktop share/locale/ar/LC_MESSAGES/libmailtransport5.mo share/locale/be/LC_MESSAGES/libmailtransport5.mo share/locale/bg/LC_MESSAGES/libmailtransport5.mo share/locale/bs/LC_MESSAGES/libmailtransport5.mo share/locale/ca/LC_MESSAGES/libmailtransport5.mo share/locale/ca@valencia/LC_MESSAGES/libmailtransport5.mo share/locale/cs/LC_MESSAGES/libmailtransport5.mo share/locale/da/LC_MESSAGES/libmailtransport5.mo share/locale/de/LC_MESSAGES/libmailtransport5.mo share/locale/el/LC_MESSAGES/libmailtransport5.mo share/locale/en_GB/LC_MESSAGES/libmailtransport5.mo share/locale/eo/LC_MESSAGES/libmailtransport5.mo share/locale/es/LC_MESSAGES/libmailtransport5.mo share/locale/et/LC_MESSAGES/libmailtransport5.mo share/locale/eu/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/hne/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/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/libmailtransport5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailtransport5.mo +share/locale/sr@latin/LC_MESSAGES/libmailtransport5.mo share/locale/sv/LC_MESSAGES/libmailtransport5.mo +share/locale/th/LC_MESSAGES/libmailtransport5.mo share/locale/tr/LC_MESSAGES/libmailtransport5.mo share/locale/ug/LC_MESSAGES/libmailtransport5.mo share/locale/uk/LC_MESSAGES/libmailtransport5.mo share/locale/zh_CN/LC_MESSAGES/libmailtransport5.mo share/locale/zh_TW/LC_MESSAGES/libmailtransport5.mo share/qlogging-categories5/kmailtransport.categories share/qlogging-categories5/kmailtransport.renamecategories diff --git a/net/kmbox/distinfo b/net/kmbox/distinfo index fd6bba24c4df..538772345ede 100644 --- a/net/kmbox/distinfo +++ b/net/kmbox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539660 -SHA256 (KDE/release-service/22.08.3/kmbox-22.08.3.tar.xz) = 919b474c5e3cbbecc5cb42208e56d2a2be717e6553cb5e83fcb58acbbe61d90e -SIZE (KDE/release-service/22.08.3/kmbox-22.08.3.tar.xz) = 28836 +TIMESTAMP = 1670513319 +SHA256 (KDE/release-service/22.12.0/kmbox-22.12.0.tar.xz) = 1537f94c90805527e9869c982592e68289e41d17d37fa87be3fd6d458b038495 +SIZE (KDE/release-service/22.12.0/kmbox-22.12.0.tar.xz) = 28848 diff --git a/net/kmime/distinfo b/net/kmime/distinfo index ce5bdc9da60e..79f684764bba 100644 --- a/net/kmime/distinfo +++ b/net/kmime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539644 -SHA256 (KDE/release-service/22.08.3/kmime-22.08.3.tar.xz) = 4b21af9d7527e0b6697169d5c87a9d17aea8d5aafbfc8ba163b6138106241352 -SIZE (KDE/release-service/22.08.3/kmime-22.08.3.tar.xz) = 156340 +TIMESTAMP = 1670513300 +SHA256 (KDE/release-service/22.12.0/kmime-22.12.0.tar.xz) = b8a69e3696a59e023492bab8f2103852d49e32bd0e821be2c8ffac5bd79a7e88 +SIZE (KDE/release-service/22.12.0/kmime-22.12.0.tar.xz) = 161804 diff --git a/net/kmime/pkg-plist b/net/kmime/pkg-plist index 50d5332664ec..8fc0dfe13b22 100644 --- a/net/kmime/pkg-plist +++ b/net/kmime/pkg-plist @@ -1,86 +1,100 @@ 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/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/br/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/cy/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/fy/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/hne/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/ka/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/mk/LC_MESSAGES/libkmime5.mo share/locale/mr/LC_MESSAGES/libkmime5.mo +share/locale/ms/LC_MESSAGES/libkmime5.mo share/locale/nb/LC_MESSAGES/libkmime5.mo share/locale/nds/LC_MESSAGES/libkmime5.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/libkmime5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkmime5.mo +share/locale/sr@latin/LC_MESSAGES/libkmime5.mo share/locale/sv/LC_MESSAGES/libkmime5.mo share/locale/ta/LC_MESSAGES/libkmime5.mo +share/locale/th/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/uz/LC_MESSAGES/libkmime5.mo +share/locale/uz@cyrillic/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 d6e205f1a641..c4bcb163b976 100644 --- a/net/kontactinterface/distinfo +++ b/net/kontactinterface/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539645 -SHA256 (KDE/release-service/22.08.3/kontactinterface-22.08.3.tar.xz) = bd44ff54c79fcd2a888ee31e1c7a711a7c80d6607e8812a88ed3d3eba6add411 -SIZE (KDE/release-service/22.08.3/kontactinterface-22.08.3.tar.xz) = 40496 +TIMESTAMP = 1670513301 +SHA256 (KDE/release-service/22.12.0/kontactinterface-22.12.0.tar.xz) = b15f9a8cf93e0fdacdf02a083c8ec53fc1c25b1468e31c966f5a1e1cf9142ce8 +SIZE (KDE/release-service/22.12.0/kontactinterface-22.12.0.tar.xz) = 39776 diff --git a/net/kontactinterface/pkg-plist b/net/kontactinterface/pkg-plist index 3d4d63add6ad..eca229308a3b 100644 --- a/net/kontactinterface/pkg-plist +++ b/net/kontactinterface/pkg-plist @@ -1,78 +1,81 @@ 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/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/eu/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/ka/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/sr@ijekavian/LC_MESSAGES/kontactinterfaces5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kontactinterfaces5.mo +share/locale/sr@latin/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/vi/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 share/qlogging-categories5/kontactinterface.categories share/qlogging-categories5/kontactinterface.renamecategories diff --git a/net/kpimtextedit/distinfo b/net/kpimtextedit/distinfo index fadfc10dd6fe..0b4e5b66c40c 100644 --- a/net/kpimtextedit/distinfo +++ b/net/kpimtextedit/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539671 -SHA256 (KDE/release-service/22.08.3/kpimtextedit-22.08.3.tar.xz) = 8f1e0d7f96f7ac762350e238d6f6faa1f293d77c477a21bd4f6834e4d1906138 -SIZE (KDE/release-service/22.08.3/kpimtextedit-22.08.3.tar.xz) = 216744 +TIMESTAMP = 1670513331 +SHA256 (KDE/release-service/22.12.0/kpimtextedit-22.12.0.tar.xz) = 3f5edd7caec279d85a365a69b72c86a2fc1cd56d7245cafe9c7c4bb491c45fb7 +SIZE (KDE/release-service/22.12.0/kpimtextedit-22.12.0.tar.xz) = 223356 diff --git a/net/kpimtextedit/pkg-plist b/net/kpimtextedit/pkg-plist index 1c015eec1ba4..d6fa93e0233c 100644 --- a/net/kpimtextedit/pkg-plist +++ b/net/kpimtextedit/pkg-plist @@ -1,122 +1,127 @@ 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-texttospeech.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/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/az/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/eu/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/ka/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/sr@ijekavian/LC_MESSAGES/libkpimtextedit.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkpimtextedit.mo +share/locale/sr@latin/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 7339ca4762cb..84aa037ed99a 100644 --- a/net/krdc/distinfo +++ b/net/krdc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539653 -SHA256 (KDE/release-service/22.08.3/krdc-22.08.3.tar.xz) = 379f3fab596a9f34755e8675bd0a904cae9453101d126ea723e6069bd7e3e040 -SIZE (KDE/release-service/22.08.3/krdc-22.08.3.tar.xz) = 1578152 +TIMESTAMP = 1670513310 +SHA256 (KDE/release-service/22.12.0/krdc-22.12.0.tar.xz) = 4366cc05bcf42761945f1d8068f282cf6c4ed9842e0eb574a4575983ee2aad26 +SIZE (KDE/release-service/22.12.0/krdc-22.12.0.tar.xz) = 1627588 diff --git a/net/krdc/pkg-plist b/net/krdc/pkg-plist index 76cbc4d77a3a..91edb935601e 100644 --- a/net/krdc/pkg-plist +++ b/net/krdc/pkg-plist @@ -1,76 +1,93 @@ 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 share/kio/servicemenus/smb2rdc.desktop +share/locale/af/LC_MESSAGES/krdc.mo share/locale/ar/LC_MESSAGES/krdc.mo share/locale/be/LC_MESSAGES/krdc.mo share/locale/bg/LC_MESSAGES/krdc.mo +share/locale/br/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/cy/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/hne/LC_MESSAGES/krdc.mo share/locale/hr/LC_MESSAGES/krdc.mo +share/locale/hsb/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/ka/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/mai/LC_MESSAGES/krdc.mo +share/locale/mk/LC_MESSAGES/krdc.mo share/locale/mr/LC_MESSAGES/krdc.mo +share/locale/ms/LC_MESSAGES/krdc.mo share/locale/nb/LC_MESSAGES/krdc.mo share/locale/nds/LC_MESSAGES/krdc.mo +share/locale/ne/LC_MESSAGES/krdc.mo share/locale/nl/LC_MESSAGES/krdc.mo share/locale/nn/LC_MESSAGES/krdc.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/krdc.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/krdc.mo +share/locale/sr@latin/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/th/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/xh/LC_MESSAGES/krdc.mo share/locale/zh_CN/LC_MESSAGES/krdc.mo +share/locale/zh_HK/LC_MESSAGES/krdc.mo share/locale/zh_TW/LC_MESSAGES/krdc.mo share/metainfo/org.kde.krdc.appdata.xml share/qlogging-categories5/krdc.categories diff --git a/net/krfb/distinfo b/net/krfb/distinfo index 3abbb136e9ad..fa9aa79fe4b3 100644 --- a/net/krfb/distinfo +++ b/net/krfb/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539655 -SHA256 (KDE/release-service/22.08.3/krfb-22.08.3.tar.xz) = 9a5a3a962809813674997b3ef0c5c54bbcfa6f82eabbf0a1f8ef95d3d3b897b1 -SIZE (KDE/release-service/22.08.3/krfb-22.08.3.tar.xz) = 1296316 +TIMESTAMP = 1670513313 +SHA256 (KDE/release-service/22.12.0/krfb-22.12.0.tar.xz) = 5bcb4dd2d99de1e4bea5e57f4fe8580f1af0769f5ff0725eca3d14412d3e4933 +SIZE (KDE/release-service/22.12.0/krfb-22.12.0.tar.xz) = 1321296 diff --git a/net/krfb/pkg-plist b/net/krfb/pkg-plist index 74fe49918f67..d08fb2ec10cb 100644 --- a/net/krfb/pkg-plist +++ b/net/krfb/pkg-plist @@ -1,74 +1,90 @@ bin/krfb bin/krfb-virtualmonitor lib/libkrfbprivate.so.5 lib/libkrfbprivate.so.5.0 %%QT_PLUGINDIR%%/krfb/events/x11.so %%QT_PLUGINDIR%%/krfb/framebuffer/qt.so %%QT_PLUGINDIR%%/krfb/framebuffer/xcb.so share/applications/org.kde.krfb.desktop share/applications/org.kde.krfb.virtualmonitor.desktop share/icons/hicolor/48x48/apps/krfb.png share/icons/hicolor/scalable/apps/krfb.svgz %%DATADIR%%/krfb.notifyrc +share/locale/af/LC_MESSAGES/krfb.mo share/locale/ar/LC_MESSAGES/krfb.mo share/locale/be/LC_MESSAGES/krfb.mo share/locale/bg/LC_MESSAGES/krfb.mo +share/locale/br/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/cy/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/hne/LC_MESSAGES/krfb.mo share/locale/hr/LC_MESSAGES/krfb.mo +share/locale/hsb/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/ka/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/mai/LC_MESSAGES/krfb.mo +share/locale/mk/LC_MESSAGES/krfb.mo share/locale/ml/LC_MESSAGES/krfb.mo share/locale/mr/LC_MESSAGES/krfb.mo +share/locale/ms/LC_MESSAGES/krfb.mo share/locale/nb/LC_MESSAGES/krfb.mo share/locale/nds/LC_MESSAGES/krfb.mo +share/locale/ne/LC_MESSAGES/krfb.mo share/locale/nl/LC_MESSAGES/krfb.mo share/locale/nn/LC_MESSAGES/krfb.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/krfb.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/krfb.mo +share/locale/sr@latin/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/th/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/xh/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 8db4502cb96f..3f13d43742e9 100644 --- a/net/ksmtp/distinfo +++ b/net/ksmtp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539657 -SHA256 (KDE/release-service/22.08.3/ksmtp-22.08.3.tar.xz) = 9bea65ed00f767cb4f98e6358367b1623d184bc05fa47eb1282262105519dc4e -SIZE (KDE/release-service/22.08.3/ksmtp-22.08.3.tar.xz) = 49080 +TIMESTAMP = 1670513316 +SHA256 (KDE/release-service/22.12.0/ksmtp-22.12.0.tar.xz) = e6a7e901ad6a6a202fa853b59045fa8631141cc9b0d88969e31ae763218b310d +SIZE (KDE/release-service/22.12.0/ksmtp-22.12.0.tar.xz) = 50008 diff --git a/net/ksmtp/pkg-plist b/net/ksmtp/pkg-plist index 60f30998a07f..6e198fb70ac8 100644 --- a/net/ksmtp/pkg-plist +++ b/net/ksmtp/pkg-plist @@ -1,62 +1,66 @@ include/KPim/KSMTP/KSMTP/Job include/KPim/KSMTP/KSMTP/LoginJob include/KPim/KSMTP/KSMTP/SendJob include/KPim/KSMTP/KSMTP/Session include/KPim/KSMTP/KSMTP/SessionUiProxy include/KPim/KSMTP/ksmtp/job.h include/KPim/KSMTP/ksmtp/ksmtp_export.h include/KPim/KSMTP/ksmtp/loginjob.h include/KPim/KSMTP/ksmtp/sendjob.h include/KPim/KSMTP/ksmtp/session.h include/KPim/KSMTP/ksmtp/sessionuiproxy.h include/KPim/ksmtp_version.h lib/cmake/KPimSMTP/KPimSMTPConfig.cmake lib/cmake/KPimSMTP/KPimSMTPConfigVersion.cmake lib/cmake/KPimSMTP/KPimSMTPTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimSMTP/KPimSMTPTargets.cmake lib/libKPimSMTP.so lib/libKPimSMTP.so.5 lib/libKPimSMTP.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KSMTP.pri share/locale/ar/LC_MESSAGES/libksmtp5.mo share/locale/bs/LC_MESSAGES/libksmtp5.mo share/locale/ca/LC_MESSAGES/libksmtp5.mo share/locale/ca@valencia/LC_MESSAGES/libksmtp5.mo share/locale/cs/LC_MESSAGES/libksmtp5.mo share/locale/de/LC_MESSAGES/libksmtp5.mo share/locale/en_GB/LC_MESSAGES/libksmtp5.mo share/locale/es/LC_MESSAGES/libksmtp5.mo share/locale/et/LC_MESSAGES/libksmtp5.mo share/locale/eu/LC_MESSAGES/libksmtp5.mo share/locale/fi/LC_MESSAGES/libksmtp5.mo share/locale/fr/LC_MESSAGES/libksmtp5.mo share/locale/ga/LC_MESSAGES/libksmtp5.mo share/locale/gl/LC_MESSAGES/libksmtp5.mo share/locale/hi/LC_MESSAGES/libksmtp5.mo share/locale/hu/LC_MESSAGES/libksmtp5.mo share/locale/ia/LC_MESSAGES/libksmtp5.mo share/locale/it/LC_MESSAGES/libksmtp5.mo share/locale/ja/LC_MESSAGES/libksmtp5.mo +share/locale/ka/LC_MESSAGES/libksmtp5.mo share/locale/km/LC_MESSAGES/libksmtp5.mo share/locale/ko/LC_MESSAGES/libksmtp5.mo share/locale/lt/LC_MESSAGES/libksmtp5.mo share/locale/mr/LC_MESSAGES/libksmtp5.mo share/locale/nds/LC_MESSAGES/libksmtp5.mo share/locale/nl/LC_MESSAGES/libksmtp5.mo share/locale/nn/LC_MESSAGES/libksmtp5.mo share/locale/pl/LC_MESSAGES/libksmtp5.mo share/locale/pt/LC_MESSAGES/libksmtp5.mo share/locale/pt_BR/LC_MESSAGES/libksmtp5.mo share/locale/ro/LC_MESSAGES/libksmtp5.mo share/locale/ru/LC_MESSAGES/libksmtp5.mo share/locale/sk/LC_MESSAGES/libksmtp5.mo share/locale/sl/LC_MESSAGES/libksmtp5.mo share/locale/sr/LC_MESSAGES/libksmtp5.mo +share/locale/sr@ijekavian/LC_MESSAGES/libksmtp5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libksmtp5.mo +share/locale/sr@latin/LC_MESSAGES/libksmtp5.mo share/locale/sv/LC_MESSAGES/libksmtp5.mo share/locale/ta/LC_MESSAGES/libksmtp5.mo share/locale/tr/LC_MESSAGES/libksmtp5.mo share/locale/ug/LC_MESSAGES/libksmtp5.mo share/locale/uk/LC_MESSAGES/libksmtp5.mo share/locale/zh_CN/LC_MESSAGES/libksmtp5.mo share/locale/zh_TW/LC_MESSAGES/libksmtp5.mo share/qlogging-categories5/ksmtp.categories diff --git a/net/ktnef/distinfo b/net/ktnef/distinfo index 5446a8b09670..2d36457a5f76 100644 --- a/net/ktnef/distinfo +++ b/net/ktnef/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539640 -SHA256 (KDE/release-service/22.08.3/ktnef-22.08.3.tar.xz) = bc51a28d1f542bcff25f327c8f39f49b090ffa626c14123b083d9af5ef4013ff -SIZE (KDE/release-service/22.08.3/ktnef-22.08.3.tar.xz) = 303788 +TIMESTAMP = 1670513296 +SHA256 (KDE/release-service/22.12.0/ktnef-22.12.0.tar.xz) = 67e47f6bb03640d6daba066d38808fa8be0752cc4587835cc6530ab4d8bac1e9 +SIZE (KDE/release-service/22.12.0/ktnef-22.12.0.tar.xz) = 307964 diff --git a/net/ktnef/pkg-plist b/net/ktnef/pkg-plist index 3c9cf0f3281f..f3ddf3a92f43 100644 --- a/net/ktnef/pkg-plist +++ b/net/ktnef/pkg-plist @@ -1,77 +1,83 @@ 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/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/hne/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/ka/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/mai/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/sr@ijekavian/LC_MESSAGES/libktnef5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libktnef5.mo +share/locale/sr@latin/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 share/qlogging-categories5/ktnef.categories share/qlogging-categories5/ktnef.renamecategories diff --git a/net/libgravatar/distinfo b/net/libgravatar/distinfo index 06bdfab43553..e702330abd1c 100644 --- a/net/libgravatar/distinfo +++ b/net/libgravatar/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539638 -SHA256 (KDE/release-service/22.08.3/libgravatar-22.08.3.tar.xz) = d531ca6c45b1b65e9d98d3f0d313d6b7cf4ca9cdd8caa494bc93f9569ddf2d65 -SIZE (KDE/release-service/22.08.3/libgravatar-22.08.3.tar.xz) = 35932 +TIMESTAMP = 1670513294 +SHA256 (KDE/release-service/22.12.0/libgravatar-22.12.0.tar.xz) = c815e6728b87c0faf500bb7e30ebc18c4e32e690c14bd26aa8c739032b7b4900 +SIZE (KDE/release-service/22.12.0/libgravatar-22.12.0.tar.xz) = 36832 diff --git a/net/libgravatar/pkg-plist b/net/libgravatar/pkg-plist index 99f87fbd2720..fbddd3fbf0c6 100644 --- a/net/libgravatar/pkg-plist +++ b/net/libgravatar/pkg-plist @@ -1,61 +1,66 @@ include/KF5/Gravatar/Gravatar/GravatarCache include/KF5/Gravatar/Gravatar/GravatarConfigWidget include/KF5/Gravatar/Gravatar/GravatarConfigureSettingsDialog include/KF5/Gravatar/Gravatar/GravatarConfigureSettingsWidget include/KF5/Gravatar/Gravatar/GravatarDownloadPixmapWidget include/KF5/Gravatar/Gravatar/GravatarResolvUrlJob include/KF5/Gravatar/gravatar/gravatar_export.h include/KF5/Gravatar/gravatar/gravatarcache.h include/KF5/Gravatar/gravatar/gravatarconfiguresettingsdialog.h include/KF5/Gravatar/gravatar/gravatarconfiguresettingswidget.h include/KF5/Gravatar/gravatar/gravatarconfigwidget.h include/KF5/Gravatar/gravatar/gravatardownloadpixmapwidget.h include/KF5/Gravatar/gravatar/gravatarresolvurljob.h include/KF5/Gravatar/gravatar/gravatarsettings.h include/KF5/Gravatar/gravatar_version.h lib/cmake/KF5Gravatar/KF5GravatarConfig.cmake lib/cmake/KF5Gravatar/KF5GravatarConfigVersion.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Gravatar/KF5GravatarTargets.cmake lib/libKF5Gravatar.so lib/libKF5Gravatar.so.5 lib/libKF5Gravatar.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_Gravatar.pri share/locale/ar/LC_MESSAGES/libgravatar.mo share/locale/ca/LC_MESSAGES/libgravatar.mo share/locale/ca@valencia/LC_MESSAGES/libgravatar.mo share/locale/cs/LC_MESSAGES/libgravatar.mo share/locale/da/LC_MESSAGES/libgravatar.mo share/locale/de/LC_MESSAGES/libgravatar.mo share/locale/el/LC_MESSAGES/libgravatar.mo share/locale/en_GB/LC_MESSAGES/libgravatar.mo share/locale/es/LC_MESSAGES/libgravatar.mo share/locale/et/LC_MESSAGES/libgravatar.mo share/locale/eu/LC_MESSAGES/libgravatar.mo share/locale/fi/LC_MESSAGES/libgravatar.mo share/locale/fr/LC_MESSAGES/libgravatar.mo share/locale/gl/LC_MESSAGES/libgravatar.mo share/locale/hi/LC_MESSAGES/libgravatar.mo share/locale/hu/LC_MESSAGES/libgravatar.mo share/locale/ia/LC_MESSAGES/libgravatar.mo +share/locale/is/LC_MESSAGES/libgravatar.mo share/locale/it/LC_MESSAGES/libgravatar.mo share/locale/ja/LC_MESSAGES/libgravatar.mo +share/locale/ka/LC_MESSAGES/libgravatar.mo share/locale/ko/LC_MESSAGES/libgravatar.mo share/locale/lt/LC_MESSAGES/libgravatar.mo share/locale/nl/LC_MESSAGES/libgravatar.mo share/locale/nn/LC_MESSAGES/libgravatar.mo share/locale/pl/LC_MESSAGES/libgravatar.mo share/locale/pt/LC_MESSAGES/libgravatar.mo share/locale/pt_BR/LC_MESSAGES/libgravatar.mo share/locale/ro/LC_MESSAGES/libgravatar.mo share/locale/ru/LC_MESSAGES/libgravatar.mo share/locale/sk/LC_MESSAGES/libgravatar.mo share/locale/sl/LC_MESSAGES/libgravatar.mo share/locale/sr/LC_MESSAGES/libgravatar.mo +share/locale/sr@ijekavian/LC_MESSAGES/libgravatar.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libgravatar.mo +share/locale/sr@latin/LC_MESSAGES/libgravatar.mo share/locale/sv/LC_MESSAGES/libgravatar.mo share/locale/tr/LC_MESSAGES/libgravatar.mo share/locale/uk/LC_MESSAGES/libgravatar.mo share/locale/zh_CN/LC_MESSAGES/libgravatar.mo share/locale/zh_TW/LC_MESSAGES/libgravatar.mo share/qlogging-categories5/libgravatar.categories share/qlogging-categories5/libgravatar.renamecategories diff --git a/net/libkgapi/distinfo b/net/libkgapi/distinfo index 59f0ae1d5b6a..c2c5155ec67f 100644 --- a/net/libkgapi/distinfo +++ b/net/libkgapi/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539647 -SHA256 (KDE/release-service/22.08.3/libkgapi-22.08.3.tar.xz) = 4d171554fa460ae1eeff714c6e275416763f2f4f3c11108cc109399397e52197 -SIZE (KDE/release-service/22.08.3/libkgapi-22.08.3.tar.xz) = 242496 +TIMESTAMP = 1670513304 +SHA256 (KDE/release-service/22.12.0/libkgapi-22.12.0.tar.xz) = 62a045a75216b3d09884dbc216f49cdb0eb825bafa69d55ce31d6391c1c3c8e7 +SIZE (KDE/release-service/22.12.0/libkgapi-22.12.0.tar.xz) = 244600 diff --git a/net/libkgapi/pkg-plist b/net/libkgapi/pkg-plist index 8153ad8c09c1..4be7c214a857 100644 --- a/net/libkgapi/pkg-plist +++ b/net/libkgapi/pkg-plist @@ -1,357 +1,361 @@ include/KPim/KGAPI/KGAPI/Account include/KPim/KGAPI/KGAPI/AccountInfo include/KPim/KGAPI/KGAPI/AccountInfoFetchJob include/KPim/KGAPI/KGAPI/AccountManager include/KPim/KGAPI/KGAPI/AuthJob include/KPim/KGAPI/KGAPI/Blogger/Blog include/KPim/KGAPI/KGAPI/Blogger/BlogFetchJob include/KPim/KGAPI/KGAPI/Blogger/Comment include/KPim/KGAPI/KGAPI/Blogger/CommentApproveJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteContentJob include/KPim/KGAPI/KGAPI/Blogger/CommentDeleteJob include/KPim/KGAPI/KGAPI/Blogger/CommentFetchJob include/KPim/KGAPI/KGAPI/Blogger/Page include/KPim/KGAPI/KGAPI/Blogger/PageCreateJob include/KPim/KGAPI/KGAPI/Blogger/PageDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PageFetchJob include/KPim/KGAPI/KGAPI/Blogger/PageModifyJob include/KPim/KGAPI/KGAPI/Blogger/Post include/KPim/KGAPI/KGAPI/Blogger/PostCreateJob include/KPim/KGAPI/KGAPI/Blogger/PostDeleteJob include/KPim/KGAPI/KGAPI/Blogger/PostFetchJob include/KPim/KGAPI/KGAPI/Blogger/PostModifyJob include/KPim/KGAPI/KGAPI/Blogger/PostPublishJob include/KPim/KGAPI/KGAPI/Blogger/PostSearchJob include/KPim/KGAPI/KGAPI/Calendar/Calendar include/KPim/KGAPI/KGAPI/Calendar/CalendarCreateJob include/KPim/KGAPI/KGAPI/Calendar/CalendarDeleteJob include/KPim/KGAPI/KGAPI/Calendar/CalendarFetchJob include/KPim/KGAPI/KGAPI/Calendar/CalendarModifyJob include/KPim/KGAPI/KGAPI/Calendar/Enums include/KPim/KGAPI/KGAPI/Calendar/Event include/KPim/KGAPI/KGAPI/Calendar/EventCreateJob include/KPim/KGAPI/KGAPI/Calendar/EventDeleteJob include/KPim/KGAPI/KGAPI/Calendar/EventFetchJob include/KPim/KGAPI/KGAPI/Calendar/EventModifyJob include/KPim/KGAPI/KGAPI/Calendar/EventMoveJob include/KPim/KGAPI/KGAPI/Calendar/FreeBusyQueryJob include/KPim/KGAPI/KGAPI/Calendar/Reminder include/KPim/KGAPI/KGAPI/Contacts/Contact include/KPim/KGAPI/KGAPI/Contacts/ContactCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactFetchPhotoJob include/KPim/KGAPI/KGAPI/Contacts/ContactModifyJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroup include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupCreateJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupDeleteJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupFetchJob include/KPim/KGAPI/KGAPI/Contacts/ContactsGroupModifyJob include/KPim/KGAPI/KGAPI/CreateJob include/KPim/KGAPI/KGAPI/DeleteJob include/KPim/KGAPI/KGAPI/Drive/About include/KPim/KGAPI/KGAPI/Drive/AboutFetchJob include/KPim/KGAPI/KGAPI/Drive/App include/KPim/KGAPI/KGAPI/Drive/AppFetchJob include/KPim/KGAPI/KGAPI/Drive/Change include/KPim/KGAPI/KGAPI/Drive/ChangeFetchJob include/KPim/KGAPI/KGAPI/Drive/ChildReference include/KPim/KGAPI/KGAPI/Drive/ChildReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ChildReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/Drives include/KPim/KGAPI/KGAPI/Drive/DrivesCreateJob include/KPim/KGAPI/KGAPI/Drive/DrivesDeleteJob include/KPim/KGAPI/KGAPI/Drive/DrivesFetchJob include/KPim/KGAPI/KGAPI/Drive/DrivesHideJob include/KPim/KGAPI/KGAPI/Drive/DrivesModifyJob include/KPim/KGAPI/KGAPI/Drive/DrivesSearchQuery include/KPim/KGAPI/KGAPI/Drive/File include/KPim/KGAPI/KGAPI/Drive/FileAbstractDataJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractModifyJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractResumableJob include/KPim/KGAPI/KGAPI/Drive/FileAbstractUploadJob include/KPim/KGAPI/KGAPI/Drive/FileCopyJob include/KPim/KGAPI/KGAPI/Drive/FileCreateJob include/KPim/KGAPI/KGAPI/Drive/FileDeleteJob include/KPim/KGAPI/KGAPI/Drive/FileFetchContentJob include/KPim/KGAPI/KGAPI/Drive/FileFetchJob include/KPim/KGAPI/KGAPI/Drive/FileModifyJob include/KPim/KGAPI/KGAPI/Drive/FileResumableCreateJob include/KPim/KGAPI/KGAPI/Drive/FileResumableModifyJob include/KPim/KGAPI/KGAPI/Drive/FileSearchQuery include/KPim/KGAPI/KGAPI/Drive/FileTouchJob include/KPim/KGAPI/KGAPI/Drive/FileTrashJob include/KPim/KGAPI/KGAPI/Drive/FileUntrashJob include/KPim/KGAPI/KGAPI/Drive/ParentReference include/KPim/KGAPI/KGAPI/Drive/ParentReferenceCreateJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceDeleteJob include/KPim/KGAPI/KGAPI/Drive/ParentReferenceFetchJob include/KPim/KGAPI/KGAPI/Drive/Permission include/KPim/KGAPI/KGAPI/Drive/PermissionCreateJob include/KPim/KGAPI/KGAPI/Drive/PermissionDeleteJob include/KPim/KGAPI/KGAPI/Drive/PermissionFetchJob include/KPim/KGAPI/KGAPI/Drive/PermissionModifyJob include/KPim/KGAPI/KGAPI/Drive/Revision include/KPim/KGAPI/KGAPI/Drive/RevisionDeleteJob include/KPim/KGAPI/KGAPI/Drive/RevisionFetchJob include/KPim/KGAPI/KGAPI/Drive/RevisionModifyJob include/KPim/KGAPI/KGAPI/Drive/SearchQuery include/KPim/KGAPI/KGAPI/Drive/Teamdrive include/KPim/KGAPI/KGAPI/Drive/TeamdriveCreateJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveDeleteJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveFetchJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveModifyJob include/KPim/KGAPI/KGAPI/Drive/TeamdriveSearchQuery include/KPim/KGAPI/KGAPI/Drive/User include/KPim/KGAPI/KGAPI/FetchJob include/KPim/KGAPI/KGAPI/Job include/KPim/KGAPI/KGAPI/Latitude/Latitude include/KPim/KGAPI/KGAPI/Latitude/Location include/KPim/KGAPI/KGAPI/Latitude/LocationCreateJob include/KPim/KGAPI/KGAPI/Latitude/LocationDeleteJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchHistoryJob include/KPim/KGAPI/KGAPI/Latitude/LocationFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapMarker include/KPim/KGAPI/KGAPI/Maps/StaticMapPath include/KPim/KGAPI/KGAPI/Maps/StaticMapTileFetchJob include/KPim/KGAPI/KGAPI/Maps/StaticMapUrl include/KPim/KGAPI/KGAPI/ModifyJob include/KPim/KGAPI/KGAPI/Object include/KPim/KGAPI/KGAPI/Tasks/Task include/KPim/KGAPI/KGAPI/Tasks/TaskCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskList include/KPim/KGAPI/KGAPI/Tasks/TaskListCreateJob include/KPim/KGAPI/KGAPI/Tasks/TaskListDeleteJob include/KPim/KGAPI/KGAPI/Tasks/TaskListFetchJob include/KPim/KGAPI/KGAPI/Tasks/TaskListModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskModifyJob include/KPim/KGAPI/KGAPI/Tasks/TaskMoveJob include/KPim/KGAPI/KGAPI/Types include/KPim/KGAPI/KGAPI/Utils include/KPim/KGAPI/kgapi/account.h include/KPim/KGAPI/kgapi/accountinfo.h include/KPim/KGAPI/kgapi/accountinfofetchjob.h include/KPim/KGAPI/kgapi/accountmanager.h include/KPim/KGAPI/kgapi/authjob.h include/KPim/KGAPI/kgapi/blogger/blog.h include/KPim/KGAPI/kgapi/blogger/blogfetchjob.h include/KPim/KGAPI/kgapi/blogger/comment.h include/KPim/KGAPI/kgapi/blogger/commentapprovejob.h include/KPim/KGAPI/kgapi/blogger/commentdeletecontentjob.h include/KPim/KGAPI/kgapi/blogger/commentdeletejob.h include/KPim/KGAPI/kgapi/blogger/commentfetchjob.h include/KPim/KGAPI/kgapi/blogger/kgapiblogger_export.h include/KPim/KGAPI/kgapi/blogger/page.h include/KPim/KGAPI/kgapi/blogger/pagecreatejob.h include/KPim/KGAPI/kgapi/blogger/pagedeletejob.h include/KPim/KGAPI/kgapi/blogger/pagefetchjob.h include/KPim/KGAPI/kgapi/blogger/pagemodifyjob.h include/KPim/KGAPI/kgapi/blogger/post.h include/KPim/KGAPI/kgapi/blogger/postcreatejob.h include/KPim/KGAPI/kgapi/blogger/postdeletejob.h include/KPim/KGAPI/kgapi/blogger/postfetchjob.h include/KPim/KGAPI/kgapi/blogger/postmodifyjob.h include/KPim/KGAPI/kgapi/blogger/postpublishjob.h include/KPim/KGAPI/kgapi/blogger/postsearchjob.h include/KPim/KGAPI/kgapi/calendar/calendar.h include/KPim/KGAPI/kgapi/calendar/calendarcreatejob.h include/KPim/KGAPI/kgapi/calendar/calendardeletejob.h include/KPim/KGAPI/kgapi/calendar/calendarfetchjob.h include/KPim/KGAPI/kgapi/calendar/calendarmodifyjob.h include/KPim/KGAPI/kgapi/calendar/enums.h include/KPim/KGAPI/kgapi/calendar/event.h include/KPim/KGAPI/kgapi/calendar/eventcreatejob.h include/KPim/KGAPI/kgapi/calendar/eventdeletejob.h include/KPim/KGAPI/kgapi/calendar/eventfetchjob.h include/KPim/KGAPI/kgapi/calendar/eventmodifyjob.h include/KPim/KGAPI/kgapi/calendar/eventmovejob.h include/KPim/KGAPI/kgapi/calendar/freebusyqueryjob.h include/KPim/KGAPI/kgapi/calendar/kgapicalendar_export.h include/KPim/KGAPI/kgapi/calendar/reminder.h include/KPim/KGAPI/kgapi/contacts/contact.h include/KPim/KGAPI/kgapi/contacts/contactcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactfetchphotojob.h include/KPim/KGAPI/kgapi/contacts/contactmodifyjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroup.h include/KPim/KGAPI/kgapi/contacts/contactsgroupcreatejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupdeletejob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupfetchjob.h include/KPim/KGAPI/kgapi/contacts/contactsgroupmodifyjob.h include/KPim/KGAPI/kgapi/contacts/kgapicontacts_export.h include/KPim/KGAPI/kgapi/createjob.h include/KPim/KGAPI/kgapi/deletejob.h include/KPim/KGAPI/kgapi/drive/about.h include/KPim/KGAPI/kgapi/drive/aboutfetchjob.h include/KPim/KGAPI/kgapi/drive/app.h include/KPim/KGAPI/kgapi/drive/appfetchjob.h include/KPim/KGAPI/kgapi/drive/change.h include/KPim/KGAPI/kgapi/drive/changefetchjob.h include/KPim/KGAPI/kgapi/drive/childreference.h include/KPim/KGAPI/kgapi/drive/childreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/childreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/childreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/drives.h include/KPim/KGAPI/kgapi/drive/drivescreatejob.h include/KPim/KGAPI/kgapi/drive/drivesdeletejob.h include/KPim/KGAPI/kgapi/drive/drivesfetchjob.h include/KPim/KGAPI/kgapi/drive/driveshidejob.h include/KPim/KGAPI/kgapi/drive/drivesmodifyjob.h include/KPim/KGAPI/kgapi/drive/drivessearchquery.h include/KPim/KGAPI/kgapi/drive/file.h include/KPim/KGAPI/kgapi/drive/fileabstractdatajob.h include/KPim/KGAPI/kgapi/drive/fileabstractmodifyjob.h include/KPim/KGAPI/kgapi/drive/fileabstractresumablejob.h include/KPim/KGAPI/kgapi/drive/fileabstractuploadjob.h include/KPim/KGAPI/kgapi/drive/filecopyjob.h include/KPim/KGAPI/kgapi/drive/filecreatejob.h include/KPim/KGAPI/kgapi/drive/filedeletejob.h include/KPim/KGAPI/kgapi/drive/filefetchcontentjob.h include/KPim/KGAPI/kgapi/drive/filefetchjob.h include/KPim/KGAPI/kgapi/drive/filemodifyjob.h include/KPim/KGAPI/kgapi/drive/fileresumablecreatejob.h include/KPim/KGAPI/kgapi/drive/fileresumablemodifyjob.h include/KPim/KGAPI/kgapi/drive/filesearchquery.h include/KPim/KGAPI/kgapi/drive/filetouchjob.h include/KPim/KGAPI/kgapi/drive/filetrashjob.h include/KPim/KGAPI/kgapi/drive/fileuntrashjob.h include/KPim/KGAPI/kgapi/drive/kgapidrive_export.h include/KPim/KGAPI/kgapi/drive/parentreference.h include/KPim/KGAPI/kgapi/drive/parentreferencecreatejob.h include/KPim/KGAPI/kgapi/drive/parentreferencedeletejob.h include/KPim/KGAPI/kgapi/drive/parentreferencefetchjob.h include/KPim/KGAPI/kgapi/drive/permission.h include/KPim/KGAPI/kgapi/drive/permissioncreatejob.h include/KPim/KGAPI/kgapi/drive/permissiondeletejob.h include/KPim/KGAPI/kgapi/drive/permissionfetchjob.h include/KPim/KGAPI/kgapi/drive/permissionmodifyjob.h include/KPim/KGAPI/kgapi/drive/revision.h include/KPim/KGAPI/kgapi/drive/revisiondeletejob.h include/KPim/KGAPI/kgapi/drive/revisionfetchjob.h include/KPim/KGAPI/kgapi/drive/revisionmodifyjob.h include/KPim/KGAPI/kgapi/drive/searchquery.h include/KPim/KGAPI/kgapi/drive/teamdrive.h include/KPim/KGAPI/kgapi/drive/teamdrivecreatejob.h include/KPim/KGAPI/kgapi/drive/teamdrivedeletejob.h include/KPim/KGAPI/kgapi/drive/teamdrivefetchjob.h include/KPim/KGAPI/kgapi/drive/teamdrivemodifyjob.h include/KPim/KGAPI/kgapi/drive/teamdrivesearchquery.h include/KPim/KGAPI/kgapi/drive/user.h include/KPim/KGAPI/kgapi/fetchjob.h include/KPim/KGAPI/kgapi/job.h include/KPim/KGAPI/kgapi/kgapicore_export.h include/KPim/KGAPI/kgapi/latitude/kgapilatitude_export.h include/KPim/KGAPI/kgapi/latitude/latitude.h include/KPim/KGAPI/kgapi/latitude/location.h include/KPim/KGAPI/kgapi/latitude/locationcreatejob.h include/KPim/KGAPI/kgapi/latitude/locationdeletejob.h include/KPim/KGAPI/kgapi/latitude/locationfetchhistoryjob.h include/KPim/KGAPI/kgapi/latitude/locationfetchjob.h include/KPim/KGAPI/kgapi/maps/kgapimaps_export.h include/KPim/KGAPI/kgapi/maps/staticmapmarker.h include/KPim/KGAPI/kgapi/maps/staticmappath.h include/KPim/KGAPI/kgapi/maps/staticmaptilefetchjob.h include/KPim/KGAPI/kgapi/maps/staticmapurl.h include/KPim/KGAPI/kgapi/modifyjob.h include/KPim/KGAPI/kgapi/object.h include/KPim/KGAPI/kgapi/tasks/kgapitasks_export.h include/KPim/KGAPI/kgapi/tasks/task.h include/KPim/KGAPI/kgapi/tasks/taskcreatejob.h include/KPim/KGAPI/kgapi/tasks/taskdeletejob.h include/KPim/KGAPI/kgapi/tasks/taskfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklist.h include/KPim/KGAPI/kgapi/tasks/tasklistcreatejob.h include/KPim/KGAPI/kgapi/tasks/tasklistdeletejob.h include/KPim/KGAPI/kgapi/tasks/tasklistfetchjob.h include/KPim/KGAPI/kgapi/tasks/tasklistmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmodifyjob.h include/KPim/KGAPI/kgapi/tasks/taskmovejob.h include/KPim/KGAPI/kgapi/types.h include/KPim/KGAPI/kgapi/utils.h include/KPim/kgapi_version.h lib/cmake/KPimGAPI/KPimGAPIConfig.cmake lib/cmake/KPimGAPI/KPimGAPIConfigVersion.cmake lib/cmake/KPimGAPI/KPimGAPITargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPimGAPI/KPimGAPITargets.cmake lib/libKPimGAPIBlogger.so lib/libKPimGAPIBlogger.so.5 lib/libKPimGAPIBlogger.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICalendar.so lib/libKPimGAPICalendar.so.5 lib/libKPimGAPICalendar.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIContacts.so lib/libKPimGAPIContacts.so.5 lib/libKPimGAPIContacts.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPICore.so lib/libKPimGAPICore.so.5 lib/libKPimGAPICore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIDrive.so lib/libKPimGAPIDrive.so.5 lib/libKPimGAPIDrive.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPILatitude.so lib/libKPimGAPILatitude.so.5 lib/libKPimGAPILatitude.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPIMaps.so lib/libKPimGAPIMaps.so.5 lib/libKPimGAPIMaps.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKPimGAPITasks.so lib/libKPimGAPITasks.so.5 lib/libKPimGAPITasks.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_KGAPIBlogger.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICalendar.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIContacts.pri %%QT_MKSPECDIR%%/modules/qt_KGAPICore.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIDrive.pri %%QT_MKSPECDIR%%/modules/qt_KGAPILatitude.pri %%QT_MKSPECDIR%%/modules/qt_KGAPIMaps.pri %%QT_MKSPECDIR%%/modules/qt_KGAPITasks.pri lib/sasl2/libkdexoauth2.so lib/sasl2/libkdexoauth2.so.3 lib/sasl2/libkdexoauth2.so.3.0.0 share/locale/ar/LC_MESSAGES/libkgapi_qt.qm share/locale/bs/LC_MESSAGES/libkgapi_qt.qm share/locale/ca/LC_MESSAGES/libkgapi_qt.qm share/locale/ca@valencia/LC_MESSAGES/libkgapi_qt.qm share/locale/cs/LC_MESSAGES/libkgapi_qt.qm share/locale/da/LC_MESSAGES/libkgapi_qt.qm share/locale/de/LC_MESSAGES/libkgapi_qt.qm share/locale/el/LC_MESSAGES/libkgapi_qt.qm share/locale/en_GB/LC_MESSAGES/libkgapi_qt.qm share/locale/es/LC_MESSAGES/libkgapi_qt.qm share/locale/et/LC_MESSAGES/libkgapi_qt.qm share/locale/fi/LC_MESSAGES/libkgapi_qt.qm share/locale/fr/LC_MESSAGES/libkgapi_qt.qm share/locale/ga/LC_MESSAGES/libkgapi_qt.qm share/locale/gl/LC_MESSAGES/libkgapi_qt.qm share/locale/hu/LC_MESSAGES/libkgapi_qt.qm share/locale/ia/LC_MESSAGES/libkgapi_qt.qm share/locale/it/LC_MESSAGES/libkgapi_qt.qm share/locale/ja/LC_MESSAGES/libkgapi_qt.qm +share/locale/ka/LC_MESSAGES/libkgapi_qt.qm share/locale/kk/LC_MESSAGES/libkgapi_qt.qm share/locale/km/LC_MESSAGES/libkgapi_qt.qm share/locale/ko/LC_MESSAGES/libkgapi_qt.qm share/locale/lt/LC_MESSAGES/libkgapi_qt.qm share/locale/mr/LC_MESSAGES/libkgapi_qt.qm share/locale/nb/LC_MESSAGES/libkgapi_qt.qm share/locale/nds/LC_MESSAGES/libkgapi_qt.qm share/locale/nl/LC_MESSAGES/libkgapi_qt.qm share/locale/nn/LC_MESSAGES/libkgapi_qt.qm share/locale/pl/LC_MESSAGES/libkgapi_qt.qm share/locale/pt/LC_MESSAGES/libkgapi_qt.qm share/locale/pt_BR/LC_MESSAGES/libkgapi_qt.qm share/locale/ro/LC_MESSAGES/libkgapi_qt.qm share/locale/ru/LC_MESSAGES/libkgapi_qt.qm share/locale/sk/LC_MESSAGES/libkgapi_qt.qm share/locale/sl/LC_MESSAGES/libkgapi_qt.qm share/locale/sr/LC_MESSAGES/libkgapi_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/libkgapi_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkgapi_qt.qm +share/locale/sr@latin/LC_MESSAGES/libkgapi_qt.qm share/locale/sv/LC_MESSAGES/libkgapi_qt.qm share/locale/tr/LC_MESSAGES/libkgapi_qt.qm share/locale/ug/LC_MESSAGES/libkgapi_qt.qm share/locale/uk/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_CN/LC_MESSAGES/libkgapi_qt.qm share/locale/zh_TW/LC_MESSAGES/libkgapi_qt.qm share/qlogging-categories5/libkgapi.categories diff --git a/net/libksieve/distinfo b/net/libksieve/distinfo index ae1f988f585b..525a41a11a96 100644 --- a/net/libksieve/distinfo +++ b/net/libksieve/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539666 -SHA256 (KDE/release-service/22.08.3/libksieve-22.08.3.tar.xz) = e0fb0d6066f095a479ca521383c65fb32b81a781ead8876c2ad0edf8d4378680 -SIZE (KDE/release-service/22.08.3/libksieve-22.08.3.tar.xz) = 577032 +TIMESTAMP = 1670513326 +SHA256 (KDE/release-service/22.12.0/libksieve-22.12.0.tar.xz) = c9e4b2ea727bd28b52dfd4847bbd32f0b7d4dc0c67f9b95868a43529975d91b0 +SIZE (KDE/release-service/22.12.0/libksieve-22.12.0.tar.xz) = 553528 diff --git a/net/libksieve/pkg-plist b/net/libksieve/pkg-plist index 6377458ac7e9..232d3631ad79 100644 --- a/net/libksieve/pkg-plist +++ b/net/libksieve/pkg-plist @@ -1,181 +1,136 @@ include/KF5/KManageSieve/KManageSieve/SieveJob include/KF5/KManageSieve/kmanagesieve/kmanagesieve_export.h include/KF5/KManageSieve/kmanagesieve/sievejob.h include/KF5/KSieve/libksieve_version.h include/KF5/KSieveUi/KSieveUi/AbstractMoveImapFolderWidget include/KF5/KSieveUi/KSieveUi/AbstractRegexpEditorLineEdit include/KF5/KSieveUi/KSieveUi/AbstractSelectEmailLineEdit include/KF5/KSieveUi/KSieveUi/CheckScriptJob include/KF5/KSieveUi/KSieveUi/ManageSieveScriptsDialog include/KF5/KSieveUi/KSieveUi/ManageSieveTreeView include/KF5/KSieveUi/KSieveUi/ManageSieveWidget include/KF5/KSieveUi/KSieveUi/MultiImapVacationDialog include/KF5/KSieveUi/KSieveUi/MultiImapVacationManager include/KF5/KSieveUi/KSieveUi/RenameScriptJob include/KF5/KSieveUi/KSieveUi/SieveDebugDialog include/KF5/KSieveUi/KSieveUi/SieveEditor include/KF5/KSieveUi/KSieveUi/SieveEditorWidget include/KF5/KSieveUi/KSieveUi/SieveImapAccountSettings include/KF5/KSieveUi/KSieveUi/SieveImapInstance include/KF5/KSieveUi/KSieveUi/SieveImapInstanceInterface include/KF5/KSieveUi/KSieveUi/SieveImapInstanceInterfaceManager include/KF5/KSieveUi/KSieveUi/SieveImapPasswordProvider include/KF5/KSieveUi/KSieveUi/SieveTreeWidgetItem include/KF5/KSieveUi/KSieveUi/Util include/KF5/KSieveUi/KSieveUi/VacationManager include/KF5/KSieveUi/ksieveui/abstractmoveimapfolderwidget.h include/KF5/KSieveUi/ksieveui/abstractregexpeditorlineedit.h include/KF5/KSieveUi/ksieveui/abstractselectemaillineedit.h include/KF5/KSieveUi/ksieveui/checkscriptjob.h include/KF5/KSieveUi/ksieveui/ksieveui_export.h include/KF5/KSieveUi/ksieveui/managesievescriptsdialog.h include/KF5/KSieveUi/ksieveui/managesievetreeview.h include/KF5/KSieveUi/ksieveui/managesievewidget.h include/KF5/KSieveUi/ksieveui/multiimapvacationdialog.h include/KF5/KSieveUi/ksieveui/multiimapvacationmanager.h include/KF5/KSieveUi/ksieveui/renamescriptjob.h include/KF5/KSieveUi/ksieveui/sievedebugdialog.h include/KF5/KSieveUi/ksieveui/sieveeditor.h include/KF5/KSieveUi/ksieveui/sieveeditorwidget.h include/KF5/KSieveUi/ksieveui/sieveimapaccountsettings.h include/KF5/KSieveUi/ksieveui/sieveimapinstance.h include/KF5/KSieveUi/ksieveui/sieveimapinstanceinterface.h include/KF5/KSieveUi/ksieveui/sieveimapinstanceinterfacemanager.h include/KF5/KSieveUi/ksieveui/sieveimappasswordprovider.h include/KF5/KSieveUi/ksieveui/sievetreewidgetitem.h include/KF5/KSieveUi/ksieveui/util.h include/KF5/KSieveUi/ksieveui/util_p.h include/KF5/KSieveUi/ksieveui/vacationmanager.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_KSieveUi.pri -%%QT_PLUGINDIR%%/kf5/kio/sieve.so share/knsrcfiles/ksieve_script.knsrc -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/br/LC_MESSAGES/libksieve.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/cy/LC_MESSAGES/libksieve.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/fy/LC_MESSAGES/libksieve.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/hne/LC_MESSAGES/libksieve.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/ka/LC_MESSAGES/libksieve.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/mk/LC_MESSAGES/libksieve.mo share/locale/mr/LC_MESSAGES/libksieve.mo -share/locale/nb/LC_MESSAGES/kio_sieve.mo +share/locale/ms/LC_MESSAGES/libksieve.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/ne/LC_MESSAGES/libksieve.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/sr@ijekavian/LC_MESSAGES/libksieve.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libksieve.mo +share/locale/sr@latin/LC_MESSAGES/libksieve.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/uz/LC_MESSAGES/libksieve.mo +share/locale/uz@cyrillic/LC_MESSAGES/libksieve.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/qlogging-categories5/libksieve.categories share/qlogging-categories5/libksieve.renamecategories share/sieve/scripts/copy/template.desktop share/sieve/scripts/copy/template.txt diff --git a/net/mailcommon/distinfo b/net/mailcommon/distinfo index 7c047f5efb5c..48c8597afdc6 100644 --- a/net/mailcommon/distinfo +++ b/net/mailcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539672 -SHA256 (KDE/release-service/22.08.3/mailcommon-22.08.3.tar.xz) = 88c54e22a9fb83e2ce17e52996ac54bcc21c7eb976eb636afa36f09bf28f6ffe -SIZE (KDE/release-service/22.08.3/mailcommon-22.08.3.tar.xz) = 745964 +TIMESTAMP = 1670513332 +SHA256 (KDE/release-service/22.12.0/mailcommon-22.12.0.tar.xz) = 22e5b38dd6491a2a1a5ccabe739c2ad14333459510edc2063a3f9ab25341960f +SIZE (KDE/release-service/22.12.0/mailcommon-22.12.0.tar.xz) = 756844 diff --git a/net/mailcommon/pkg-plist b/net/mailcommon/pkg-plist index c4f1edf31c1e..e1d5d6b76baf 100644 --- a/net/mailcommon/pkg-plist +++ b/net/mailcommon/pkg-plist @@ -1,166 +1,168 @@ include/KF5/MailCommon/MailCommon/AccountConfigOrderDialog include/KF5/MailCommon/MailCommon/AddTagDialog include/KF5/MailCommon/MailCommon/BackupJob include/KF5/MailCommon/MailCommon/CollectionExpiryPage include/KF5/MailCommon/MailCommon/CollectionExpiryWidget include/KF5/MailCommon/MailCommon/CollectionGeneralPage include/KF5/MailCommon/MailCommon/CollectionGeneralWidget include/KF5/MailCommon/MailCommon/CollectionTemplatesWidget include/KF5/MailCommon/MailCommon/CollectionViewWidget include/KF5/MailCommon/MailCommon/CryptoUtils include/KF5/MailCommon/MailCommon/DBusOperators include/KF5/MailCommon/MailCommon/ExpireCollectionAttribute include/KF5/MailCommon/MailCommon/FavoriteCollectionOrderProxyModel include/KF5/MailCommon/MailCommon/FavoriteCollectionWidget include/KF5/MailCommon/MailCommon/FilterAction include/KF5/MailCommon/MailCommon/FilterActionDict include/KF5/MailCommon/MailCommon/FilterImporterAbstract include/KF5/MailCommon/MailCommon/FilterImporterBalsa include/KF5/MailCommon/MailCommon/FilterImporterClawsMail include/KF5/MailCommon/MailCommon/FilterImporterExporter include/KF5/MailCommon/MailCommon/FilterImporterPathCache include/KF5/MailCommon/MailCommon/FilterLog include/KF5/MailCommon/MailCommon/FilterManager include/KF5/MailCommon/MailCommon/FolderCollectionMonitor include/KF5/MailCommon/MailCommon/FolderJob include/KF5/MailCommon/MailCommon/FolderRequester include/KF5/MailCommon/MailCommon/FolderSelectionDialog include/KF5/MailCommon/MailCommon/FolderSettings include/KF5/MailCommon/MailCommon/FolderTreeView include/KF5/MailCommon/MailCommon/FolderTreeWidget include/KF5/MailCommon/MailCommon/FolderTreeWidgetProxyModel include/KF5/MailCommon/MailCommon/ItemContext include/KF5/MailCommon/MailCommon/JobScheduler include/KF5/MailCommon/MailCommon/KMFilterDialog include/KF5/MailCommon/MailCommon/MDNWarningJob include/KF5/MailCommon/MailCommon/MailFilter include/KF5/MailCommon/MailCommon/MailInterfaces include/KF5/MailCommon/MailCommon/MailKernel include/KF5/MailCommon/MailCommon/MailUtil include/KF5/MailCommon/MailCommon/RedirectDialog include/KF5/MailCommon/MailCommon/ResourceReadConfigFile include/KF5/MailCommon/MailCommon/SearchPattern include/KF5/MailCommon/MailCommon/SearchPatternEdit include/KF5/MailCommon/MailCommon/SearchRule include/KF5/MailCommon/MailCommon/SearchRuleStatus -include/KF5/MailCommon/MailCommon/SendMdnHandler include/KF5/MailCommon/MailCommon/SnippetTreeView include/KF5/MailCommon/MailCommon/SnippetWidget include/KF5/MailCommon/MailCommon/SnippetsManager include/KF5/MailCommon/MailCommon/SnippetsModel include/KF5/MailCommon/MailCommon/Tag include/KF5/MailCommon/MailCommon/TagWidget include/KF5/MailCommon/mailcommon/accountconfigorderdialog.h include/KF5/MailCommon/mailcommon/addtagdialog.h include/KF5/MailCommon/mailcommon/backupjob.h include/KF5/MailCommon/mailcommon/collectionexpirypage.h include/KF5/MailCommon/mailcommon/collectionexpirywidget.h include/KF5/MailCommon/mailcommon/collectiongeneralpage.h include/KF5/MailCommon/mailcommon/collectiongeneralwidget.h include/KF5/MailCommon/mailcommon/collectiontemplateswidget.h include/KF5/MailCommon/mailcommon/collectionviewwidget.h include/KF5/MailCommon/mailcommon/cryptoutils.h include/KF5/MailCommon/mailcommon/dbusoperators.h include/KF5/MailCommon/mailcommon/expirecollectionattribute.h include/KF5/MailCommon/mailcommon/favoritecollectionorderproxymodel.h include/KF5/MailCommon/mailcommon/favoritecollectionwidget.h include/KF5/MailCommon/mailcommon/filteraction.h include/KF5/MailCommon/mailcommon/filteractiondict.h include/KF5/MailCommon/mailcommon/filterimporterabstract.h include/KF5/MailCommon/mailcommon/filterimporterbalsa.h include/KF5/MailCommon/mailcommon/filterimporterclawsmail.h include/KF5/MailCommon/mailcommon/filterimporterexporter.h include/KF5/MailCommon/mailcommon/filterimporterpathcache.h include/KF5/MailCommon/mailcommon/filterlog.h include/KF5/MailCommon/mailcommon/filtermanager.h include/KF5/MailCommon/mailcommon/foldercollectionmonitor.h include/KF5/MailCommon/mailcommon/folderjob.h include/KF5/MailCommon/mailcommon/folderrequester.h include/KF5/MailCommon/mailcommon/folderselectiondialog.h include/KF5/MailCommon/mailcommon/foldersettings.h include/KF5/MailCommon/mailcommon/foldertreeview.h include/KF5/MailCommon/mailcommon/foldertreewidget.h include/KF5/MailCommon/mailcommon/foldertreewidgetproxymodel.h include/KF5/MailCommon/mailcommon/itemcontext.h include/KF5/MailCommon/mailcommon/jobscheduler.h include/KF5/MailCommon/mailcommon/kmfilterdialog.h include/KF5/MailCommon/mailcommon/mailcommon_export.h include/KF5/MailCommon/mailcommon/mailcommonsettings_base.h include/KF5/MailCommon/mailcommon/mailfilter.h include/KF5/MailCommon/mailcommon/mailinterfaces.h include/KF5/MailCommon/mailcommon/mailkernel.h include/KF5/MailCommon/mailcommon/mailutil.h include/KF5/MailCommon/mailcommon/mdnwarningjob.h include/KF5/MailCommon/mailcommon/pop3settings.h include/KF5/MailCommon/mailcommon/redirectdialog.h include/KF5/MailCommon/mailcommon/resourcereadconfigfile.h include/KF5/MailCommon/mailcommon/searchpattern.h include/KF5/MailCommon/mailcommon/searchpatternedit.h include/KF5/MailCommon/mailcommon/searchrule.h include/KF5/MailCommon/mailcommon/searchrulestatus.h -include/KF5/MailCommon/mailcommon/sendmdnhandler.h include/KF5/MailCommon/mailcommon/snippetsmanager.h include/KF5/MailCommon/mailcommon/snippetsmodel.h include/KF5/MailCommon/mailcommon/snippettreeview.h include/KF5/MailCommon/mailcommon/snippetwidget.h include/KF5/MailCommon/mailcommon/tag.h include/KF5/MailCommon/mailcommon/tagwidget.h include/KF5/MailCommon/mailcommon_export.h include/KF5/MailCommon/mailcommon_version.h lib/cmake/KF5MailCommon/KF5MailCommonConfig.cmake lib/cmake/KF5MailCommon/KF5MailCommonConfigVersion.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MailCommon/KF5MailCommonTargets.cmake lib/libKF5MailCommon.so lib/libKF5MailCommon.so.5 lib/libKF5MailCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MailCommon.pri %%QT_PLUGINDIR%%/designer/mailcommonwidgets.so share/locale/ar/LC_MESSAGES/libmailcommon.mo share/locale/bg/LC_MESSAGES/libmailcommon.mo share/locale/bs/LC_MESSAGES/libmailcommon.mo share/locale/ca/LC_MESSAGES/libmailcommon.mo share/locale/ca@valencia/LC_MESSAGES/libmailcommon.mo share/locale/cs/LC_MESSAGES/libmailcommon.mo share/locale/da/LC_MESSAGES/libmailcommon.mo share/locale/de/LC_MESSAGES/libmailcommon.mo share/locale/el/LC_MESSAGES/libmailcommon.mo share/locale/en_GB/LC_MESSAGES/libmailcommon.mo share/locale/es/LC_MESSAGES/libmailcommon.mo share/locale/et/LC_MESSAGES/libmailcommon.mo share/locale/eu/LC_MESSAGES/libmailcommon.mo share/locale/fi/LC_MESSAGES/libmailcommon.mo share/locale/fr/LC_MESSAGES/libmailcommon.mo share/locale/ga/LC_MESSAGES/libmailcommon.mo share/locale/gl/LC_MESSAGES/libmailcommon.mo share/locale/hr/LC_MESSAGES/libmailcommon.mo share/locale/hu/LC_MESSAGES/libmailcommon.mo share/locale/ia/LC_MESSAGES/libmailcommon.mo share/locale/it/LC_MESSAGES/libmailcommon.mo share/locale/ja/LC_MESSAGES/libmailcommon.mo +share/locale/ka/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/sr@ijekavian/LC_MESSAGES/libmailcommon.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailcommon.mo +share/locale/sr@latin/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 d1b628880fcb..73023d3309ea 100644 --- a/net/mailimporter/distinfo +++ b/net/mailimporter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539648 -SHA256 (KDE/release-service/22.08.3/mailimporter-22.08.3.tar.xz) = b9a69455d642f4710db2e48910190d1bd73aa387a1f52c326d7a76bc358bc494 -SIZE (KDE/release-service/22.08.3/mailimporter-22.08.3.tar.xz) = 560408 +TIMESTAMP = 1670513305 +SHA256 (KDE/release-service/22.12.0/mailimporter-22.12.0.tar.xz) = 075748b8524022ac9373e18aafa15d757374fb5e9eefb392bd7c098ff2f4debc +SIZE (KDE/release-service/22.12.0/mailimporter-22.12.0.tar.xz) = 588496 diff --git a/net/mailimporter/pkg-plist b/net/mailimporter/pkg-plist index d423214709fa..3733c71bb4a8 100644 --- a/net/mailimporter/pkg-plist +++ b/net/mailimporter/pkg-plist @@ -1,137 +1,154 @@ include/KF5/MailImporter/MailImporter/FilterBalsa include/KF5/MailImporter/MailImporter/FilterClawsMail include/KF5/MailImporter/MailImporter/FilterEvolution include/KF5/MailImporter/MailImporter/FilterEvolution_v2 include/KF5/MailImporter/MailImporter/FilterEvolution_v3 include/KF5/MailImporter/MailImporter/FilterIcedove include/KF5/MailImporter/MailImporter/FilterImporterBase include/KF5/MailImporter/MailImporter/FilterInfo include/KF5/MailImporter/MailImporter/FilterInfoGui include/KF5/MailImporter/MailImporter/FilterKMailArchive include/KF5/MailImporter/MailImporter/FilterKMail_maildir include/KF5/MailImporter/MailImporter/FilterLNotes include/KF5/MailImporter/MailImporter/FilterMBox include/KF5/MailImporter/MailImporter/FilterMailApp include/KF5/MailImporter/MailImporter/FilterMailmanGzip include/KF5/MailImporter/MailImporter/FilterOE include/KF5/MailImporter/MailImporter/FilterOpera include/KF5/MailImporter/MailImporter/FilterPMail include/KF5/MailImporter/MailImporter/FilterPlain include/KF5/MailImporter/MailImporter/FilterSeaMonkey include/KF5/MailImporter/MailImporter/FilterSylpheed include/KF5/MailImporter/MailImporter/FilterTheBat include/KF5/MailImporter/MailImporter/FilterThunderbird include/KF5/MailImporter/MailImporter/Filters include/KF5/MailImporter/MailImporter/ImportMailsWidget include/KF5/MailImporter/MailImporter/MailImporter_Utils include/KF5/MailImporter/MailImporter/MessageStatus include/KF5/MailImporter/MailImporter/OtherMailerUtil include/KF5/MailImporter/mailimporter/filterbalsa.h include/KF5/MailImporter/mailimporter/filterclawsmail.h include/KF5/MailImporter/mailimporter/filterevolution.h include/KF5/MailImporter/mailimporter/filterevolution_v2.h include/KF5/MailImporter/mailimporter/filterevolution_v3.h include/KF5/MailImporter/mailimporter/filtericedove.h include/KF5/MailImporter/mailimporter/filterimporterbase.h include/KF5/MailImporter/mailimporter/filterinfo.h include/KF5/MailImporter/mailimporter/filterinfogui.h include/KF5/MailImporter/mailimporter/filterkmail_maildir.h include/KF5/MailImporter/mailimporter/filterkmailarchive.h include/KF5/MailImporter/mailimporter/filterlnotes.h include/KF5/MailImporter/mailimporter/filtermailapp.h include/KF5/MailImporter/mailimporter/filtermailmangzip.h include/KF5/MailImporter/mailimporter/filtermbox.h include/KF5/MailImporter/mailimporter/filteroe.h include/KF5/MailImporter/mailimporter/filteropera.h include/KF5/MailImporter/mailimporter/filterplain.h include/KF5/MailImporter/mailimporter/filterpmail.h include/KF5/MailImporter/mailimporter/filters.h include/KF5/MailImporter/mailimporter/filterseamonkey.h include/KF5/MailImporter/mailimporter/filtersylpheed.h include/KF5/MailImporter/mailimporter/filterthebat.h include/KF5/MailImporter/mailimporter/filterthunderbird.h include/KF5/MailImporter/mailimporter/importmailswidget.h include/KF5/MailImporter/mailimporter/mailimporter_export.h include/KF5/MailImporter/mailimporter/mailimporter_utils.h include/KF5/MailImporter/mailimporter/messagestatus.h include/KF5/MailImporter/mailimporter/othermailerutil.h include/KF5/MailImporter/mailimporter_version.h include/KF5/MailImporterAkonadi/MailImporterAkonadi/FilterImporterAkonadi include/KF5/MailImporterAkonadi/mailimporterakonadi/filterimporterakonadi.h include/KF5/MailImporterAkonadi/mailimporterakonadi/mailimporterakonadi_export.h include/KF5/MailImporterAkonadi/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/af/LC_MESSAGES/libmailimporter.mo share/locale/ar/LC_MESSAGES/libmailimporter.mo share/locale/be/LC_MESSAGES/libmailimporter.mo share/locale/bg/LC_MESSAGES/libmailimporter.mo +share/locale/br/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/cy/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/fy/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/hne/LC_MESSAGES/libmailimporter.mo share/locale/hr/LC_MESSAGES/libmailimporter.mo +share/locale/hsb/LC_MESSAGES/libmailimporter.mo share/locale/hu/LC_MESSAGES/libmailimporter.mo share/locale/ia/LC_MESSAGES/libmailimporter.mo +share/locale/ie/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/ka/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/mai/LC_MESSAGES/libmailimporter.mo +share/locale/mk/LC_MESSAGES/libmailimporter.mo share/locale/mr/LC_MESSAGES/libmailimporter.mo +share/locale/ms/LC_MESSAGES/libmailimporter.mo share/locale/nb/LC_MESSAGES/libmailimporter.mo share/locale/nds/LC_MESSAGES/libmailimporter.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/libmailimporter.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmailimporter.mo +share/locale/sr@latin/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/th/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/xh/LC_MESSAGES/libmailimporter.mo share/locale/zh_CN/LC_MESSAGES/libmailimporter.mo share/locale/zh_TW/LC_MESSAGES/libmailimporter.mo share/qlogging-categories5/mailimporter.categories share/qlogging-categories5/mailimporter.renamecategories diff --git a/net/messagelib/distinfo b/net/messagelib/distinfo index b6ec78cded45..61f09440a1cb 100644 --- a/net/messagelib/distinfo +++ b/net/messagelib/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539659 -SHA256 (KDE/release-service/22.08.3/messagelib-22.08.3.tar.xz) = 4768cbd7c7336f076887ca7bdc24b651436eb6d8980881d8df952a99154fb494 -SIZE (KDE/release-service/22.08.3/messagelib-22.08.3.tar.xz) = 10778240 +TIMESTAMP = 1670513318 +SHA256 (KDE/release-service/22.12.0/messagelib-22.12.0.tar.xz) = 9a9aa41961c333dac8c13fc8d367e5f4298d028f4e7324a48dba3c9f9ad40fa8 +SIZE (KDE/release-service/22.12.0/messagelib-22.12.0.tar.xz) = 11308492 diff --git a/net/messagelib/pkg-plist b/net/messagelib/pkg-plist index e7ad747ba417..20e6a7676f37 100644 --- a/net/messagelib/pkg-plist +++ b/net/messagelib/pkg-plist @@ -1,958 +1,1035 @@ include/KF5/MessageComposer/MessageComposer/AbstractEncryptJob include/KF5/MessageComposer/MessageComposer/AkonadiSender include/KF5/MessageComposer/MessageComposer/AliasesExpandJob include/KF5/MessageComposer/MessageComposer/AttachmentClipBoardJob include/KF5/MessageComposer/MessageComposer/AttachmentControllerBase include/KF5/MessageComposer/MessageComposer/AttachmentFromPublicKeyJob include/KF5/MessageComposer/MessageComposer/AttachmentJob include/KF5/MessageComposer/MessageComposer/AttachmentModel include/KF5/MessageComposer/MessageComposer/AttachmentVcardFromAddressBookJob include/KF5/MessageComposer/MessageComposer/AutocryptHeadersJob include/KF5/MessageComposer/MessageComposer/Composer include/KF5/MessageComposer/MessageComposer/ComposerAttachmentInterface include/KF5/MessageComposer/MessageComposer/ComposerLineEdit include/KF5/MessageComposer/MessageComposer/ComposerViewBase include/KF5/MessageComposer/MessageComposer/ComposerViewInterface +include/KF5/MessageComposer/MessageComposer/ContactPreference include/KF5/MessageComposer/MessageComposer/ContentJobBase include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariableMenu include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesJob include/KF5/MessageComposer/MessageComposer/ConvertSnippetVariablesUtil include/KF5/MessageComposer/MessageComposer/DraftStatus include/KF5/MessageComposer/MessageComposer/EncryptJob include/KF5/MessageComposer/MessageComposer/FollowUpReminderSelectDateDialog include/KF5/MessageComposer/MessageComposer/FollowupReminder include/KF5/MessageComposer/MessageComposer/FollowupReminderCreateJob include/KF5/MessageComposer/MessageComposer/GlobalPart include/KF5/MessageComposer/MessageComposer/ImageScalingWidget include/KF5/MessageComposer/MessageComposer/InfoPart include/KF5/MessageComposer/MessageComposer/InsertTextFileJob include/KF5/MessageComposer/MessageComposer/JobBase include/KF5/MessageComposer/MessageComposer/Kleo_Util include/KF5/MessageComposer/MessageComposer/MDNAdviceDialog include/KF5/MessageComposer/MessageComposer/MDNAdviceHelper include/KF5/MessageComposer/MessageComposer/MDNWarningWidgetJob include/KF5/MessageComposer/MessageComposer/MainTextJob include/KF5/MessageComposer/MessageComposer/MessageComposerSettings include/KF5/MessageComposer/MessageComposer/MessageFactoryNG include/KF5/MessageComposer/MessageComposer/MessageHelper include/KF5/MessageComposer/MessageComposer/MessagePart include/KF5/MessageComposer/MessageComposer/MessageSender include/KF5/MessageComposer/MessageComposer/MultipartJob include/KF5/MessageComposer/MessageComposer/NearExpiryChecker include/KF5/MessageComposer/MessageComposer/PluginActionType include/KF5/MessageComposer/MessageComposer/PluginComposerInterface include/KF5/MessageComposer/MessageComposer/PluginEditor include/KF5/MessageComposer/MessageComposer/PluginEditorBase include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSend include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendInterface include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendManager include/KF5/MessageComposer/MessageComposer/PluginEditorCheckBeforeSendParams include/KF5/MessageComposer/MessageComposer/PluginEditorConfigureBaseWidget include/KF5/MessageComposer/MessageComposer/PluginEditorConvertText include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextInterface include/KF5/MessageComposer/MessageComposer/PluginEditorConvertTextManager include/KF5/MessageComposer/MessageComposer/PluginEditorConverterBeforeConvertingData include/KF5/MessageComposer/MessageComposer/PluginEditorConverterInitialData include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarCustomToolsViewInterface include/KF5/MessageComposer/MessageComposer/PluginEditorGrammarManager include/KF5/MessageComposer/MessageComposer/PluginEditorInit include/KF5/MessageComposer/MessageComposer/PluginEditorInitInterface include/KF5/MessageComposer/MessageComposer/PluginEditorInitManager include/KF5/MessageComposer/MessageComposer/PluginEditorInterface include/KF5/MessageComposer/MessageComposer/PluginEditorManager include/KF5/MessageComposer/MessageComposer/ProtectedHeadersJob include/KF5/MessageComposer/MessageComposer/Recipient include/KF5/MessageComposer/MessageComposer/RecipientLine include/KF5/MessageComposer/MessageComposer/RecipientsEditor include/KF5/MessageComposer/MessageComposer/RichTextComposerNg include/KF5/MessageComposer/MessageComposer/RichTextComposerSignatures +include/KF5/MessageComposer/MessageComposer/SaveContactPreferenceJob include/KF5/MessageComposer/MessageComposer/SendLaterCreateJob include/KF5/MessageComposer/MessageComposer/SendLaterDialog include/KF5/MessageComposer/MessageComposer/SendLaterInfo include/KF5/MessageComposer/MessageComposer/SendLaterJob include/KF5/MessageComposer/MessageComposer/SendLaterRemoveJob include/KF5/MessageComposer/MessageComposer/SendLaterUtil include/KF5/MessageComposer/MessageComposer/SignEncryptJob include/KF5/MessageComposer/MessageComposer/SignJob include/KF5/MessageComposer/MessageComposer/SignatureController include/KF5/MessageComposer/MessageComposer/SinglepartJob include/KF5/MessageComposer/MessageComposer/SkeletonMessageJob include/KF5/MessageComposer/MessageComposer/StatusBarLabelToggledState include/KF5/MessageComposer/MessageComposer/TextPart include/KF5/MessageComposer/MessageComposer/TransparentJob include/KF5/MessageComposer/MessageComposer/Util include/KF5/MessageComposer/messagecomposer/abstractencryptjob.h include/KF5/MessageComposer/messagecomposer/akonadisender.h include/KF5/MessageComposer/messagecomposer/aliasesexpandjob.h include/KF5/MessageComposer/messagecomposer/attachmentclipboardjob.h include/KF5/MessageComposer/messagecomposer/attachmentcontrollerbase.h include/KF5/MessageComposer/messagecomposer/attachmentfrompublickeyjob.h include/KF5/MessageComposer/messagecomposer/attachmentjob.h include/KF5/MessageComposer/messagecomposer/attachmentmodel.h include/KF5/MessageComposer/messagecomposer/attachmentvcardfromaddressbookjob.h include/KF5/MessageComposer/messagecomposer/autocryptheadersjob.h include/KF5/MessageComposer/messagecomposer/composer.h include/KF5/MessageComposer/messagecomposer/composerattachmentinterface.h include/KF5/MessageComposer/messagecomposer/composerlineedit.h include/KF5/MessageComposer/messagecomposer/composerviewbase.h include/KF5/MessageComposer/messagecomposer/composerviewinterface.h +include/KF5/MessageComposer/messagecomposer/contactpreference.h include/KF5/MessageComposer/messagecomposer/contentjobbase.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablemenu.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesjob.h include/KF5/MessageComposer/messagecomposer/convertsnippetvariablesutil.h include/KF5/MessageComposer/messagecomposer/draftstatus.h include/KF5/MessageComposer/messagecomposer/encryptjob.h include/KF5/MessageComposer/messagecomposer/followupreminder.h include/KF5/MessageComposer/messagecomposer/followupremindercreatejob.h include/KF5/MessageComposer/messagecomposer/followupreminderselectdatedialog.h include/KF5/MessageComposer/messagecomposer/globalpart.h include/KF5/MessageComposer/messagecomposer/imagescalingwidget.h include/KF5/MessageComposer/messagecomposer/infopart.h include/KF5/MessageComposer/messagecomposer/inserttextfilejob.h include/KF5/MessageComposer/messagecomposer/jobbase.h include/KF5/MessageComposer/messagecomposer/kleo_util.h include/KF5/MessageComposer/messagecomposer/maintextjob.h include/KF5/MessageComposer/messagecomposer/mdnadvicedialog.h include/KF5/MessageComposer/messagecomposer/mdnadvicehelper.h include/KF5/MessageComposer/messagecomposer/mdnwarningwidgetjob.h include/KF5/MessageComposer/messagecomposer/messagecomposer_debug.h include/KF5/MessageComposer/messagecomposer/messagecomposer_export.h include/KF5/MessageComposer/messagecomposer/messagecomposersettings.h include/KF5/MessageComposer/messagecomposer/messagecomposersettings_base.h include/KF5/MessageComposer/messagecomposer/messagefactoryng.h include/KF5/MessageComposer/messagecomposer/messagehelper.h include/KF5/MessageComposer/messagecomposer/messagepart.h include/KF5/MessageComposer/messagecomposer/messagesender.h include/KF5/MessageComposer/messagecomposer/multipartjob.h include/KF5/MessageComposer/messagecomposer/nearexpirychecker.h include/KF5/MessageComposer/messagecomposer/pluginactiontype.h include/KF5/MessageComposer/messagecomposer/plugincomposerinterface.h include/KF5/MessageComposer/messagecomposer/plugineditor.h include/KF5/MessageComposer/messagecomposer/plugineditorbase.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesend.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorcheckbeforesendparams.h include/KF5/MessageComposer/messagecomposer/plugineditorconfigurebasewidget.h include/KF5/MessageComposer/messagecomposer/plugineditorconverterbeforeconvertingdata.h include/KF5/MessageComposer/messagecomposer/plugineditorconverterinitialdata.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttext.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttextinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorconverttextmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorgrammarcustomtoolsviewinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorgrammarmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorinit.h include/KF5/MessageComposer/messagecomposer/plugineditorinitinterface.h include/KF5/MessageComposer/messagecomposer/plugineditorinitmanager.h include/KF5/MessageComposer/messagecomposer/plugineditorinterface.h include/KF5/MessageComposer/messagecomposer/plugineditormanager.h include/KF5/MessageComposer/messagecomposer/protectedheadersjob.h include/KF5/MessageComposer/messagecomposer/recipient.h include/KF5/MessageComposer/messagecomposer/recipientline.h include/KF5/MessageComposer/messagecomposer/recipientseditor.h include/KF5/MessageComposer/messagecomposer/richtextcomposerng.h include/KF5/MessageComposer/messagecomposer/richtextcomposersignatures.h +include/KF5/MessageComposer/messagecomposer/savecontactpreferencejob.h include/KF5/MessageComposer/messagecomposer/sendlatercreatejob.h include/KF5/MessageComposer/messagecomposer/sendlaterdialog.h include/KF5/MessageComposer/messagecomposer/sendlaterinfo.h include/KF5/MessageComposer/messagecomposer/sendlaterjob.h include/KF5/MessageComposer/messagecomposer/sendlaterremovejob.h include/KF5/MessageComposer/messagecomposer/sendlaterutil.h include/KF5/MessageComposer/messagecomposer/signaturecontroller.h include/KF5/MessageComposer/messagecomposer/signencryptjob.h include/KF5/MessageComposer/messagecomposer/signjob.h include/KF5/MessageComposer/messagecomposer/singlepartjob.h include/KF5/MessageComposer/messagecomposer/skeletonmessagejob.h include/KF5/MessageComposer/messagecomposer/statusbarlabeltoggledstate.h include/KF5/MessageComposer/messagecomposer/textpart.h include/KF5/MessageComposer/messagecomposer/transparentjob.h include/KF5/MessageComposer/messagecomposer/util.h include/KF5/MessageComposer/messagecomposer_version.h include/KF5/MessageCore/MessageCore/AttachmentCompressJob include/KF5/MessageCore/MessageCore/AttachmentFromUrlBaseJob include/KF5/MessageCore/MessageCore/AttachmentFromUrlUtils include/KF5/MessageCore/MessageCore/AttachmentLoadJob include/KF5/MessageCore/MessageCore/AttachmentPart include/KF5/MessageCore/MessageCore/AttachmentPropertiesDialog include/KF5/MessageCore/MessageCore/AttachmentUpdateJob include/KF5/MessageCore/MessageCore/AutocryptRecipient include/KF5/MessageCore/MessageCore/AutocryptStorage include/KF5/MessageCore/MessageCore/AutocryptUtils include/KF5/MessageCore/MessageCore/ColorUtil include/KF5/MessageCore/MessageCore/ImageCollector include/KF5/MessageCore/MessageCore/MailingList include/KF5/MessageCore/MessageCore/MessageCoreSettings include/KF5/MessageCore/MessageCore/NodeHelper include/KF5/MessageCore/MessageCore/StringUtil include/KF5/MessageCore/MessageCore/Util include/KF5/MessageCore/messagecore/attachmentcompressjob.h include/KF5/MessageCore/messagecore/attachmentfromurlbasejob.h include/KF5/MessageCore/messagecore/attachmentfromurlutils.h include/KF5/MessageCore/messagecore/attachmentloadjob.h include/KF5/MessageCore/messagecore/attachmentpart.h include/KF5/MessageCore/messagecore/attachmentpropertiesdialog.h include/KF5/MessageCore/messagecore/attachmentupdatejob.h include/KF5/MessageCore/messagecore/autocryptrecipient.h include/KF5/MessageCore/messagecore/autocryptstorage.h include/KF5/MessageCore/messagecore/autocryptutils.h include/KF5/MessageCore/messagecore/colorutil.h include/KF5/MessageCore/messagecore/globalsettings_messagecore.h include/KF5/MessageCore/messagecore/imagecollector.h include/KF5/MessageCore/messagecore/mailinglist.h include/KF5/MessageCore/messagecore/messagecore_export.h include/KF5/MessageCore/messagecore/messagecoresettings.h include/KF5/MessageCore/messagecore/nodehelper.h include/KF5/MessageCore/messagecore/stringutil.h include/KF5/MessageCore/messagecore/util.h include/KF5/MessageCore/messagecore_version.h include/KF5/MessageList/MessageList/AggregationComboBox include/KF5/MessageList/MessageList/AggregationConfigButton include/KF5/MessageList/MessageList/Enums include/KF5/MessageList/MessageList/MessageListUtil include/KF5/MessageList/MessageList/Pane include/KF5/MessageList/MessageList/QuickSearchLine include/KF5/MessageList/MessageList/StorageModel include/KF5/MessageList/MessageList/StorageModelBase include/KF5/MessageList/MessageList/ThemeComboBox include/KF5/MessageList/MessageList/ThemeConfigButton include/KF5/MessageList/MessageList/View include/KF5/MessageList/MessageList/WidgetBase include/KF5/MessageList/messagelist/aggregationcombobox.h include/KF5/MessageList/messagelist/aggregationconfigbutton.h include/KF5/MessageList/messagelist/enums.h include/KF5/MessageList/messagelist/messagelist_export.h include/KF5/MessageList/messagelist/messagelistsettings.h include/KF5/MessageList/messagelist/messagelistutil.h include/KF5/MessageList/messagelist/pane.h include/KF5/MessageList/messagelist/quicksearchline.h include/KF5/MessageList/messagelist/storagemodel.h include/KF5/MessageList/messagelist/storagemodelbase.h include/KF5/MessageList/messagelist/themecombobox.h include/KF5/MessageList/messagelist/themeconfigbutton.h include/KF5/MessageList/messagelist/view.h include/KF5/MessageList/messagelist/widgetbase.h include/KF5/MessageList/messagelist_version.h include/KF5/MessageViewer/MessageViewer/AttachmentStrategy include/KF5/MessageViewer/MessageViewer/BodyPartURLHandler include/KF5/MessageViewer/MessageViewer/BufferedHtmlWriter include/KF5/MessageViewer/MessageViewer/CSSHelper include/KF5/MessageViewer/MessageViewer/CSSHelperBase include/KF5/MessageViewer/MessageViewer/ConfigureWidget include/KF5/MessageViewer/MessageViewer/DKIMCheckPolicy include/KF5/MessageViewer/MessageViewer/DKIMCheckSignatureJob include/KF5/MessageViewer/MessageViewer/DKIMHeaderParser include/KF5/MessageViewer/MessageViewer/DKIMInfo include/KF5/MessageViewer/MessageViewer/DKIMKeyRecord include/KF5/MessageViewer/MessageViewer/DKIMManageRulesDialog include/KF5/MessageViewer/MessageViewer/DKIMManageRulesWidget include/KF5/MessageViewer/MessageViewer/DKIMManager include/KF5/MessageViewer/MessageViewer/DKIMManagerAuthenticationServer include/KF5/MessageViewer/MessageViewer/DKIMManagerKey include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyDialog include/KF5/MessageViewer/MessageViewer/DKIMManagerKeyWidget include/KF5/MessageViewer/MessageViewer/DKIMManagerRules include/KF5/MessageViewer/MessageViewer/DKIMRule include/KF5/MessageViewer/MessageViewer/DKIMViewerMenu include/KF5/MessageViewer/MessageViewer/DKIMWidgetInfo include/KF5/MessageViewer/MessageViewer/EditorWatcher include/KF5/MessageViewer/MessageViewer/FileHtmlWriter include/KF5/MessageViewer/MessageViewer/GrantleeHeaderStyle include/KF5/MessageViewer/MessageViewer/GrantleeHeaderTestStyle include/KF5/MessageViewer/MessageViewer/HeaderStrategy include/KF5/MessageViewer/MessageViewer/HeaderStyle include/KF5/MessageViewer/MessageViewer/HeaderStyleInterface include/KF5/MessageViewer/MessageViewer/HeaderStyleMenuManager include/KF5/MessageViewer/MessageViewer/HeaderStylePlugin include/KF5/MessageViewer/MessageViewer/HeaderStylePluginManager include/KF5/MessageViewer/MessageViewer/HeaderStyle_Util include/KF5/MessageViewer/MessageViewer/HtmlBlock include/KF5/MessageViewer/MessageViewer/HtmlWriter include/KF5/MessageViewer/MessageViewer/IconNameCache include/KF5/MessageViewer/MessageViewer/InvitationSettings include/KF5/MessageViewer/MessageViewer/KXFace include/KF5/MessageViewer/MessageViewer/MDNWarningWidget include/KF5/MessageViewer/MessageViewer/MailWebEnginePage include/KF5/MessageViewer/MessageViewer/MailWebEngineView include/KF5/MessageViewer/MessageViewer/MarkMessageReadHandler include/KF5/MessageViewer/MessageViewer/MessagePartRenderPlugin include/KF5/MessageViewer/MessageViewer/MessagePartRendererBase include/KF5/MessageViewer/MessageViewer/MessagePartRendererManager include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingInterface include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingParameters include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPlugin include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginManager include/KF5/MessageViewer/MessageViewer/MessageViewerCheckBeforeDeletingPluginWidget include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPlugin include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginManager include/KF5/MessageViewer/MessageViewer/MessageViewerConfigureSettingsPluginWidget include/KF5/MessageViewer/MessageViewer/MessageViewerSettings include/KF5/MessageViewer/MessageViewer/MessageViewerUtil include/KF5/MessageViewer/MessageViewer/MimeType include/KF5/MessageViewer/MessageViewer/ObjectTreeEmptySource include/KF5/MessageViewer/MessageViewer/OpenUrlWithManager include/KF5/MessageViewer/MessageViewer/OpenWithUrlInfo include/KF5/MessageViewer/MessageViewer/PlainHeaderStyle include/KF5/MessageViewer/MessageViewer/PrintingSettings include/KF5/MessageViewer/MessageViewer/RemoteContentConfigureDialog include/KF5/MessageViewer/MessageViewer/RemoteContentMenu include/KF5/MessageViewer/MessageViewer/RichHeaderStrategy include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrl include/KF5/MessageViewer/MessageViewer/ScamCheckShortUrlManager include/KF5/MessageViewer/MessageViewer/ScamDetectionInfo include/KF5/MessageViewer/MessageViewer/ScamDetectionWhiteListSettingsManager include/KF5/MessageViewer/MessageViewer/ScamExpandUrlJob include/KF5/MessageViewer/MessageViewer/SpamHeaderAnalyzer include/KF5/MessageViewer/MessageViewer/Stl_Util include/KF5/MessageViewer/MessageViewer/URLHandler include/KF5/MessageViewer/MessageViewer/Viewer include/KF5/MessageViewer/MessageViewer/ViewerPlugin include/KF5/MessageViewer/MessageViewer/ViewerPluginInterface include/KF5/MessageViewer/MessageViewer/ViewerPluginManager include/KF5/MessageViewer/MessageViewer/ViewerPluginToolManager include/KF5/MessageViewer/messageviewer/attachmentstrategy.h include/KF5/MessageViewer/messageviewer/bodyparturlhandler.h include/KF5/MessageViewer/messageviewer/bufferedhtmlwriter.h include/KF5/MessageViewer/messageviewer/config-messageviewer.h include/KF5/MessageViewer/messageviewer/configurewidget.h include/KF5/MessageViewer/messageviewer/csshelper.h include/KF5/MessageViewer/messageviewer/csshelperbase.h include/KF5/MessageViewer/messageviewer/dkimcheckpolicy.h include/KF5/MessageViewer/messageviewer/dkimchecksignaturejob.h include/KF5/MessageViewer/messageviewer/dkimheaderparser.h include/KF5/MessageViewer/messageviewer/dkiminfo.h include/KF5/MessageViewer/messageviewer/dkimkeyrecord.h include/KF5/MessageViewer/messageviewer/dkimmanager.h include/KF5/MessageViewer/messageviewer/dkimmanagerauthenticationserver.h include/KF5/MessageViewer/messageviewer/dkimmanagerkey.h include/KF5/MessageViewer/messageviewer/dkimmanagerkeydialog.h include/KF5/MessageViewer/messageviewer/dkimmanagerkeywidget.h include/KF5/MessageViewer/messageviewer/dkimmanagerrules.h include/KF5/MessageViewer/messageviewer/dkimmanagerulesdialog.h include/KF5/MessageViewer/messageviewer/dkimmanageruleswidget.h include/KF5/MessageViewer/messageviewer/dkimrule.h include/KF5/MessageViewer/messageviewer/dkimviewermenu.h include/KF5/MessageViewer/messageviewer/dkimwidgetinfo.h include/KF5/MessageViewer/messageviewer/editorwatcher.h include/KF5/MessageViewer/messageviewer/filehtmlwriter.h include/KF5/MessageViewer/messageviewer/globalsettings_messageviewer.h include/KF5/MessageViewer/messageviewer/grantleeheaderstyle.h include/KF5/MessageViewer/messageviewer/grantleeheaderteststyle.h include/KF5/MessageViewer/messageviewer/headerstrategy.h include/KF5/MessageViewer/messageviewer/headerstyle.h include/KF5/MessageViewer/messageviewer/headerstyle_util.h include/KF5/MessageViewer/messageviewer/headerstyleinterface.h include/KF5/MessageViewer/messageviewer/headerstylemenumanager.h include/KF5/MessageViewer/messageviewer/headerstyleplugin.h include/KF5/MessageViewer/messageviewer/headerstylepluginmanager.h include/KF5/MessageViewer/messageviewer/htmlblock.h include/KF5/MessageViewer/messageviewer/htmlwriter.h include/KF5/MessageViewer/messageviewer/iconnamecache.h include/KF5/MessageViewer/messageviewer/invitationsettings.h include/KF5/MessageViewer/messageviewer/kxface.h include/KF5/MessageViewer/messageviewer/mailwebenginepage.h include/KF5/MessageViewer/messageviewer/mailwebengineview.h include/KF5/MessageViewer/messageviewer/markmessagereadhandler.h include/KF5/MessageViewer/messageviewer/mdnwarningwidget.h include/KF5/MessageViewer/messageviewer/messagepartrendererbase.h include/KF5/MessageViewer/messageviewer/messagepartrenderermanager.h include/KF5/MessageViewer/messageviewer/messagepartrenderplugin.h include/KF5/MessageViewer/messageviewer/messageviewer_debug.h include/KF5/MessageViewer/messageviewer/messageviewer_export.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletinginterface.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingparameters.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingplugin.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginmanager.h include/KF5/MessageViewer/messageviewer/messageviewercheckbeforedeletingpluginwidget.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingsplugin.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginmanager.h include/KF5/MessageViewer/messageviewer/messageviewerconfiguresettingspluginwidget.h include/KF5/MessageViewer/messageviewer/messageviewersettings.h include/KF5/MessageViewer/messageviewer/messageviewerutil.h include/KF5/MessageViewer/messageviewer/mimetype.h include/KF5/MessageViewer/messageviewer/objecttreeemptysource.h include/KF5/MessageViewer/messageviewer/openurlwithmanager.h include/KF5/MessageViewer/messageviewer/openwithurlinfo.h include/KF5/MessageViewer/messageviewer/plainheaderstyle.h include/KF5/MessageViewer/messageviewer/printingsettings.h include/KF5/MessageViewer/messageviewer/remotecontentconfiguredialog.h include/KF5/MessageViewer/messageviewer/remotecontentmenu.h include/KF5/MessageViewer/messageviewer/richheaderstrategy.h include/KF5/MessageViewer/messageviewer/scamcheckshorturl.h include/KF5/MessageViewer/messageviewer/scamcheckshorturlmanager.h include/KF5/MessageViewer/messageviewer/scamdetectioninfo.h include/KF5/MessageViewer/messageviewer/scamdetectionwhitelistsettingsmanager.h include/KF5/MessageViewer/messageviewer/scamexpandurljob.h include/KF5/MessageViewer/messageviewer/spamheaderanalyzer.h include/KF5/MessageViewer/messageviewer/stl_util.h include/KF5/MessageViewer/messageviewer/urlhandler.h include/KF5/MessageViewer/messageviewer/viewer.h include/KF5/MessageViewer/messageviewer/viewerplugin.h include/KF5/MessageViewer/messageviewer/viewerplugininterface.h include/KF5/MessageViewer/messageviewer/viewerpluginmanager.h include/KF5/MessageViewer/messageviewer/viewerplugintoolmanager.h include/KF5/MessageViewer/messageviewer_version.h include/KF5/MimeTreeParser/MimeTreeParser/AttachmentTemporaryFilesDirs include/KF5/MimeTreeParser/MimeTreeParser/BodyPart include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatter include/KF5/MimeTreeParser/MimeTreeParser/BodyPartFormatterFactory include/KF5/MimeTreeParser/MimeTreeParser/Enums include/KF5/MimeTreeParser/MimeTreeParser/MessagePart include/KF5/MimeTreeParser/MimeTreeParser/NodeHelper include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeParser include/KF5/MimeTreeParser/MimeTreeParser/ObjectTreeSource include/KF5/MimeTreeParser/MimeTreeParser/PartMetaData include/KF5/MimeTreeParser/MimeTreeParser/PartNodeBodyPart include/KF5/MimeTreeParser/MimeTreeParser/SimpleObjectTreeSource include/KF5/MimeTreeParser/MimeTreeParser/Util include/KF5/MimeTreeParser/mimetreeparser/attachmenttemporaryfilesdirs.h include/KF5/MimeTreeParser/mimetreeparser/bodypart.h include/KF5/MimeTreeParser/mimetreeparser/bodypartformatter.h include/KF5/MimeTreeParser/mimetreeparser/bodypartformatterfactory.h include/KF5/MimeTreeParser/mimetreeparser/enums.h include/KF5/MimeTreeParser/mimetreeparser/messagepart.h include/KF5/MimeTreeParser/mimetreeparser/mimetreeparser_export.h include/KF5/MimeTreeParser/mimetreeparser/nodehelper.h include/KF5/MimeTreeParser/mimetreeparser/objecttreeparser.h include/KF5/MimeTreeParser/mimetreeparser/objecttreesource.h include/KF5/MimeTreeParser/mimetreeparser/partmetadata.h include/KF5/MimeTreeParser/mimetreeparser/partnodebodypart.h include/KF5/MimeTreeParser/mimetreeparser/simpleobjecttreesource.h include/KF5/MimeTreeParser/mimetreeparser/util.h include/KF5/MimeTreeParser/mimetreeparser_version.h include/KF5/TemplateParser/TemplateParser/CustomTemplates include/KF5/TemplateParser/TemplateParser/CustomTemplatesMenu include/KF5/TemplateParser/TemplateParser/DefaultTemplates include/KF5/TemplateParser/TemplateParser/TemplateConvertCommandJob include/KF5/TemplateParser/TemplateParser/TemplateParserEmailAddressRequesterBase include/KF5/TemplateParser/TemplateParser/TemplateParserExtractHtmlInfoResult include/KF5/TemplateParser/TemplateParser/TemplateParserJob include/KF5/TemplateParser/TemplateParser/TemplatesCommandMenu include/KF5/TemplateParser/TemplateParser/TemplatesConfiguration include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandAction include/KF5/TemplateParser/TemplateParser/TemplatesInsertCommandPushButton include/KF5/TemplateParser/TemplateParser/TemplatesTextEdit include/KF5/TemplateParser/TemplateParser/TemplatesUtil include/KF5/TemplateParser/templateparser/customtemplates.h include/KF5/TemplateParser/templateparser/customtemplates_kfg.h include/KF5/TemplateParser/templateparser/customtemplatesmenu.h include/KF5/TemplateParser/templateparser/defaulttemplates.h include/KF5/TemplateParser/templateparser/globalsettings_templateparser.h include/KF5/TemplateParser/templateparser/templateconvertcommandjob.h include/KF5/TemplateParser/templateparser/templateparser_export.h include/KF5/TemplateParser/templateparser/templateparseremailaddressrequesterbase.h include/KF5/TemplateParser/templateparser/templateparserextracthtmlinforesult.h include/KF5/TemplateParser/templateparser/templateparserjob.h include/KF5/TemplateParser/templateparser/templatescommandmenu.h include/KF5/TemplateParser/templateparser/templatesconfiguration.h include/KF5/TemplateParser/templateparser/templatesconfiguration_kfg.h include/KF5/TemplateParser/templateparser/templatesinsertcommandaction.h include/KF5/TemplateParser/templateparser/templatesinsertcommandpushbutton.h include/KF5/TemplateParser/templateparser/templatestextedit.h include/KF5/TemplateParser/templateparser/templatesutil.h include/KF5/TemplateParser/templateparser/ui_templatesconfiguration_base.h include/KF5/TemplateParser/templateparser_version.h include/KF5/WebEngineViewer/WebEngineViewer/BlockExternalResourcesUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/BlockTrackingUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlCache include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlJob include/KF5/WebEngineViewer/WebEngineViewer/CheckPhishingUrlUtil include/KF5/WebEngineViewer/WebEngineViewer/CreatePhishingUrlDataBaseJob include/KF5/WebEngineViewer/WebEngineViewer/DeveloperToolDialog include/KF5/WebEngineViewer/WebEngineViewer/FindBarBase include/KF5/WebEngineViewer/WebEngineViewer/FindBarWebEngineView include/KF5/WebEngineViewer/WebEngineViewer/HashCacheManager include/KF5/WebEngineViewer/WebEngineViewer/InterceptorManager include/KF5/WebEngineViewer/WebEngineViewer/LoadExternalReferencesUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/LocalDataBaseManager include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorConfigureWidget include/KF5/WebEngineViewer/WebEngineViewer/NetworkPluginUrlInterceptorInterface include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptor include/KF5/WebEngineViewer/WebEngineViewer/NetworkUrlInterceptorPluginManager include/KF5/WebEngineViewer/WebEngineViewer/SearchFullHashJob include/KF5/WebEngineViewer/WebEngineViewer/SubmittedFormWarningWidget include/KF5/WebEngineViewer/WebEngineViewer/TrackingWarningWidget include/KF5/WebEngineViewer/WebEngineViewer/UpdateDataBaseInfo include/KF5/WebEngineViewer/WebEngineViewer/WebEngineAccessKey include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportHtmlPageJob include/KF5/WebEngineViewer/WebEngineViewer/WebEngineExportPdfPageJob include/KF5/WebEngineViewer/WebEngineViewer/WebEngineManageScript include/KF5/WebEngineViewer/WebEngineViewer/WebEnginePage include/KF5/WebEngineViewer/WebEngineViewer/WebEngineScript include/KF5/WebEngineViewer/WebEngineViewer/WebEngineView include/KF5/WebEngineViewer/WebEngineViewer/WebHitTest include/KF5/WebEngineViewer/WebEngineViewer/WebHitTestResult include/KF5/WebEngineViewer/WebEngineViewer/ZoomActionMenu include/KF5/WebEngineViewer/webengineviewer/blockexternalresourcesurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/blocktrackingurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurlcache.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurljob.h include/KF5/WebEngineViewer/webengineviewer/checkphishingurlutil.h include/KF5/WebEngineViewer/webengineviewer/createphishingurldatabasejob.h include/KF5/WebEngineViewer/webengineviewer/developertooldialog.h include/KF5/WebEngineViewer/webengineviewer/findbarbase.h include/KF5/WebEngineViewer/webengineviewer/findbarwebengineview.h include/KF5/WebEngineViewer/webengineviewer/hashcachemanager.h include/KF5/WebEngineViewer/webengineviewer/interceptormanager.h include/KF5/WebEngineViewer/webengineviewer/loadexternalreferencesurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/localdatabasemanager.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorconfigurewidget.h include/KF5/WebEngineViewer/webengineviewer/networkpluginurlinterceptorinterface.h include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptor.h include/KF5/WebEngineViewer/webengineviewer/networkurlinterceptorpluginmanager.h include/KF5/WebEngineViewer/webengineviewer/searchfullhashjob.h include/KF5/WebEngineViewer/webengineviewer/submittedformwarningwidget.h include/KF5/WebEngineViewer/webengineviewer/trackingwarningwidget.h include/KF5/WebEngineViewer/webengineviewer/updatedatabaseinfo.h include/KF5/WebEngineViewer/webengineviewer/webengineaccesskey.h include/KF5/WebEngineViewer/webengineviewer/webengineexporthtmlpagejob.h include/KF5/WebEngineViewer/webengineviewer/webengineexportpdfpagejob.h include/KF5/WebEngineViewer/webengineviewer/webenginemanagescript.h include/KF5/WebEngineViewer/webengineviewer/webenginepage.h include/KF5/WebEngineViewer/webengineviewer/webenginescript.h include/KF5/WebEngineViewer/webengineviewer/webengineview.h include/KF5/WebEngineViewer/webengineviewer/webengineviewer_export.h include/KF5/WebEngineViewer/webengineviewer/webhittest.h include/KF5/WebEngineViewer/webengineviewer/webhittestresult.h include/KF5/WebEngineViewer/webengineviewer/zoomactionmenu.h include/KF5/WebEngineViewer/webengineviewer_version.h lib/cmake/KF5MessageComposer/KF5MessageComposerConfig.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerConfigVersion.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageComposer/KF5MessageComposerTargets.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfig.cmake lib/cmake/KF5MessageCore/KF5MessageCoreConfigVersion.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageCore/KF5MessageCoreTargets.cmake lib/cmake/KF5MessageList/KF5MessageListConfig.cmake lib/cmake/KF5MessageList/KF5MessageListConfigVersion.cmake lib/cmake/KF5MessageList/KF5MessageListTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageList/KF5MessageListTargets.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfig.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerConfigVersion.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MessageViewer/KF5MessageViewerTargets.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfig.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserConfigVersion.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5MimeTreeParser/KF5MimeTreeParserTargets.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfig.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserConfigVersion.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5TemplateParser/KF5TemplateParserTargets.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfig.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerConfigVersion.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5WebEngineViewer/KF5WebEngineViewerTargets.cmake lib/libKF5MessageComposer.so lib/libKF5MessageComposer.so.5 lib/libKF5MessageComposer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageCore.so lib/libKF5MessageCore.so.5 lib/libKF5MessageCore.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageList.so lib/libKF5MessageList.so.5 lib/libKF5MessageList.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MessageViewer.so lib/libKF5MessageViewer.so.5 lib/libKF5MessageViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5MimeTreeParser.so lib/libKF5MimeTreeParser.so.5 lib/libKF5MimeTreeParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5TemplateParser.so lib/libKF5TemplateParser.so.5 lib/libKF5TemplateParser.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5WebEngineViewer.so lib/libKF5WebEngineViewer.so.5 lib/libKF5WebEngineViewer.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_MessageComposer.pri %%QT_MKSPECDIR%%/modules/qt_MessageCore.pri %%QT_MKSPECDIR%%/modules/qt_MessageList.pri %%QT_MKSPECDIR%%/modules/qt_MessageViewer.pri %%QT_MKSPECDIR%%/modules/qt_TemplateParser.pri %%QT_MKSPECDIR%%/modules/qt_WebEngineViewer.pri %%QT_PLUGINDIR%%/pim5/messageviewer/grantlee/5.0/messageviewer_grantlee_extension.so %%QT_PLUGINDIR%%/pim5/messageviewer/headerstyle/messageviewer_defaultgrantleeheaderstyleplugin.so share/config.kcfg/customtemplates_kfg.kcfg share/config.kcfg/templatesconfiguration_kfg.kcfg share/knotifications5/messageviewer.notifyrc share/knsrcfiles/messageviewer_header_themes.knsrc share/libmessageviewer/pics/enterprise_bottom.png share/libmessageviewer/pics/enterprise_bottom_left.png share/libmessageviewer/pics/enterprise_bottom_right.png share/libmessageviewer/pics/enterprise_icon.png share/libmessageviewer/pics/enterprise_left.png share/libmessageviewer/pics/enterprise_right.png share/libmessageviewer/pics/enterprise_s_left.png share/libmessageviewer/pics/enterprise_s_right.png share/libmessageviewer/pics/enterprise_sbar.png share/libmessageviewer/pics/enterprise_sp_right.png share/libmessageviewer/pics/enterprise_sw.png share/libmessageviewer/pics/enterprise_top.png share/libmessageviewer/pics/enterprise_top_left.png share/libmessageviewer/pics/enterprise_top_right.png share/libmessageviewer/pics/enterprise_w.png share/libmessageviewer/pics/quicklistClosed.png share/libmessageviewer/pics/quicklistOpened.png share/libmessageviewer/pics/quotecollapse.png share/libmessageviewer/pics/quoteexpand.png +share/locale/af/LC_MESSAGES/libmessagelist.mo +share/locale/af/LC_MESSAGES/libmessageviewer.mo +share/locale/af/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libmessagecomposer.mo share/locale/ar/LC_MESSAGES/libmessagecore.mo share/locale/ar/LC_MESSAGES/libmessagelist.mo share/locale/ar/LC_MESSAGES/libmessageviewer.mo share/locale/ar/LC_MESSAGES/libmimetreeparser.mo share/locale/ar/LC_MESSAGES/libtemplateparser.mo share/locale/ar/LC_MESSAGES/libwebengineviewer.mo share/locale/be/LC_MESSAGES/libmessagelist.mo share/locale/be/LC_MESSAGES/libmessageviewer.mo share/locale/be/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libmessagecomposer.mo share/locale/bg/LC_MESSAGES/libmessagecore.mo share/locale/bg/LC_MESSAGES/libmessagelist.mo share/locale/bg/LC_MESSAGES/libmessageviewer.mo share/locale/bg/LC_MESSAGES/libmimetreeparser.mo share/locale/bg/LC_MESSAGES/libtemplateparser.mo share/locale/bg/LC_MESSAGES/libwebengineviewer.mo +share/locale/bn/LC_MESSAGES/libmessagelist.mo +share/locale/bn/LC_MESSAGES/libmessageviewer.mo +share/locale/bn/LC_MESSAGES/libmimetreeparser.mo +share/locale/br/LC_MESSAGES/libmessagelist.mo +share/locale/br/LC_MESSAGES/libmessageviewer.mo +share/locale/br/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/cy/LC_MESSAGES/libmessagelist.mo +share/locale/cy/LC_MESSAGES/libmessageviewer.mo +share/locale/cy/LC_MESSAGES/libmimetreeparser.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/fy/LC_MESSAGES/libmessagelist.mo +share/locale/fy/LC_MESSAGES/libmessageviewer.mo +share/locale/fy/LC_MESSAGES/libmimetreeparser.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/hsb/LC_MESSAGES/libmessagecomposer.mo +share/locale/hsb/LC_MESSAGES/libmessagelist.mo +share/locale/hsb/LC_MESSAGES/libmessageviewer.mo +share/locale/hsb/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/ka/LC_MESSAGES/libmessagecomposer.mo +share/locale/ka/LC_MESSAGES/libmessagecore.mo +share/locale/ka/LC_MESSAGES/libmessagelist.mo +share/locale/ka/LC_MESSAGES/libmessageviewer.mo +share/locale/ka/LC_MESSAGES/libmimetreeparser.mo +share/locale/ka/LC_MESSAGES/libtemplateparser.mo +share/locale/ka/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/mai/LC_MESSAGES/libmessagelist.mo +share/locale/mai/LC_MESSAGES/libmessageviewer.mo +share/locale/mai/LC_MESSAGES/libmimetreeparser.mo +share/locale/mai/LC_MESSAGES/libtemplateparser.mo +share/locale/mk/LC_MESSAGES/libmessagelist.mo +share/locale/mk/LC_MESSAGES/libmessageviewer.mo +share/locale/mk/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/ms/LC_MESSAGES/libmessagelist.mo +share/locale/ms/LC_MESSAGES/libmessageviewer.mo +share/locale/ms/LC_MESSAGES/libmimetreeparser.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/ne/LC_MESSAGES/libmessagelist.mo +share/locale/ne/LC_MESSAGES/libmessageviewer.mo +share/locale/ne/LC_MESSAGES/libmimetreeparser.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/sr@ijekavian/LC_MESSAGES/libmessagecomposer.mo +share/locale/sr@ijekavian/LC_MESSAGES/libmessagecore.mo +share/locale/sr@ijekavian/LC_MESSAGES/libmessagelist.mo +share/locale/sr@ijekavian/LC_MESSAGES/libmessageviewer.mo +share/locale/sr@ijekavian/LC_MESSAGES/libmimetreeparser.mo +share/locale/sr@ijekavian/LC_MESSAGES/libtemplateparser.mo +share/locale/sr@ijekavian/LC_MESSAGES/libwebengineviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecomposer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagecore.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessagelist.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmessageviewer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libmimetreeparser.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libtemplateparser.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libwebengineviewer.mo +share/locale/sr@latin/LC_MESSAGES/libmessagecomposer.mo +share/locale/sr@latin/LC_MESSAGES/libmessagecore.mo +share/locale/sr@latin/LC_MESSAGES/libmessagelist.mo +share/locale/sr@latin/LC_MESSAGES/libmessageviewer.mo +share/locale/sr@latin/LC_MESSAGES/libmimetreeparser.mo +share/locale/sr@latin/LC_MESSAGES/libtemplateparser.mo +share/locale/sr@latin/LC_MESSAGES/libwebengineviewer.mo share/locale/sv/LC_MESSAGES/libmessagecomposer.mo share/locale/sv/LC_MESSAGES/libmessagecore.mo share/locale/sv/LC_MESSAGES/libmessagelist.mo share/locale/sv/LC_MESSAGES/libmessageviewer.mo share/locale/sv/LC_MESSAGES/libmimetreeparser.mo share/locale/sv/LC_MESSAGES/libtemplateparser.mo share/locale/sv/LC_MESSAGES/libwebengineviewer.mo share/locale/ta/LC_MESSAGES/libmessagecomposer.mo share/locale/ta/LC_MESSAGES/libmessagecore.mo share/locale/ta/LC_MESSAGES/libmessagelist.mo share/locale/ta/LC_MESSAGES/libmessageviewer.mo share/locale/ta/LC_MESSAGES/libmimetreeparser.mo share/locale/ta/LC_MESSAGES/libtemplateparser.mo share/locale/ta/LC_MESSAGES/libwebengineviewer.mo share/locale/tg/LC_MESSAGES/libmessagelist.mo share/locale/tg/LC_MESSAGES/libmessageviewer.mo share/locale/tg/LC_MESSAGES/libmimetreeparser.mo +share/locale/th/LC_MESSAGES/libmessagecore.mo +share/locale/th/LC_MESSAGES/libmessagelist.mo +share/locale/th/LC_MESSAGES/libmessageviewer.mo +share/locale/th/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/uz/LC_MESSAGES/libmessagelist.mo +share/locale/uz/LC_MESSAGES/libmessageviewer.mo +share/locale/uz/LC_MESSAGES/libmimetreeparser.mo +share/locale/uz@cyrillic/LC_MESSAGES/libmessagelist.mo +share/locale/uz@cyrillic/LC_MESSAGES/libmessageviewer.mo +share/locale/uz@cyrillic/LC_MESSAGES/libmimetreeparser.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/xh/LC_MESSAGES/libmessagelist.mo +share/locale/xh/LC_MESSAGES/libmessageviewer.mo +share/locale/xh/LC_MESSAGES/libmimetreeparser.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 b0bfcc16c284..f1ffa3b834b1 100644 --- a/net/pimcommon/distinfo +++ b/net/pimcommon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539641 -SHA256 (KDE/release-service/22.08.3/pimcommon-22.08.3.tar.xz) = e409eeccb776101198cad7a9f66a943c475970d8634160f428555ccc66a0a683 -SIZE (KDE/release-service/22.08.3/pimcommon-22.08.3.tar.xz) = 371128 +TIMESTAMP = 1670513297 +SHA256 (KDE/release-service/22.12.0/pimcommon-22.12.0.tar.xz) = 7aa414da392a59836a1658a36b10dae7f9d8fca1667bab4868b9460b8b8131fb +SIZE (KDE/release-service/22.12.0/pimcommon-22.12.0.tar.xz) = 418016 diff --git a/net/pimcommon/pkg-plist b/net/pimcommon/pkg-plist index bfb9b4c31068..945258bab2a6 100644 --- a/net/pimcommon/pkg-plist +++ b/net/pimcommon/pkg-plist @@ -1,183 +1,205 @@ include/KF5/PimCommon/PimCommon/AbstractGenericPlugin include/KF5/PimCommon/PimCommon/AbstractGenericPluginInterface -include/KF5/PimCommon/PimCommon/AutoCorrection -include/KF5/PimCommon/PimCommon/AutoCorrectionLanguage -include/KF5/PimCommon/PimCommon/AutoCorrectionWidget include/KF5/PimCommon/PimCommon/BroadcastStatus include/KF5/PimCommon/PimCommon/ConfigureImmutableWidgetUtils include/KF5/PimCommon/PimCommon/ConfigurePluginDialog include/KF5/PimCommon/PimCommon/ConfigurePluginsListWidget include/KF5/PimCommon/PimCommon/ConfigurePluginsWidget include/KF5/PimCommon/PimCommon/CustomLogWidget include/KF5/PimCommon/PimCommon/CustomToolsPlugin include/KF5/PimCommon/PimCommon/CustomToolsPluginManager include/KF5/PimCommon/PimCommon/CustomToolsViewInterface include/KF5/PimCommon/PimCommon/CustomToolsWidgetng include/KF5/PimCommon/PimCommon/CustomTreeView include/KF5/PimCommon/PimCommon/EmailValidator include/KF5/PimCommon/PimCommon/GenericPlugin include/KF5/PimCommon/PimCommon/GenericPluginManager include/KF5/PimCommon/PimCommon/KActionMenuChangeCase include/KF5/PimCommon/PimCommon/LineEditWithAutoCorrection include/KF5/PimCommon/PimCommon/LineEditWithCompleterNg include/KF5/PimCommon/PimCommon/MigrateApplicationFiles include/KF5/PimCommon/PimCommon/MigrateFileInfo include/KF5/PimCommon/PimCommon/NetworkManager -include/KF5/PimCommon/PimCommon/PimCommonSettings include/KF5/PimCommon/PimCommon/PimUtil include/KF5/PimCommon/PimCommon/PluginUtil include/KF5/PimCommon/PimCommon/PurposeMenuWidget include/KF5/PimCommon/PimCommon/RenameFileDialog -include/KF5/PimCommon/PimCommon/RichTexteditWithAutoCorrection include/KF5/PimCommon/PimCommon/ShareServiceUrlManager include/KF5/PimCommon/PimCommon/SimpleStringListEditor include/KF5/PimCommon/PimCommon/SpellCheckLineEdit include/KF5/PimCommon/PimCommon/TemplateListWidget include/KF5/PimCommon/PimCommon/TemplateManager +include/KF5/PimCommon/PimCommon/TranslatorConfigureDialog include/KF5/PimCommon/PimCommon/TranslatorWidget include/KF5/PimCommon/pimcommon/abstractgenericplugin.h include/KF5/PimCommon/pimcommon/abstractgenericplugininterface.h -include/KF5/PimCommon/pimcommon/autocorrection.h -include/KF5/PimCommon/pimcommon/autocorrectionlanguage.h -include/KF5/PimCommon/pimcommon/autocorrectionwidget.h include/KF5/PimCommon/pimcommon/broadcaststatus.h include/KF5/PimCommon/pimcommon/configureimmutablewidgetutils.h include/KF5/PimCommon/pimcommon/configureplugindialog.h include/KF5/PimCommon/pimcommon/configurepluginslistwidget.h include/KF5/PimCommon/pimcommon/configurepluginswidget.h include/KF5/PimCommon/pimcommon/customlogwidget.h include/KF5/PimCommon/pimcommon/customtoolsplugin.h include/KF5/PimCommon/pimcommon/customtoolspluginmanager.h include/KF5/PimCommon/pimcommon/customtoolsviewinterface.h include/KF5/PimCommon/pimcommon/customtoolswidgetng.h include/KF5/PimCommon/pimcommon/customtreeview.h include/KF5/PimCommon/pimcommon/emailvalidator.h include/KF5/PimCommon/pimcommon/genericplugin.h include/KF5/PimCommon/pimcommon/genericpluginmanager.h include/KF5/PimCommon/pimcommon/imapresourcesettings.h include/KF5/PimCommon/pimcommon/kactionmenuchangecase.h include/KF5/PimCommon/pimcommon/lineeditwithautocorrection.h include/KF5/PimCommon/pimcommon/lineeditwithcompleterng.h include/KF5/PimCommon/pimcommon/migrateapplicationfiles.h include/KF5/PimCommon/pimcommon/migratefileinfo.h include/KF5/PimCommon/pimcommon/networkmanager.h include/KF5/PimCommon/pimcommon/pimcommon_export.h -include/KF5/PimCommon/pimcommon/pimcommonsetting_base.h -include/KF5/PimCommon/pimcommon/pimcommonsettings.h include/KF5/PimCommon/pimcommon/pimutil.h include/KF5/PimCommon/pimcommon/pluginutil.h include/KF5/PimCommon/pimcommon/purposemenuwidget.h include/KF5/PimCommon/pimcommon/renamefiledialog.h -include/KF5/PimCommon/pimcommon/richtexteditwithautocorrection.h include/KF5/PimCommon/pimcommon/shareserviceurlmanager.h include/KF5/PimCommon/pimcommon/simplestringlisteditor.h include/KF5/PimCommon/pimcommon/spellchecklineedit.h include/KF5/PimCommon/pimcommon/templatelistwidget.h include/KF5/PimCommon/pimcommon/templatemanager.h +include/KF5/PimCommon/pimcommon/translatorconfiguredialog.h include/KF5/PimCommon/pimcommon/translatorwidget.h include/KF5/PimCommon/pimcommon_version.h include/KF5/PimCommonAkonadi/PimCommonAkonadi/AddresseeLineEdit include/KF5/PimCommonAkonadi/PimCommonAkonadi/AnnotationDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/CheckedCollectionWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionAclPage include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionAnnotationsAttribute include/KF5/PimCommonAkonadi/PimCommonAkonadi/CollectionTypeUtil include/KF5/PimCommonAkonadi/PimCommonAkonadi/CompletionConfigureDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/CompletionOrderEditor include/KF5/PimCommonAkonadi/PimCommonAkonadi/ContentTypeWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/CreateResource include/KF5/PimCommonAkonadi/PimCommonAkonadi/GenericPluginInterface include/KF5/PimCommonAkonadi/PimCommonAkonadi/ImapAclAttribute include/KF5/PimCommonAkonadi/PimCommonAkonadi/ImapResourceCapabilitiesManager include/KF5/PimCommonAkonadi/PimCommonAkonadi/IncidencesForWidget include/KF5/PimCommonAkonadi/PimCommonAkonadi/LdapSearchDialog include/KF5/PimCommonAkonadi/PimCommonAkonadi/MailUtil include/KF5/PimCommonAkonadi/PimCommonAkonadi/ManageServerSideSubscriptionJob include/KF5/PimCommonAkonadi/PimCommonAkonadi/PluginInterface include/KF5/PimCommonAkonadi/PimCommonAkonadi/ProgressManagerAkonadi include/KF5/PimCommonAkonadi/PimCommonAkonadi/RecentAddresses include/KF5/PimCommonAkonadi/PimCommonAkonadi/SelectMultiCollectionDialog include/KF5/PimCommonAkonadi/pimcommonakonadi/addresseelineedit.h include/KF5/PimCommonAkonadi/pimcommonakonadi/annotationdialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/checkedcollectionwidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectionaclpage.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectionannotationsattribute.h include/KF5/PimCommonAkonadi/pimcommonakonadi/collectiontypeutil.h include/KF5/PimCommonAkonadi/pimcommonakonadi/completionconfiguredialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/completionordereditor.h include/KF5/PimCommonAkonadi/pimcommonakonadi/contenttypewidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/createresource.h include/KF5/PimCommonAkonadi/pimcommonakonadi/genericplugininterface.h include/KF5/PimCommonAkonadi/pimcommonakonadi/imapaclattribute.h include/KF5/PimCommonAkonadi/pimcommonakonadi/imapresourcecapabilitiesmanager.h include/KF5/PimCommonAkonadi/pimcommonakonadi/incidencesforwidget.h include/KF5/PimCommonAkonadi/pimcommonakonadi/ldapsearchdialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi/mailutil.h include/KF5/PimCommonAkonadi/pimcommonakonadi/manageserversidesubscriptionjob.h include/KF5/PimCommonAkonadi/pimcommonakonadi/pimcommonakonadi_export.h include/KF5/PimCommonAkonadi/pimcommonakonadi/plugininterface.h include/KF5/PimCommonAkonadi/pimcommonakonadi/progressmanagerakonadi.h include/KF5/PimCommonAkonadi/pimcommonakonadi/recentaddresses.h include/KF5/PimCommonAkonadi/pimcommonakonadi/selectmulticollectiondialog.h include/KF5/PimCommonAkonadi/pimcommonakonadi_version.h +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrection +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionLanguage +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionSettings +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionTextEdit +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionUtils +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/AutoCorrectionWidget +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/PimCommonAutoCorrectionSettings +include/KF5/PimCommonAutoCorrection/PimCommonAutoCorrection/SelectSpecialCharDialog +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrection.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionlanguage.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionsettings.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectiontextedit.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionutils.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/autocorrectionwidget.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrection_export.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrectionsetting_base.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/pimcommonautocorrectionsettings.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection/selectspecialchardialog.h +include/KF5/PimCommonAutoCorrection/pimcommonautocorrection_version.h lib/cmake/KF5PimCommon/KF5PimCommonConfig.cmake lib/cmake/KF5PimCommon/KF5PimCommonConfigVersion.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommon/KF5PimCommonTargets.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfig.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiConfigVersion.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5PimCommonAkonadi/KF5PimCommonAkonadiTargets.cmake +lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionConfig.cmake +lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionConfigVersion.cmake +lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/KF5PimCommonAutoCorrection/KF5PimCommonAutoCorrectionTargets.cmake lib/libKF5PimCommon.so lib/libKF5PimCommon.so.5 lib/libKF5PimCommon.so.%%KDE_APPLICATIONS_SHLIB_VER%% lib/libKF5PimCommonAkonadi.so lib/libKF5PimCommonAkonadi.so.5 lib/libKF5PimCommonAkonadi.so.%%KDE_APPLICATIONS_SHLIB_VER%% +lib/libKF5PimCommonAutoCorrection.so +lib/libKF5PimCommonAutoCorrection.so.5 +lib/libKF5PimCommonAutoCorrection.so.%%KDE_APPLICATIONS_SHLIB_VER%% %%QT_MKSPECDIR%%/modules/qt_PimCommon.pri %%QT_MKSPECDIR%%/modules/qt_PimCommonAkonadi.pri +%%QT_MKSPECDIR%%/modules/qt_PimCommonAutoCorrection.pri %%QT_PLUGINDIR%%/designer/pimcommonakonadiwidgets.so %%QT_PLUGINDIR%%/designer/pimcommonwidgets.so share/locale/ar/LC_MESSAGES/libpimcommon.mo share/locale/bs/LC_MESSAGES/libpimcommon.mo share/locale/ca/LC_MESSAGES/libpimcommon.mo share/locale/ca@valencia/LC_MESSAGES/libpimcommon.mo share/locale/cs/LC_MESSAGES/libpimcommon.mo share/locale/da/LC_MESSAGES/libpimcommon.mo share/locale/de/LC_MESSAGES/libpimcommon.mo share/locale/el/LC_MESSAGES/libpimcommon.mo share/locale/en_GB/LC_MESSAGES/libpimcommon.mo share/locale/es/LC_MESSAGES/libpimcommon.mo share/locale/et/LC_MESSAGES/libpimcommon.mo share/locale/eu/LC_MESSAGES/libpimcommon.mo share/locale/fi/LC_MESSAGES/libpimcommon.mo share/locale/fr/LC_MESSAGES/libpimcommon.mo share/locale/ga/LC_MESSAGES/libpimcommon.mo share/locale/gl/LC_MESSAGES/libpimcommon.mo share/locale/hu/LC_MESSAGES/libpimcommon.mo share/locale/ia/LC_MESSAGES/libpimcommon.mo share/locale/it/LC_MESSAGES/libpimcommon.mo share/locale/ja/LC_MESSAGES/libpimcommon.mo +share/locale/ka/LC_MESSAGES/libpimcommon.mo share/locale/kk/LC_MESSAGES/libpimcommon.mo share/locale/ko/LC_MESSAGES/libpimcommon.mo share/locale/lt/LC_MESSAGES/libpimcommon.mo share/locale/mr/LC_MESSAGES/libpimcommon.mo share/locale/nb/LC_MESSAGES/libpimcommon.mo share/locale/nds/LC_MESSAGES/libpimcommon.mo share/locale/nl/LC_MESSAGES/libpimcommon.mo share/locale/pl/LC_MESSAGES/libpimcommon.mo share/locale/pt/LC_MESSAGES/libpimcommon.mo share/locale/pt_BR/LC_MESSAGES/libpimcommon.mo share/locale/ro/LC_MESSAGES/libpimcommon.mo share/locale/ru/LC_MESSAGES/libpimcommon.mo share/locale/sk/LC_MESSAGES/libpimcommon.mo share/locale/sl/LC_MESSAGES/libpimcommon.mo share/locale/sr/LC_MESSAGES/libpimcommon.mo +share/locale/sr@ijekavian/LC_MESSAGES/libpimcommon.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libpimcommon.mo +share/locale/sr@latin/LC_MESSAGES/libpimcommon.mo share/locale/sv/LC_MESSAGES/libpimcommon.mo share/locale/tr/LC_MESSAGES/libpimcommon.mo share/locale/ug/LC_MESSAGES/libpimcommon.mo share/locale/uk/LC_MESSAGES/libpimcommon.mo share/locale/zh_CN/LC_MESSAGES/libpimcommon.mo share/locale/zh_TW/LC_MESSAGES/libpimcommon.mo share/qlogging-categories5/pimcommon.categories share/qlogging-categories5/pimcommon.renamecategories diff --git a/print/print-manager/distinfo b/print/print-manager/distinfo index 45cadeaed0a4..8ce76e8e53c5 100644 --- a/print/print-manager/distinfo +++ b/print/print-manager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539478 -SHA256 (KDE/release-service/22.08.3/print-manager-22.08.3.tar.xz) = 37d46e7ae9dc545b322a900b3a25433cd4d1b335d177fc85733df1e4f1647bfb -SIZE (KDE/release-service/22.08.3/print-manager-22.08.3.tar.xz) = 278784 +TIMESTAMP = 1670513083 +SHA256 (KDE/release-service/22.12.0/print-manager-22.12.0.tar.xz) = d6ef2e83e2f2a3fee90a1ce25b541e4f9d9e623e8943236c2ffaae1aa445c8f9 +SIZE (KDE/release-service/22.12.0/print-manager-22.12.0.tar.xz) = 287320 diff --git a/print/print-manager/pkg-plist b/print/print-manager/pkg-plist index 95909ba93b15..f9ce960014ab 100644 --- a/print/print-manager/pkg-plist +++ b/print/print-manager/pkg-plist @@ -1,121 +1,130 @@ bin/configure-printer bin/kde-add-printer bin/kde-print-queue lib/libkcupslib.so %%QT_PLUGINDIR%%/kf5/kded/printmanager.so %%QT_PLUGINDIR%%/plasma/kcms/systemsettings_qwidgets/kcm_printer_manager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/libprintmanager.so %%QT_QMLDIR%%/org/kde/plasma/printmanager/qmldir share/applications/kcm_printer_manager.desktop 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/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/be/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/be/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/hsb/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.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/is/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/ka/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/ka/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/sr@ijekavian/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/sr@ijekavian/LC_MESSAGES/print-manager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/print-manager.mo +share/locale/sr@latin/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo +share/locale/sr@latin/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/ta/LC_MESSAGES/plasma_applet_org.kde.plasma.printmanager.mo share/locale/ta/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/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/printmanager.qml share/plasma/plasmoids/org.kde.plasma.printmanager/metadata.json diff --git a/science/kalzium/distinfo b/science/kalzium/distinfo index 72cea4ab70eb..dfffc6f11af1 100644 --- a/science/kalzium/distinfo +++ b/science/kalzium/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539476 -SHA256 (KDE/release-service/22.08.3/kalzium-22.08.3.tar.xz) = 0c743f7cef68ffca68605763ca740ed3a7fd26d0f085a80ad6b5f3b777ea5c50 -SIZE (KDE/release-service/22.08.3/kalzium-22.08.3.tar.xz) = 24453120 +TIMESTAMP = 1670513080 +SHA256 (KDE/release-service/22.12.0/kalzium-22.12.0.tar.xz) = d96a5bc63214f0040ab51ef5cd9c34231ae8c417d155fe1fe9ba1e14ab11398d +SIZE (KDE/release-service/22.12.0/kalzium-22.12.0.tar.xz) = 24641172 diff --git a/science/kalzium/pkg-plist b/science/kalzium/pkg-plist index d09cdf60db45..6348af786d64 100644 --- a/science/kalzium/pkg-plist +++ b/science/kalzium/pkg-plist @@ -1,434 +1,448 @@ bin/kalzium include/libkdeedu/chemicaldataobject.h include/libkdeedu/element.h include/libkdeedu/elementparser.h include/libkdeedu/isotope.h include/libkdeedu/isotopeparser.h include/libkdeedu/moleculeparser.h include/libkdeedu/parser.h include/libkdeedu/psetables.h include/libkdeedu/science_export.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/af/LC_MESSAGES/kalzium.mo share/locale/ar/LC_MESSAGES/kalzium.mo share/locale/be/LC_MESSAGES/kalzium.mo share/locale/bg/LC_MESSAGES/kalzium.mo +share/locale/bn/LC_MESSAGES/kalzium.mo +share/locale/br/LC_MESSAGES/kalzium.mo share/locale/bs/LC_MESSAGES/kalzium.mo share/locale/ca/LC_MESSAGES/kalzium.mo share/locale/ca@valencia/LC_MESSAGES/kalzium.mo share/locale/cs/LC_MESSAGES/kalzium.mo +share/locale/cy/LC_MESSAGES/kalzium.mo share/locale/da/LC_MESSAGES/kalzium.mo share/locale/de/LC_MESSAGES/kalzium.mo share/locale/el/LC_MESSAGES/kalzium.mo share/locale/en_GB/LC_MESSAGES/kalzium.mo share/locale/eo/LC_MESSAGES/kalzium.mo share/locale/es/LC_MESSAGES/kalzium.mo share/locale/et/LC_MESSAGES/kalzium.mo share/locale/eu/LC_MESSAGES/kalzium.mo share/locale/fa/LC_MESSAGES/kalzium.mo share/locale/fi/LC_MESSAGES/kalzium.mo share/locale/fr/LC_MESSAGES/kalzium.mo share/locale/ga/LC_MESSAGES/kalzium.mo share/locale/gl/LC_MESSAGES/kalzium.mo +share/locale/gu/LC_MESSAGES/kalzium.mo share/locale/he/LC_MESSAGES/kalzium.mo share/locale/hi/LC_MESSAGES/kalzium.mo +share/locale/hne/LC_MESSAGES/kalzium.mo share/locale/hr/LC_MESSAGES/kalzium.mo share/locale/hu/LC_MESSAGES/kalzium.mo share/locale/is/LC_MESSAGES/kalzium.mo share/locale/it/LC_MESSAGES/kalzium.mo share/locale/ja/LC_MESSAGES/kalzium.mo +share/locale/ka/LC_MESSAGES/kalzium.mo share/locale/kk/LC_MESSAGES/kalzium.mo share/locale/km/LC_MESSAGES/kalzium.mo share/locale/ko/LC_MESSAGES/kalzium.mo share/locale/lt/LC_MESSAGES/kalzium.mo share/locale/lv/LC_MESSAGES/kalzium.mo +share/locale/mai/LC_MESSAGES/kalzium.mo +share/locale/mk/LC_MESSAGES/kalzium.mo share/locale/ml/LC_MESSAGES/kalzium.mo share/locale/mr/LC_MESSAGES/kalzium.mo +share/locale/ms/LC_MESSAGES/kalzium.mo share/locale/nb/LC_MESSAGES/kalzium.mo share/locale/nds/LC_MESSAGES/kalzium.mo +share/locale/ne/LC_MESSAGES/kalzium.mo share/locale/nl/LC_MESSAGES/kalzium.mo share/locale/nn/LC_MESSAGES/kalzium.mo +share/locale/oc/LC_MESSAGES/kalzium.mo share/locale/pa/LC_MESSAGES/kalzium.mo share/locale/pl/LC_MESSAGES/kalzium.mo share/locale/pt/LC_MESSAGES/kalzium.mo share/locale/pt_BR/LC_MESSAGES/kalzium.mo share/locale/ro/LC_MESSAGES/kalzium.mo share/locale/ru/LC_MESSAGES/kalzium.mo share/locale/se/LC_MESSAGES/kalzium.mo +share/locale/si/LC_MESSAGES/kalzium.mo share/locale/sk/LC_MESSAGES/kalzium.mo share/locale/sl/LC_MESSAGES/kalzium.mo share/locale/sq/LC_MESSAGES/kalzium.mo share/locale/sv/LC_MESSAGES/kalzium.mo share/locale/ta/LC_MESSAGES/kalzium.mo share/locale/tg/LC_MESSAGES/kalzium.mo +share/locale/th/LC_MESSAGES/kalzium.mo share/locale/tr/LC_MESSAGES/kalzium.mo share/locale/ug/LC_MESSAGES/kalzium.mo share/locale/uk/LC_MESSAGES/kalzium.mo +share/locale/xh/LC_MESSAGES/kalzium.mo share/locale/zh_CN/LC_MESSAGES/kalzium.mo share/locale/zh_TW/LC_MESSAGES/kalzium.mo share/metainfo/org.kde.kalzium.appdata.xml share/qlogging-categories5/kalzium.categories diff --git a/science/step/distinfo b/science/step/distinfo index 0e73e42c9ec0..e2fc9839aa3b 100644 --- a/science/step/distinfo +++ b/science/step/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539477 -SHA256 (KDE/release-service/22.08.3/step-22.08.3.tar.xz) = 75b2ef203abf58629edc66155c1def7fd90056823ddecee8dc3656727a95d338 -SIZE (KDE/release-service/22.08.3/step-22.08.3.tar.xz) = 938252 +TIMESTAMP = 1670513082 +SHA256 (KDE/release-service/22.12.0/step-22.12.0.tar.xz) = d2e84fef6d2e4ab9a93ebbcca7c588e9e7463921bbda730f5517da7d3e8ffcb8 +SIZE (KDE/release-service/22.12.0/step-22.12.0.tar.xz) = 979672 diff --git a/science/step/pkg-plist b/science/step/pkg-plist index a1df105a7b5f..0fe72195eb44 100644 --- a/science/step/pkg-plist +++ b/science/step/pkg-plist @@ -1,1353 +1,1498 @@ 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/icons/hicolor/128x128/apps/step.png share/knsrcfiles/step.knsrc -share/kxmlgui5/step/stepui.rc share/locale/ar/LC_MESSAGES/step.mo +share/locale/ar/LC_MESSAGES/step_qt.qm share/locale/be/LC_MESSAGES/step.mo +share/locale/be/LC_MESSAGES/step_qt.qm share/locale/bg/LC_MESSAGES/step.mo share/locale/bg/LC_MESSAGES/step_example_files.mo share/locale/bg/LC_MESSAGES/step_objinfo_files.mo +share/locale/bg/LC_MESSAGES/step_qt.qm share/locale/bs/LC_MESSAGES/step.mo +share/locale/bs/LC_MESSAGES/step_qt.qm share/locale/ca/LC_MESSAGES/step.mo share/locale/ca/LC_MESSAGES/step_example_files.mo share/locale/ca/LC_MESSAGES/step_objinfo_files.mo +share/locale/ca/LC_MESSAGES/step_qt.qm share/locale/ca@valencia/LC_MESSAGES/step.mo share/locale/ca@valencia/LC_MESSAGES/step_example_files.mo share/locale/ca@valencia/LC_MESSAGES/step_objinfo_files.mo +share/locale/ca@valencia/LC_MESSAGES/step_qt.qm share/locale/cs/LC_MESSAGES/step.mo share/locale/cs/LC_MESSAGES/step_example_files.mo share/locale/cs/LC_MESSAGES/step_objinfo_files.mo +share/locale/cs/LC_MESSAGES/step_qt.qm share/locale/da/LC_MESSAGES/step.mo share/locale/da/LC_MESSAGES/step_example_files.mo share/locale/da/LC_MESSAGES/step_objinfo_files.mo +share/locale/da/LC_MESSAGES/step_qt.qm share/locale/de/LC_MESSAGES/step.mo share/locale/de/LC_MESSAGES/step_example_files.mo share/locale/de/LC_MESSAGES/step_objinfo_files.mo +share/locale/de/LC_MESSAGES/step_qt.qm share/locale/el/LC_MESSAGES/step.mo share/locale/el/LC_MESSAGES/step_example_files.mo share/locale/el/LC_MESSAGES/step_objinfo_files.mo +share/locale/el/LC_MESSAGES/step_qt.qm share/locale/en_GB/LC_MESSAGES/step.mo share/locale/en_GB/LC_MESSAGES/step_example_files.mo share/locale/en_GB/LC_MESSAGES/step_objinfo_files.mo +share/locale/en_GB/LC_MESSAGES/step_qt.qm share/locale/eo/LC_MESSAGES/step.mo +share/locale/eo/LC_MESSAGES/step_qt.qm share/locale/es/LC_MESSAGES/step.mo share/locale/es/LC_MESSAGES/step_example_files.mo share/locale/es/LC_MESSAGES/step_objinfo_files.mo +share/locale/es/LC_MESSAGES/step_qt.qm share/locale/et/LC_MESSAGES/step.mo share/locale/et/LC_MESSAGES/step_example_files.mo share/locale/et/LC_MESSAGES/step_objinfo_files.mo +share/locale/et/LC_MESSAGES/step_qt.qm share/locale/eu/LC_MESSAGES/step.mo share/locale/eu/LC_MESSAGES/step_example_files.mo share/locale/eu/LC_MESSAGES/step_objinfo_files.mo +share/locale/eu/LC_MESSAGES/step_qt.qm share/locale/fi/LC_MESSAGES/step.mo +share/locale/fi/LC_MESSAGES/step_qt.qm share/locale/fr/LC_MESSAGES/step.mo share/locale/fr/LC_MESSAGES/step_example_files.mo share/locale/fr/LC_MESSAGES/step_objinfo_files.mo +share/locale/fr/LC_MESSAGES/step_qt.qm share/locale/ga/LC_MESSAGES/step.mo +share/locale/ga/LC_MESSAGES/step_qt.qm share/locale/gl/LC_MESSAGES/step.mo +share/locale/gl/LC_MESSAGES/step_qt.qm +share/locale/gu/LC_MESSAGES/step.mo +share/locale/gu/LC_MESSAGES/step_qt.qm share/locale/hr/LC_MESSAGES/step.mo +share/locale/hr/LC_MESSAGES/step_qt.qm share/locale/hu/LC_MESSAGES/step.mo +share/locale/hu/LC_MESSAGES/step_qt.qm share/locale/ia/LC_MESSAGES/step.mo share/locale/ia/LC_MESSAGES/step_example_files.mo share/locale/ia/LC_MESSAGES/step_objinfo_files.mo +share/locale/ia/LC_MESSAGES/step_qt.qm share/locale/it/LC_MESSAGES/step.mo share/locale/it/LC_MESSAGES/step_example_files.mo share/locale/it/LC_MESSAGES/step_objinfo_files.mo +share/locale/it/LC_MESSAGES/step_qt.qm share/locale/ja/LC_MESSAGES/step.mo share/locale/ja/LC_MESSAGES/step_example_files.mo share/locale/ja/LC_MESSAGES/step_objinfo_files.mo +share/locale/ja/LC_MESSAGES/step_qt.qm +share/locale/ka/LC_MESSAGES/step.mo +share/locale/ka/LC_MESSAGES/step_example_files.mo +share/locale/ka/LC_MESSAGES/step_objinfo_files.mo +share/locale/ka/LC_MESSAGES/step_qt.qm share/locale/kk/LC_MESSAGES/step.mo +share/locale/kk/LC_MESSAGES/step_qt.qm share/locale/km/LC_MESSAGES/step.mo +share/locale/km/LC_MESSAGES/step_qt.qm share/locale/ko/LC_MESSAGES/step.mo share/locale/ko/LC_MESSAGES/step_objinfo_files.mo share/locale/lt/LC_MESSAGES/step.mo share/locale/lt/LC_MESSAGES/step_example_files.mo share/locale/lt/LC_MESSAGES/step_objinfo_files.mo +share/locale/lt/LC_MESSAGES/step_qt.qm share/locale/lv/LC_MESSAGES/step.mo +share/locale/lv/LC_MESSAGES/step_qt.qm +share/locale/mai/LC_MESSAGES/step_qt.qm share/locale/ml/LC_MESSAGES/step.mo share/locale/ml/LC_MESSAGES/step_example_files.mo share/locale/ml/LC_MESSAGES/step_objinfo_files.mo +share/locale/ml/LC_MESSAGES/step_qt.qm share/locale/mr/LC_MESSAGES/step.mo +share/locale/mr/LC_MESSAGES/step_qt.qm share/locale/nb/LC_MESSAGES/step.mo +share/locale/nb/LC_MESSAGES/step_qt.qm share/locale/nds/LC_MESSAGES/step.mo +share/locale/nds/LC_MESSAGES/step_qt.qm share/locale/nl/LC_MESSAGES/step.mo share/locale/nl/LC_MESSAGES/step_example_files.mo share/locale/nl/LC_MESSAGES/step_objinfo_files.mo +share/locale/nl/LC_MESSAGES/step_qt.qm share/locale/nn/LC_MESSAGES/step.mo +share/locale/nn/LC_MESSAGES/step_qt.qm share/locale/nn/LC_SCRIPTS/step/step.js +share/locale/oc/LC_MESSAGES/step.mo +share/locale/oc/LC_MESSAGES/step_qt.qm share/locale/pa/LC_MESSAGES/step.mo +share/locale/pa/LC_MESSAGES/step_qt.qm share/locale/pl/LC_MESSAGES/step.mo share/locale/pl/LC_MESSAGES/step_example_files.mo share/locale/pl/LC_MESSAGES/step_objinfo_files.mo +share/locale/pl/LC_MESSAGES/step_qt.qm share/locale/pt/LC_MESSAGES/step.mo share/locale/pt/LC_MESSAGES/step_example_files.mo share/locale/pt/LC_MESSAGES/step_objinfo_files.mo +share/locale/pt/LC_MESSAGES/step_qt.qm share/locale/pt_BR/LC_MESSAGES/step.mo share/locale/pt_BR/LC_MESSAGES/step_example_files.mo share/locale/pt_BR/LC_MESSAGES/step_objinfo_files.mo +share/locale/pt_BR/LC_MESSAGES/step_qt.qm share/locale/ro/LC_MESSAGES/step.mo +share/locale/ro/LC_MESSAGES/step_qt.qm share/locale/ru/LC_MESSAGES/step.mo share/locale/ru/LC_MESSAGES/step_example_files.mo share/locale/ru/LC_MESSAGES/step_objinfo_files.mo +share/locale/ru/LC_MESSAGES/step_qt.qm +share/locale/si/LC_MESSAGES/step.mo +share/locale/si/LC_MESSAGES/step_qt.qm share/locale/sk/LC_MESSAGES/step.mo share/locale/sk/LC_MESSAGES/step_example_files.mo share/locale/sk/LC_MESSAGES/step_objinfo_files.mo +share/locale/sk/LC_MESSAGES/step_qt.qm share/locale/sl/LC_MESSAGES/step.mo share/locale/sl/LC_MESSAGES/step_example_files.mo share/locale/sl/LC_MESSAGES/step_objinfo_files.mo +share/locale/sl/LC_MESSAGES/step_qt.qm share/locale/sq/LC_MESSAGES/step.mo +share/locale/sq/LC_MESSAGES/step_qt.qm share/locale/sv/LC_MESSAGES/step.mo share/locale/sv/LC_MESSAGES/step_example_files.mo share/locale/sv/LC_MESSAGES/step_objinfo_files.mo +share/locale/sv/LC_MESSAGES/step_qt.qm +share/locale/th/LC_MESSAGES/step.mo +share/locale/th/LC_MESSAGES/step_qt.qm share/locale/tr/LC_MESSAGES/step.mo +share/locale/tr/LC_MESSAGES/step_example_files.mo +share/locale/tr/LC_MESSAGES/step_objinfo_files.mo +share/locale/tr/LC_MESSAGES/step_qt.qm share/locale/ug/LC_MESSAGES/step.mo +share/locale/ug/LC_MESSAGES/step_qt.qm share/locale/uk/LC_MESSAGES/step.mo share/locale/uk/LC_MESSAGES/step_example_files.mo share/locale/uk/LC_MESSAGES/step_objinfo_files.mo +share/locale/uk/LC_MESSAGES/step_qt.qm share/locale/zh_CN/LC_MESSAGES/step.mo share/locale/zh_CN/LC_MESSAGES/step_example_files.mo share/locale/zh_CN/LC_MESSAGES/step_objinfo_files.mo +share/locale/zh_CN/LC_MESSAGES/step_qt.qm share/locale/zh_TW/LC_MESSAGES/step.mo share/locale/zh_TW/LC_MESSAGES/step_example_files.mo share/locale/zh_TW/LC_MESSAGES/step_objinfo_files.mo +share/locale/zh_TW/LC_MESSAGES/step_qt.qm share/metainfo/org.kde.step.appdata.xml share/mime/packages/org.kde.step.xml %%DATADIR%%/examples/bg/brownian.step %%DATADIR%%/examples/bg/doublependulum.step %%DATADIR%%/examples/bg/eightpendula.step %%DATADIR%%/examples/bg/first.step %%DATADIR%%/examples/bg/fourpendula.step %%DATADIR%%/examples/bg/gas.step %%DATADIR%%/examples/bg/graph.step %%DATADIR%%/examples/bg/liquid.step %%DATADIR%%/examples/bg/lissajous.step %%DATADIR%%/examples/bg/motor.step %%DATADIR%%/examples/bg/motor1.step %%DATADIR%%/examples/bg/note.step %%DATADIR%%/examples/bg/resonance.step %%DATADIR%%/examples/bg/softbody.step %%DATADIR%%/examples/bg/solar.step %%DATADIR%%/examples/bg/springs.step %%DATADIR%%/examples/bg/wave.step %%DATADIR%%/examples/brownian.step %%DATADIR%%/examples/ca/brownian.step %%DATADIR%%/examples/ca/doublependulum.step %%DATADIR%%/examples/ca/eightpendula.step %%DATADIR%%/examples/ca/first.step %%DATADIR%%/examples/ca/fourpendula.step %%DATADIR%%/examples/ca/gas.step %%DATADIR%%/examples/ca/graph.step %%DATADIR%%/examples/ca/liquid.step %%DATADIR%%/examples/ca/lissajous.step %%DATADIR%%/examples/ca/motor.step %%DATADIR%%/examples/ca/motor1.step %%DATADIR%%/examples/ca/note.step %%DATADIR%%/examples/ca/resonance.step %%DATADIR%%/examples/ca/softbody.step %%DATADIR%%/examples/ca/solar.step %%DATADIR%%/examples/ca/springs.step %%DATADIR%%/examples/ca/wave.step %%DATADIR%%/examples/ca@valencia/brownian.step %%DATADIR%%/examples/ca@valencia/doublependulum.step %%DATADIR%%/examples/ca@valencia/eightpendula.step %%DATADIR%%/examples/ca@valencia/first.step %%DATADIR%%/examples/ca@valencia/fourpendula.step %%DATADIR%%/examples/ca@valencia/gas.step %%DATADIR%%/examples/ca@valencia/graph.step %%DATADIR%%/examples/ca@valencia/liquid.step %%DATADIR%%/examples/ca@valencia/lissajous.step %%DATADIR%%/examples/ca@valencia/motor.step %%DATADIR%%/examples/ca@valencia/motor1.step %%DATADIR%%/examples/ca@valencia/note.step %%DATADIR%%/examples/ca@valencia/resonance.step %%DATADIR%%/examples/ca@valencia/softbody.step %%DATADIR%%/examples/ca@valencia/solar.step %%DATADIR%%/examples/ca@valencia/springs.step %%DATADIR%%/examples/ca@valencia/wave.step %%DATADIR%%/examples/cs/brownian.step %%DATADIR%%/examples/cs/doublependulum.step %%DATADIR%%/examples/cs/eightpendula.step %%DATADIR%%/examples/cs/first.step %%DATADIR%%/examples/cs/fourpendula.step %%DATADIR%%/examples/cs/gas.step %%DATADIR%%/examples/cs/graph.step %%DATADIR%%/examples/cs/liquid.step %%DATADIR%%/examples/cs/lissajous.step %%DATADIR%%/examples/cs/motor.step %%DATADIR%%/examples/cs/motor1.step %%DATADIR%%/examples/cs/note.step %%DATADIR%%/examples/cs/resonance.step %%DATADIR%%/examples/cs/softbody.step %%DATADIR%%/examples/cs/solar.step %%DATADIR%%/examples/cs/springs.step %%DATADIR%%/examples/cs/wave.step %%DATADIR%%/examples/da/brownian.step %%DATADIR%%/examples/da/doublependulum.step %%DATADIR%%/examples/da/eightpendula.step %%DATADIR%%/examples/da/first.step %%DATADIR%%/examples/da/fourpendula.step %%DATADIR%%/examples/da/gas.step %%DATADIR%%/examples/da/graph.step %%DATADIR%%/examples/da/liquid.step %%DATADIR%%/examples/da/lissajous.step %%DATADIR%%/examples/da/motor.step %%DATADIR%%/examples/da/motor1.step %%DATADIR%%/examples/da/note.step %%DATADIR%%/examples/da/resonance.step %%DATADIR%%/examples/da/softbody.step %%DATADIR%%/examples/da/solar.step %%DATADIR%%/examples/da/springs.step %%DATADIR%%/examples/da/wave.step %%DATADIR%%/examples/de/brownian.step %%DATADIR%%/examples/de/doublependulum.step %%DATADIR%%/examples/de/eightpendula.step %%DATADIR%%/examples/de/first.step %%DATADIR%%/examples/de/fourpendula.step %%DATADIR%%/examples/de/gas.step %%DATADIR%%/examples/de/graph.step %%DATADIR%%/examples/de/liquid.step %%DATADIR%%/examples/de/lissajous.step %%DATADIR%%/examples/de/motor.step %%DATADIR%%/examples/de/motor1.step %%DATADIR%%/examples/de/note.step %%DATADIR%%/examples/de/resonance.step %%DATADIR%%/examples/de/softbody.step %%DATADIR%%/examples/de/solar.step %%DATADIR%%/examples/de/springs.step %%DATADIR%%/examples/de/wave.step %%DATADIR%%/examples/doublependulum.step %%DATADIR%%/examples/eightpendula.step %%DATADIR%%/examples/el/brownian.step %%DATADIR%%/examples/el/doublependulum.step %%DATADIR%%/examples/el/eightpendula.step %%DATADIR%%/examples/el/first.step %%DATADIR%%/examples/el/fourpendula.step %%DATADIR%%/examples/el/gas.step %%DATADIR%%/examples/el/graph.step %%DATADIR%%/examples/el/liquid.step %%DATADIR%%/examples/el/lissajous.step %%DATADIR%%/examples/el/motor.step %%DATADIR%%/examples/el/motor1.step %%DATADIR%%/examples/el/note.step %%DATADIR%%/examples/el/resonance.step %%DATADIR%%/examples/el/softbody.step %%DATADIR%%/examples/el/solar.step %%DATADIR%%/examples/el/springs.step %%DATADIR%%/examples/el/wave.step %%DATADIR%%/examples/en_GB/brownian.step %%DATADIR%%/examples/en_GB/doublependulum.step %%DATADIR%%/examples/en_GB/eightpendula.step %%DATADIR%%/examples/en_GB/first.step %%DATADIR%%/examples/en_GB/fourpendula.step %%DATADIR%%/examples/en_GB/gas.step %%DATADIR%%/examples/en_GB/graph.step %%DATADIR%%/examples/en_GB/liquid.step %%DATADIR%%/examples/en_GB/lissajous.step %%DATADIR%%/examples/en_GB/motor.step %%DATADIR%%/examples/en_GB/motor1.step %%DATADIR%%/examples/en_GB/note.step %%DATADIR%%/examples/en_GB/resonance.step %%DATADIR%%/examples/en_GB/softbody.step %%DATADIR%%/examples/en_GB/solar.step %%DATADIR%%/examples/en_GB/springs.step %%DATADIR%%/examples/en_GB/wave.step %%DATADIR%%/examples/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/ka/brownian.step +%%DATADIR%%/examples/ka/doublependulum.step +%%DATADIR%%/examples/ka/eightpendula.step +%%DATADIR%%/examples/ka/first.step +%%DATADIR%%/examples/ka/fourpendula.step +%%DATADIR%%/examples/ka/gas.step +%%DATADIR%%/examples/ka/graph.step +%%DATADIR%%/examples/ka/liquid.step +%%DATADIR%%/examples/ka/lissajous.step +%%DATADIR%%/examples/ka/motor.step +%%DATADIR%%/examples/ka/motor1.step +%%DATADIR%%/examples/ka/note.step +%%DATADIR%%/examples/ka/resonance.step +%%DATADIR%%/examples/ka/softbody.step +%%DATADIR%%/examples/ka/solar.step +%%DATADIR%%/examples/ka/springs.step +%%DATADIR%%/examples/ka/wave.step %%DATADIR%%/examples/liquid.step %%DATADIR%%/examples/lissajous.step %%DATADIR%%/examples/lt/brownian.step %%DATADIR%%/examples/lt/doublependulum.step %%DATADIR%%/examples/lt/eightpendula.step %%DATADIR%%/examples/lt/first.step %%DATADIR%%/examples/lt/fourpendula.step %%DATADIR%%/examples/lt/gas.step %%DATADIR%%/examples/lt/graph.step %%DATADIR%%/examples/lt/liquid.step %%DATADIR%%/examples/lt/lissajous.step %%DATADIR%%/examples/lt/motor.step %%DATADIR%%/examples/lt/motor1.step %%DATADIR%%/examples/lt/note.step %%DATADIR%%/examples/lt/resonance.step %%DATADIR%%/examples/lt/softbody.step %%DATADIR%%/examples/lt/solar.step %%DATADIR%%/examples/lt/springs.step %%DATADIR%%/examples/lt/wave.step %%DATADIR%%/examples/ml/brownian.step %%DATADIR%%/examples/ml/doublependulum.step %%DATADIR%%/examples/ml/eightpendula.step %%DATADIR%%/examples/ml/first.step %%DATADIR%%/examples/ml/fourpendula.step %%DATADIR%%/examples/ml/gas.step %%DATADIR%%/examples/ml/graph.step %%DATADIR%%/examples/ml/liquid.step %%DATADIR%%/examples/ml/lissajous.step %%DATADIR%%/examples/ml/motor.step %%DATADIR%%/examples/ml/motor1.step %%DATADIR%%/examples/ml/note.step %%DATADIR%%/examples/ml/resonance.step %%DATADIR%%/examples/ml/softbody.step %%DATADIR%%/examples/ml/solar.step %%DATADIR%%/examples/ml/springs.step %%DATADIR%%/examples/ml/wave.step %%DATADIR%%/examples/motor.step %%DATADIR%%/examples/motor1.step %%DATADIR%%/examples/nl/brownian.step %%DATADIR%%/examples/nl/doublependulum.step %%DATADIR%%/examples/nl/eightpendula.step %%DATADIR%%/examples/nl/first.step %%DATADIR%%/examples/nl/fourpendula.step %%DATADIR%%/examples/nl/gas.step %%DATADIR%%/examples/nl/graph.step %%DATADIR%%/examples/nl/liquid.step %%DATADIR%%/examples/nl/lissajous.step %%DATADIR%%/examples/nl/motor.step %%DATADIR%%/examples/nl/motor1.step %%DATADIR%%/examples/nl/note.step %%DATADIR%%/examples/nl/resonance.step %%DATADIR%%/examples/nl/softbody.step %%DATADIR%%/examples/nl/solar.step %%DATADIR%%/examples/nl/springs.step %%DATADIR%%/examples/nl/wave.step %%DATADIR%%/examples/note.step %%DATADIR%%/examples/pl/brownian.step %%DATADIR%%/examples/pl/doublependulum.step %%DATADIR%%/examples/pl/eightpendula.step %%DATADIR%%/examples/pl/first.step %%DATADIR%%/examples/pl/fourpendula.step %%DATADIR%%/examples/pl/gas.step %%DATADIR%%/examples/pl/graph.step %%DATADIR%%/examples/pl/liquid.step %%DATADIR%%/examples/pl/lissajous.step %%DATADIR%%/examples/pl/motor.step %%DATADIR%%/examples/pl/motor1.step %%DATADIR%%/examples/pl/note.step %%DATADIR%%/examples/pl/resonance.step %%DATADIR%%/examples/pl/softbody.step %%DATADIR%%/examples/pl/solar.step %%DATADIR%%/examples/pl/springs.step %%DATADIR%%/examples/pl/wave.step %%DATADIR%%/examples/pt/brownian.step %%DATADIR%%/examples/pt/doublependulum.step %%DATADIR%%/examples/pt/eightpendula.step %%DATADIR%%/examples/pt/first.step %%DATADIR%%/examples/pt/fourpendula.step %%DATADIR%%/examples/pt/gas.step %%DATADIR%%/examples/pt/graph.step %%DATADIR%%/examples/pt/liquid.step %%DATADIR%%/examples/pt/lissajous.step %%DATADIR%%/examples/pt/motor.step %%DATADIR%%/examples/pt/motor1.step %%DATADIR%%/examples/pt/note.step %%DATADIR%%/examples/pt/resonance.step %%DATADIR%%/examples/pt/softbody.step %%DATADIR%%/examples/pt/solar.step %%DATADIR%%/examples/pt/springs.step %%DATADIR%%/examples/pt/wave.step %%DATADIR%%/examples/pt_BR/brownian.step %%DATADIR%%/examples/pt_BR/doublependulum.step %%DATADIR%%/examples/pt_BR/eightpendula.step %%DATADIR%%/examples/pt_BR/first.step %%DATADIR%%/examples/pt_BR/fourpendula.step %%DATADIR%%/examples/pt_BR/gas.step %%DATADIR%%/examples/pt_BR/graph.step %%DATADIR%%/examples/pt_BR/liquid.step %%DATADIR%%/examples/pt_BR/lissajous.step %%DATADIR%%/examples/pt_BR/motor.step %%DATADIR%%/examples/pt_BR/motor1.step %%DATADIR%%/examples/pt_BR/note.step %%DATADIR%%/examples/pt_BR/resonance.step %%DATADIR%%/examples/pt_BR/softbody.step %%DATADIR%%/examples/pt_BR/solar.step %%DATADIR%%/examples/pt_BR/springs.step %%DATADIR%%/examples/pt_BR/wave.step %%DATADIR%%/examples/resonance.step %%DATADIR%%/examples/ru/brownian.step %%DATADIR%%/examples/ru/doublependulum.step %%DATADIR%%/examples/ru/eightpendula.step %%DATADIR%%/examples/ru/first.step %%DATADIR%%/examples/ru/fourpendula.step %%DATADIR%%/examples/ru/gas.step %%DATADIR%%/examples/ru/graph.step %%DATADIR%%/examples/ru/liquid.step %%DATADIR%%/examples/ru/lissajous.step %%DATADIR%%/examples/ru/motor.step %%DATADIR%%/examples/ru/motor1.step %%DATADIR%%/examples/ru/note.step %%DATADIR%%/examples/ru/resonance.step %%DATADIR%%/examples/ru/softbody.step %%DATADIR%%/examples/ru/solar.step %%DATADIR%%/examples/ru/springs.step %%DATADIR%%/examples/ru/wave.step %%DATADIR%%/examples/sk/brownian.step %%DATADIR%%/examples/sk/doublependulum.step %%DATADIR%%/examples/sk/eightpendula.step %%DATADIR%%/examples/sk/first.step %%DATADIR%%/examples/sk/fourpendula.step %%DATADIR%%/examples/sk/gas.step %%DATADIR%%/examples/sk/graph.step %%DATADIR%%/examples/sk/liquid.step %%DATADIR%%/examples/sk/lissajous.step %%DATADIR%%/examples/sk/motor.step %%DATADIR%%/examples/sk/motor1.step %%DATADIR%%/examples/sk/note.step %%DATADIR%%/examples/sk/resonance.step %%DATADIR%%/examples/sk/softbody.step %%DATADIR%%/examples/sk/solar.step %%DATADIR%%/examples/sk/springs.step %%DATADIR%%/examples/sk/wave.step %%DATADIR%%/examples/sl/brownian.step %%DATADIR%%/examples/sl/doublependulum.step %%DATADIR%%/examples/sl/eightpendula.step %%DATADIR%%/examples/sl/first.step %%DATADIR%%/examples/sl/fourpendula.step %%DATADIR%%/examples/sl/gas.step %%DATADIR%%/examples/sl/graph.step %%DATADIR%%/examples/sl/liquid.step %%DATADIR%%/examples/sl/lissajous.step %%DATADIR%%/examples/sl/motor.step %%DATADIR%%/examples/sl/motor1.step %%DATADIR%%/examples/sl/note.step %%DATADIR%%/examples/sl/resonance.step %%DATADIR%%/examples/sl/softbody.step %%DATADIR%%/examples/sl/solar.step %%DATADIR%%/examples/sl/springs.step %%DATADIR%%/examples/sl/wave.step %%DATADIR%%/examples/softbody.step %%DATADIR%%/examples/solar.step %%DATADIR%%/examples/springs.step %%DATADIR%%/examples/sv/brownian.step %%DATADIR%%/examples/sv/doublependulum.step %%DATADIR%%/examples/sv/eightpendula.step %%DATADIR%%/examples/sv/first.step %%DATADIR%%/examples/sv/fourpendula.step %%DATADIR%%/examples/sv/gas.step %%DATADIR%%/examples/sv/graph.step %%DATADIR%%/examples/sv/liquid.step %%DATADIR%%/examples/sv/lissajous.step %%DATADIR%%/examples/sv/motor.step %%DATADIR%%/examples/sv/motor1.step %%DATADIR%%/examples/sv/note.step %%DATADIR%%/examples/sv/resonance.step %%DATADIR%%/examples/sv/softbody.step %%DATADIR%%/examples/sv/solar.step %%DATADIR%%/examples/sv/springs.step %%DATADIR%%/examples/sv/wave.step +%%DATADIR%%/examples/tr/brownian.step +%%DATADIR%%/examples/tr/doublependulum.step +%%DATADIR%%/examples/tr/eightpendula.step +%%DATADIR%%/examples/tr/first.step +%%DATADIR%%/examples/tr/fourpendula.step +%%DATADIR%%/examples/tr/gas.step +%%DATADIR%%/examples/tr/graph.step +%%DATADIR%%/examples/tr/liquid.step +%%DATADIR%%/examples/tr/lissajous.step +%%DATADIR%%/examples/tr/motor.step +%%DATADIR%%/examples/tr/motor1.step +%%DATADIR%%/examples/tr/note.step +%%DATADIR%%/examples/tr/resonance.step +%%DATADIR%%/examples/tr/softbody.step +%%DATADIR%%/examples/tr/solar.step +%%DATADIR%%/examples/tr/springs.step +%%DATADIR%%/examples/tr/wave.step %%DATADIR%%/examples/uk/brownian.step %%DATADIR%%/examples/uk/doublependulum.step %%DATADIR%%/examples/uk/eightpendula.step %%DATADIR%%/examples/uk/first.step %%DATADIR%%/examples/uk/fourpendula.step %%DATADIR%%/examples/uk/gas.step %%DATADIR%%/examples/uk/graph.step %%DATADIR%%/examples/uk/liquid.step %%DATADIR%%/examples/uk/lissajous.step %%DATADIR%%/examples/uk/motor.step %%DATADIR%%/examples/uk/motor1.step %%DATADIR%%/examples/uk/note.step %%DATADIR%%/examples/uk/resonance.step %%DATADIR%%/examples/uk/softbody.step %%DATADIR%%/examples/uk/solar.step %%DATADIR%%/examples/uk/springs.step %%DATADIR%%/examples/uk/wave.step %%DATADIR%%/examples/wave.step %%DATADIR%%/examples/zh_CN/brownian.step %%DATADIR%%/examples/zh_CN/doublependulum.step %%DATADIR%%/examples/zh_CN/eightpendula.step %%DATADIR%%/examples/zh_CN/first.step %%DATADIR%%/examples/zh_CN/fourpendula.step %%DATADIR%%/examples/zh_CN/gas.step %%DATADIR%%/examples/zh_CN/graph.step %%DATADIR%%/examples/zh_CN/liquid.step %%DATADIR%%/examples/zh_CN/lissajous.step %%DATADIR%%/examples/zh_CN/motor.step %%DATADIR%%/examples/zh_CN/motor1.step %%DATADIR%%/examples/zh_CN/note.step %%DATADIR%%/examples/zh_CN/resonance.step %%DATADIR%%/examples/zh_CN/softbody.step %%DATADIR%%/examples/zh_CN/solar.step %%DATADIR%%/examples/zh_CN/springs.step %%DATADIR%%/examples/zh_CN/wave.step %%DATADIR%%/examples/zh_TW/brownian.step %%DATADIR%%/examples/zh_TW/doublependulum.step %%DATADIR%%/examples/zh_TW/eightpendula.step %%DATADIR%%/examples/zh_TW/first.step %%DATADIR%%/examples/zh_TW/fourpendula.step %%DATADIR%%/examples/zh_TW/gas.step %%DATADIR%%/examples/zh_TW/graph.step %%DATADIR%%/examples/zh_TW/liquid.step %%DATADIR%%/examples/zh_TW/lissajous.step %%DATADIR%%/examples/zh_TW/motor.step %%DATADIR%%/examples/zh_TW/motor1.step %%DATADIR%%/examples/zh_TW/note.step %%DATADIR%%/examples/zh_TW/resonance.step %%DATADIR%%/examples/zh_TW/softbody.step %%DATADIR%%/examples/zh_TW/solar.step %%DATADIR%%/examples/zh_TW/springs.step %%DATADIR%%/examples/zh_TW/wave.step %%DATADIR%%/objinfo/anchor.html %%DATADIR%%/objinfo/box.html %%DATADIR%%/objinfo/chargedparticle.html %%DATADIR%%/objinfo/coulombforce.html %%DATADIR%%/objinfo/disk.html %%DATADIR%%/objinfo/gas.html %%DATADIR%%/objinfo/gasljforce.html %%DATADIR%%/objinfo/gasparticle.html %%DATADIR%%/objinfo/gravitationforce.html %%DATADIR%%/objinfo/l10n/bg/anchor.html %%DATADIR%%/objinfo/l10n/bg/box.html %%DATADIR%%/objinfo/l10n/bg/chargedparticle.html %%DATADIR%%/objinfo/l10n/bg/coulombforce.html %%DATADIR%%/objinfo/l10n/bg/disk.html %%DATADIR%%/objinfo/l10n/bg/gas.html %%DATADIR%%/objinfo/l10n/bg/gasljforce.html %%DATADIR%%/objinfo/l10n/bg/gasparticle.html %%DATADIR%%/objinfo/l10n/bg/gravitationforce.html %%DATADIR%%/objinfo/l10n/bg/linearmotor.html %%DATADIR%%/objinfo/l10n/bg/meter.html %%DATADIR%%/objinfo/l10n/bg/note.html %%DATADIR%%/objinfo/l10n/bg/particle.html %%DATADIR%%/objinfo/l10n/bg/pin.html %%DATADIR%%/objinfo/l10n/bg/polygon.html %%DATADIR%%/objinfo/l10n/bg/softbody.html %%DATADIR%%/objinfo/l10n/bg/spring.html %%DATADIR%%/objinfo/l10n/bg/weightforce.html %%DATADIR%%/objinfo/l10n/bg/world.html %%DATADIR%%/objinfo/l10n/ca/anchor.html %%DATADIR%%/objinfo/l10n/ca/box.html %%DATADIR%%/objinfo/l10n/ca/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca/coulombforce.html %%DATADIR%%/objinfo/l10n/ca/disk.html %%DATADIR%%/objinfo/l10n/ca/gas.html %%DATADIR%%/objinfo/l10n/ca/gasljforce.html %%DATADIR%%/objinfo/l10n/ca/gasparticle.html %%DATADIR%%/objinfo/l10n/ca/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca/linearmotor.html %%DATADIR%%/objinfo/l10n/ca/meter.html %%DATADIR%%/objinfo/l10n/ca/note.html %%DATADIR%%/objinfo/l10n/ca/particle.html %%DATADIR%%/objinfo/l10n/ca/pin.html %%DATADIR%%/objinfo/l10n/ca/polygon.html %%DATADIR%%/objinfo/l10n/ca/softbody.html %%DATADIR%%/objinfo/l10n/ca/spring.html %%DATADIR%%/objinfo/l10n/ca/weightforce.html %%DATADIR%%/objinfo/l10n/ca/world.html %%DATADIR%%/objinfo/l10n/ca@valencia/anchor.html %%DATADIR%%/objinfo/l10n/ca@valencia/box.html %%DATADIR%%/objinfo/l10n/ca@valencia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/coulombforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/disk.html %%DATADIR%%/objinfo/l10n/ca@valencia/gas.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasljforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/gasparticle.html %%DATADIR%%/objinfo/l10n/ca@valencia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/linearmotor.html %%DATADIR%%/objinfo/l10n/ca@valencia/meter.html %%DATADIR%%/objinfo/l10n/ca@valencia/note.html %%DATADIR%%/objinfo/l10n/ca@valencia/particle.html %%DATADIR%%/objinfo/l10n/ca@valencia/pin.html %%DATADIR%%/objinfo/l10n/ca@valencia/polygon.html %%DATADIR%%/objinfo/l10n/ca@valencia/softbody.html %%DATADIR%%/objinfo/l10n/ca@valencia/spring.html %%DATADIR%%/objinfo/l10n/ca@valencia/weightforce.html %%DATADIR%%/objinfo/l10n/ca@valencia/world.html %%DATADIR%%/objinfo/l10n/cs/anchor.html %%DATADIR%%/objinfo/l10n/cs/box.html %%DATADIR%%/objinfo/l10n/cs/chargedparticle.html %%DATADIR%%/objinfo/l10n/cs/coulombforce.html %%DATADIR%%/objinfo/l10n/cs/disk.html %%DATADIR%%/objinfo/l10n/cs/gas.html %%DATADIR%%/objinfo/l10n/cs/gasljforce.html %%DATADIR%%/objinfo/l10n/cs/gasparticle.html %%DATADIR%%/objinfo/l10n/cs/gravitationforce.html %%DATADIR%%/objinfo/l10n/cs/linearmotor.html %%DATADIR%%/objinfo/l10n/cs/meter.html %%DATADIR%%/objinfo/l10n/cs/note.html %%DATADIR%%/objinfo/l10n/cs/particle.html %%DATADIR%%/objinfo/l10n/cs/pin.html %%DATADIR%%/objinfo/l10n/cs/polygon.html %%DATADIR%%/objinfo/l10n/cs/softbody.html %%DATADIR%%/objinfo/l10n/cs/spring.html %%DATADIR%%/objinfo/l10n/cs/weightforce.html %%DATADIR%%/objinfo/l10n/cs/world.html %%DATADIR%%/objinfo/l10n/da/anchor.html %%DATADIR%%/objinfo/l10n/da/box.html %%DATADIR%%/objinfo/l10n/da/chargedparticle.html %%DATADIR%%/objinfo/l10n/da/coulombforce.html %%DATADIR%%/objinfo/l10n/da/disk.html %%DATADIR%%/objinfo/l10n/da/gas.html %%DATADIR%%/objinfo/l10n/da/gasljforce.html %%DATADIR%%/objinfo/l10n/da/gasparticle.html %%DATADIR%%/objinfo/l10n/da/gravitationforce.html %%DATADIR%%/objinfo/l10n/da/linearmotor.html %%DATADIR%%/objinfo/l10n/da/meter.html %%DATADIR%%/objinfo/l10n/da/note.html %%DATADIR%%/objinfo/l10n/da/particle.html %%DATADIR%%/objinfo/l10n/da/pin.html %%DATADIR%%/objinfo/l10n/da/polygon.html %%DATADIR%%/objinfo/l10n/da/softbody.html %%DATADIR%%/objinfo/l10n/da/spring.html %%DATADIR%%/objinfo/l10n/da/weightforce.html %%DATADIR%%/objinfo/l10n/da/world.html %%DATADIR%%/objinfo/l10n/de/anchor.html %%DATADIR%%/objinfo/l10n/de/box.html %%DATADIR%%/objinfo/l10n/de/chargedparticle.html %%DATADIR%%/objinfo/l10n/de/coulombforce.html %%DATADIR%%/objinfo/l10n/de/disk.html %%DATADIR%%/objinfo/l10n/de/gas.html %%DATADIR%%/objinfo/l10n/de/gasljforce.html %%DATADIR%%/objinfo/l10n/de/gasparticle.html %%DATADIR%%/objinfo/l10n/de/gravitationforce.html %%DATADIR%%/objinfo/l10n/de/linearmotor.html %%DATADIR%%/objinfo/l10n/de/meter.html %%DATADIR%%/objinfo/l10n/de/note.html %%DATADIR%%/objinfo/l10n/de/particle.html %%DATADIR%%/objinfo/l10n/de/pin.html %%DATADIR%%/objinfo/l10n/de/polygon.html %%DATADIR%%/objinfo/l10n/de/softbody.html %%DATADIR%%/objinfo/l10n/de/spring.html %%DATADIR%%/objinfo/l10n/de/weightforce.html %%DATADIR%%/objinfo/l10n/de/world.html %%DATADIR%%/objinfo/l10n/el/anchor.html %%DATADIR%%/objinfo/l10n/el/box.html %%DATADIR%%/objinfo/l10n/el/chargedparticle.html %%DATADIR%%/objinfo/l10n/el/coulombforce.html %%DATADIR%%/objinfo/l10n/el/disk.html %%DATADIR%%/objinfo/l10n/el/gas.html %%DATADIR%%/objinfo/l10n/el/gasljforce.html %%DATADIR%%/objinfo/l10n/el/gasparticle.html %%DATADIR%%/objinfo/l10n/el/gravitationforce.html %%DATADIR%%/objinfo/l10n/el/linearmotor.html %%DATADIR%%/objinfo/l10n/el/meter.html %%DATADIR%%/objinfo/l10n/el/note.html %%DATADIR%%/objinfo/l10n/el/particle.html %%DATADIR%%/objinfo/l10n/el/pin.html %%DATADIR%%/objinfo/l10n/el/polygon.html %%DATADIR%%/objinfo/l10n/el/softbody.html %%DATADIR%%/objinfo/l10n/el/spring.html %%DATADIR%%/objinfo/l10n/el/weightforce.html %%DATADIR%%/objinfo/l10n/el/world.html %%DATADIR%%/objinfo/l10n/en_GB/anchor.html %%DATADIR%%/objinfo/l10n/en_GB/box.html %%DATADIR%%/objinfo/l10n/en_GB/chargedparticle.html %%DATADIR%%/objinfo/l10n/en_GB/coulombforce.html %%DATADIR%%/objinfo/l10n/en_GB/disk.html %%DATADIR%%/objinfo/l10n/en_GB/gas.html %%DATADIR%%/objinfo/l10n/en_GB/gasljforce.html %%DATADIR%%/objinfo/l10n/en_GB/gasparticle.html %%DATADIR%%/objinfo/l10n/en_GB/gravitationforce.html %%DATADIR%%/objinfo/l10n/en_GB/linearmotor.html %%DATADIR%%/objinfo/l10n/en_GB/meter.html %%DATADIR%%/objinfo/l10n/en_GB/note.html %%DATADIR%%/objinfo/l10n/en_GB/particle.html %%DATADIR%%/objinfo/l10n/en_GB/pin.html %%DATADIR%%/objinfo/l10n/en_GB/polygon.html %%DATADIR%%/objinfo/l10n/en_GB/softbody.html %%DATADIR%%/objinfo/l10n/en_GB/spring.html %%DATADIR%%/objinfo/l10n/en_GB/weightforce.html %%DATADIR%%/objinfo/l10n/en_GB/world.html %%DATADIR%%/objinfo/l10n/es/anchor.html %%DATADIR%%/objinfo/l10n/es/box.html %%DATADIR%%/objinfo/l10n/es/chargedparticle.html %%DATADIR%%/objinfo/l10n/es/coulombforce.html %%DATADIR%%/objinfo/l10n/es/disk.html %%DATADIR%%/objinfo/l10n/es/gas.html %%DATADIR%%/objinfo/l10n/es/gasljforce.html %%DATADIR%%/objinfo/l10n/es/gasparticle.html %%DATADIR%%/objinfo/l10n/es/gravitationforce.html %%DATADIR%%/objinfo/l10n/es/linearmotor.html %%DATADIR%%/objinfo/l10n/es/meter.html %%DATADIR%%/objinfo/l10n/es/note.html %%DATADIR%%/objinfo/l10n/es/particle.html %%DATADIR%%/objinfo/l10n/es/pin.html %%DATADIR%%/objinfo/l10n/es/polygon.html %%DATADIR%%/objinfo/l10n/es/softbody.html %%DATADIR%%/objinfo/l10n/es/spring.html %%DATADIR%%/objinfo/l10n/es/weightforce.html %%DATADIR%%/objinfo/l10n/es/world.html %%DATADIR%%/objinfo/l10n/et/anchor.html %%DATADIR%%/objinfo/l10n/et/box.html %%DATADIR%%/objinfo/l10n/et/chargedparticle.html %%DATADIR%%/objinfo/l10n/et/coulombforce.html %%DATADIR%%/objinfo/l10n/et/disk.html %%DATADIR%%/objinfo/l10n/et/gas.html %%DATADIR%%/objinfo/l10n/et/gasljforce.html %%DATADIR%%/objinfo/l10n/et/gasparticle.html %%DATADIR%%/objinfo/l10n/et/gravitationforce.html %%DATADIR%%/objinfo/l10n/et/linearmotor.html %%DATADIR%%/objinfo/l10n/et/meter.html %%DATADIR%%/objinfo/l10n/et/note.html %%DATADIR%%/objinfo/l10n/et/particle.html %%DATADIR%%/objinfo/l10n/et/pin.html %%DATADIR%%/objinfo/l10n/et/polygon.html %%DATADIR%%/objinfo/l10n/et/softbody.html %%DATADIR%%/objinfo/l10n/et/spring.html %%DATADIR%%/objinfo/l10n/et/weightforce.html %%DATADIR%%/objinfo/l10n/et/world.html %%DATADIR%%/objinfo/l10n/eu/anchor.html %%DATADIR%%/objinfo/l10n/eu/box.html %%DATADIR%%/objinfo/l10n/eu/chargedparticle.html %%DATADIR%%/objinfo/l10n/eu/coulombforce.html %%DATADIR%%/objinfo/l10n/eu/disk.html %%DATADIR%%/objinfo/l10n/eu/gas.html %%DATADIR%%/objinfo/l10n/eu/gasljforce.html %%DATADIR%%/objinfo/l10n/eu/gasparticle.html %%DATADIR%%/objinfo/l10n/eu/gravitationforce.html %%DATADIR%%/objinfo/l10n/eu/linearmotor.html %%DATADIR%%/objinfo/l10n/eu/meter.html %%DATADIR%%/objinfo/l10n/eu/note.html %%DATADIR%%/objinfo/l10n/eu/particle.html %%DATADIR%%/objinfo/l10n/eu/pin.html %%DATADIR%%/objinfo/l10n/eu/polygon.html %%DATADIR%%/objinfo/l10n/eu/softbody.html %%DATADIR%%/objinfo/l10n/eu/spring.html %%DATADIR%%/objinfo/l10n/eu/weightforce.html %%DATADIR%%/objinfo/l10n/eu/world.html %%DATADIR%%/objinfo/l10n/fr/anchor.html %%DATADIR%%/objinfo/l10n/fr/box.html %%DATADIR%%/objinfo/l10n/fr/chargedparticle.html %%DATADIR%%/objinfo/l10n/fr/coulombforce.html %%DATADIR%%/objinfo/l10n/fr/disk.html %%DATADIR%%/objinfo/l10n/fr/gas.html %%DATADIR%%/objinfo/l10n/fr/gasljforce.html %%DATADIR%%/objinfo/l10n/fr/gasparticle.html %%DATADIR%%/objinfo/l10n/fr/gravitationforce.html %%DATADIR%%/objinfo/l10n/fr/linearmotor.html %%DATADIR%%/objinfo/l10n/fr/meter.html %%DATADIR%%/objinfo/l10n/fr/note.html %%DATADIR%%/objinfo/l10n/fr/particle.html %%DATADIR%%/objinfo/l10n/fr/pin.html %%DATADIR%%/objinfo/l10n/fr/polygon.html %%DATADIR%%/objinfo/l10n/fr/softbody.html %%DATADIR%%/objinfo/l10n/fr/spring.html %%DATADIR%%/objinfo/l10n/fr/weightforce.html %%DATADIR%%/objinfo/l10n/fr/world.html %%DATADIR%%/objinfo/l10n/ia/anchor.html %%DATADIR%%/objinfo/l10n/ia/box.html %%DATADIR%%/objinfo/l10n/ia/chargedparticle.html %%DATADIR%%/objinfo/l10n/ia/coulombforce.html %%DATADIR%%/objinfo/l10n/ia/disk.html %%DATADIR%%/objinfo/l10n/ia/gas.html %%DATADIR%%/objinfo/l10n/ia/gasljforce.html %%DATADIR%%/objinfo/l10n/ia/gasparticle.html %%DATADIR%%/objinfo/l10n/ia/gravitationforce.html %%DATADIR%%/objinfo/l10n/ia/linearmotor.html %%DATADIR%%/objinfo/l10n/ia/meter.html %%DATADIR%%/objinfo/l10n/ia/note.html %%DATADIR%%/objinfo/l10n/ia/particle.html %%DATADIR%%/objinfo/l10n/ia/pin.html %%DATADIR%%/objinfo/l10n/ia/polygon.html %%DATADIR%%/objinfo/l10n/ia/softbody.html %%DATADIR%%/objinfo/l10n/ia/spring.html %%DATADIR%%/objinfo/l10n/ia/weightforce.html %%DATADIR%%/objinfo/l10n/ia/world.html %%DATADIR%%/objinfo/l10n/it/anchor.html %%DATADIR%%/objinfo/l10n/it/box.html %%DATADIR%%/objinfo/l10n/it/chargedparticle.html %%DATADIR%%/objinfo/l10n/it/coulombforce.html %%DATADIR%%/objinfo/l10n/it/disk.html %%DATADIR%%/objinfo/l10n/it/gas.html %%DATADIR%%/objinfo/l10n/it/gasljforce.html %%DATADIR%%/objinfo/l10n/it/gasparticle.html %%DATADIR%%/objinfo/l10n/it/gravitationforce.html %%DATADIR%%/objinfo/l10n/it/linearmotor.html %%DATADIR%%/objinfo/l10n/it/meter.html %%DATADIR%%/objinfo/l10n/it/note.html %%DATADIR%%/objinfo/l10n/it/particle.html %%DATADIR%%/objinfo/l10n/it/pin.html %%DATADIR%%/objinfo/l10n/it/polygon.html %%DATADIR%%/objinfo/l10n/it/softbody.html %%DATADIR%%/objinfo/l10n/it/spring.html %%DATADIR%%/objinfo/l10n/it/weightforce.html %%DATADIR%%/objinfo/l10n/it/world.html %%DATADIR%%/objinfo/l10n/ja/anchor.html %%DATADIR%%/objinfo/l10n/ja/box.html %%DATADIR%%/objinfo/l10n/ja/chargedparticle.html %%DATADIR%%/objinfo/l10n/ja/coulombforce.html %%DATADIR%%/objinfo/l10n/ja/disk.html %%DATADIR%%/objinfo/l10n/ja/gas.html %%DATADIR%%/objinfo/l10n/ja/gasljforce.html %%DATADIR%%/objinfo/l10n/ja/gasparticle.html %%DATADIR%%/objinfo/l10n/ja/gravitationforce.html %%DATADIR%%/objinfo/l10n/ja/linearmotor.html %%DATADIR%%/objinfo/l10n/ja/meter.html %%DATADIR%%/objinfo/l10n/ja/note.html %%DATADIR%%/objinfo/l10n/ja/particle.html %%DATADIR%%/objinfo/l10n/ja/pin.html %%DATADIR%%/objinfo/l10n/ja/polygon.html %%DATADIR%%/objinfo/l10n/ja/softbody.html %%DATADIR%%/objinfo/l10n/ja/spring.html %%DATADIR%%/objinfo/l10n/ja/weightforce.html %%DATADIR%%/objinfo/l10n/ja/world.html +%%DATADIR%%/objinfo/l10n/ka/anchor.html +%%DATADIR%%/objinfo/l10n/ka/box.html +%%DATADIR%%/objinfo/l10n/ka/chargedparticle.html +%%DATADIR%%/objinfo/l10n/ka/coulombforce.html +%%DATADIR%%/objinfo/l10n/ka/disk.html +%%DATADIR%%/objinfo/l10n/ka/gas.html +%%DATADIR%%/objinfo/l10n/ka/gasljforce.html +%%DATADIR%%/objinfo/l10n/ka/gasparticle.html +%%DATADIR%%/objinfo/l10n/ka/gravitationforce.html +%%DATADIR%%/objinfo/l10n/ka/linearmotor.html +%%DATADIR%%/objinfo/l10n/ka/meter.html +%%DATADIR%%/objinfo/l10n/ka/note.html +%%DATADIR%%/objinfo/l10n/ka/particle.html +%%DATADIR%%/objinfo/l10n/ka/pin.html +%%DATADIR%%/objinfo/l10n/ka/polygon.html +%%DATADIR%%/objinfo/l10n/ka/softbody.html +%%DATADIR%%/objinfo/l10n/ka/spring.html +%%DATADIR%%/objinfo/l10n/ka/weightforce.html +%%DATADIR%%/objinfo/l10n/ka/world.html %%DATADIR%%/objinfo/l10n/ko/anchor.html %%DATADIR%%/objinfo/l10n/ko/box.html %%DATADIR%%/objinfo/l10n/ko/chargedparticle.html %%DATADIR%%/objinfo/l10n/ko/coulombforce.html %%DATADIR%%/objinfo/l10n/ko/disk.html %%DATADIR%%/objinfo/l10n/ko/gas.html %%DATADIR%%/objinfo/l10n/ko/gasljforce.html %%DATADIR%%/objinfo/l10n/ko/gasparticle.html %%DATADIR%%/objinfo/l10n/ko/gravitationforce.html %%DATADIR%%/objinfo/l10n/ko/linearmotor.html %%DATADIR%%/objinfo/l10n/ko/meter.html %%DATADIR%%/objinfo/l10n/ko/note.html %%DATADIR%%/objinfo/l10n/ko/particle.html %%DATADIR%%/objinfo/l10n/ko/pin.html %%DATADIR%%/objinfo/l10n/ko/polygon.html %%DATADIR%%/objinfo/l10n/ko/softbody.html %%DATADIR%%/objinfo/l10n/ko/spring.html %%DATADIR%%/objinfo/l10n/ko/weightforce.html %%DATADIR%%/objinfo/l10n/ko/world.html %%DATADIR%%/objinfo/l10n/lt/anchor.html %%DATADIR%%/objinfo/l10n/lt/box.html %%DATADIR%%/objinfo/l10n/lt/chargedparticle.html %%DATADIR%%/objinfo/l10n/lt/coulombforce.html %%DATADIR%%/objinfo/l10n/lt/disk.html %%DATADIR%%/objinfo/l10n/lt/gas.html %%DATADIR%%/objinfo/l10n/lt/gasljforce.html %%DATADIR%%/objinfo/l10n/lt/gasparticle.html %%DATADIR%%/objinfo/l10n/lt/gravitationforce.html %%DATADIR%%/objinfo/l10n/lt/linearmotor.html %%DATADIR%%/objinfo/l10n/lt/meter.html %%DATADIR%%/objinfo/l10n/lt/note.html %%DATADIR%%/objinfo/l10n/lt/particle.html %%DATADIR%%/objinfo/l10n/lt/pin.html %%DATADIR%%/objinfo/l10n/lt/polygon.html %%DATADIR%%/objinfo/l10n/lt/softbody.html %%DATADIR%%/objinfo/l10n/lt/spring.html %%DATADIR%%/objinfo/l10n/lt/weightforce.html %%DATADIR%%/objinfo/l10n/lt/world.html %%DATADIR%%/objinfo/l10n/ml/anchor.html %%DATADIR%%/objinfo/l10n/ml/box.html %%DATADIR%%/objinfo/l10n/ml/chargedparticle.html %%DATADIR%%/objinfo/l10n/ml/coulombforce.html %%DATADIR%%/objinfo/l10n/ml/disk.html %%DATADIR%%/objinfo/l10n/ml/gas.html %%DATADIR%%/objinfo/l10n/ml/gasljforce.html %%DATADIR%%/objinfo/l10n/ml/gasparticle.html %%DATADIR%%/objinfo/l10n/ml/gravitationforce.html %%DATADIR%%/objinfo/l10n/ml/linearmotor.html %%DATADIR%%/objinfo/l10n/ml/meter.html %%DATADIR%%/objinfo/l10n/ml/note.html %%DATADIR%%/objinfo/l10n/ml/particle.html %%DATADIR%%/objinfo/l10n/ml/pin.html %%DATADIR%%/objinfo/l10n/ml/polygon.html %%DATADIR%%/objinfo/l10n/ml/softbody.html %%DATADIR%%/objinfo/l10n/ml/spring.html %%DATADIR%%/objinfo/l10n/ml/weightforce.html %%DATADIR%%/objinfo/l10n/ml/world.html %%DATADIR%%/objinfo/l10n/nl/anchor.html %%DATADIR%%/objinfo/l10n/nl/box.html %%DATADIR%%/objinfo/l10n/nl/chargedparticle.html %%DATADIR%%/objinfo/l10n/nl/coulombforce.html %%DATADIR%%/objinfo/l10n/nl/disk.html %%DATADIR%%/objinfo/l10n/nl/gas.html %%DATADIR%%/objinfo/l10n/nl/gasljforce.html %%DATADIR%%/objinfo/l10n/nl/gasparticle.html %%DATADIR%%/objinfo/l10n/nl/gravitationforce.html %%DATADIR%%/objinfo/l10n/nl/linearmotor.html %%DATADIR%%/objinfo/l10n/nl/meter.html %%DATADIR%%/objinfo/l10n/nl/note.html %%DATADIR%%/objinfo/l10n/nl/particle.html %%DATADIR%%/objinfo/l10n/nl/pin.html %%DATADIR%%/objinfo/l10n/nl/polygon.html %%DATADIR%%/objinfo/l10n/nl/softbody.html %%DATADIR%%/objinfo/l10n/nl/spring.html %%DATADIR%%/objinfo/l10n/nl/weightforce.html %%DATADIR%%/objinfo/l10n/nl/world.html %%DATADIR%%/objinfo/l10n/pl/anchor.html %%DATADIR%%/objinfo/l10n/pl/box.html %%DATADIR%%/objinfo/l10n/pl/chargedparticle.html %%DATADIR%%/objinfo/l10n/pl/coulombforce.html %%DATADIR%%/objinfo/l10n/pl/disk.html %%DATADIR%%/objinfo/l10n/pl/gas.html %%DATADIR%%/objinfo/l10n/pl/gasljforce.html %%DATADIR%%/objinfo/l10n/pl/gasparticle.html %%DATADIR%%/objinfo/l10n/pl/gravitationforce.html %%DATADIR%%/objinfo/l10n/pl/linearmotor.html %%DATADIR%%/objinfo/l10n/pl/meter.html %%DATADIR%%/objinfo/l10n/pl/note.html %%DATADIR%%/objinfo/l10n/pl/particle.html %%DATADIR%%/objinfo/l10n/pl/pin.html %%DATADIR%%/objinfo/l10n/pl/polygon.html %%DATADIR%%/objinfo/l10n/pl/softbody.html %%DATADIR%%/objinfo/l10n/pl/spring.html %%DATADIR%%/objinfo/l10n/pl/weightforce.html %%DATADIR%%/objinfo/l10n/pl/world.html %%DATADIR%%/objinfo/l10n/pt/anchor.html %%DATADIR%%/objinfo/l10n/pt/box.html %%DATADIR%%/objinfo/l10n/pt/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt/coulombforce.html %%DATADIR%%/objinfo/l10n/pt/disk.html %%DATADIR%%/objinfo/l10n/pt/gas.html %%DATADIR%%/objinfo/l10n/pt/gasljforce.html %%DATADIR%%/objinfo/l10n/pt/gasparticle.html %%DATADIR%%/objinfo/l10n/pt/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt/linearmotor.html %%DATADIR%%/objinfo/l10n/pt/meter.html %%DATADIR%%/objinfo/l10n/pt/note.html %%DATADIR%%/objinfo/l10n/pt/particle.html %%DATADIR%%/objinfo/l10n/pt/pin.html %%DATADIR%%/objinfo/l10n/pt/polygon.html %%DATADIR%%/objinfo/l10n/pt/softbody.html %%DATADIR%%/objinfo/l10n/pt/spring.html %%DATADIR%%/objinfo/l10n/pt/weightforce.html %%DATADIR%%/objinfo/l10n/pt/world.html %%DATADIR%%/objinfo/l10n/pt_BR/anchor.html %%DATADIR%%/objinfo/l10n/pt_BR/box.html %%DATADIR%%/objinfo/l10n/pt_BR/chargedparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/coulombforce.html %%DATADIR%%/objinfo/l10n/pt_BR/disk.html %%DATADIR%%/objinfo/l10n/pt_BR/gas.html %%DATADIR%%/objinfo/l10n/pt_BR/gasljforce.html %%DATADIR%%/objinfo/l10n/pt_BR/gasparticle.html %%DATADIR%%/objinfo/l10n/pt_BR/gravitationforce.html %%DATADIR%%/objinfo/l10n/pt_BR/linearmotor.html %%DATADIR%%/objinfo/l10n/pt_BR/meter.html %%DATADIR%%/objinfo/l10n/pt_BR/note.html %%DATADIR%%/objinfo/l10n/pt_BR/particle.html %%DATADIR%%/objinfo/l10n/pt_BR/pin.html %%DATADIR%%/objinfo/l10n/pt_BR/polygon.html %%DATADIR%%/objinfo/l10n/pt_BR/softbody.html %%DATADIR%%/objinfo/l10n/pt_BR/spring.html %%DATADIR%%/objinfo/l10n/pt_BR/weightforce.html %%DATADIR%%/objinfo/l10n/pt_BR/world.html %%DATADIR%%/objinfo/l10n/ru/anchor.html %%DATADIR%%/objinfo/l10n/ru/box.html %%DATADIR%%/objinfo/l10n/ru/chargedparticle.html %%DATADIR%%/objinfo/l10n/ru/coulombforce.html %%DATADIR%%/objinfo/l10n/ru/disk.html %%DATADIR%%/objinfo/l10n/ru/gas.html %%DATADIR%%/objinfo/l10n/ru/gasljforce.html %%DATADIR%%/objinfo/l10n/ru/gasparticle.html %%DATADIR%%/objinfo/l10n/ru/gravitationforce.html %%DATADIR%%/objinfo/l10n/ru/linearmotor.html %%DATADIR%%/objinfo/l10n/ru/meter.html %%DATADIR%%/objinfo/l10n/ru/note.html %%DATADIR%%/objinfo/l10n/ru/particle.html %%DATADIR%%/objinfo/l10n/ru/pin.html %%DATADIR%%/objinfo/l10n/ru/polygon.html %%DATADIR%%/objinfo/l10n/ru/softbody.html %%DATADIR%%/objinfo/l10n/ru/spring.html %%DATADIR%%/objinfo/l10n/ru/weightforce.html %%DATADIR%%/objinfo/l10n/ru/world.html %%DATADIR%%/objinfo/l10n/sk/anchor.html %%DATADIR%%/objinfo/l10n/sk/box.html %%DATADIR%%/objinfo/l10n/sk/chargedparticle.html %%DATADIR%%/objinfo/l10n/sk/coulombforce.html %%DATADIR%%/objinfo/l10n/sk/disk.html %%DATADIR%%/objinfo/l10n/sk/gas.html %%DATADIR%%/objinfo/l10n/sk/gasljforce.html %%DATADIR%%/objinfo/l10n/sk/gasparticle.html %%DATADIR%%/objinfo/l10n/sk/gravitationforce.html %%DATADIR%%/objinfo/l10n/sk/linearmotor.html %%DATADIR%%/objinfo/l10n/sk/meter.html %%DATADIR%%/objinfo/l10n/sk/note.html %%DATADIR%%/objinfo/l10n/sk/particle.html %%DATADIR%%/objinfo/l10n/sk/pin.html %%DATADIR%%/objinfo/l10n/sk/polygon.html %%DATADIR%%/objinfo/l10n/sk/softbody.html %%DATADIR%%/objinfo/l10n/sk/spring.html %%DATADIR%%/objinfo/l10n/sk/weightforce.html %%DATADIR%%/objinfo/l10n/sk/world.html %%DATADIR%%/objinfo/l10n/sl/anchor.html %%DATADIR%%/objinfo/l10n/sl/box.html %%DATADIR%%/objinfo/l10n/sl/chargedparticle.html %%DATADIR%%/objinfo/l10n/sl/coulombforce.html %%DATADIR%%/objinfo/l10n/sl/disk.html %%DATADIR%%/objinfo/l10n/sl/gas.html %%DATADIR%%/objinfo/l10n/sl/gasljforce.html %%DATADIR%%/objinfo/l10n/sl/gasparticle.html %%DATADIR%%/objinfo/l10n/sl/gravitationforce.html %%DATADIR%%/objinfo/l10n/sl/linearmotor.html %%DATADIR%%/objinfo/l10n/sl/meter.html %%DATADIR%%/objinfo/l10n/sl/note.html %%DATADIR%%/objinfo/l10n/sl/particle.html %%DATADIR%%/objinfo/l10n/sl/pin.html %%DATADIR%%/objinfo/l10n/sl/polygon.html %%DATADIR%%/objinfo/l10n/sl/softbody.html %%DATADIR%%/objinfo/l10n/sl/spring.html %%DATADIR%%/objinfo/l10n/sl/weightforce.html %%DATADIR%%/objinfo/l10n/sl/world.html %%DATADIR%%/objinfo/l10n/sv/anchor.html %%DATADIR%%/objinfo/l10n/sv/box.html %%DATADIR%%/objinfo/l10n/sv/chargedparticle.html %%DATADIR%%/objinfo/l10n/sv/coulombforce.html %%DATADIR%%/objinfo/l10n/sv/disk.html %%DATADIR%%/objinfo/l10n/sv/gas.html %%DATADIR%%/objinfo/l10n/sv/gasljforce.html %%DATADIR%%/objinfo/l10n/sv/gasparticle.html %%DATADIR%%/objinfo/l10n/sv/gravitationforce.html %%DATADIR%%/objinfo/l10n/sv/linearmotor.html %%DATADIR%%/objinfo/l10n/sv/meter.html %%DATADIR%%/objinfo/l10n/sv/note.html %%DATADIR%%/objinfo/l10n/sv/particle.html %%DATADIR%%/objinfo/l10n/sv/pin.html %%DATADIR%%/objinfo/l10n/sv/polygon.html %%DATADIR%%/objinfo/l10n/sv/softbody.html %%DATADIR%%/objinfo/l10n/sv/spring.html %%DATADIR%%/objinfo/l10n/sv/weightforce.html %%DATADIR%%/objinfo/l10n/sv/world.html +%%DATADIR%%/objinfo/l10n/tr/anchor.html +%%DATADIR%%/objinfo/l10n/tr/box.html +%%DATADIR%%/objinfo/l10n/tr/chargedparticle.html +%%DATADIR%%/objinfo/l10n/tr/coulombforce.html +%%DATADIR%%/objinfo/l10n/tr/disk.html +%%DATADIR%%/objinfo/l10n/tr/gas.html +%%DATADIR%%/objinfo/l10n/tr/gasljforce.html +%%DATADIR%%/objinfo/l10n/tr/gasparticle.html +%%DATADIR%%/objinfo/l10n/tr/gravitationforce.html +%%DATADIR%%/objinfo/l10n/tr/linearmotor.html +%%DATADIR%%/objinfo/l10n/tr/meter.html +%%DATADIR%%/objinfo/l10n/tr/note.html +%%DATADIR%%/objinfo/l10n/tr/particle.html +%%DATADIR%%/objinfo/l10n/tr/pin.html +%%DATADIR%%/objinfo/l10n/tr/polygon.html +%%DATADIR%%/objinfo/l10n/tr/softbody.html +%%DATADIR%%/objinfo/l10n/tr/spring.html +%%DATADIR%%/objinfo/l10n/tr/weightforce.html +%%DATADIR%%/objinfo/l10n/tr/world.html %%DATADIR%%/objinfo/l10n/uk/anchor.html %%DATADIR%%/objinfo/l10n/uk/box.html %%DATADIR%%/objinfo/l10n/uk/chargedparticle.html %%DATADIR%%/objinfo/l10n/uk/coulombforce.html %%DATADIR%%/objinfo/l10n/uk/disk.html %%DATADIR%%/objinfo/l10n/uk/gas.html %%DATADIR%%/objinfo/l10n/uk/gasljforce.html %%DATADIR%%/objinfo/l10n/uk/gasparticle.html %%DATADIR%%/objinfo/l10n/uk/gravitationforce.html %%DATADIR%%/objinfo/l10n/uk/linearmotor.html %%DATADIR%%/objinfo/l10n/uk/meter.html %%DATADIR%%/objinfo/l10n/uk/note.html %%DATADIR%%/objinfo/l10n/uk/particle.html %%DATADIR%%/objinfo/l10n/uk/pin.html %%DATADIR%%/objinfo/l10n/uk/polygon.html %%DATADIR%%/objinfo/l10n/uk/softbody.html %%DATADIR%%/objinfo/l10n/uk/spring.html %%DATADIR%%/objinfo/l10n/uk/weightforce.html %%DATADIR%%/objinfo/l10n/uk/world.html %%DATADIR%%/objinfo/l10n/zh_CN/anchor.html %%DATADIR%%/objinfo/l10n/zh_CN/box.html %%DATADIR%%/objinfo/l10n/zh_CN/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_CN/disk.html %%DATADIR%%/objinfo/l10n/zh_CN/gas.html %%DATADIR%%/objinfo/l10n/zh_CN/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_CN/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_CN/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_CN/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_CN/meter.html %%DATADIR%%/objinfo/l10n/zh_CN/note.html %%DATADIR%%/objinfo/l10n/zh_CN/particle.html %%DATADIR%%/objinfo/l10n/zh_CN/pin.html %%DATADIR%%/objinfo/l10n/zh_CN/polygon.html %%DATADIR%%/objinfo/l10n/zh_CN/softbody.html %%DATADIR%%/objinfo/l10n/zh_CN/spring.html %%DATADIR%%/objinfo/l10n/zh_CN/weightforce.html %%DATADIR%%/objinfo/l10n/zh_CN/world.html %%DATADIR%%/objinfo/l10n/zh_TW/anchor.html %%DATADIR%%/objinfo/l10n/zh_TW/box.html %%DATADIR%%/objinfo/l10n/zh_TW/chargedparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/coulombforce.html %%DATADIR%%/objinfo/l10n/zh_TW/disk.html %%DATADIR%%/objinfo/l10n/zh_TW/gas.html %%DATADIR%%/objinfo/l10n/zh_TW/gasljforce.html %%DATADIR%%/objinfo/l10n/zh_TW/gasparticle.html %%DATADIR%%/objinfo/l10n/zh_TW/gravitationforce.html %%DATADIR%%/objinfo/l10n/zh_TW/linearmotor.html %%DATADIR%%/objinfo/l10n/zh_TW/meter.html %%DATADIR%%/objinfo/l10n/zh_TW/note.html %%DATADIR%%/objinfo/l10n/zh_TW/particle.html %%DATADIR%%/objinfo/l10n/zh_TW/pin.html %%DATADIR%%/objinfo/l10n/zh_TW/polygon.html %%DATADIR%%/objinfo/l10n/zh_TW/softbody.html %%DATADIR%%/objinfo/l10n/zh_TW/spring.html %%DATADIR%%/objinfo/l10n/zh_TW/weightforce.html %%DATADIR%%/objinfo/l10n/zh_TW/world.html %%DATADIR%%/objinfo/linearmotor.html %%DATADIR%%/objinfo/meter.html %%DATADIR%%/objinfo/note.html %%DATADIR%%/objinfo/particle.html %%DATADIR%%/objinfo/pin.html %%DATADIR%%/objinfo/polygon.html %%DATADIR%%/objinfo/softbody.html %%DATADIR%%/objinfo/spring.html %%DATADIR%%/objinfo/weightforce.html %%DATADIR%%/objinfo/world.html %%DATADIR%%/tutorials/bg/tutorial1.step %%DATADIR%%/tutorials/bg/tutorial2.step %%DATADIR%%/tutorials/bg/tutorial3.step %%DATADIR%%/tutorials/bg/tutorial4.step %%DATADIR%%/tutorials/bg/tutorial5.step %%DATADIR%%/tutorials/ca/tutorial1.step %%DATADIR%%/tutorials/ca/tutorial2.step %%DATADIR%%/tutorials/ca/tutorial3.step %%DATADIR%%/tutorials/ca/tutorial4.step %%DATADIR%%/tutorials/ca/tutorial5.step %%DATADIR%%/tutorials/ca@valencia/tutorial1.step %%DATADIR%%/tutorials/ca@valencia/tutorial2.step %%DATADIR%%/tutorials/ca@valencia/tutorial3.step %%DATADIR%%/tutorials/ca@valencia/tutorial4.step %%DATADIR%%/tutorials/ca@valencia/tutorial5.step %%DATADIR%%/tutorials/cs/tutorial1.step %%DATADIR%%/tutorials/cs/tutorial2.step %%DATADIR%%/tutorials/cs/tutorial3.step %%DATADIR%%/tutorials/cs/tutorial4.step %%DATADIR%%/tutorials/cs/tutorial5.step %%DATADIR%%/tutorials/da/tutorial1.step %%DATADIR%%/tutorials/da/tutorial2.step %%DATADIR%%/tutorials/da/tutorial3.step %%DATADIR%%/tutorials/da/tutorial4.step %%DATADIR%%/tutorials/da/tutorial5.step %%DATADIR%%/tutorials/de/tutorial1.step %%DATADIR%%/tutorials/de/tutorial2.step %%DATADIR%%/tutorials/de/tutorial3.step %%DATADIR%%/tutorials/de/tutorial4.step %%DATADIR%%/tutorials/de/tutorial5.step %%DATADIR%%/tutorials/el/tutorial1.step %%DATADIR%%/tutorials/el/tutorial2.step %%DATADIR%%/tutorials/el/tutorial3.step %%DATADIR%%/tutorials/el/tutorial4.step %%DATADIR%%/tutorials/el/tutorial5.step %%DATADIR%%/tutorials/en_GB/tutorial1.step %%DATADIR%%/tutorials/en_GB/tutorial2.step %%DATADIR%%/tutorials/en_GB/tutorial3.step %%DATADIR%%/tutorials/en_GB/tutorial4.step %%DATADIR%%/tutorials/en_GB/tutorial5.step %%DATADIR%%/tutorials/es/tutorial1.step %%DATADIR%%/tutorials/es/tutorial2.step %%DATADIR%%/tutorials/es/tutorial3.step %%DATADIR%%/tutorials/es/tutorial4.step %%DATADIR%%/tutorials/es/tutorial5.step %%DATADIR%%/tutorials/et/tutorial1.step %%DATADIR%%/tutorials/et/tutorial2.step %%DATADIR%%/tutorials/et/tutorial3.step %%DATADIR%%/tutorials/et/tutorial4.step %%DATADIR%%/tutorials/et/tutorial5.step %%DATADIR%%/tutorials/eu/tutorial1.step %%DATADIR%%/tutorials/eu/tutorial2.step %%DATADIR%%/tutorials/eu/tutorial3.step %%DATADIR%%/tutorials/eu/tutorial4.step %%DATADIR%%/tutorials/eu/tutorial5.step %%DATADIR%%/tutorials/fr/tutorial1.step %%DATADIR%%/tutorials/fr/tutorial2.step %%DATADIR%%/tutorials/fr/tutorial3.step %%DATADIR%%/tutorials/fr/tutorial4.step %%DATADIR%%/tutorials/fr/tutorial5.step %%DATADIR%%/tutorials/ia/tutorial1.step %%DATADIR%%/tutorials/ia/tutorial2.step %%DATADIR%%/tutorials/ia/tutorial3.step %%DATADIR%%/tutorials/ia/tutorial4.step %%DATADIR%%/tutorials/ia/tutorial5.step %%DATADIR%%/tutorials/it/tutorial1.step %%DATADIR%%/tutorials/it/tutorial2.step %%DATADIR%%/tutorials/it/tutorial3.step %%DATADIR%%/tutorials/it/tutorial4.step %%DATADIR%%/tutorials/it/tutorial5.step %%DATADIR%%/tutorials/ja/tutorial1.step %%DATADIR%%/tutorials/ja/tutorial2.step %%DATADIR%%/tutorials/ja/tutorial3.step %%DATADIR%%/tutorials/ja/tutorial4.step %%DATADIR%%/tutorials/ja/tutorial5.step +%%DATADIR%%/tutorials/ka/tutorial1.step +%%DATADIR%%/tutorials/ka/tutorial2.step +%%DATADIR%%/tutorials/ka/tutorial3.step +%%DATADIR%%/tutorials/ka/tutorial4.step +%%DATADIR%%/tutorials/ka/tutorial5.step %%DATADIR%%/tutorials/lt/tutorial1.step %%DATADIR%%/tutorials/lt/tutorial2.step %%DATADIR%%/tutorials/lt/tutorial3.step %%DATADIR%%/tutorials/lt/tutorial4.step %%DATADIR%%/tutorials/lt/tutorial5.step %%DATADIR%%/tutorials/ml/tutorial1.step %%DATADIR%%/tutorials/ml/tutorial2.step %%DATADIR%%/tutorials/ml/tutorial3.step %%DATADIR%%/tutorials/ml/tutorial4.step %%DATADIR%%/tutorials/ml/tutorial5.step %%DATADIR%%/tutorials/nl/tutorial1.step %%DATADIR%%/tutorials/nl/tutorial2.step %%DATADIR%%/tutorials/nl/tutorial3.step %%DATADIR%%/tutorials/nl/tutorial4.step %%DATADIR%%/tutorials/nl/tutorial5.step %%DATADIR%%/tutorials/pl/tutorial1.step %%DATADIR%%/tutorials/pl/tutorial2.step %%DATADIR%%/tutorials/pl/tutorial3.step %%DATADIR%%/tutorials/pl/tutorial4.step %%DATADIR%%/tutorials/pl/tutorial5.step %%DATADIR%%/tutorials/pt/tutorial1.step %%DATADIR%%/tutorials/pt/tutorial2.step %%DATADIR%%/tutorials/pt/tutorial3.step %%DATADIR%%/tutorials/pt/tutorial4.step %%DATADIR%%/tutorials/pt/tutorial5.step %%DATADIR%%/tutorials/pt_BR/tutorial1.step %%DATADIR%%/tutorials/pt_BR/tutorial2.step %%DATADIR%%/tutorials/pt_BR/tutorial3.step %%DATADIR%%/tutorials/pt_BR/tutorial4.step %%DATADIR%%/tutorials/pt_BR/tutorial5.step %%DATADIR%%/tutorials/ru/tutorial1.step %%DATADIR%%/tutorials/ru/tutorial2.step %%DATADIR%%/tutorials/ru/tutorial3.step %%DATADIR%%/tutorials/ru/tutorial4.step %%DATADIR%%/tutorials/ru/tutorial5.step %%DATADIR%%/tutorials/sk/tutorial1.step %%DATADIR%%/tutorials/sk/tutorial2.step %%DATADIR%%/tutorials/sk/tutorial3.step %%DATADIR%%/tutorials/sk/tutorial4.step %%DATADIR%%/tutorials/sk/tutorial5.step %%DATADIR%%/tutorials/sl/tutorial1.step %%DATADIR%%/tutorials/sl/tutorial2.step %%DATADIR%%/tutorials/sl/tutorial3.step %%DATADIR%%/tutorials/sl/tutorial4.step %%DATADIR%%/tutorials/sl/tutorial5.step %%DATADIR%%/tutorials/sv/tutorial1.step %%DATADIR%%/tutorials/sv/tutorial2.step %%DATADIR%%/tutorials/sv/tutorial3.step %%DATADIR%%/tutorials/sv/tutorial4.step %%DATADIR%%/tutorials/sv/tutorial5.step +%%DATADIR%%/tutorials/tr/tutorial1.step +%%DATADIR%%/tutorials/tr/tutorial2.step +%%DATADIR%%/tutorials/tr/tutorial3.step +%%DATADIR%%/tutorials/tr/tutorial4.step +%%DATADIR%%/tutorials/tr/tutorial5.step %%DATADIR%%/tutorials/tutorial1.step %%DATADIR%%/tutorials/tutorial2.step %%DATADIR%%/tutorials/tutorial3.step %%DATADIR%%/tutorials/tutorial4.step %%DATADIR%%/tutorials/tutorial5.step %%DATADIR%%/tutorials/uk/tutorial1.step %%DATADIR%%/tutorials/uk/tutorial2.step %%DATADIR%%/tutorials/uk/tutorial3.step %%DATADIR%%/tutorials/uk/tutorial4.step %%DATADIR%%/tutorials/uk/tutorial5.step %%DATADIR%%/tutorials/zh_CN/tutorial1.step %%DATADIR%%/tutorials/zh_CN/tutorial2.step %%DATADIR%%/tutorials/zh_CN/tutorial3.step %%DATADIR%%/tutorials/zh_CN/tutorial4.step %%DATADIR%%/tutorials/zh_CN/tutorial5.step %%DATADIR%%/tutorials/zh_TW/tutorial1.step %%DATADIR%%/tutorials/zh_TW/tutorial2.step %%DATADIR%%/tutorials/zh_TW/tutorial3.step %%DATADIR%%/tutorials/zh_TW/tutorial4.step %%DATADIR%%/tutorials/zh_TW/tutorial5.step diff --git a/security/kgpg/distinfo b/security/kgpg/distinfo index c66c46d4dcf7..c6f0f13be8e3 100644 --- a/security/kgpg/distinfo +++ b/security/kgpg/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539623 -SHA256 (KDE/release-service/22.08.3/kgpg-22.08.3.tar.xz) = 2bba6fa2b6e7bcdde1ec24ce8a52653b68867a2525a4d2cadc73f61d05802074 -SIZE (KDE/release-service/22.08.3/kgpg-22.08.3.tar.xz) = 2953552 +TIMESTAMP = 1670513278 +SHA256 (KDE/release-service/22.12.0/kgpg-22.12.0.tar.xz) = fe5f83caa52693a7d2e120eb79e1f17f999db42d0fbb66b612fae1f83e80b155 +SIZE (KDE/release-service/22.12.0/kgpg-22.12.0.tar.xz) = 3036848 diff --git a/security/kgpg/pkg-plist b/security/kgpg/pkg-plist index db44e0ac4309..f1e66eabbc0f 100644 --- a/security/kgpg/pkg-plist +++ b/security/kgpg/pkg-plist @@ -1,110 +1,121 @@ bin/kgpg etc/xdg/autostart/org.kde.kgpg.desktop 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/128x128/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/kgpg_encryptfile.desktop -share/kservices5/ServiceMenus/kgpg_encryptfolder.desktop -share/kservices5/ServiceMenus/kgpg_viewdecrypted.desktop +share/kio/servicemenus/kgpg_encryptfile.desktop +share/kio/servicemenus/kgpg_encryptfolder.desktop +share/kio/servicemenus/kgpg_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/br/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/cy/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/ie/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/ka/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/mk/LC_MESSAGES/kgpg.mo share/locale/mr/LC_MESSAGES/kgpg.mo +share/locale/ms/LC_MESSAGES/kgpg.mo share/locale/nb/LC_MESSAGES/kgpg.mo share/locale/nds/LC_MESSAGES/kgpg.mo +share/locale/ne/LC_MESSAGES/kgpg.mo share/locale/nl/LC_MESSAGES/kgpg.mo share/locale/nn/LC_MESSAGES/kgpg.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kgpg.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kgpg.mo +share/locale/sr@latin/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 share/qlogging-categories5/kgpg.categories diff --git a/security/kleopatra/distinfo b/security/kleopatra/distinfo index cf68c28b349a..593ce402b074 100644 --- a/security/kleopatra/distinfo +++ b/security/kleopatra/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539619 -SHA256 (KDE/release-service/22.08.3/kleopatra-22.08.3.tar.xz) = e15ef50a67bf1cc2483ac71264050c1892eeefc6cf7125d73586dc2b7ff7f875 -SIZE (KDE/release-service/22.08.3/kleopatra-22.08.3.tar.xz) = 2378124 +TIMESTAMP = 1670513273 +SHA256 (KDE/release-service/22.12.0/kleopatra-22.12.0.tar.xz) = dfea84e82653f0bd3f5b38f33d47ffe8a863c72834018a1dbddfe227d76a5e46 +SIZE (KDE/release-service/22.12.0/kleopatra-22.12.0.tar.xz) = 2568852 diff --git a/security/kleopatra/pkg-plist b/security/kleopatra/pkg-plist index d34858371812..1149a4fabd6d 100644 --- a/security/kleopatra/pkg-plist +++ b/security/kleopatra/pkg-plist @@ -1,145 +1,169 @@ bin/kleopatra bin/kwatchgnupg 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%%/pim5/kcms/kleopatra/kleopatra_config_gnupgsystem.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 share/kio/servicemenus/kleopatra_decryptverifyfiles.desktop share/kio/servicemenus/kleopatra_decryptverifyfolders.desktop share/kio/servicemenus/kleopatra_signencryptfiles.desktop share/kio/servicemenus/kleopatra_signencryptfolders.desktop %%DATADIR%%/pics/kleopatra_splashscreen.png %%DATADIR%%/pics/kleopatra_splashscreen.svgz %%DATADIR%%/pics/kleopatra_wizard.png %%DATADIR%%/pics/kleopatra_wizard.svgz share/kwatchgnupg/pics/kwatchgnupg.png share/kwatchgnupg/pics/kwatchgnupg2.png +share/locale/af/LC_MESSAGES/kleopatra.mo 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/br/LC_MESSAGES/kleopatra.mo +share/locale/br/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/cy/LC_MESSAGES/kleopatra.mo +share/locale/cy/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/fy/LC_MESSAGES/kleopatra.mo +share/locale/fy/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/hne/LC_MESSAGES/kleopatra.mo +share/locale/hne/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/ka/LC_MESSAGES/kleopatra.mo +share/locale/ka/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/mk/LC_MESSAGES/kleopatra.mo +share/locale/mk/LC_MESSAGES/kwatchgnupg.mo share/locale/mr/LC_MESSAGES/kleopatra.mo share/locale/mr/LC_MESSAGES/kwatchgnupg.mo +share/locale/ms/LC_MESSAGES/kleopatra.mo +share/locale/ms/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/ne/LC_MESSAGES/kleopatra.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/kwatchgnupg.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwatchgnupg.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kleopatra.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/uz/LC_MESSAGES/kleopatra.mo +share/locale/uz@cyrillic/LC_MESSAGES/kleopatra.mo +share/locale/xh/LC_MESSAGES/kleopatra.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 share/mime/packages/application-vnd-kde-kleopatra.xml share/qlogging-categories5/kleopatra.categories share/qlogging-categories5/kleopatra.renamecategories diff --git a/security/kpkpass/distinfo b/security/kpkpass/distinfo index 717321ac3da2..95fe5ffb77a9 100644 --- a/security/kpkpass/distinfo +++ b/security/kpkpass/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539618 -SHA256 (KDE/release-service/22.08.3/kpkpass-22.08.3.tar.xz) = 64ab77fc62a1a3dde07827a6275b94e08b2956decf6cb183294c9b468e63f9e6 -SIZE (KDE/release-service/22.08.3/kpkpass-22.08.3.tar.xz) = 28888 +TIMESTAMP = 1670513270 +SHA256 (KDE/release-service/22.12.0/kpkpass-22.12.0.tar.xz) = 611bb57e2a38361460f2fa261a3c6180a964c79abab9686639f5e5678294184a +SIZE (KDE/release-service/22.12.0/kpkpass-22.12.0.tar.xz) = 28900 diff --git a/security/kwalletmanager/distinfo b/security/kwalletmanager/distinfo index 1d5f5ec909f7..4c5d121850e4 100644 --- a/security/kwalletmanager/distinfo +++ b/security/kwalletmanager/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539620 -SHA256 (KDE/release-service/22.08.3/kwalletmanager-22.08.3.tar.xz) = ee56745b916d464c49220afbf694bd706f7c260e311943cbe41818aa99de0a01 -SIZE (KDE/release-service/22.08.3/kwalletmanager-22.08.3.tar.xz) = 804040 +TIMESTAMP = 1670513275 +SHA256 (KDE/release-service/22.12.0/kwalletmanager-22.12.0.tar.xz) = bc8753c458f24a69425f99592ddef8821b5d05048d7316d0648cf693f6c0257d +SIZE (KDE/release-service/22.12.0/kwalletmanager-22.12.0.tar.xz) = 838684 diff --git a/security/kwalletmanager/pkg-plist b/security/kwalletmanager/pkg-plist index efed0832cdd2..9c35bddd6221 100644 --- a/security/kwalletmanager/pkg-plist +++ b/security/kwalletmanager/pkg-plist @@ -1,143 +1,174 @@ bin/kwalletmanager5 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/services/org.kde.kwalletmanager5.service share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service share/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf -share/icons/hicolor/16x16/apps/kwalletmanager2.png +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/kwalletmanager2.png share/icons/hicolor/32x32/apps/kwalletmanager.png -share/icons/hicolor/48x48/apps/kwalletmanager2.png +share/icons/hicolor/32x32/apps/kwalletmanager2.png share/icons/hicolor/48x48/apps/kwalletmanager.png -share/icons/hicolor/64x64/apps/kwalletmanager2.png +share/icons/hicolor/48x48/apps/kwalletmanager2.png share/icons/hicolor/64x64/apps/kwalletmanager.png -share/icons/hicolor/128x128/apps/kwalletmanager2.png -share/icons/hicolor/128x128/apps/kwalletmanager.png +share/icons/hicolor/64x64/apps/kwalletmanager2.png share/kservices5/kwalletconfig5.desktop share/kservices5/kwalletmanager5_show.desktop 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/br/LC_MESSAGES/kcmkwallet.mo +share/locale/br/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/cy/LC_MESSAGES/kcmkwallet.mo +share/locale/cy/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/hne/LC_MESSAGES/kcmkwallet.mo +share/locale/hne/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/ka/LC_MESSAGES/kcmkwallet.mo +share/locale/ka/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/mk/LC_MESSAGES/kcmkwallet.mo +share/locale/mk/LC_MESSAGES/kwalletmanager.mo share/locale/mr/LC_MESSAGES/kcmkwallet.mo share/locale/mr/LC_MESSAGES/kwalletmanager.mo +share/locale/ms/LC_MESSAGES/kcmkwallet.mo +share/locale/ms/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/ne/LC_MESSAGES/kcmkwallet.mo +share/locale/ne/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/oc/LC_MESSAGES/kcmkwallet.mo +share/locale/oc/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/si/LC_MESSAGES/kcmkwallet.mo +share/locale/si/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/sr@ijekavian/LC_MESSAGES/kcmkwallet.mo +share/locale/sr@ijekavian/LC_MESSAGES/kwalletmanager.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkwallet.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kwalletmanager.mo +share/locale/sr@latin/LC_MESSAGES/kcmkwallet.mo +share/locale/sr@latin/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/th/LC_MESSAGES/kcmkwallet.mo +share/locale/th/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/uz/LC_MESSAGES/kcmkwallet.mo +share/locale/uz/LC_MESSAGES/kwalletmanager.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkwallet.mo +share/locale/uz@cyrillic/LC_MESSAGES/kwalletmanager.mo share/locale/vi/LC_MESSAGES/kcmkwallet.mo +share/locale/vi/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 share/qlogging-categories5/kwalletmanager.categories diff --git a/security/libkleo/distinfo b/security/libkleo/distinfo index 46d9fb9e6708..ff12f06a9544 100644 --- a/security/libkleo/distinfo +++ b/security/libkleo/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539622 -SHA256 (KDE/release-service/22.08.3/libkleo-22.08.3.tar.xz) = 83422ef1894db012c8ade1bf7cfc9e212abf4e7a7e5a2f2039678e4c2c7ed314 -SIZE (KDE/release-service/22.08.3/libkleo-22.08.3.tar.xz) = 469820 +TIMESTAMP = 1670513276 +SHA256 (KDE/release-service/22.12.0/libkleo-22.12.0.tar.xz) = 8988726946885e900136af9c1a88da6cca61e7dc1efaa975f5e9d8e97288a445 +SIZE (KDE/release-service/22.12.0/libkleo-22.12.0.tar.xz) = 507168 diff --git a/security/libkleo/pkg-plist b/security/libkleo/pkg-plist index 9d58a62d53dd..4ec76b14b247 100644 --- a/security/libkleo/pkg-plist +++ b/security/libkleo/pkg-plist @@ -1,197 +1,216 @@ etc/xdg/libkleopatrarc include/KF5/Libkleo/Libkleo/Algorithm include/KF5/Libkleo/Libkleo/Assuan include/KF5/Libkleo/Libkleo/ChecksumDefinition include/KF5/Libkleo/Libkleo/Classify include/KF5/Libkleo/Libkleo/Compat +include/KF5/Libkleo/Libkleo/Compliance include/KF5/Libkleo/Libkleo/CryptoConfig include/KF5/Libkleo/Libkleo/CryptoConfigModule include/KF5/Libkleo/Libkleo/DNAttributeOrderConfigWidget include/KF5/Libkleo/Libkleo/Debug include/KF5/Libkleo/Libkleo/DefaultKeyFilter include/KF5/Libkleo/Libkleo/DefaultKeyGenerationJob include/KF5/Libkleo/Libkleo/DirectoryServicesWidget include/KF5/Libkleo/Libkleo/Dn include/KF5/Libkleo/Libkleo/DocAction include/KF5/Libkleo/Libkleo/EditDirectoryServiceDialog include/KF5/Libkleo/Libkleo/Enum include/KF5/Libkleo/Libkleo/FileNameRequester include/KF5/Libkleo/Libkleo/FileSystemWatcher include/KF5/Libkleo/Libkleo/Formatting include/KF5/Libkleo/Libkleo/GnuPG include/KF5/Libkleo/Libkleo/Hex include/KF5/Libkleo/Libkleo/KConfigBasedKeyFilter include/KF5/Libkleo/Libkleo/KeyApprovalDialog include/KF5/Libkleo/Libkleo/KeyCache include/KF5/Libkleo/Libkleo/KeyFilter include/KF5/Libkleo/Libkleo/KeyFilterManager include/KF5/Libkleo/Libkleo/KeyGroup include/KF5/Libkleo/Libkleo/KeyGroupConfig include/KF5/Libkleo/Libkleo/KeyGroupImportExport include/KF5/Libkleo/Libkleo/KeyHelpers include/KF5/Libkleo/Libkleo/KeyList include/KF5/Libkleo/Libkleo/KeyListModel include/KF5/Libkleo/Libkleo/KeyListModelInterface include/KF5/Libkleo/Libkleo/KeyListSortFilterProxyModel include/KF5/Libkleo/Libkleo/KeyListView include/KF5/Libkleo/Libkleo/KeyRearrangeColumnsProxyModel include/KF5/Libkleo/Libkleo/KeyRequester include/KF5/Libkleo/Libkleo/KeyResolver include/KF5/Libkleo/Libkleo/KeyResolverCore include/KF5/Libkleo/Libkleo/KeySelectionCombo include/KF5/Libkleo/Libkleo/KeySelectionDialog include/KF5/Libkleo/Libkleo/KeyserverConfig include/KF5/Libkleo/Libkleo/KleoException include/KF5/Libkleo/Libkleo/MessageBox +include/KF5/Libkleo/Libkleo/NavigatableTreeView +include/KF5/Libkleo/Libkleo/NavigatableTreeWidget include/KF5/Libkleo/Libkleo/NewKeyApprovalDialog include/KF5/Libkleo/Libkleo/OidMap include/KF5/Libkleo/Libkleo/Predicates include/KF5/Libkleo/Libkleo/ProgressDialog include/KF5/Libkleo/Libkleo/QtStlHelpers include/KF5/Libkleo/Libkleo/ReaderPortSelection include/KF5/Libkleo/Libkleo/SCDaemon include/KF5/Libkleo/Libkleo/Stl_Util include/KF5/Libkleo/Libkleo/StringUtils include/KF5/Libkleo/Libkleo/SubkeyListModel include/KF5/Libkleo/Libkleo/SystemInfo include/KF5/Libkleo/Libkleo/Test include/KF5/Libkleo/Libkleo/UniqueLock include/KF5/Libkleo/Libkleo/UserIDListModel include/KF5/Libkleo/libkleo/algorithm.h include/KF5/Libkleo/libkleo/assuan.h include/KF5/Libkleo/libkleo/checksumdefinition.h include/KF5/Libkleo/libkleo/classify.h include/KF5/Libkleo/libkleo/compat.h +include/KF5/Libkleo/libkleo/compliance.h include/KF5/Libkleo/libkleo/cryptoconfig.h include/KF5/Libkleo/libkleo/cryptoconfigmodule.h include/KF5/Libkleo/libkleo/debug.h include/KF5/Libkleo/libkleo/defaultkeyfilter.h include/KF5/Libkleo/libkleo/defaultkeygenerationjob.h include/KF5/Libkleo/libkleo/directoryserviceswidget.h include/KF5/Libkleo/libkleo/dn.h include/KF5/Libkleo/libkleo/dnattributeorderconfigwidget.h include/KF5/Libkleo/libkleo/docaction.h include/KF5/Libkleo/libkleo/editdirectoryservicedialog.h include/KF5/Libkleo/libkleo/enum.h include/KF5/Libkleo/libkleo/filenamerequester.h include/KF5/Libkleo/libkleo/filesystemwatcher.h include/KF5/Libkleo/libkleo/formatting.h include/KF5/Libkleo/libkleo/gnupg.h include/KF5/Libkleo/libkleo/hex.h include/KF5/Libkleo/libkleo/kconfigbasedkeyfilter.h include/KF5/Libkleo/libkleo/keyapprovaldialog.h include/KF5/Libkleo/libkleo/keycache.h include/KF5/Libkleo/libkleo/keyfilter.h include/KF5/Libkleo/libkleo/keyfiltermanager.h include/KF5/Libkleo/libkleo/keygroup.h include/KF5/Libkleo/libkleo/keygroupconfig.h include/KF5/Libkleo/libkleo/keygroupimportexport.h include/KF5/Libkleo/libkleo/keyhelpers.h include/KF5/Libkleo/libkleo/keylist.h include/KF5/Libkleo/libkleo/keylistmodel.h include/KF5/Libkleo/libkleo/keylistmodelinterface.h include/KF5/Libkleo/libkleo/keylistsortfilterproxymodel.h include/KF5/Libkleo/libkleo/keylistview.h include/KF5/Libkleo/libkleo/keyrearrangecolumnsproxymodel.h include/KF5/Libkleo/libkleo/keyrequester.h include/KF5/Libkleo/libkleo/keyresolver.h include/KF5/Libkleo/libkleo/keyresolvercore.h include/KF5/Libkleo/libkleo/keyselectioncombo.h include/KF5/Libkleo/libkleo/keyselectiondialog.h include/KF5/Libkleo/libkleo/keyserverconfig.h include/KF5/Libkleo/libkleo/kleo_export.h include/KF5/Libkleo/libkleo/kleoexception.h include/KF5/Libkleo/libkleo/messagebox.h +include/KF5/Libkleo/libkleo/navigatabletreeview.h +include/KF5/Libkleo/libkleo/navigatabletreewidget.h include/KF5/Libkleo/libkleo/newkeyapprovaldialog.h include/KF5/Libkleo/libkleo/oidmap.h include/KF5/Libkleo/libkleo/predicates.h include/KF5/Libkleo/libkleo/progressdialog.h include/KF5/Libkleo/libkleo/qtstlhelpers.h include/KF5/Libkleo/libkleo/readerportselection.h include/KF5/Libkleo/libkleo/scdaemon.h include/KF5/Libkleo/libkleo/stl_util.h include/KF5/Libkleo/libkleo/stringutils.h include/KF5/Libkleo/libkleo/subkeylistmodel.h include/KF5/Libkleo/libkleo/systeminfo.h include/KF5/Libkleo/libkleo/test.h include/KF5/Libkleo/libkleo/uniquelock.h include/KF5/Libkleo/libkleo/useridlistmodel.h include/KF5/Libkleo/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/br/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/cy/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/fy/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/hne/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/ie/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/ka/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/mai/LC_MESSAGES/libkleopatra.mo +share/locale/mk/LC_MESSAGES/libkleopatra.mo share/locale/mr/LC_MESSAGES/libkleopatra.mo +share/locale/ms/LC_MESSAGES/libkleopatra.mo share/locale/nb/LC_MESSAGES/libkleopatra.mo share/locale/nds/LC_MESSAGES/libkleopatra.mo +share/locale/ne/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/sr@ijekavian/LC_MESSAGES/libkleopatra.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkleopatra.mo +share/locale/sr@latin/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 share/qlogging-categories5/libkleo.categories share/qlogging-categories5/libkleo.renamecategories diff --git a/sysutils/baloo-widgets/distinfo b/sysutils/baloo-widgets/distinfo index 219ece84f36d..84ed1c2688d2 100644 --- a/sysutils/baloo-widgets/distinfo +++ b/sysutils/baloo-widgets/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539466 -SHA256 (KDE/release-service/22.08.3/baloo-widgets-22.08.3.tar.xz) = 0baabcbf277a56f4d7b1fb8f7aff2bddf77d1261bbabd6b717c0d26d2929db5a -SIZE (KDE/release-service/22.08.3/baloo-widgets-22.08.3.tar.xz) = 272964 +TIMESTAMP = 1670513068 +SHA256 (KDE/release-service/22.12.0/baloo-widgets-22.12.0.tar.xz) = e4451dc60d7177d8928144c6bad481338cef181b53c9709aa34e7d041b348e50 +SIZE (KDE/release-service/22.12.0/baloo-widgets-22.12.0.tar.xz) = 275184 diff --git a/sysutils/baloo-widgets/pkg-plist b/sysutils/baloo-widgets/pkg-plist index 1a51e46d3539..197a70a51f38 100644 --- a/sysutils/baloo-widgets/pkg-plist +++ b/sysutils/baloo-widgets/pkg-plist @@ -1,68 +1,71 @@ 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.%%KDE_APPLICATIONS_VERSION%% lib/libKF5BalooWidgets.so.5 %%QT_PLUGINDIR%%/kf5/kfileitemaction/tagsfileitemaction.so %%QT_PLUGINDIR%%/kf5/propertiesdialog/baloofilepropertiesplugin.so 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/ka/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/sr@ijekavian/LC_MESSAGES/baloowidgets5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/baloowidgets5.mo +share/locale/sr@latin/LC_MESSAGES/baloowidgets5.mo share/locale/sv/LC_MESSAGES/baloowidgets5.mo share/locale/ta/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 60ee392c3b06..6f4ce4b90834 100644 --- a/sysutils/filelight/distinfo +++ b/sysutils/filelight/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539469 -SHA256 (KDE/release-service/22.08.3/filelight-22.08.3.tar.xz) = d28b9b9e6628bc4f97398e04872f57d9b46c1a7259a5d68f8311e50db3a74f6e -SIZE (KDE/release-service/22.08.3/filelight-22.08.3.tar.xz) = 698924 +TIMESTAMP = 1670513071 +SHA256 (KDE/release-service/22.12.0/filelight-22.12.0.tar.xz) = 2b0e96adf5224091705935de802991a94b3b1d0dc9ab861da7e430f8f698e673 +SIZE (KDE/release-service/22.12.0/filelight-22.12.0.tar.xz) = 699008 diff --git a/sysutils/filelight/pkg-plist b/sysutils/filelight/pkg-plist index f917a118ee12..e041856cfc44 100644 --- a/sysutils/filelight/pkg-plist +++ b/sysutils/filelight/pkg-plist @@ -1,61 +1,65 @@ bin/filelight 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/ar/LC_MESSAGES/filelight.mo -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/ie/LC_MESSAGES/filelight.mo share/locale/is/LC_MESSAGES/filelight.mo share/locale/it/LC_MESSAGES/filelight.mo share/locale/ja/LC_MESSAGES/filelight.mo +share/locale/ka/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/sr@ijekavian/LC_MESSAGES/filelight.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/filelight.mo +share/locale/sr@latin/LC_MESSAGES/filelight.mo share/locale/sv/LC_MESSAGES/filelight.mo share/locale/ta/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 share/qlogging-categories5/filelight.categories diff --git a/sysutils/k3b/distinfo b/sysutils/k3b/distinfo index 104bded51edb..58063087d252 100644 --- a/sysutils/k3b/distinfo +++ b/sysutils/k3b/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539465 -SHA256 (KDE/release-service/22.08.3/k3b-22.08.3.tar.xz) = 893ec15e05376e8cd90b4168b8698c18d8639d9f503ad0fff09ed4c84338e398 -SIZE (KDE/release-service/22.08.3/k3b-22.08.3.tar.xz) = 10764540 +TIMESTAMP = 1670513067 +SHA256 (KDE/release-service/22.12.0/k3b-22.12.0.tar.xz) = 64e7682c6f2124854e9713606bea2dba68f31a626e9966a6a17b3138a33fd079 +SIZE (KDE/release-service/22.12.0/k3b-22.12.0.tar.xz) = 10946228 diff --git a/sysutils/k3b/pkg-plist b/sysutils/k3b/pkg-plist index e7fbd24c0704..6131cf1d012d 100644 --- a/sysutils/k3b/pkg-plist +++ b/sysutils/k3b/pkg-plist @@ -1,540 +1,577 @@ bin/k3b -etc/xdg/k3btheme.knsrc 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/libexec/kauth/k3bhelper lib/libk3bdevice.so lib/libk3bdevice.so.8 lib/libk3bdevice.so.8.0.0 lib/libk3blib.so lib/libk3blib.so.8 lib/libk3blib.so.8.0.0 %%QT_PLUGINDIR%%/k3b_plugins/k3baudiometainforenamerplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3baudioprojectcddbplugin.so %%QT_PLUGINDIR%%/k3b_plugins/k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bflacdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3blibsndfiledecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bmaddecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisdecoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bsoxencoder.so %%QT_PLUGINDIR%%/k3b_plugins/k3bwavedecoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3bexternalencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3blameencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/kcm_k3boggvorbisencoder.so %%QT_PLUGINDIR%%/k3b_plugins/kcms/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/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/csb/LC_MESSAGES/k3b.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/hne/LC_MESSAGES/k3b.mo +share/locale/hne/LC_MESSAGES/kio_videodvd.mo +share/locale/hne/LC_MESSAGES/libk3b.mo +share/locale/hne/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/k3b.mo share/locale/id/LC_MESSAGES/kio_videodvd.mo share/locale/id/LC_MESSAGES/libk3b.mo share/locale/id/LC_MESSAGES/libk3bdevice.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/ka/LC_MESSAGES/k3b.mo +share/locale/ka/LC_MESSAGES/kio_videodvd.mo +share/locale/ka/LC_MESSAGES/libk3b.mo +share/locale/ka/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/ku/LC_MESSAGES/k3b.mo +share/locale/ku/LC_MESSAGES/kio_videodvd.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/mai/LC_MESSAGES/k3b.mo +share/locale/mai/LC_MESSAGES/kio_videodvd.mo +share/locale/mai/LC_MESSAGES/libk3b.mo +share/locale/mai/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/ms/LC_MESSAGES/k3b.mo +share/locale/ms/LC_MESSAGES/kio_videodvd.mo +share/locale/ms/LC_MESSAGES/libk3b.mo +share/locale/ms/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/oc/LC_MESSAGES/k3b.mo +share/locale/oc/LC_MESSAGES/kio_videodvd.mo +share/locale/oc/LC_MESSAGES/libk3b.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/k3b.mo +share/locale/sr@ijekavian/LC_MESSAGES/kio_videodvd.mo +share/locale/sr@ijekavian/LC_MESSAGES/libk3b.mo +share/locale/sr@ijekavian/LC_MESSAGES/libk3bdevice.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/k3b.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kio_videodvd.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3b.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libk3bdevice.mo +share/locale/sr@latin/LC_MESSAGES/k3b.mo +share/locale/sr@latin/LC_MESSAGES/kio_videodvd.mo +share/locale/sr@latin/LC_MESSAGES/libk3b.mo +share/locale/sr@latin/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/th/LC_MESSAGES/k3b.mo +share/locale/th/LC_MESSAGES/kio_videodvd.mo +share/locale/th/LC_MESSAGES/libk3b.mo +share/locale/th/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 5f5d0d19290d..159094e4ad73 100644 --- a/sysutils/kbackup/distinfo +++ b/sysutils/kbackup/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539454 -SHA256 (KDE/release-service/22.08.3/kbackup-22.08.3.tar.xz) = bce35c66c97b813fa01dbc3b21e5ec6d9d6b2d4315adcdacee44007c2da1cb9b -SIZE (KDE/release-service/22.08.3/kbackup-22.08.3.tar.xz) = 392604 +TIMESTAMP = 1670513053 +SHA256 (KDE/release-service/22.12.0/kbackup-22.12.0.tar.xz) = 99c8e3a39900611739c9b80e6e2d5e999fc577fc24da25661904a441c4aafbb4 +SIZE (KDE/release-service/22.12.0/kbackup-22.12.0.tar.xz) = 395028 diff --git a/sysutils/kbackup/pkg-plist b/sysutils/kbackup/pkg-plist index d0426a92cd3d..6e41172b8316 100644 --- a/sysutils/kbackup/pkg-plist +++ b/sysutils/kbackup/pkg-plist @@ -1,52 +1,54 @@ bin/kbackup man/ca/man1/kbackup.1.gz man/de/man1/kbackup.1.gz man/es/man1/kbackup.1.gz man/it/man1/kbackup.1.gz man/man1/kbackup.1.gz man/nl/man1/kbackup.1.gz man/sv/man1/kbackup.1.gz man/uk/man1/kbackup.1.gz share/applications/org.kde.kbackup.desktop share/icons/hicolor/16x16/apps/kbackup.png share/icons/hicolor/16x16/mimetypes/text-x-kbp.png share/icons/hicolor/22x22/actions/kbackup_cancel.png share/icons/hicolor/22x22/actions/kbackup_runs.png share/icons/hicolor/22x22/actions/kbackup_start.png share/icons/hicolor/32x32/apps/kbackup.png share/icons/hicolor/32x32/mimetypes/text-x-kbp.png share/kxmlgui5/kbackup/kbackupui.rc share/locale/ar/LC_MESSAGES/kbackup.mo share/locale/ca/LC_MESSAGES/kbackup.mo share/locale/ca@valencia/LC_MESSAGES/kbackup.mo share/locale/cs/LC_MESSAGES/kbackup.mo share/locale/da/LC_MESSAGES/kbackup.mo share/locale/de/LC_MESSAGES/kbackup.mo share/locale/el/LC_MESSAGES/kbackup.mo share/locale/en_GB/LC_MESSAGES/kbackup.mo share/locale/es/LC_MESSAGES/kbackup.mo share/locale/et/LC_MESSAGES/kbackup.mo share/locale/eu/LC_MESSAGES/kbackup.mo share/locale/fi/LC_MESSAGES/kbackup.mo share/locale/fr/LC_MESSAGES/kbackup.mo share/locale/gl/LC_MESSAGES/kbackup.mo share/locale/ia/LC_MESSAGES/kbackup.mo +share/locale/ie/LC_MESSAGES/kbackup.mo share/locale/it/LC_MESSAGES/kbackup.mo share/locale/ja/LC_MESSAGES/kbackup.mo +share/locale/ka/LC_MESSAGES/kbackup.mo share/locale/ko/LC_MESSAGES/kbackup.mo share/locale/lt/LC_MESSAGES/kbackup.mo share/locale/nl/LC_MESSAGES/kbackup.mo share/locale/nn/LC_MESSAGES/kbackup.mo share/locale/pl/LC_MESSAGES/kbackup.mo share/locale/pt/LC_MESSAGES/kbackup.mo share/locale/pt_BR/LC_MESSAGES/kbackup.mo share/locale/ru/LC_MESSAGES/kbackup.mo share/locale/sk/LC_MESSAGES/kbackup.mo share/locale/sl/LC_MESSAGES/kbackup.mo share/locale/sv/LC_MESSAGES/kbackup.mo share/locale/tr/LC_MESSAGES/kbackup.mo share/locale/uk/LC_MESSAGES/kbackup.mo share/locale/zh_CN/LC_MESSAGES/kbackup.mo share/locale/zh_TW/LC_MESSAGES/kbackup.mo share/metainfo/org.kde.kbackup.appdata.xml share/mime/packages/kbackup.xml diff --git a/sysutils/kcron/distinfo b/sysutils/kcron/distinfo index 14cc3635c607..521f33a4d216 100644 --- a/sysutils/kcron/distinfo +++ b/sysutils/kcron/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539460 -SHA256 (KDE/release-service/22.08.3/kcron-22.08.3.tar.xz) = e1e685d1f73d7e6acf9fee7d750df9b750680cacc449c5b9317bc5bf8d9b04e9 -SIZE (KDE/release-service/22.08.3/kcron-22.08.3.tar.xz) = 916828 +TIMESTAMP = 1670513061 +SHA256 (KDE/release-service/22.12.0/kcron-22.12.0.tar.xz) = 8473f21959e732d352f79983cb012d4989f5148b98e0bd737159b6496ee27815 +SIZE (KDE/release-service/22.12.0/kcron-22.12.0.tar.xz) = 941848 diff --git a/sysutils/kcron/pkg-plist b/sysutils/kcron/pkg-plist index 0120cd73c1cb..7f6e9d5de7d6 100644 --- a/sysutils/kcron/pkg-plist +++ b/sysutils/kcron/pkg-plist @@ -1,67 +1,83 @@ lib/libexec/kauth/kcron_helper %%QT_PLUGINDIR%%/kcm_cron.so share/dbus-1/system-services/local.kcron.crontab.service share/dbus-1/system.d/local.kcron.crontab.conf share/kservices5/kcm_cron.desktop +share/locale/af/LC_MESSAGES/kcron.mo share/locale/ar/LC_MESSAGES/kcron.mo share/locale/be/LC_MESSAGES/kcron.mo share/locale/bg/LC_MESSAGES/kcron.mo +share/locale/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/kcron.mo share/locale/lt/LC_MESSAGES/kcron.mo share/locale/lv/LC_MESSAGES/kcron.mo +share/locale/mk/LC_MESSAGES/kcron.mo share/locale/mr/LC_MESSAGES/kcron.mo +share/locale/ms/LC_MESSAGES/kcron.mo share/locale/nb/LC_MESSAGES/kcron.mo share/locale/nds/LC_MESSAGES/kcron.mo +share/locale/ne/LC_MESSAGES/kcron.mo share/locale/nl/LC_MESSAGES/kcron.mo share/locale/nn/LC_MESSAGES/kcron.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kcron.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcron.mo +share/locale/sr@latin/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/th/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/xh/LC_MESSAGES/kcron.mo share/locale/zh_CN/LC_MESSAGES/kcron.mo +share/locale/zh_HK/LC_MESSAGES/kcron.mo share/locale/zh_TW/LC_MESSAGES/kcron.mo share/metainfo/org.kde.kcron.metainfo.xml share/polkit-1/actions/local.kcron.crontab.policy share/qlogging-categories5/kcron.categories diff --git a/sysutils/kdebugsettings/distinfo b/sysutils/kdebugsettings/distinfo index faacac3d1002..dde50d84ce35 100644 --- a/sysutils/kdebugsettings/distinfo +++ b/sysutils/kdebugsettings/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539459 -SHA256 (KDE/release-service/22.08.3/kdebugsettings-22.08.3.tar.xz) = 5bba14dc1bcf515f60f08a86f6dc84714446a057a57c1d8020f9fbbbe7423143 -SIZE (KDE/release-service/22.08.3/kdebugsettings-22.08.3.tar.xz) = 94372 +TIMESTAMP = 1670513059 +SHA256 (KDE/release-service/22.12.0/kdebugsettings-22.12.0.tar.xz) = 2082c5911046084babf87bbb723d348c9350e913ca9fd59baf1870e1e79bb962 +SIZE (KDE/release-service/22.12.0/kdebugsettings-22.12.0.tar.xz) = 96048 diff --git a/sysutils/kdebugsettings/pkg-plist b/sysutils/kdebugsettings/pkg-plist index 8198ca832c53..73c68e91cf03 100644 --- a/sysutils/kdebugsettings/pkg-plist +++ b/sysutils/kdebugsettings/pkg-plist @@ -1,44 +1,48 @@ bin/kdebugsettings -lib/libkdebugsettings.so.5 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/ka/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/sr@ijekavian/LC_MESSAGES/kdebugsettings.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdebugsettings.mo +share/locale/sr@latin/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 dfb3780845c2..64c376cfe781 100644 --- a/sysutils/kdf/distinfo +++ b/sysutils/kdf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539464 -SHA256 (KDE/release-service/22.08.3/kdf-22.08.3.tar.xz) = db2ad8d53439a86279626960bff52267b696a7b8fd15d7e65644345b53c9a8ab -SIZE (KDE/release-service/22.08.3/kdf-22.08.3.tar.xz) = 477616 +TIMESTAMP = 1670513065 +SHA256 (KDE/release-service/22.12.0/kdf-22.12.0.tar.xz) = 1e1307710dea26f85a38598cff4b712837eeef44a97fdfc5015c1e627d68a07f +SIZE (KDE/release-service/22.12.0/kdf-22.12.0.tar.xz) = 492556 diff --git a/sysutils/kdf/pkg-plist b/sysutils/kdf/pkg-plist index 44ae0b61e26f..f4abb9327238 100644 --- a/sysutils/kdf/pkg-plist +++ b/sysutils/kdf/pkg-plist @@ -1,84 +1,100 @@ bin/kdf bin/kwikdisk 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/icons/hicolor/128x128/apps/kdf.png -share/icons/hicolor/128x128/apps/kwikdisk.png share/kservices5/kcmdf.desktop share/kxmlgui5/kdf/kdfui.rc +share/locale/af/LC_MESSAGES/kdf.mo share/locale/ar/LC_MESSAGES/kdf.mo share/locale/be/LC_MESSAGES/kdf.mo share/locale/bg/LC_MESSAGES/kdf.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/kdf.mo share/locale/mr/LC_MESSAGES/kdf.mo +share/locale/ms/LC_MESSAGES/kdf.mo share/locale/nb/LC_MESSAGES/kdf.mo share/locale/nds/LC_MESSAGES/kdf.mo +share/locale/ne/LC_MESSAGES/kdf.mo share/locale/nl/LC_MESSAGES/kdf.mo share/locale/nn/LC_MESSAGES/kdf.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kdf.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdf.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kdf.mo +share/locale/uz@cyrillic/LC_MESSAGES/kdf.mo +share/locale/xh/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 share/qlogging-categories5/kdf.categories diff --git a/sysutils/kdialog/distinfo b/sysutils/kdialog/distinfo index 1a8fc9e0351a..176b3f9cfa35 100644 --- a/sysutils/kdialog/distinfo +++ b/sysutils/kdialog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539470 -SHA256 (KDE/release-service/22.08.3/kdialog-22.08.3.tar.xz) = 9d1226e6e646a564ada1b218f70c98278c4ef4f118f55ca1e3e143698d016a8b -SIZE (KDE/release-service/22.08.3/kdialog-22.08.3.tar.xz) = 116740 +TIMESTAMP = 1670513072 +SHA256 (KDE/release-service/22.12.0/kdialog-22.12.0.tar.xz) = dcb640d29681a6ddccf7f9f296272c1cf06204e304c87ab6626a2af873f58262 +SIZE (KDE/release-service/22.12.0/kdialog-22.12.0.tar.xz) = 138256 diff --git a/sysutils/kdialog/pkg-plist b/sysutils/kdialog/pkg-plist index 6cc1a3b6295e..fe437699f118 100644 --- a/sysutils/kdialog/pkg-plist +++ b/sysutils/kdialog/pkg-plist @@ -1,66 +1,94 @@ bin/kdialog bin/kdialog_progress_helper share/dbus-1/interfaces/org.kde.kdialog.ProgressDialog.xml +share/locale/af/LC_MESSAGES/kdialog.mo share/locale/ar/LC_MESSAGES/kdialog.mo -share/locale/ast/LC_MESSAGES/kdialog.mo share/locale/be/LC_MESSAGES/kdialog.mo +share/locale/be@latin/LC_MESSAGES/kdialog.mo share/locale/bg/LC_MESSAGES/kdialog.mo +share/locale/bn/LC_MESSAGES/kdialog.mo +share/locale/bn_IN/LC_MESSAGES/kdialog.mo +share/locale/br/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/csb/LC_MESSAGES/kdialog.mo +share/locale/cy/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/fy/LC_MESSAGES/kdialog.mo share/locale/ga/LC_MESSAGES/kdialog.mo share/locale/gl/LC_MESSAGES/kdialog.mo +share/locale/gu/LC_MESSAGES/kdialog.mo share/locale/he/LC_MESSAGES/kdialog.mo share/locale/hi/LC_MESSAGES/kdialog.mo +share/locale/hne/LC_MESSAGES/kdialog.mo share/locale/hr/LC_MESSAGES/kdialog.mo +share/locale/hsb/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/ka/LC_MESSAGES/kdialog.mo share/locale/kk/LC_MESSAGES/kdialog.mo share/locale/km/LC_MESSAGES/kdialog.mo +share/locale/kn/LC_MESSAGES/kdialog.mo share/locale/ko/LC_MESSAGES/kdialog.mo +share/locale/ku/LC_MESSAGES/kdialog.mo share/locale/lt/LC_MESSAGES/kdialog.mo share/locale/lv/LC_MESSAGES/kdialog.mo +share/locale/mai/LC_MESSAGES/kdialog.mo +share/locale/mk/LC_MESSAGES/kdialog.mo share/locale/ml/LC_MESSAGES/kdialog.mo share/locale/mr/LC_MESSAGES/kdialog.mo +share/locale/ms/LC_MESSAGES/kdialog.mo share/locale/nb/LC_MESSAGES/kdialog.mo share/locale/nds/LC_MESSAGES/kdialog.mo +share/locale/ne/LC_MESSAGES/kdialog.mo share/locale/nl/LC_MESSAGES/kdialog.mo share/locale/nn/LC_MESSAGES/kdialog.mo +share/locale/oc/LC_MESSAGES/kdialog.mo +share/locale/or/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/si/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/sr@ijekavian/LC_MESSAGES/kdialog.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kdialog.mo +share/locale/sr@latin/LC_MESSAGES/kdialog.mo share/locale/sv/LC_MESSAGES/kdialog.mo share/locale/ta/LC_MESSAGES/kdialog.mo +share/locale/te/LC_MESSAGES/kdialog.mo share/locale/tg/LC_MESSAGES/kdialog.mo +share/locale/th/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/uz/LC_MESSAGES/kdialog.mo +share/locale/uz@cyrillic/LC_MESSAGES/kdialog.mo share/locale/vi/LC_MESSAGES/kdialog.mo share/locale/wa/LC_MESSAGES/kdialog.mo +share/locale/xh/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 8a6904f4f0ad..2b9bf3b18406 100644 --- a/sysutils/kfloppy/distinfo +++ b/sysutils/kfloppy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539461 -SHA256 (KDE/release-service/22.08.3/kfloppy-22.08.3.tar.xz) = 875ac00972bab8680f05f09b5c12a128091f2b3e8aa9dd430c70af09826ab505 -SIZE (KDE/release-service/22.08.3/kfloppy-22.08.3.tar.xz) = 213912 +TIMESTAMP = 1670513062 +SHA256 (KDE/release-service/22.12.0/kfloppy-22.12.0.tar.xz) = aac107eef44ed2afdafbb4928c07b7cd4b6c949983e6d5c00682ed90faabdc2a +SIZE (KDE/release-service/22.12.0/kfloppy-22.12.0.tar.xz) = 239860 diff --git a/sysutils/kfloppy/pkg-plist b/sysutils/kfloppy/pkg-plist index 4ed128050616..aa841cd7a2d5 100644 --- a/sysutils/kfloppy/pkg-plist +++ b/sysutils/kfloppy/pkg-plist @@ -1,69 +1,85 @@ bin/kfloppy 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/icons/hicolor/128x128/apps/kfloppy.png +share/locale/af/LC_MESSAGES/kfloppy.mo share/locale/ar/LC_MESSAGES/kfloppy.mo share/locale/be/LC_MESSAGES/kfloppy.mo share/locale/bg/LC_MESSAGES/kfloppy.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/kfloppy.mo share/locale/mr/LC_MESSAGES/kfloppy.mo +share/locale/ms/LC_MESSAGES/kfloppy.mo share/locale/nb/LC_MESSAGES/kfloppy.mo share/locale/nds/LC_MESSAGES/kfloppy.mo +share/locale/ne/LC_MESSAGES/kfloppy.mo share/locale/nl/LC_MESSAGES/kfloppy.mo share/locale/nn/LC_MESSAGES/kfloppy.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kfloppy.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfloppy.mo +share/locale/sr@latin/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/th/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/uz/LC_MESSAGES/kfloppy.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfloppy.mo share/locale/wa/LC_MESSAGES/kfloppy.mo +share/locale/xh/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 share/qlogging-categories5/kfloppy.categories diff --git a/sysutils/khelpcenter/distinfo b/sysutils/khelpcenter/distinfo index d660d4f14170..c156fc4350e8 100644 --- a/sysutils/khelpcenter/distinfo +++ b/sysutils/khelpcenter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539458 -SHA256 (KDE/release-service/22.08.3/khelpcenter-22.08.3.tar.xz) = 1960949b60e8c6cbf09330f76351a4e94d7239a6b8f6cfcca34a1a82dfa69900 -SIZE (KDE/release-service/22.08.3/khelpcenter-22.08.3.tar.xz) = 4317224 +TIMESTAMP = 1670513058 +SHA256 (KDE/release-service/22.12.0/khelpcenter-22.12.0.tar.xz) = af04329d1a24f186cffc5fa45410106218ff268ea5822fa0b39d343ec17eb32e +SIZE (KDE/release-service/22.12.0/khelpcenter-22.12.0.tar.xz) = 4366692 diff --git a/sysutils/khelpcenter/pkg-plist b/sysutils/khelpcenter/pkg-plist index c77f09ac297b..f42820d969a0 100644 --- a/sysutils/khelpcenter/pkg-plist +++ b/sysutils/khelpcenter/pkg-plist @@ -1,102 +1,126 @@ bin/khelpcenter lib/libexec/khc_mansearch.pl lib/libexec/khc_xapianindexer lib/libexec/khc_xapiansearch share/applications/org.kde.khelpcenter.desktop share/config.kcfg/khelpcenter.kcfg share/dbus-1/services/org.kde.khelpcenter.service 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/kioworkers.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/locale/af/LC_MESSAGES/khelpcenter5.mo share/locale/ar/LC_MESSAGES/khelpcenter5.mo -share/locale/ast/LC_MESSAGES/khelpcenter5.mo share/locale/be/LC_MESSAGES/khelpcenter5.mo +share/locale/be@latin/LC_MESSAGES/khelpcenter5.mo share/locale/bg/LC_MESSAGES/khelpcenter5.mo +share/locale/bn/LC_MESSAGES/khelpcenter5.mo +share/locale/bn_IN/LC_MESSAGES/khelpcenter5.mo +share/locale/br/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/csb/LC_MESSAGES/khelpcenter5.mo +share/locale/cy/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/fy/LC_MESSAGES/khelpcenter5.mo share/locale/ga/LC_MESSAGES/khelpcenter5.mo share/locale/gl/LC_MESSAGES/khelpcenter5.mo +share/locale/gu/LC_MESSAGES/khelpcenter5.mo share/locale/he/LC_MESSAGES/khelpcenter5.mo share/locale/hi/LC_MESSAGES/khelpcenter5.mo +share/locale/hne/LC_MESSAGES/khelpcenter5.mo share/locale/hr/LC_MESSAGES/khelpcenter5.mo +share/locale/hsb/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/ka/LC_MESSAGES/khelpcenter5.mo share/locale/kk/LC_MESSAGES/khelpcenter5.mo share/locale/km/LC_MESSAGES/khelpcenter5.mo +share/locale/kn/LC_MESSAGES/khelpcenter5.mo share/locale/ko/LC_MESSAGES/khelpcenter5.mo +share/locale/ku/LC_MESSAGES/khelpcenter5.mo share/locale/lt/LC_MESSAGES/khelpcenter5.mo share/locale/lv/LC_MESSAGES/khelpcenter5.mo +share/locale/mai/LC_MESSAGES/khelpcenter5.mo +share/locale/mk/LC_MESSAGES/khelpcenter5.mo share/locale/ml/LC_MESSAGES/khelpcenter5.mo share/locale/mr/LC_MESSAGES/khelpcenter5.mo +share/locale/ms/LC_MESSAGES/khelpcenter5.mo share/locale/nb/LC_MESSAGES/khelpcenter5.mo share/locale/nds/LC_MESSAGES/khelpcenter5.mo +share/locale/ne/LC_MESSAGES/khelpcenter5.mo share/locale/nl/LC_MESSAGES/khelpcenter5.mo share/locale/nn/LC_MESSAGES/khelpcenter5.mo +share/locale/oc/LC_MESSAGES/khelpcenter5.mo +share/locale/or/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/si/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/sr@ijekavian/LC_MESSAGES/khelpcenter5.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/khelpcenter5.mo +share/locale/sr@latin/LC_MESSAGES/khelpcenter5.mo share/locale/sv/LC_MESSAGES/khelpcenter5.mo share/locale/ta/LC_MESSAGES/khelpcenter5.mo +share/locale/te/LC_MESSAGES/khelpcenter5.mo share/locale/tg/LC_MESSAGES/khelpcenter5.mo +share/locale/th/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/uz/LC_MESSAGES/khelpcenter5.mo +share/locale/uz@cyrillic/LC_MESSAGES/khelpcenter5.mo share/locale/vi/LC_MESSAGES/khelpcenter5.mo share/locale/wa/LC_MESSAGES/khelpcenter5.mo +share/locale/xh/LC_MESSAGES/khelpcenter5.mo share/locale/zh_CN/LC_MESSAGES/khelpcenter5.mo share/locale/zh_TW/LC_MESSAGES/khelpcenter5.mo share/metainfo/org.kde.khelpcenter.metainfo.xml share/qlogging-categories5/khelpcenter.categories diff --git a/sysutils/kpmcore/distinfo b/sysutils/kpmcore/distinfo index 2a7f90e4d089..e7db2d8b8ce4 100644 --- a/sysutils/kpmcore/distinfo +++ b/sysutils/kpmcore/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539463 -SHA256 (KDE/release-service/22.08.3/kpmcore-22.08.3.tar.xz) = 34d649e7b71e208179ec2ca4432b53c632670d844b47437af0e7b27f7194fc79 -SIZE (KDE/release-service/22.08.3/kpmcore-22.08.3.tar.xz) = 599692 +TIMESTAMP = 1670513064 +SHA256 (KDE/release-service/22.12.0/kpmcore-22.12.0.tar.xz) = 3f7edcd203dd183918a10ff140aff204b59f4f4b59334b9f3e469ce36a7709ff +SIZE (KDE/release-service/22.12.0/kpmcore-22.12.0.tar.xz) = 616900 diff --git a/sysutils/kpmcore/pkg-plist b/sysutils/kpmcore/pkg-plist index b53c6cb47c13..1fc6f91fe0c6 100644 --- a/sysutils/kpmcore/pkg-plist +++ b/sysutils/kpmcore/pkg-plist @@ -1,173 +1,178 @@ include/kpmcore/backend/corebackend.h include/kpmcore/backend/corebackendmanager.h include/kpmcore/core/device.h include/kpmcore/core/devicescanner.h include/kpmcore/core/diskdevice.h include/kpmcore/core/fstab.h include/kpmcore/core/lvmdevice.h include/kpmcore/core/operationrunner.h include/kpmcore/core/operationstack.h include/kpmcore/core/partition.h include/kpmcore/core/partitionalignment.h include/kpmcore/core/partitionnode.h include/kpmcore/core/partitionrole.h include/kpmcore/core/partitiontable.h include/kpmcore/core/smartattribute.h include/kpmcore/core/smartstatus.h include/kpmcore/core/softwareraid.h include/kpmcore/core/volumemanagerdevice.h include/kpmcore/fs/apfs.h include/kpmcore/fs/bitlocker.h include/kpmcore/fs/btrfs.h include/kpmcore/fs/exfat.h include/kpmcore/fs/ext2.h include/kpmcore/fs/ext3.h include/kpmcore/fs/ext4.h include/kpmcore/fs/extended.h include/kpmcore/fs/f2fs.h include/kpmcore/fs/fat12.h include/kpmcore/fs/fat16.h include/kpmcore/fs/fat32.h include/kpmcore/fs/filesystem.h include/kpmcore/fs/filesystemfactory.h include/kpmcore/fs/hfs.h include/kpmcore/fs/hfsplus.h include/kpmcore/fs/hpfs.h include/kpmcore/fs/iso9660.h include/kpmcore/fs/jfs.h include/kpmcore/fs/linuxraidmember.h include/kpmcore/fs/linuxswap.h include/kpmcore/fs/luks.h include/kpmcore/fs/luks2.h include/kpmcore/fs/lvm2_pv.h include/kpmcore/fs/minix.h include/kpmcore/fs/nilfs2.h include/kpmcore/fs/ntfs.h include/kpmcore/fs/ocfs2.h include/kpmcore/fs/reiser4.h include/kpmcore/fs/reiserfs.h include/kpmcore/fs/udf.h include/kpmcore/fs/ufs.h include/kpmcore/fs/unformatted.h include/kpmcore/fs/unknown.h include/kpmcore/fs/xfs.h include/kpmcore/fs/zfs.h include/kpmcore/gui/partresizerwidget.h include/kpmcore/gui/partwidget.h include/kpmcore/gui/partwidgetbase.h include/kpmcore/jobs/job.h include/kpmcore/ops/backupoperation.h include/kpmcore/ops/checkoperation.h include/kpmcore/ops/copyoperation.h include/kpmcore/ops/createfilesystemoperation.h include/kpmcore/ops/createpartitiontableoperation.h include/kpmcore/ops/createvolumegroupoperation.h include/kpmcore/ops/deactivatevolumegroupoperation.h include/kpmcore/ops/deleteoperation.h include/kpmcore/ops/newoperation.h include/kpmcore/ops/operation.h include/kpmcore/ops/removevolumegroupoperation.h include/kpmcore/ops/resizeoperation.h include/kpmcore/ops/resizevolumegroupoperation.h include/kpmcore/ops/restoreoperation.h include/kpmcore/ops/setfilesystemlabeloperation.h include/kpmcore/ops/setpartflagsoperation.h include/kpmcore/util/capacity.h include/kpmcore/util/externalcommand.h include/kpmcore/util/globallog.h include/kpmcore/util/helpers.h include/kpmcore/util/htmlreport.h include/kpmcore/util/libpartitionmanagerexport.h include/kpmcore/util/report.h lib/cmake/KPMcore/KPMcoreConfig.cmake lib/cmake/KPMcore/KPMcoreConfigVersion.cmake lib/cmake/KPMcore/KPMcoreTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KPMcore/KPMcoreTargets.cmake lib/libexec/kpmcore_externalcommand lib/libkpmcore.so lib/libkpmcore.so.12 lib/libkpmcore.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/kpmcore/pmdummybackendplugin.so share/dbus-1/system-services/org.kde.kpmcore.helperinterface.service share/dbus-1/system.d/org.kde.kpmcore.helperinterface.conf share/locale/ar/LC_MESSAGES/kpmcore.mo -share/locale/ast/LC_MESSAGES/kpmcore._policy_.mo -share/locale/ast/LC_MESSAGES/kpmcore.mo share/locale/bg/LC_MESSAGES/kpmcore._policy_.mo share/locale/bg/LC_MESSAGES/kpmcore.mo share/locale/bs/LC_MESSAGES/kpmcore.mo share/locale/ca/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca/LC_MESSAGES/kpmcore.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore._policy_.mo share/locale/ca@valencia/LC_MESSAGES/kpmcore.mo share/locale/cs/LC_MESSAGES/kpmcore._policy_.mo share/locale/cs/LC_MESSAGES/kpmcore.mo share/locale/da/LC_MESSAGES/kpmcore._policy_.mo share/locale/da/LC_MESSAGES/kpmcore.mo share/locale/de/LC_MESSAGES/kpmcore._policy_.mo share/locale/de/LC_MESSAGES/kpmcore.mo share/locale/el/LC_MESSAGES/kpmcore._policy_.mo share/locale/el/LC_MESSAGES/kpmcore.mo share/locale/en_GB/LC_MESSAGES/kpmcore._policy_.mo share/locale/en_GB/LC_MESSAGES/kpmcore.mo share/locale/eo/LC_MESSAGES/kpmcore.mo share/locale/es/LC_MESSAGES/kpmcore._policy_.mo share/locale/es/LC_MESSAGES/kpmcore.mo share/locale/et/LC_MESSAGES/kpmcore._policy_.mo share/locale/et/LC_MESSAGES/kpmcore.mo share/locale/eu/LC_MESSAGES/kpmcore._policy_.mo share/locale/eu/LC_MESSAGES/kpmcore.mo share/locale/fi/LC_MESSAGES/kpmcore._policy_.mo share/locale/fi/LC_MESSAGES/kpmcore.mo share/locale/fr/LC_MESSAGES/kpmcore._policy_.mo share/locale/fr/LC_MESSAGES/kpmcore.mo share/locale/ga/LC_MESSAGES/kpmcore.mo share/locale/gl/LC_MESSAGES/kpmcore._policy_.mo share/locale/gl/LC_MESSAGES/kpmcore.mo share/locale/hr/LC_MESSAGES/kpmcore.mo share/locale/hu/LC_MESSAGES/kpmcore._policy_.mo share/locale/hu/LC_MESSAGES/kpmcore.mo share/locale/id/LC_MESSAGES/kpmcore.mo share/locale/is/LC_MESSAGES/kpmcore.mo share/locale/it/LC_MESSAGES/kpmcore._policy_.mo share/locale/it/LC_MESSAGES/kpmcore.mo share/locale/ja/LC_MESSAGES/kpmcore._policy_.mo share/locale/ja/LC_MESSAGES/kpmcore.mo +share/locale/ka/LC_MESSAGES/kpmcore._policy_.mo +share/locale/ka/LC_MESSAGES/kpmcore.mo share/locale/ko/LC_MESSAGES/kpmcore._policy_.mo share/locale/ko/LC_MESSAGES/kpmcore.mo share/locale/lt/LC_MESSAGES/kpmcore._policy_.mo share/locale/lt/LC_MESSAGES/kpmcore.mo share/locale/lv/LC_MESSAGES/kpmcore.mo +share/locale/mai/LC_MESSAGES/kpmcore.mo share/locale/mr/LC_MESSAGES/kpmcore.mo share/locale/nb/LC_MESSAGES/kpmcore.mo share/locale/nds/LC_MESSAGES/kpmcore.mo share/locale/nl/LC_MESSAGES/kpmcore._policy_.mo share/locale/nl/LC_MESSAGES/kpmcore.mo share/locale/nn/LC_MESSAGES/kpmcore.mo share/locale/pa/LC_MESSAGES/kpmcore.mo share/locale/pl/LC_MESSAGES/kpmcore._policy_.mo share/locale/pl/LC_MESSAGES/kpmcore.mo share/locale/pt/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt/LC_MESSAGES/kpmcore.mo share/locale/pt_BR/LC_MESSAGES/kpmcore._policy_.mo share/locale/pt_BR/LC_MESSAGES/kpmcore.mo share/locale/ro/LC_MESSAGES/kpmcore.mo share/locale/ru/LC_MESSAGES/kpmcore._policy_.mo share/locale/ru/LC_MESSAGES/kpmcore.mo share/locale/sk/LC_MESSAGES/kpmcore._policy_.mo share/locale/sk/LC_MESSAGES/kpmcore.mo share/locale/sl/LC_MESSAGES/kpmcore._policy_.mo share/locale/sl/LC_MESSAGES/kpmcore.mo share/locale/sr/LC_MESSAGES/kpmcore.mo +share/locale/sr@ijekavian/LC_MESSAGES/kpmcore.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kpmcore.mo +share/locale/sr@latin/LC_MESSAGES/kpmcore.mo share/locale/sv/LC_MESSAGES/kpmcore._policy_.mo share/locale/sv/LC_MESSAGES/kpmcore.mo +share/locale/th/LC_MESSAGES/kpmcore.mo share/locale/tr/LC_MESSAGES/kpmcore._policy_.mo share/locale/tr/LC_MESSAGES/kpmcore.mo share/locale/ug/LC_MESSAGES/kpmcore.mo share/locale/uk/LC_MESSAGES/kpmcore._policy_.mo share/locale/uk/LC_MESSAGES/kpmcore.mo share/locale/zh_CN/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_CN/LC_MESSAGES/kpmcore.mo share/locale/zh_TW/LC_MESSAGES/kpmcore._policy_.mo share/locale/zh_TW/LC_MESSAGES/kpmcore.mo share/polkit-1/actions/org.kde.kpmcore.externalcommand.policy diff --git a/sysutils/ksystemlog/distinfo b/sysutils/ksystemlog/distinfo index 9efa2666e261..da6c4f88ed69 100644 --- a/sysutils/ksystemlog/distinfo +++ b/sysutils/ksystemlog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539456 -SHA256 (KDE/release-service/22.08.3/ksystemlog-22.08.3.tar.xz) = 7f788059db933161a2bfd556fa5b986270d3f470566c9e5be94b527598b59a4e -SIZE (KDE/release-service/22.08.3/ksystemlog-22.08.3.tar.xz) = 1970120 +TIMESTAMP = 1670513056 +SHA256 (KDE/release-service/22.12.0/ksystemlog-22.12.0.tar.xz) = 437e0d751facff004aa35f2b1a67f781c10073d4711e90c1373fcd586141d25b +SIZE (KDE/release-service/22.12.0/ksystemlog-22.12.0.tar.xz) = 1997760 diff --git a/sysutils/ksystemlog/pkg-plist b/sysutils/ksystemlog/pkg-plist index e8e6bec9864a..f183aab35d26 100644 --- a/sysutils/ksystemlog/pkg-plist +++ b/sysutils/ksystemlog/pkg-plist @@ -1,56 +1,64 @@ 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/br/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/cy/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/ka/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/oc/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/sr@ijekavian/LC_MESSAGES/ksystemlog.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ksystemlog.mo +share/locale/sr@latin/LC_MESSAGES/ksystemlog.mo share/locale/sv/LC_MESSAGES/ksystemlog.mo +share/locale/th/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 5b37f242fa21..cf32eb820118 100644 --- a/sysutils/signon-kwallet-extension/distinfo +++ b/sysutils/signon-kwallet-extension/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539455 -SHA256 (KDE/release-service/22.08.3/signon-kwallet-extension-22.08.3.tar.xz) = 4f4318276d2eedea74d1de229fc5bc6afd39b5c444cd5b18d165631d2498f2b0 -SIZE (KDE/release-service/22.08.3/signon-kwallet-extension-22.08.3.tar.xz) = 11184 +TIMESTAMP = 1670513054 +SHA256 (KDE/release-service/22.12.0/signon-kwallet-extension-22.12.0.tar.xz) = d59ca64726e365b4ffb999afe9a0a2b9dfdfd5f43a4f668ea5b0a7aa05baa0f4 +SIZE (KDE/release-service/22.12.0/signon-kwallet-extension-22.12.0.tar.xz) = 11184 diff --git a/sysutils/sweeper/distinfo b/sysutils/sweeper/distinfo index f06ac6e021d0..3117d8afb20c 100644 --- a/sysutils/sweeper/distinfo +++ b/sysutils/sweeper/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539468 -SHA256 (KDE/release-service/22.08.3/sweeper-22.08.3.tar.xz) = bd1c3e082bb1bc31e94e6ba8ea39c4089555ddb71973f215145158fe15f91f38 -SIZE (KDE/release-service/22.08.3/sweeper-22.08.3.tar.xz) = 377952 +TIMESTAMP = 1670513069 +SHA256 (KDE/release-service/22.12.0/sweeper-22.12.0.tar.xz) = ec5de59958ea010a9985110f4e23aa96f64382208822e045097ae6c612fa82ef +SIZE (KDE/release-service/22.12.0/sweeper-22.12.0.tar.xz) = 397128 diff --git a/sysutils/sweeper/pkg-plist b/sysutils/sweeper/pkg-plist index cd97645d747d..a47aeefb35bc 100644 --- a/sysutils/sweeper/pkg-plist +++ b/sysutils/sweeper/pkg-plist @@ -1,64 +1,84 @@ bin/sweeper share/applications/org.kde.sweeper.desktop share/dbus-1/interfaces/org.kde.sweeper.xml share/kxmlgui5/sweeper/sweeperui.rc +share/locale/af/LC_MESSAGES/sweeper.mo share/locale/ar/LC_MESSAGES/sweeper.mo share/locale/be/LC_MESSAGES/sweeper.mo share/locale/bg/LC_MESSAGES/sweeper.mo +share/locale/bn/LC_MESSAGES/sweeper.mo +share/locale/br/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/csb/LC_MESSAGES/sweeper.mo +share/locale/cy/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/fy/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/hne/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/ie/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/ka/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/mk/LC_MESSAGES/sweeper.mo share/locale/mr/LC_MESSAGES/sweeper.mo +share/locale/ms/LC_MESSAGES/sweeper.mo share/locale/nb/LC_MESSAGES/sweeper.mo share/locale/nds/LC_MESSAGES/sweeper.mo +share/locale/ne/LC_MESSAGES/sweeper.mo share/locale/nl/LC_MESSAGES/sweeper.mo share/locale/nn/LC_MESSAGES/sweeper.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/sweeper.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/sweeper.mo +share/locale/sr@latin/LC_MESSAGES/sweeper.mo share/locale/sv/LC_MESSAGES/sweeper.mo share/locale/ta/LC_MESSAGES/sweeper.mo +share/locale/te/LC_MESSAGES/sweeper.mo share/locale/tg/LC_MESSAGES/sweeper.mo +share/locale/th/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/uz/LC_MESSAGES/sweeper.mo +share/locale/uz@cyrillic/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 280a83dcb114..88377f9a51f9 100644 --- a/textproc/kompare/distinfo +++ b/textproc/kompare/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539556 -SHA256 (KDE/release-service/22.08.3/kompare-22.08.3.tar.xz) = db058323d3d94d3d61cb31bae5e89fe26e2d6b76e64225fac632b01c45408978 -SIZE (KDE/release-service/22.08.3/kompare-22.08.3.tar.xz) = 951232 +TIMESTAMP = 1670513184 +SHA256 (KDE/release-service/22.12.0/kompare-22.12.0.tar.xz) = a343f0e1cb02628083beb4c755a7bba227c1d9e90a6951e1853c540d22f783a9 +SIZE (KDE/release-service/22.12.0/kompare-22.12.0.tar.xz) = 977856 diff --git a/textproc/kompare/pkg-plist b/textproc/kompare/pkg-plist index f487d4b31395..6636d7a7b649 100644 --- a/textproc/kompare/pkg-plist +++ b/textproc/kompare/pkg-plist @@ -1,76 +1,86 @@ 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/128x128/apps/kompare.png share/icons/hicolor/scalable/apps/kompare.svgz share/kio/servicemenus/kompare.desktop -share/kservices5/komparenavtreepart.desktop -share/kservices5/komparepart.desktop -share/kservicetypes5/komparenavigationpart.desktop -share/kservicetypes5/kompareviewpart.desktop +share/locale/af/LC_MESSAGES/kompare.mo share/locale/ar/LC_MESSAGES/kompare.mo share/locale/be/LC_MESSAGES/kompare.mo share/locale/bg/LC_MESSAGES/kompare.mo +share/locale/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/kompare.mo +share/locale/mk/LC_MESSAGES/kompare.mo share/locale/mr/LC_MESSAGES/kompare.mo +share/locale/ms/LC_MESSAGES/kompare.mo share/locale/nb/LC_MESSAGES/kompare.mo share/locale/nds/LC_MESSAGES/kompare.mo +share/locale/ne/LC_MESSAGES/kompare.mo share/locale/nl/LC_MESSAGES/kompare.mo share/locale/nn/LC_MESSAGES/kompare.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kompare.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kompare.mo +share/locale/sr@latin/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/xh/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 515cd1aa787d..9a5c788c4282 100644 --- a/textproc/libkomparediff2/distinfo +++ b/textproc/libkomparediff2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539555 -SHA256 (KDE/release-service/22.08.3/libkomparediff2-22.08.3.tar.xz) = bd51abb720184f93a06fbfa562d1604c0e52873676b785cd1ed0329f20af9f30 -SIZE (KDE/release-service/22.08.3/libkomparediff2-22.08.3.tar.xz) = 169744 +TIMESTAMP = 1670513182 +SHA256 (KDE/release-service/22.12.0/libkomparediff2-22.12.0.tar.xz) = 7ecc303850669bb0c3b62ae44ea0aaac86f4adb0eb86f52765da4f9ab63d3d32 +SIZE (KDE/release-service/22.12.0/libkomparediff2-22.12.0.tar.xz) = 186188 diff --git a/textproc/libkomparediff2/pkg-plist b/textproc/libkomparediff2/pkg-plist index 3eeca720b884..0e399c19e138 100644 --- a/textproc/libkomparediff2/pkg-plist +++ b/textproc/libkomparediff2/pkg-plist @@ -1,73 +1,87 @@ 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/af/LC_MESSAGES/libkomparediff2.mo share/locale/ar/LC_MESSAGES/libkomparediff2.mo share/locale/be/LC_MESSAGES/libkomparediff2.mo share/locale/bg/LC_MESSAGES/libkomparediff2.mo +share/locale/br/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/cy/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/hne/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/ka/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/mai/LC_MESSAGES/libkomparediff2.mo +share/locale/mk/LC_MESSAGES/libkomparediff2.mo share/locale/mr/LC_MESSAGES/libkomparediff2.mo +share/locale/ms/LC_MESSAGES/libkomparediff2.mo share/locale/nb/LC_MESSAGES/libkomparediff2.mo share/locale/nds/LC_MESSAGES/libkomparediff2.mo +share/locale/ne/LC_MESSAGES/libkomparediff2.mo share/locale/nl/LC_MESSAGES/libkomparediff2.mo share/locale/nn/LC_MESSAGES/libkomparediff2.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/libkomparediff2.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkomparediff2.mo +share/locale/sr@latin/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/xh/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 5a4d7a25122c..4fd65308c5ba 100644 --- a/textproc/markdownpart/distinfo +++ b/textproc/markdownpart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539554 -SHA256 (KDE/release-service/22.08.3/markdownpart-22.08.3.tar.xz) = 356ff88a2d87ef5e96f2dddee39bbda37842a77220e1edd829114ed8460d0e92 -SIZE (KDE/release-service/22.08.3/markdownpart-22.08.3.tar.xz) = 30196 +TIMESTAMP = 1670513181 +SHA256 (KDE/release-service/22.12.0/markdownpart-22.12.0.tar.xz) = 920140187f27f2daa5511a10a9ab0c7e51d7a08c1fa204cdad66e79575b73432 +SIZE (KDE/release-service/22.12.0/markdownpart-22.12.0.tar.xz) = 30604 diff --git a/textproc/markdownpart/pkg-plist b/textproc/markdownpart/pkg-plist index f48c14ad2431..89644dec4169 100644 --- a/textproc/markdownpart/pkg-plist +++ b/textproc/markdownpart/pkg-plist @@ -1,35 +1,36 @@ %%QT_PLUGINDIR%%/kf5/parts/markdownpart.so share/kservices5/markdownpart.desktop share/locale/ar/LC_MESSAGES/markdownpart.mo 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/eu/LC_MESSAGES/markdownpart.mo share/locale/fi/LC_MESSAGES/markdownpart.mo share/locale/fr/LC_MESSAGES/markdownpart.mo share/locale/hi/LC_MESSAGES/markdownpart.mo share/locale/it/LC_MESSAGES/markdownpart.mo share/locale/ja/LC_MESSAGES/markdownpart.mo +share/locale/ka/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/tr/LC_MESSAGES/markdownpart.mo share/locale/uk/LC_MESSAGES/markdownpart.mo share/locale/vi/LC_MESSAGES/markdownpart.mo share/locale/zh_CN/LC_MESSAGES/markdownpart.mo share/locale/zh_TW/LC_MESSAGES/markdownpart.mo share/metainfo/org.kde.markdownpart.metainfo.xml diff --git a/www/falkon/distinfo b/www/falkon/distinfo index 98cac55a3e9d..5186108ec1cd 100644 --- a/www/falkon/distinfo +++ b/www/falkon/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539557 -SHA256 (KDE/release-service/22.08.3/falkon-22.08.3.tar.xz) = e53efed4cd9d42bff005bf9f9e3ba6e37b26451981cc5926f2f4232a5033ff09 -SIZE (KDE/release-service/22.08.3/falkon-22.08.3.tar.xz) = 2503496 +TIMESTAMP = 1670513184 +SHA256 (KDE/release-service/22.12.0/falkon-22.12.0.tar.xz) = f3a72c3ae1760bbc28f5334ab2f7631c558747ac6bd7515c922e1633e5cab352 +SIZE (KDE/release-service/22.12.0/falkon-22.12.0.tar.xz) = 2545620 diff --git a/www/falkon/pkg-plist b/www/falkon/pkg-plist index 2b63d7d2afca..5245006fbded 100644 --- a/www/falkon/pkg-plist +++ b/www/falkon/pkg-plist @@ -1,765 +1,823 @@ bin/falkon lib/libFalkonPrivate.so.%%KDE_APPLICATIONS_VERSION%% lib/libFalkonPrivate.so.3 %%QT_PLUGINDIR%%/falkon/AutoScroll.so %%QT_PLUGINDIR%%/falkon/FlashCookieManager.so %%GNOMEKEYRING%%%%QT_PLUGINDIR%%/falkon/GnomeKeyringPasswords.so %%QT_PLUGINDIR%%/falkon/GreaseMonkey.so %%KDEINTEGRATION%%%%QT_PLUGINDIR%%/falkon/KDEFrameworksIntegration.so %%QT_PLUGINDIR%%/falkon/MouseGestures.so %%QT_PLUGINDIR%%/falkon/PIM.so %%QT_PLUGINDIR%%/falkon/StatusBarIcons.so %%QT_PLUGINDIR%%/falkon/TabManager.so %%QT_PLUGINDIR%%/falkon/VerticalTabs.so share/applications/org.kde.falkon.desktop share/bash-completion/completions/falkon %%DATADIR%%/themes/chrome/images/gotoaddress.png %%DATADIR%%/themes/chrome/images/key.png %%DATADIR%%/themes/chrome/images/library-bg.png %%DATADIR%%/themes/chrome/images/lineedit-bg.png %%DATADIR%%/themes/chrome/images/navigation-addtab.png %%DATADIR%%/themes/chrome/images/navigation-back.png %%DATADIR%%/themes/chrome/images/navigation-downloads.png %%DATADIR%%/themes/chrome/images/navigation-dropdown.png %%DATADIR%%/themes/chrome/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/chrome/images/navigation-forward.png %%DATADIR%%/themes/chrome/images/navigation-home.png %%DATADIR%%/themes/chrome/images/navigation-reload.png %%DATADIR%%/themes/chrome/images/navigation-stop.png %%DATADIR%%/themes/chrome/images/navigation-supermenu.png %%DATADIR%%/themes/chrome/images/navigation-tools-rtl.png %%DATADIR%%/themes/chrome/images/navigation-tools.png %%DATADIR%%/themes/chrome/images/search-icon.png %%DATADIR%%/themes/chrome/images/searchbar-provider-bg.png %%DATADIR%%/themes/chrome/images/semi-transp.png %%DATADIR%%/themes/chrome/images/siteicon-bg.png %%DATADIR%%/themes/chrome/images/siteicon-secure-bg.png %%DATADIR%%/themes/chrome/images/star-a.png %%DATADIR%%/themes/chrome/images/star.png %%DATADIR%%/themes/chrome/images/tab-left-arrow.png %%DATADIR%%/themes/chrome/images/tab-right-arrow.png %%DATADIR%%/themes/chrome/images/tabbar-addtab.png %%DATADIR%%/themes/chrome/images/tabs-bg.png %%DATADIR%%/themes/chrome/images/tabs-closed-button.png %%DATADIR%%/themes/chrome/images/tabs-list-button.png %%DATADIR%%/themes/chrome/images/toolbar-bg.png %%DATADIR%%/themes/chrome/images/toolbutton-a.png %%DATADIR%%/themes/chrome/images/toolbutton-h.png %%DATADIR%%/themes/chrome/images/toolbutton.png %%DATADIR%%/themes/chrome/license.txt %%DATADIR%%/themes/chrome/linux.css %%DATADIR%%/themes/chrome/main.css %%DATADIR%%/themes/chrome/metadata.desktop %%DATADIR%%/themes/chrome/rtl.css %%DATADIR%%/themes/chrome/theme.png %%DATADIR%%/themes/chrome/windows.css %%DATADIR%%/themes/linux/images/arrow-down.svg %%DATADIR%%/themes/linux/images/exit-fullscreen.svg %%DATADIR%%/themes/linux/images/goto.svg %%DATADIR%%/themes/linux/images/library-bg.png %%DATADIR%%/themes/linux/images/menu.svg %%DATADIR%%/themes/linux/images/semi-transp.png %%DATADIR%%/themes/linux/images/star-a.svg %%DATADIR%%/themes/linux/images/star.svg %%DATADIR%%/themes/linux/images/tab-left-arrow.svg %%DATADIR%%/themes/linux/images/tab-right-arrow.svg %%DATADIR%%/themes/linux/images/tools-rtl.svg %%DATADIR%%/themes/linux/images/tools.svg %%DATADIR%%/themes/linux/images/transp.png %%DATADIR%%/themes/linux/images/user.svg %%DATADIR%%/themes/linux/main.css %%DATADIR%%/themes/linux/metadata.desktop %%DATADIR%%/themes/linux/rtl.css %%DATADIR%%/themes/linux/theme.png %%DATADIR%%/themes/mac/images/gotoaddress.png %%DATADIR%%/themes/mac/images/key.png %%DATADIR%%/themes/mac/images/library-bg.png %%DATADIR%%/themes/mac/images/lineedit-bg.png %%DATADIR%%/themes/mac/images/navigation-addtab.png %%DATADIR%%/themes/mac/images/navigation-back.png %%DATADIR%%/themes/mac/images/navigation-downloads.png %%DATADIR%%/themes/mac/images/navigation-dropdown.png %%DATADIR%%/themes/mac/images/navigation-exit-fullscreen.png %%DATADIR%%/themes/mac/images/navigation-forward.png %%DATADIR%%/themes/mac/images/navigation-home.png %%DATADIR%%/themes/mac/images/navigation-reload.png %%DATADIR%%/themes/mac/images/navigation-stop.png %%DATADIR%%/themes/mac/images/navigation-supermenu.png %%DATADIR%%/themes/mac/images/navigation-tools-rtl.png %%DATADIR%%/themes/mac/images/navigation-tools.png %%DATADIR%%/themes/mac/images/search-icon.png %%DATADIR%%/themes/mac/images/searchbar-provider-bg.png %%DATADIR%%/themes/mac/images/semi-transp.png %%DATADIR%%/themes/mac/images/siteicon-bg.png %%DATADIR%%/themes/mac/images/siteicon-secure-bg.png %%DATADIR%%/themes/mac/images/splitter.png %%DATADIR%%/themes/mac/images/star-a.png %%DATADIR%%/themes/mac/images/star.png %%DATADIR%%/themes/mac/images/tab-left-arrow.png %%DATADIR%%/themes/mac/images/tab-right-arrow.png %%DATADIR%%/themes/mac/images/tabbar-addtab.png %%DATADIR%%/themes/mac/images/tabs-bg.png %%DATADIR%%/themes/mac/images/tabs-closed-button-rtl.png %%DATADIR%%/themes/mac/images/tabs-closed-button.png %%DATADIR%%/themes/mac/images/tabs-list-button.png %%DATADIR%%/themes/mac/images/tabs-list-button_rtl.png %%DATADIR%%/themes/mac/images/toolbar-bg.png %%DATADIR%%/themes/mac/images/toolbutton-a.png %%DATADIR%%/themes/mac/images/toolbutton-h.png %%DATADIR%%/themes/mac/images/toolbutton.png %%DATADIR%%/themes/mac/images/transp.png %%DATADIR%%/themes/mac/license.txt %%DATADIR%%/themes/mac/linux.css %%DATADIR%%/themes/mac/main.css %%DATADIR%%/themes/mac/metadata.desktop %%DATADIR%%/themes/mac/rtl.css %%DATADIR%%/themes/mac/theme.png %%DATADIR%%/themes/mac/windows.css %%DATADIR%%/themes/windows/images/exit-fullscreen.svg %%DATADIR%%/themes/windows/images/goto.svg %%DATADIR%%/themes/windows/images/library-bg.png %%DATADIR%%/themes/windows/images/menu.svg %%DATADIR%%/themes/windows/images/semi-transp.png %%DATADIR%%/themes/windows/images/star-a.svg %%DATADIR%%/themes/windows/images/star.svg %%DATADIR%%/themes/windows/images/tab-close-a.svg %%DATADIR%%/themes/windows/images/tab-close-h.svg %%DATADIR%%/themes/windows/images/tab-close.svg %%DATADIR%%/themes/windows/images/tab-left-arrow.svg %%DATADIR%%/themes/windows/images/tab-right-arrow.svg %%DATADIR%%/themes/windows/images/tools-rtl.svg %%DATADIR%%/themes/windows/images/tools.svg %%DATADIR%%/themes/windows/images/transp.png %%DATADIR%%/themes/windows/images/user.svg %%DATADIR%%/themes/windows/main.css %%DATADIR%%/themes/windows/metadata.desktop %%DATADIR%%/themes/windows/rtl.css %%DATADIR%%/themes/windows/theme.png share/icons/hicolor/128x128/apps/falkon.png share/icons/hicolor/16x16/apps/falkon.png share/icons/hicolor/256x256/apps/falkon.png share/icons/hicolor/32x32/apps/falkon.png share/icons/hicolor/48x48/apps/falkon.png share/icons/hicolor/64x64/apps/falkon.png share/icons/hicolor/scalable/apps/falkon.svg share/locale/ar/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ar/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/ar/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ar/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ar/LC_MESSAGES/falkon_hellopython.mo share/locale/ar/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ar/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ar/LC_MESSAGES/falkon_pim_qt.qm share/locale/ar/LC_MESSAGES/falkon_qt.qm share/locale/ar/LC_MESSAGES/falkon_runaction.mo share/locale/ar/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ar/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ar/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ar/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/az/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/az/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/az/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/az/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/az/LC_MESSAGES/falkon_hellopython.mo share/locale/az/LC_MESSAGES/falkon_helloqml.mo share/locale/az/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/az/LC_MESSAGES/falkon_middleclickloader.mo share/locale/az/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/az/LC_MESSAGES/falkon_pim_qt.qm share/locale/az/LC_MESSAGES/falkon_qt.qm share/locale/az/LC_MESSAGES/falkon_runaction.mo share/locale/az/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/az/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/az/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/az/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/bg/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/bg/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/bg/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/bg/LC_MESSAGES/falkon_hellopython.mo share/locale/bg/LC_MESSAGES/falkon_helloqml.mo share/locale/bg/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/bg/LC_MESSAGES/falkon_middleclickloader.mo share/locale/bg/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/bg/LC_MESSAGES/falkon_pim_qt.qm share/locale/bg/LC_MESSAGES/falkon_qt.qm share/locale/bg/LC_MESSAGES/falkon_runaction.mo share/locale/bg/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/bg/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/bg/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/bg/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca/LC_MESSAGES/falkon_hellopython.mo share/locale/ca/LC_MESSAGES/falkon_helloqml.mo share/locale/ca/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca/LC_MESSAGES/falkon_qt.qm share/locale/ca/LC_MESSAGES/falkon_runaction.mo share/locale/ca/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_hellopython.mo share/locale/ca@valencia/LC_MESSAGES/falkon_helloqml.mo share/locale/ca@valencia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ca@valencia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_runaction.mo share/locale/ca@valencia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ca@valencia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/cs/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/cs/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/cs/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/cs/LC_MESSAGES/falkon_hellopython.mo share/locale/cs/LC_MESSAGES/falkon_helloqml.mo share/locale/cs/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/cs/LC_MESSAGES/falkon_middleclickloader.mo share/locale/cs/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/cs/LC_MESSAGES/falkon_pim_qt.qm share/locale/cs/LC_MESSAGES/falkon_qt.qm share/locale/cs/LC_MESSAGES/falkon_runaction.mo share/locale/cs/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/cs/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/cs/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/cs/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/da/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/da/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/da/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/da/LC_MESSAGES/falkon_hellopython.mo share/locale/da/LC_MESSAGES/falkon_helloqml.mo share/locale/da/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/da/LC_MESSAGES/falkon_middleclickloader.mo share/locale/da/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/da/LC_MESSAGES/falkon_pim_qt.qm share/locale/da/LC_MESSAGES/falkon_qt.qm share/locale/da/LC_MESSAGES/falkon_runaction.mo share/locale/da/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/da/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/da/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/da/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/de/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/de/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/de/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/de/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/de/LC_MESSAGES/falkon_hellopython.mo share/locale/de/LC_MESSAGES/falkon_helloqml.mo share/locale/de/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/de/LC_MESSAGES/falkon_middleclickloader.mo share/locale/de/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/de/LC_MESSAGES/falkon_pim_qt.qm share/locale/de/LC_MESSAGES/falkon_qt.qm share/locale/de/LC_MESSAGES/falkon_runaction.mo share/locale/de/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/de/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/de/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/de/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/el/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/el/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/el/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/el/LC_MESSAGES/falkon_hellopython.mo share/locale/el/LC_MESSAGES/falkon_helloqml.mo share/locale/el/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/el/LC_MESSAGES/falkon_middleclickloader.mo share/locale/el/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/el/LC_MESSAGES/falkon_pim_qt.qm share/locale/el/LC_MESSAGES/falkon_qt.qm share/locale/el/LC_MESSAGES/falkon_runaction.mo share/locale/el/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/el/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/el/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/el/LC_MESSAGES/falkon_verticaltabs_qt.qm +share/locale/en/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_hellopython.mo share/locale/en_GB/LC_MESSAGES/falkon_helloqml.mo share/locale/en_GB/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_middleclickloader.mo share/locale/en_GB/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_pim_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_runaction.mo share/locale/en_GB/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/en_GB/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/es/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/es/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/es/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/es/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/es/LC_MESSAGES/falkon_hellopython.mo share/locale/es/LC_MESSAGES/falkon_helloqml.mo share/locale/es/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/es/LC_MESSAGES/falkon_middleclickloader.mo share/locale/es/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/es/LC_MESSAGES/falkon_pim_qt.qm share/locale/es/LC_MESSAGES/falkon_qt.qm share/locale/es/LC_MESSAGES/falkon_runaction.mo share/locale/es/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/es/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/es/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/es/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/et/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/et/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/et/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/et/LC_MESSAGES/falkon_hellopython.mo share/locale/et/LC_MESSAGES/falkon_helloqml.mo share/locale/et/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/et/LC_MESSAGES/falkon_middleclickloader.mo share/locale/et/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/et/LC_MESSAGES/falkon_pim_qt.qm share/locale/et/LC_MESSAGES/falkon_qt.qm share/locale/et/LC_MESSAGES/falkon_runaction.mo share/locale/et/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/et/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/et/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/et/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/eu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/eu/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/eu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/eu/LC_MESSAGES/falkon_hellopython.mo share/locale/eu/LC_MESSAGES/falkon_helloqml.mo share/locale/eu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/eu/LC_MESSAGES/falkon_middleclickloader.mo share/locale/eu/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/eu/LC_MESSAGES/falkon_pim_qt.qm share/locale/eu/LC_MESSAGES/falkon_qt.qm share/locale/eu/LC_MESSAGES/falkon_runaction.mo share/locale/eu/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/eu/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/eu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/eu/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fa/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fa/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fa/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fa/LC_MESSAGES/falkon_pim_qt.qm share/locale/fa/LC_MESSAGES/falkon_qt.qm share/locale/fa/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fa/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fa/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fi/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fi/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fi/LC_MESSAGES/falkon_hellopython.mo share/locale/fi/LC_MESSAGES/falkon_helloqml.mo share/locale/fi/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fi/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fi/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fi/LC_MESSAGES/falkon_pim_qt.qm share/locale/fi/LC_MESSAGES/falkon_qt.qm share/locale/fi/LC_MESSAGES/falkon_runaction.mo share/locale/fi/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fi/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fi/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fi/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/fr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/fr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/fr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/fr/LC_MESSAGES/falkon_hellopython.mo share/locale/fr/LC_MESSAGES/falkon_helloqml.mo share/locale/fr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/fr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/fr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/fr/LC_MESSAGES/falkon_pim_qt.qm share/locale/fr/LC_MESSAGES/falkon_qt.qm share/locale/fr/LC_MESSAGES/falkon_runaction.mo share/locale/fr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/fr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/fr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/fr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/gl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/gl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/gl/LC_MESSAGES/falkon_hellopython.mo share/locale/gl/LC_MESSAGES/falkon_helloqml.mo share/locale/gl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/gl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/gl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/gl/LC_MESSAGES/falkon_pim_qt.qm share/locale/gl/LC_MESSAGES/falkon_qt.qm share/locale/gl/LC_MESSAGES/falkon_runaction.mo share/locale/gl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/gl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/gl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/gl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/hu/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/hu/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/hu/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/hu/LC_MESSAGES/falkon_pim_qt.qm share/locale/hu/LC_MESSAGES/falkon_qt.qm share/locale/hu/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ia/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ia/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ia/LC_MESSAGES/falkon_hellopython.mo share/locale/ia/LC_MESSAGES/falkon_helloqml.mo share/locale/ia/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ia/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ia/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ia/LC_MESSAGES/falkon_pim_qt.qm share/locale/ia/LC_MESSAGES/falkon_qt.qm share/locale/ia/LC_MESSAGES/falkon_runaction.mo share/locale/ia/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ia/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ia/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ia/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/id/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/id/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/id/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/id/LC_MESSAGES/falkon_hellopython.mo share/locale/id/LC_MESSAGES/falkon_helloqml.mo share/locale/id/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/id/LC_MESSAGES/falkon_middleclickloader.mo share/locale/id/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/id/LC_MESSAGES/falkon_pim_qt.qm share/locale/id/LC_MESSAGES/falkon_qt.qm share/locale/id/LC_MESSAGES/falkon_runaction.mo share/locale/id/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/id/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/id/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/id/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/is/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/is/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/is/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/is/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/is/LC_MESSAGES/falkon_hellopython.mo share/locale/is/LC_MESSAGES/falkon_helloqml.mo share/locale/is/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/is/LC_MESSAGES/falkon_middleclickloader.mo share/locale/is/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/is/LC_MESSAGES/falkon_pim_qt.qm share/locale/is/LC_MESSAGES/falkon_qt.qm share/locale/is/LC_MESSAGES/falkon_runaction.mo share/locale/is/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/is/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/is/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/is/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/it/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/it/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/it/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/it/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/it/LC_MESSAGES/falkon_hellopython.mo share/locale/it/LC_MESSAGES/falkon_helloqml.mo share/locale/it/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/it/LC_MESSAGES/falkon_middleclickloader.mo share/locale/it/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/it/LC_MESSAGES/falkon_pim_qt.qm share/locale/it/LC_MESSAGES/falkon_qt.qm share/locale/it/LC_MESSAGES/falkon_runaction.mo share/locale/it/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/it/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/it/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/it/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ja/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ja/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ja/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ja/LC_MESSAGES/falkon_hellopython.mo share/locale/ja/LC_MESSAGES/falkon_helloqml.mo share/locale/ja/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ja/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ja/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ja/LC_MESSAGES/falkon_pim_qt.qm share/locale/ja/LC_MESSAGES/falkon_qt.qm share/locale/ja/LC_MESSAGES/falkon_runaction.mo share/locale/ja/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ja/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ja/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ja/LC_MESSAGES/falkon_verticaltabs_qt.qm +share/locale/ka/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/ka/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/ka/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm +share/locale/ka/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/ka/LC_MESSAGES/falkon_hellopython.mo +share/locale/ka/LC_MESSAGES/falkon_helloqml.mo +share/locale/ka/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/ka/LC_MESSAGES/falkon_middleclickloader.mo +share/locale/ka/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/ka/LC_MESSAGES/falkon_pim_qt.qm +share/locale/ka/LC_MESSAGES/falkon_qt.qm +share/locale/ka/LC_MESSAGES/falkon_runaction.mo +share/locale/ka/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/ka/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/ka/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/ka/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ko/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ko/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ko/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ko/LC_MESSAGES/falkon_hellopython.mo share/locale/ko/LC_MESSAGES/falkon_helloqml.mo share/locale/ko/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ko/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ko/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ko/LC_MESSAGES/falkon_pim_qt.qm share/locale/ko/LC_MESSAGES/falkon_qt.qm share/locale/ko/LC_MESSAGES/falkon_runaction.mo share/locale/ko/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ko/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ko/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ko/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lt/LC_MESSAGES/falkon_hellopython.mo share/locale/lt/LC_MESSAGES/falkon_helloqml.mo share/locale/lt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/lt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lt/LC_MESSAGES/falkon_pim_qt.qm share/locale/lt/LC_MESSAGES/falkon_qt.qm share/locale/lt/LC_MESSAGES/falkon_runaction.mo share/locale/lt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/lt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/lv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/lv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/lv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/lv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/lv/LC_MESSAGES/falkon_pim_qt.qm share/locale/lv/LC_MESSAGES/falkon_qt.qm share/locale/lv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/lv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/lv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nb/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nb/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nb/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nb/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nb/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nb/LC_MESSAGES/falkon_pim_qt.qm share/locale/nb/LC_MESSAGES/falkon_qt.qm share/locale/nb/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nb/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nb/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nl/LC_MESSAGES/falkon_hellopython.mo share/locale/nl/LC_MESSAGES/falkon_helloqml.mo share/locale/nl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nl/LC_MESSAGES/falkon_pim_qt.qm share/locale/nl/LC_MESSAGES/falkon_qt.qm share/locale/nl/LC_MESSAGES/falkon_runaction.mo share/locale/nl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/nn/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/nn/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/nn/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/nn/LC_MESSAGES/falkon_hellopython.mo share/locale/nn/LC_MESSAGES/falkon_helloqml.mo share/locale/nn/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/nn/LC_MESSAGES/falkon_middleclickloader.mo share/locale/nn/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/nn/LC_MESSAGES/falkon_pim_qt.qm share/locale/nn/LC_MESSAGES/falkon_qt.qm share/locale/nn/LC_MESSAGES/falkon_runaction.mo share/locale/nn/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/nn/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/nn/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/nn/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pa/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pl/LC_MESSAGES/falkon_hellopython.mo share/locale/pl/LC_MESSAGES/falkon_helloqml.mo share/locale/pl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pl/LC_MESSAGES/falkon_pim_qt.qm share/locale/pl/LC_MESSAGES/falkon_qt.qm share/locale/pl/LC_MESSAGES/falkon_runaction.mo share/locale/pl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt/LC_MESSAGES/falkon_hellopython.mo share/locale/pt/LC_MESSAGES/falkon_helloqml.mo share/locale/pt/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt/LC_MESSAGES/falkon_qt.qm share/locale/pt/LC_MESSAGES/falkon_runaction.mo share/locale/pt/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_hellopython.mo share/locale/pt_BR/LC_MESSAGES/falkon_helloqml.mo share/locale/pt_BR/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_middleclickloader.mo share/locale/pt_BR/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_pim_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_runaction.mo share/locale/pt_BR/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/pt_BR/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ro/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ro/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ro/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ro/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ro/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/ru/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/ru/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/ru/LC_MESSAGES/falkon_hellopython.mo share/locale/ru/LC_MESSAGES/falkon_helloqml.mo share/locale/ru/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/ru/LC_MESSAGES/falkon_middleclickloader.mo share/locale/ru/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/ru/LC_MESSAGES/falkon_pim_qt.qm share/locale/ru/LC_MESSAGES/falkon_qt.qm share/locale/ru/LC_MESSAGES/falkon_runaction.mo share/locale/ru/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/ru/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/ru/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/ru/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sk/LC_MESSAGES/falkon_hellopython.mo share/locale/sk/LC_MESSAGES/falkon_helloqml.mo share/locale/sk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sk/LC_MESSAGES/falkon_pim_qt.qm share/locale/sk/LC_MESSAGES/falkon_qt.qm share/locale/sk/LC_MESSAGES/falkon_runaction.mo share/locale/sk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sl/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sl/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sl/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sl/LC_MESSAGES/falkon_hellopython.mo share/locale/sl/LC_MESSAGES/falkon_helloqml.mo share/locale/sl/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sl/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sl/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sl/LC_MESSAGES/falkon_pim_qt.qm share/locale/sl/LC_MESSAGES/falkon_qt.qm share/locale/sl/LC_MESSAGES/falkon_runaction.mo share/locale/sl/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sl/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sl/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sl/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/sr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sr/LC_MESSAGES/falkon_pim_qt.qm share/locale/sr/LC_MESSAGES/falkon_qt.qm share/locale/sr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sr/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_pim_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/sr@ijekavian/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_pim_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/sr@ijekavianlatin/LC_MESSAGES/falkon_testplugin_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_pim_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/sr@latin/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/sv/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/sv/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/sv/LC_MESSAGES/falkon_hellopython.mo share/locale/sv/LC_MESSAGES/falkon_helloqml.mo share/locale/sv/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/sv/LC_MESSAGES/falkon_middleclickloader.mo share/locale/sv/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/sv/LC_MESSAGES/falkon_pim_qt.qm share/locale/sv/LC_MESSAGES/falkon_qt.qm share/locale/sv/LC_MESSAGES/falkon_runaction.mo share/locale/sv/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/sv/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/sv/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/sv/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/ta/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/tr/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/tr/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/tr/LC_MESSAGES/falkon_hellopython.mo share/locale/tr/LC_MESSAGES/falkon_helloqml.mo share/locale/tr/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/tr/LC_MESSAGES/falkon_middleclickloader.mo share/locale/tr/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/tr/LC_MESSAGES/falkon_pim_qt.qm share/locale/tr/LC_MESSAGES/falkon_qt.qm share/locale/tr/LC_MESSAGES/falkon_runaction.mo share/locale/tr/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/tr/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/tr/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/tr/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/uk/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/uk/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/uk/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/uk/LC_MESSAGES/falkon_hellopython.mo share/locale/uk/LC_MESSAGES/falkon_helloqml.mo share/locale/uk/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/uk/LC_MESSAGES/falkon_middleclickloader.mo share/locale/uk/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/uk/LC_MESSAGES/falkon_pim_qt.qm share/locale/uk/LC_MESSAGES/falkon_qt.qm share/locale/uk/LC_MESSAGES/falkon_runaction.mo share/locale/uk/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/uk/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/uk/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/uk/LC_MESSAGES/falkon_verticaltabs_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_CN/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_CN/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_CN/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_runaction.mo share/locale/zh_CN/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_CN/LC_MESSAGES/falkon_verticaltabs_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_autoscroll_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_flashcookiemanager_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_greasemonkey_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_mousegestures_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_pim_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_statusbaricons_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_tabmanager_qt.qm +share/locale/zh_HK/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_autoscroll_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_flashcookiemanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_gnomekeyringpasswords_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_greasemonkey_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_hellopython.mo share/locale/zh_TW/LC_MESSAGES/falkon_helloqml.mo share/locale/zh_TW/LC_MESSAGES/falkon_kdeframeworksintegration_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_middleclickloader.mo share/locale/zh_TW/LC_MESSAGES/falkon_mousegestures_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_pim_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_runaction.mo share/locale/zh_TW/LC_MESSAGES/falkon_statusbaricons_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_tabmanager_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_testplugin_qt.qm share/locale/zh_TW/LC_MESSAGES/falkon_verticaltabs_qt.qm share/metainfo/org.kde.falkon.appdata.xml diff --git a/x11-clocks/kteatime/distinfo b/x11-clocks/kteatime/distinfo index df0cff652248..d4fcd9dfa21c 100644 --- a/x11-clocks/kteatime/distinfo +++ b/x11-clocks/kteatime/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539480 -SHA256 (KDE/release-service/22.08.3/kteatime-22.08.3.tar.xz) = a76743204b0436015a90bd4821e454cc9d02b47833093df9cdb69aca61d44fd5 -SIZE (KDE/release-service/22.08.3/kteatime-22.08.3.tar.xz) = 302804 +TIMESTAMP = 1670513086 +SHA256 (KDE/release-service/22.12.0/kteatime-22.12.0.tar.xz) = 961261a71248b48240c3712d9748d039f6372becad012d5f7d11f0ce1aa5d674 +SIZE (KDE/release-service/22.12.0/kteatime-22.12.0.tar.xz) = 312324 diff --git a/x11-clocks/kteatime/pkg-plist b/x11-clocks/kteatime/pkg-plist index f03564ac2afa..67d9e1d18c8f 100644 --- a/x11-clocks/kteatime/pkg-plist +++ b/x11-clocks/kteatime/pkg-plist @@ -1,68 +1,84 @@ 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/af/LC_MESSAGES/kteatime.mo share/locale/ar/LC_MESSAGES/kteatime.mo share/locale/be/LC_MESSAGES/kteatime.mo share/locale/bg/LC_MESSAGES/kteatime.mo +share/locale/bn/LC_MESSAGES/kteatime.mo +share/locale/br/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/cy/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/hne/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/ka/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/ku/LC_MESSAGES/kteatime.mo share/locale/lt/LC_MESSAGES/kteatime.mo share/locale/lv/LC_MESSAGES/kteatime.mo +share/locale/mk/LC_MESSAGES/kteatime.mo share/locale/ml/LC_MESSAGES/kteatime.mo share/locale/mr/LC_MESSAGES/kteatime.mo +share/locale/ms/LC_MESSAGES/kteatime.mo share/locale/nb/LC_MESSAGES/kteatime.mo share/locale/nds/LC_MESSAGES/kteatime.mo +share/locale/ne/LC_MESSAGES/kteatime.mo share/locale/nl/LC_MESSAGES/kteatime.mo share/locale/nn/LC_MESSAGES/kteatime.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/kteatime.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kteatime.mo +share/locale/sr@latin/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/th/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/xh/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 8aa34f6d21dd..62fae8c6e665 100644 --- a/x11-clocks/ktimer/distinfo +++ b/x11-clocks/ktimer/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539479 -SHA256 (KDE/release-service/22.08.3/ktimer-22.08.3.tar.xz) = 00fbee401f15b713a390bfe7959018996548725cc70f0957a9acfe9628a6cb53 -SIZE (KDE/release-service/22.08.3/ktimer-22.08.3.tar.xz) = 395276 +TIMESTAMP = 1670513084 +SHA256 (KDE/release-service/22.12.0/ktimer-22.12.0.tar.xz) = a05579de34c4c461fa926fce41e4bf915d6588046288acf72fb9c965a6553bdb +SIZE (KDE/release-service/22.12.0/ktimer-22.12.0.tar.xz) = 401292 diff --git a/x11-clocks/ktimer/pkg-plist b/x11-clocks/ktimer/pkg-plist index 4b5639301793..4f3b5b6b8b7d 100644 --- a/x11-clocks/ktimer/pkg-plist +++ b/x11-clocks/ktimer/pkg-plist @@ -1,66 +1,80 @@ 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/icons/hicolor/128x128/apps/ktimer.png +share/locale/af/LC_MESSAGES/ktimer.mo share/locale/ar/LC_MESSAGES/ktimer.mo share/locale/be/LC_MESSAGES/ktimer.mo share/locale/bg/LC_MESSAGES/ktimer.mo +share/locale/br/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/cy/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/hne/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/ka/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/mk/LC_MESSAGES/ktimer.mo share/locale/mr/LC_MESSAGES/ktimer.mo +share/locale/ms/LC_MESSAGES/ktimer.mo share/locale/nb/LC_MESSAGES/ktimer.mo share/locale/nds/LC_MESSAGES/ktimer.mo +share/locale/ne/LC_MESSAGES/ktimer.mo share/locale/nl/LC_MESSAGES/ktimer.mo share/locale/nn/LC_MESSAGES/ktimer.mo +share/locale/oc/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/sr@ijekavian/LC_MESSAGES/ktimer.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/ktimer.mo +share/locale/sr@latin/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/th/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/vi/LC_MESSAGES/ktimer.mo +share/locale/xh/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 58e453089d10..64b2f93bad76 100644 --- a/x11-fm/dolphin/distinfo +++ b/x11-fm/dolphin/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539405 -SHA256 (KDE/release-service/22.08.3/dolphin-22.08.3.tar.xz) = 971489a59cdd6b297e2142eb3315847addafbc4e3504e1609fe5e1d119cf15a3 -SIZE (KDE/release-service/22.08.3/dolphin-22.08.3.tar.xz) = 5369436 +TIMESTAMP = 1670512990 +SHA256 (KDE/release-service/22.12.0/dolphin-22.12.0.tar.xz) = 487c04953a7b505a638adce16cb3d4df3a3345ffc27e069d4f84730e4ad6ac26 +SIZE (KDE/release-service/22.12.0/dolphin-22.12.0.tar.xz) = 5681492 diff --git a/x11-fm/dolphin/pkg-plist b/x11-fm/dolphin/pkg-plist index bf1517cd2560..90921069e68a 100644 --- a/x11-fm/dolphin/pkg-plist +++ b/x11-fm/dolphin/pkg-plist @@ -1,145 +1,174 @@ bin/dolphin bin/servicemenuinstaller include/Dolphin/KVersionControlPlugin include/Dolphin/dolphinvcs_version.h include/Dolphin/kversioncontrolplugin.h include/dolphin_export.h include/dolphinvcs_export.h lib/cmake/DolphinVcs/DolphinVcsConfig.cmake lib/cmake/DolphinVcs/DolphinVcsConfigVersion.cmake lib/cmake/DolphinVcs/DolphinVcsTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/DolphinVcs/DolphinVcsTargets.cmake lib/libdolphinprivate.so.%%SHLIB_SHVER%% lib/libdolphinprivate.so.%%SHLIB_VER%% lib/libdolphinvcs.so lib/libdolphinvcs.so.%%SHLIB_SHVER%% lib/libdolphinvcs.so.%%SHLIB_VER%% %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphingeneral.so %%QT_PLUGINDIR%%/dolphin/kcms/kcm_dolphinnavigation.so %%QT_PLUGINDIR%%/dolphin/kcms/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 +%%DATADIR%%/dolphinpartactions.desktop share/kconf_update/dolphin_detailsmodesettings.upd share/kglobalaccel/org.kde.dolphin.desktop share/knsrcfiles/servicemenu.knsrc -share/kservices5/dolphinpart.desktop -share/kservicetypes5/fileviewversioncontrolplugin.desktop share/locale/ar/LC_MESSAGES/dolphin.mo share/locale/ar/LC_MESSAGES/dolphin_servicemenuinstaller.mo -share/locale/ast/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin.mo share/locale/az/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/be/LC_MESSAGES/dolphin.mo +share/locale/be@latin/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin.mo share/locale/bg/LC_MESSAGES/dolphin_servicemenuinstaller.mo +share/locale/bn/LC_MESSAGES/dolphin.mo +share/locale/bn_IN/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/csb/LC_MESSAGES/dolphin.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/fy/LC_MESSAGES/dolphin.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/gu/LC_MESSAGES/dolphin.mo share/locale/he/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin.mo share/locale/hi/LC_MESSAGES/dolphin_servicemenuinstaller.mo +share/locale/hne/LC_MESSAGES/dolphin.mo share/locale/hr/LC_MESSAGES/dolphin.mo +share/locale/hsb/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/ie/LC_MESSAGES/dolphin.mo +share/locale/ie/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/is/LC_MESSAGES/dolphin.mo +share/locale/is/LC_MESSAGES/dolphin_servicemenuinstaller.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/ka/LC_MESSAGES/dolphin.mo +share/locale/ka/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/kk/LC_MESSAGES/dolphin.mo share/locale/km/LC_MESSAGES/dolphin.mo +share/locale/kn/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin.mo share/locale/ko/LC_MESSAGES/dolphin_servicemenuinstaller.mo +share/locale/ku/LC_MESSAGES/dolphin.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/mai/LC_MESSAGES/dolphin.mo +share/locale/mk/LC_MESSAGES/dolphin.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/ms/LC_MESSAGES/dolphin.mo +share/locale/my/LC_MESSAGES/dolphin.mo +share/locale/my/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/nb/LC_MESSAGES/dolphin.mo share/locale/nds/LC_MESSAGES/dolphin.mo +share/locale/ne/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/oc/LC_MESSAGES/dolphin.mo +share/locale/or/LC_MESSAGES/dolphin.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/si/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/sr@ijekavian/LC_MESSAGES/dolphin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/dolphin.mo +share/locale/sr@latin/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin.mo share/locale/sv/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/ta/LC_MESSAGES/dolphin.mo share/locale/ta/LC_MESSAGES/dolphin_servicemenuinstaller.mo +share/locale/te/LC_MESSAGES/dolphin.mo share/locale/tg/LC_MESSAGES/dolphin.mo +share/locale/th/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/uz/LC_MESSAGES/dolphin.mo +share/locale/uz@cyrillic/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin.mo share/locale/vi/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/wa/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin.mo share/locale/zh_CN/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/locale/zh_TW/LC_MESSAGES/dolphin.mo share/locale/zh_TW/LC_MESSAGES/dolphin_servicemenuinstaller.mo share/metainfo/org.kde.dolphin.appdata.xml share/qlogging-categories5/dolphin.categories diff --git a/x11-fm/konqueror/distinfo b/x11-fm/konqueror/distinfo index a572dc70d742..4603e8d68ba7 100644 --- a/x11-fm/konqueror/distinfo +++ b/x11-fm/konqueror/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539407 -SHA256 (KDE/release-service/22.08.3/konqueror-22.08.3.tar.xz) = b22b9a83ef29624a5add2d84ce42fb404758e834d4e70370bb465132ba92eb19 -SIZE (KDE/release-service/22.08.3/konqueror-22.08.3.tar.xz) = 7667060 +TIMESTAMP = 1670512992 +SHA256 (KDE/release-service/22.12.0/konqueror-22.12.0.tar.xz) = d3b2995c9c637d7b0594a0377c01f230e145f2336615d195730b9d2ccc2eed10 +SIZE (KDE/release-service/22.12.0/konqueror-22.12.0.tar.xz) = 8466620 diff --git a/x11-fm/konqueror/pkg-plist b/x11-fm/konqueror/pkg-plist index 333ea781b8c4..eabd153406dc 100644 --- a/x11-fm/konqueror/pkg-plist +++ b/x11-fm/konqueror/pkg-plist @@ -1,1427 +1,1869 @@ bin/fsview bin/kcreatewebarchive bin/kfmclient bin/konqueror etc/xdg/autostart/konqy_preload.desktop etc/xdg/konqsidebartngrc etc/xdg/translaterc include/KF5/konq_events.h include/KF5/konq_historyentry.h include/KF5/konq_historyprovider.h include/KF5/konq_kpart_plugin.h include/KF5/konq_popupmenu.h include/KF5/konq_version.h include/KF5/libkonq_export.h include/konqsidebarplugin.h lib/cmake/KF5Konq/KF5KonqConfig.cmake lib/cmake/KF5Konq/KF5KonqConfigVersion.cmake lib/cmake/KF5Konq/KF5KonqTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/KF5Konq/KF5KonqTargets.cmake lib/libKF5Konq.so lib/libKF5Konq.so.5.97.0 lib/libKF5Konq.so.6 lib/libkdeinit5_kfmclient.so lib/libkdeinit5_konqueror.so lib/libkonqsidebarplugin.so lib/libkonqsidebarplugin.so.%%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%%/dolphinpart/kpartplugins/dirfilterplugin.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/kimgallery.so %%QT_PLUGINDIR%%/dolphinpart/kpartplugins/konq_shellcmdplugin.so %%QT_PLUGINDIR%%/kf5/kfileitemaction/akregatorplugin.so %%QT_PLUGINDIR%%/kf5/parts/fsviewpart.so %%QT_PLUGINDIR%%/kf5/parts/konq_sidebar.so %%QT_PLUGINDIR%%/kf5/parts/webenginepart.so %%QT_PLUGINDIR%%/khtml/kpartplugins/akregatorkonqfeediconkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/autorefreshkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/babelfishpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlsettingspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/khtmlttspluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/konqueror_kget_browser_integrationkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/uachangerpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtml/kpartplugins/webarchiverpluginkhtml_kpartplugins.so %%QT_PLUGINDIR%%/khtmlsettingsplugin.so %%QT_PLUGINDIR%%/khtmlttsplugin.so %%QT_PLUGINDIR%%/konqsidebar_bookmarks.so %%QT_PLUGINDIR%%/konqsidebar_history.so %%QT_PLUGINDIR%%/konqsidebar_places.so %%QT_PLUGINDIR%%/konqsidebar_tree.so %%QT_PLUGINDIR%%/konqueror/kpartplugins/searchbarplugin.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_bookmarks.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_history.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_konq.so %%QT_PLUGINDIR%%/konqueror_kcms/kcm_performance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_appearance.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_behavior.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_filter.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_general.so %%QT_PLUGINDIR%%/konqueror_kcms/khtml_java_js.so %%QT_PLUGINDIR%%/konqueror_kget_browser_integration.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/akregatorkonqfeediconkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/autorefreshkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/babelfishpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlsettingspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/khtmlttspluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/konqueror_kget_browser_integrationkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/uachangerpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/kwebkitpart/kpartplugins/webarchiverpluginkwebkitpart_kpartplugins.so %%QT_PLUGINDIR%%/uachangerplugin.so %%QT_PLUGINDIR%%/webarchiverplugin.so %%QT_PLUGINDIR%%/webarchivethumbnail.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/akregatorkonqfeediconwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/autorefreshwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/babelfishpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlsettingspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/khtmlttspluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/konqueror_kget_browser_integrationwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/uachangerpluginwebenginepart_kpartplugins.so %%QT_PLUGINDIR%%/webenginepart/kpartplugins/webarchiverpluginwebenginepart_kpartplugins.so share/akregator/pics/feed.png share/applications/kfmclient.desktop share/applications/kfmclient_dir.desktop share/applications/kfmclient_html.desktop share/applications/kfmclient_war.desktop share/applications/konqbrowser.desktop share/applications/org.kde.konqueror.desktop share/config.kcfg/kcreatewebarchive.kcfg share/config.kcfg/konqueror.kcfg share/dbus-1/interfaces/org.kde.Konqueror.Main.xml share/dbus-1/interfaces/org.kde.Konqueror.MainWindow.xml share/icons/hicolor/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/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/babelfish.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/imagegallery.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/webarchiver.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/fsview.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/konqueror.png share/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/apps/webengine.png share/icons/hicolor/32x32/apps/fsview.png share/icons/hicolor/32x32/apps/konqueror.png share/icons/hicolor/32x32/apps/webengine.png share/icons/hicolor/48x48/apps/konqueror.png share/icons/hicolor/48x48/apps/webengine.png share/icons/hicolor/64x64/apps/konqueror.png share/icons/hicolor/64x64/apps/webengine.png share/kcmcss/template.css share/kconf_update/webenginepart.upd share/kcontrol/pics/onlyone.png share/kcontrol/pics/overlapping.png share/kf5/kbookmark/directory_bookmarkbar.desktop share/konqsidebartng/entries/bookmarks.desktop share/konqsidebartng/entries/fonts.desktop share/konqsidebartng/entries/history.desktop share/konqsidebartng/entries/home.desktop share/konqsidebartng/entries/places.desktop share/konqsidebartng/entries/remote.desktop share/konqsidebartng/entries/root.desktop share/konqsidebartng/entries/services.desktop share/konqsidebartng/plugins/konqsidebar_bookmarks.desktop share/konqsidebartng/plugins/konqsidebar_history.desktop share/konqsidebartng/plugins/konqsidebar_places.desktop share/konqsidebartng/plugins/konqsidebar_tree.desktop %%DATADIR%%/about/intro.html %%DATADIR%%/about/konq.css %%DATADIR%%/about/launch.html %%DATADIR%%/about/plugins.html %%DATADIR%%/about/plugins_rtl.html %%DATADIR%%/about/specs.html %%DATADIR%%/about/tips.html %%DATADIR%%/about/top-left-konqueror.png %%DATADIR%%/icons/hicolor/16x16/actions/google.png %%DATADIR%%/icons/hicolor/%%KDE_APPLICATIONS_VERSION_SHORT%%x%%KDE_APPLICATIONS_VERSION_SHORT%%/actions/google.png %%DATADIR%%/icons/hicolor/32x32/actions/google.png %%DATADIR%%/icons/hicolor/48x48/actions/google.png %%DATADIR%%/icons/hicolor/64x64/actions/google.png %%DATADIR%%/icons/hicolor/scalable/actions/google.svgz %%DATADIR%%/partsrcfiles/akregatorkonqfeedicon.rc %%DATADIR%%/partsrcfiles/autorefresh.rc %%DATADIR%%/partsrcfiles/babelfishplugin.rc %%DATADIR%%/partsrcfiles/dirfilterplugin.rc %%DATADIR%%/partsrcfiles/khtmlsettingsplugin.rc %%DATADIR%%/partsrcfiles/khtmlttsplugin.rc %%DATADIR%%/partsrcfiles/kimgallery.rc %%DATADIR%%/partsrcfiles/konq_shellcmdplugin.rc %%DATADIR%%/partsrcfiles/konqueror_kget_browser_integration.rc %%DATADIR%%/partsrcfiles/searchbarplugin.rc %%DATADIR%%/partsrcfiles/uachangerplugin.rc %%DATADIR%%/partsrcfiles/webarchiverplugin.rc %%DATADIR%%/pics/indicator_connect.png %%DATADIR%%/pics/indicator_empty.png %%DATADIR%%/pics/indicator_noconnect.png %%DATADIR%%/pics/indicator_viewactive.png share/kservices5/fsview_part.desktop share/kservices5/konq_sidebartng.desktop share/kservices5/org.kde.konqueror.desktop share/kservices5/webarchivethumbnail.desktop share/kservices5/webenginepart.desktop share/kxmlgui5/fsview/fsview_part.rc share/kxmlgui5/webenginepart/webenginepart.rc +share/locale/af/LC_MESSAGES/babelfish.mo +share/locale/af/LC_MESSAGES/dirfilterplugin.mo +share/locale/af/LC_MESSAGES/imgalleryplugin.mo +share/locale/af/LC_MESSAGES/kcmbookmarks.mo +share/locale/af/LC_MESSAGES/kcmkonq.mo +share/locale/af/LC_MESSAGES/kcmkonqhtml.mo +share/locale/af/LC_MESSAGES/kcmperformance.mo +share/locale/af/LC_MESSAGES/kfmclient.mo +share/locale/af/LC_MESSAGES/kgetplugin.mo +share/locale/af/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/af/LC_MESSAGES/khtmltts.mo +share/locale/af/LC_MESSAGES/konqueror.mo +share/locale/af/LC_MESSAGES/kshellcmdplugin.mo +share/locale/af/LC_MESSAGES/libkonq.mo +share/locale/af/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/akregator_konqplugin.mo share/locale/ar/LC_MESSAGES/autorefresh.mo share/locale/ar/LC_MESSAGES/babelfish.mo share/locale/ar/LC_MESSAGES/dirfilterplugin.mo share/locale/ar/LC_MESSAGES/fsview.mo share/locale/ar/LC_MESSAGES/imgalleryplugin.mo share/locale/ar/LC_MESSAGES/kcmbookmarks.mo share/locale/ar/LC_MESSAGES/kcmkonq.mo share/locale/ar/LC_MESSAGES/kcmkonqhtml.mo share/locale/ar/LC_MESSAGES/kcmperformance.mo share/locale/ar/LC_MESSAGES/kfmclient.mo share/locale/ar/LC_MESSAGES/kgetplugin.mo share/locale/ar/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ar/LC_MESSAGES/khtmltts.mo share/locale/ar/LC_MESSAGES/konqueror.mo share/locale/ar/LC_MESSAGES/kshellcmdplugin.mo share/locale/ar/LC_MESSAGES/libkonq.mo share/locale/ar/LC_MESSAGES/searchbarplugin.mo share/locale/ar/LC_MESSAGES/uachangerplugin.mo share/locale/ar/LC_MESSAGES/webenginepart.mo -share/locale/ast/LC_MESSAGES/akregator_konqplugin.mo -share/locale/ast/LC_MESSAGES/autorefresh.mo -share/locale/ast/LC_MESSAGES/babelfish.mo -share/locale/ast/LC_MESSAGES/dirfilterplugin.mo -share/locale/ast/LC_MESSAGES/fsview.mo -share/locale/ast/LC_MESSAGES/imgalleryplugin.mo -share/locale/ast/LC_MESSAGES/kcmbookmarks.mo -share/locale/ast/LC_MESSAGES/kcmkonq.mo -share/locale/ast/LC_MESSAGES/kcmkonqhtml.mo -share/locale/ast/LC_MESSAGES/kcmperformance.mo -share/locale/ast/LC_MESSAGES/kfmclient.mo -share/locale/ast/LC_MESSAGES/khtmlsettingsplugin.mo -share/locale/ast/LC_MESSAGES/khtmltts.mo -share/locale/ast/LC_MESSAGES/konqueror.mo -share/locale/ast/LC_MESSAGES/kshellcmdplugin.mo -share/locale/ast/LC_MESSAGES/libkonq.mo -share/locale/ast/LC_MESSAGES/searchbarplugin.mo -share/locale/ast/LC_MESSAGES/uachangerplugin.mo -share/locale/ast/LC_MESSAGES/webenginepart.mo share/locale/be/LC_MESSAGES/akregator_konqplugin.mo share/locale/be/LC_MESSAGES/autorefresh.mo share/locale/be/LC_MESSAGES/babelfish.mo share/locale/be/LC_MESSAGES/dirfilterplugin.mo share/locale/be/LC_MESSAGES/fsview.mo share/locale/be/LC_MESSAGES/imgalleryplugin.mo share/locale/be/LC_MESSAGES/kcmbookmarks.mo share/locale/be/LC_MESSAGES/kcmkonq.mo share/locale/be/LC_MESSAGES/kcmkonqhtml.mo share/locale/be/LC_MESSAGES/kcmperformance.mo share/locale/be/LC_MESSAGES/kfmclient.mo share/locale/be/LC_MESSAGES/kgetplugin.mo share/locale/be/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/be/LC_MESSAGES/khtmltts.mo share/locale/be/LC_MESSAGES/konqueror.mo share/locale/be/LC_MESSAGES/kshellcmdplugin.mo share/locale/be/LC_MESSAGES/libkonq.mo share/locale/be/LC_MESSAGES/searchbarplugin.mo share/locale/be/LC_MESSAGES/uachangerplugin.mo +share/locale/be@latin/LC_MESSAGES/kcmkonq.mo +share/locale/be@latin/LC_MESSAGES/kfmclient.mo +share/locale/be@latin/LC_MESSAGES/khtmltts.mo +share/locale/be@latin/LC_MESSAGES/konqueror.mo +share/locale/be@latin/LC_MESSAGES/kshellcmdplugin.mo +share/locale/be@latin/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/akregator_konqplugin.mo share/locale/bg/LC_MESSAGES/autorefresh.mo share/locale/bg/LC_MESSAGES/babelfish.mo share/locale/bg/LC_MESSAGES/dirfilterplugin.mo share/locale/bg/LC_MESSAGES/fsview.mo share/locale/bg/LC_MESSAGES/imgalleryplugin.mo share/locale/bg/LC_MESSAGES/kcmbookmarks.mo share/locale/bg/LC_MESSAGES/kcmkonq.mo share/locale/bg/LC_MESSAGES/kcmkonqhtml.mo share/locale/bg/LC_MESSAGES/kcmperformance.mo share/locale/bg/LC_MESSAGES/kfmclient.mo share/locale/bg/LC_MESSAGES/kgetplugin.mo share/locale/bg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bg/LC_MESSAGES/khtmltts.mo share/locale/bg/LC_MESSAGES/konqueror.mo share/locale/bg/LC_MESSAGES/kshellcmdplugin.mo share/locale/bg/LC_MESSAGES/libkonq.mo share/locale/bg/LC_MESSAGES/searchbarplugin.mo share/locale/bg/LC_MESSAGES/uachangerplugin.mo share/locale/bg/LC_MESSAGES/webarchiver.mo share/locale/bg/LC_MESSAGES/webenginepart.mo +share/locale/bn/LC_MESSAGES/babelfish.mo +share/locale/bn/LC_MESSAGES/kcmbookmarks.mo +share/locale/bn/LC_MESSAGES/kcmkonq.mo +share/locale/bn/LC_MESSAGES/kcmkonqhtml.mo +share/locale/bn/LC_MESSAGES/kfmclient.mo +share/locale/bn/LC_MESSAGES/konqueror.mo +share/locale/bn/LC_MESSAGES/kshellcmdplugin.mo +share/locale/bn/LC_MESSAGES/libkonq.mo +share/locale/bn_IN/LC_MESSAGES/kcmbookmarks.mo +share/locale/bn_IN/LC_MESSAGES/kcmkonq.mo +share/locale/bn_IN/LC_MESSAGES/kcmkonqhtml.mo +share/locale/bn_IN/LC_MESSAGES/kfmclient.mo +share/locale/bn_IN/LC_MESSAGES/khtmltts.mo +share/locale/bn_IN/LC_MESSAGES/konqueror.mo +share/locale/bn_IN/LC_MESSAGES/kshellcmdplugin.mo +share/locale/bn_IN/LC_MESSAGES/libkonq.mo +share/locale/br/LC_MESSAGES/autorefresh.mo +share/locale/br/LC_MESSAGES/babelfish.mo +share/locale/br/LC_MESSAGES/dirfilterplugin.mo +share/locale/br/LC_MESSAGES/fsview.mo +share/locale/br/LC_MESSAGES/imgalleryplugin.mo +share/locale/br/LC_MESSAGES/kcmbookmarks.mo +share/locale/br/LC_MESSAGES/kcmkonq.mo +share/locale/br/LC_MESSAGES/kcmkonqhtml.mo +share/locale/br/LC_MESSAGES/kcmperformance.mo +share/locale/br/LC_MESSAGES/kfmclient.mo +share/locale/br/LC_MESSAGES/kgetplugin.mo +share/locale/br/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/br/LC_MESSAGES/khtmltts.mo +share/locale/br/LC_MESSAGES/konqueror.mo +share/locale/br/LC_MESSAGES/kshellcmdplugin.mo +share/locale/br/LC_MESSAGES/libkonq.mo +share/locale/br/LC_MESSAGES/searchbarplugin.mo +share/locale/br/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/akregator_konqplugin.mo share/locale/bs/LC_MESSAGES/autorefresh.mo share/locale/bs/LC_MESSAGES/babelfish.mo share/locale/bs/LC_MESSAGES/dirfilterplugin.mo share/locale/bs/LC_MESSAGES/fsview.mo share/locale/bs/LC_MESSAGES/imgalleryplugin.mo share/locale/bs/LC_MESSAGES/kcmbookmarks.mo share/locale/bs/LC_MESSAGES/kcmkonq.mo share/locale/bs/LC_MESSAGES/kcmkonqhtml.mo share/locale/bs/LC_MESSAGES/kcmperformance.mo share/locale/bs/LC_MESSAGES/kfmclient.mo share/locale/bs/LC_MESSAGES/kgetplugin.mo share/locale/bs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/bs/LC_MESSAGES/khtmltts.mo share/locale/bs/LC_MESSAGES/konqueror.mo share/locale/bs/LC_MESSAGES/kshellcmdplugin.mo share/locale/bs/LC_MESSAGES/libkonq.mo share/locale/bs/LC_MESSAGES/searchbarplugin.mo share/locale/bs/LC_MESSAGES/uachangerplugin.mo share/locale/bs/LC_MESSAGES/webenginepart.mo share/locale/ca/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca/LC_MESSAGES/autorefresh.mo share/locale/ca/LC_MESSAGES/babelfish.mo share/locale/ca/LC_MESSAGES/dirfilterplugin.mo share/locale/ca/LC_MESSAGES/fsview.mo share/locale/ca/LC_MESSAGES/imgalleryplugin.mo share/locale/ca/LC_MESSAGES/kcmbookmarks.mo share/locale/ca/LC_MESSAGES/kcmkonq.mo share/locale/ca/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca/LC_MESSAGES/kcmperformance.mo share/locale/ca/LC_MESSAGES/kfmclient.mo share/locale/ca/LC_MESSAGES/kgetplugin.mo share/locale/ca/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca/LC_MESSAGES/khtmltts.mo share/locale/ca/LC_MESSAGES/konqueror.mo share/locale/ca/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca/LC_MESSAGES/libkonq.mo share/locale/ca/LC_MESSAGES/searchbarplugin.mo share/locale/ca/LC_MESSAGES/uachangerplugin.mo share/locale/ca/LC_MESSAGES/webarchiver.mo share/locale/ca/LC_MESSAGES/webenginepart.mo share/locale/ca@valencia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ca@valencia/LC_MESSAGES/autorefresh.mo share/locale/ca@valencia/LC_MESSAGES/babelfish.mo share/locale/ca@valencia/LC_MESSAGES/dirfilterplugin.mo share/locale/ca@valencia/LC_MESSAGES/fsview.mo share/locale/ca@valencia/LC_MESSAGES/imgalleryplugin.mo share/locale/ca@valencia/LC_MESSAGES/kcmbookmarks.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonq.mo share/locale/ca@valencia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ca@valencia/LC_MESSAGES/kcmperformance.mo share/locale/ca@valencia/LC_MESSAGES/kfmclient.mo share/locale/ca@valencia/LC_MESSAGES/kgetplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ca@valencia/LC_MESSAGES/khtmltts.mo share/locale/ca@valencia/LC_MESSAGES/konqueror.mo share/locale/ca@valencia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ca@valencia/LC_MESSAGES/libkonq.mo share/locale/ca@valencia/LC_MESSAGES/searchbarplugin.mo share/locale/ca@valencia/LC_MESSAGES/uachangerplugin.mo share/locale/ca@valencia/LC_MESSAGES/webarchiver.mo share/locale/ca@valencia/LC_MESSAGES/webenginepart.mo share/locale/cs/LC_MESSAGES/akregator_konqplugin.mo share/locale/cs/LC_MESSAGES/autorefresh.mo share/locale/cs/LC_MESSAGES/babelfish.mo share/locale/cs/LC_MESSAGES/dirfilterplugin.mo share/locale/cs/LC_MESSAGES/fsview.mo share/locale/cs/LC_MESSAGES/imgalleryplugin.mo share/locale/cs/LC_MESSAGES/kcmbookmarks.mo share/locale/cs/LC_MESSAGES/kcmkonq.mo share/locale/cs/LC_MESSAGES/kcmkonqhtml.mo share/locale/cs/LC_MESSAGES/kcmperformance.mo share/locale/cs/LC_MESSAGES/kfmclient.mo share/locale/cs/LC_MESSAGES/kgetplugin.mo share/locale/cs/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/cs/LC_MESSAGES/khtmltts.mo share/locale/cs/LC_MESSAGES/konqueror.mo share/locale/cs/LC_MESSAGES/kshellcmdplugin.mo share/locale/cs/LC_MESSAGES/libkonq.mo share/locale/cs/LC_MESSAGES/searchbarplugin.mo share/locale/cs/LC_MESSAGES/uachangerplugin.mo share/locale/cs/LC_MESSAGES/webarchiver.mo share/locale/cs/LC_MESSAGES/webenginepart.mo +share/locale/csb/LC_MESSAGES/kcmbookmarks.mo +share/locale/csb/LC_MESSAGES/kcmkonqhtml.mo +share/locale/csb/LC_MESSAGES/kcmperformance.mo +share/locale/csb/LC_MESSAGES/kfmclient.mo +share/locale/csb/LC_MESSAGES/khtmltts.mo +share/locale/csb/LC_MESSAGES/konqueror.mo +share/locale/csb/LC_MESSAGES/kshellcmdplugin.mo +share/locale/csb/LC_MESSAGES/libkonq.mo +share/locale/cy/LC_MESSAGES/autorefresh.mo +share/locale/cy/LC_MESSAGES/babelfish.mo +share/locale/cy/LC_MESSAGES/dirfilterplugin.mo +share/locale/cy/LC_MESSAGES/fsview.mo +share/locale/cy/LC_MESSAGES/imgalleryplugin.mo +share/locale/cy/LC_MESSAGES/kcmbookmarks.mo +share/locale/cy/LC_MESSAGES/kcmkonq.mo +share/locale/cy/LC_MESSAGES/kcmkonqhtml.mo +share/locale/cy/LC_MESSAGES/kcmperformance.mo +share/locale/cy/LC_MESSAGES/kfmclient.mo +share/locale/cy/LC_MESSAGES/kgetplugin.mo +share/locale/cy/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/cy/LC_MESSAGES/khtmltts.mo +share/locale/cy/LC_MESSAGES/konqueror.mo +share/locale/cy/LC_MESSAGES/kshellcmdplugin.mo +share/locale/cy/LC_MESSAGES/libkonq.mo +share/locale/cy/LC_MESSAGES/searchbarplugin.mo +share/locale/cy/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/akregator_konqplugin.mo share/locale/da/LC_MESSAGES/autorefresh.mo share/locale/da/LC_MESSAGES/babelfish.mo share/locale/da/LC_MESSAGES/dirfilterplugin.mo share/locale/da/LC_MESSAGES/fsview.mo share/locale/da/LC_MESSAGES/imgalleryplugin.mo share/locale/da/LC_MESSAGES/kcmbookmarks.mo share/locale/da/LC_MESSAGES/kcmkonq.mo share/locale/da/LC_MESSAGES/kcmkonqhtml.mo share/locale/da/LC_MESSAGES/kcmperformance.mo share/locale/da/LC_MESSAGES/kfmclient.mo share/locale/da/LC_MESSAGES/kgetplugin.mo share/locale/da/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/da/LC_MESSAGES/khtmltts.mo share/locale/da/LC_MESSAGES/konqueror.mo share/locale/da/LC_MESSAGES/kshellcmdplugin.mo share/locale/da/LC_MESSAGES/libkonq.mo share/locale/da/LC_MESSAGES/searchbarplugin.mo share/locale/da/LC_MESSAGES/uachangerplugin.mo share/locale/da/LC_MESSAGES/webenginepart.mo share/locale/de/LC_MESSAGES/akregator_konqplugin.mo share/locale/de/LC_MESSAGES/autorefresh.mo share/locale/de/LC_MESSAGES/babelfish.mo share/locale/de/LC_MESSAGES/dirfilterplugin.mo share/locale/de/LC_MESSAGES/fsview.mo share/locale/de/LC_MESSAGES/imgalleryplugin.mo share/locale/de/LC_MESSAGES/kcmbookmarks.mo share/locale/de/LC_MESSAGES/kcmkonq.mo share/locale/de/LC_MESSAGES/kcmkonqhtml.mo share/locale/de/LC_MESSAGES/kcmperformance.mo share/locale/de/LC_MESSAGES/kfmclient.mo share/locale/de/LC_MESSAGES/kgetplugin.mo share/locale/de/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/de/LC_MESSAGES/khtmltts.mo share/locale/de/LC_MESSAGES/konqueror.mo share/locale/de/LC_MESSAGES/kshellcmdplugin.mo share/locale/de/LC_MESSAGES/libkonq.mo share/locale/de/LC_MESSAGES/searchbarplugin.mo share/locale/de/LC_MESSAGES/uachangerplugin.mo share/locale/de/LC_MESSAGES/webarchiver.mo share/locale/de/LC_MESSAGES/webenginepart.mo share/locale/el/LC_MESSAGES/akregator_konqplugin.mo share/locale/el/LC_MESSAGES/autorefresh.mo share/locale/el/LC_MESSAGES/babelfish.mo share/locale/el/LC_MESSAGES/dirfilterplugin.mo share/locale/el/LC_MESSAGES/fsview.mo share/locale/el/LC_MESSAGES/imgalleryplugin.mo share/locale/el/LC_MESSAGES/kcmbookmarks.mo share/locale/el/LC_MESSAGES/kcmkonq.mo share/locale/el/LC_MESSAGES/kcmkonqhtml.mo share/locale/el/LC_MESSAGES/kcmperformance.mo share/locale/el/LC_MESSAGES/kfmclient.mo share/locale/el/LC_MESSAGES/kgetplugin.mo share/locale/el/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/el/LC_MESSAGES/khtmltts.mo share/locale/el/LC_MESSAGES/konqueror.mo share/locale/el/LC_MESSAGES/kshellcmdplugin.mo share/locale/el/LC_MESSAGES/libkonq.mo share/locale/el/LC_MESSAGES/searchbarplugin.mo share/locale/el/LC_MESSAGES/uachangerplugin.mo share/locale/el/LC_MESSAGES/webarchiver.mo share/locale/el/LC_MESSAGES/webenginepart.mo share/locale/en_GB/LC_MESSAGES/akregator_konqplugin.mo share/locale/en_GB/LC_MESSAGES/autorefresh.mo share/locale/en_GB/LC_MESSAGES/babelfish.mo share/locale/en_GB/LC_MESSAGES/dirfilterplugin.mo share/locale/en_GB/LC_MESSAGES/fsview.mo share/locale/en_GB/LC_MESSAGES/imgalleryplugin.mo share/locale/en_GB/LC_MESSAGES/kcmbookmarks.mo share/locale/en_GB/LC_MESSAGES/kcmkonq.mo share/locale/en_GB/LC_MESSAGES/kcmkonqhtml.mo share/locale/en_GB/LC_MESSAGES/kcmperformance.mo share/locale/en_GB/LC_MESSAGES/kfmclient.mo share/locale/en_GB/LC_MESSAGES/kgetplugin.mo share/locale/en_GB/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/en_GB/LC_MESSAGES/khtmltts.mo share/locale/en_GB/LC_MESSAGES/konqueror.mo share/locale/en_GB/LC_MESSAGES/kshellcmdplugin.mo share/locale/en_GB/LC_MESSAGES/libkonq.mo share/locale/en_GB/LC_MESSAGES/searchbarplugin.mo share/locale/en_GB/LC_MESSAGES/uachangerplugin.mo share/locale/en_GB/LC_MESSAGES/webarchiver.mo share/locale/en_GB/LC_MESSAGES/webenginepart.mo share/locale/eo/LC_MESSAGES/akregator_konqplugin.mo share/locale/eo/LC_MESSAGES/autorefresh.mo share/locale/eo/LC_MESSAGES/babelfish.mo share/locale/eo/LC_MESSAGES/dirfilterplugin.mo share/locale/eo/LC_MESSAGES/fsview.mo share/locale/eo/LC_MESSAGES/imgalleryplugin.mo share/locale/eo/LC_MESSAGES/kcmbookmarks.mo share/locale/eo/LC_MESSAGES/kcmkonq.mo share/locale/eo/LC_MESSAGES/kcmkonqhtml.mo share/locale/eo/LC_MESSAGES/kcmperformance.mo share/locale/eo/LC_MESSAGES/kfmclient.mo share/locale/eo/LC_MESSAGES/kgetplugin.mo share/locale/eo/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eo/LC_MESSAGES/khtmltts.mo share/locale/eo/LC_MESSAGES/konqueror.mo share/locale/eo/LC_MESSAGES/kshellcmdplugin.mo share/locale/eo/LC_MESSAGES/libkonq.mo share/locale/eo/LC_MESSAGES/searchbarplugin.mo share/locale/eo/LC_MESSAGES/uachangerplugin.mo share/locale/eo/LC_MESSAGES/webenginepart.mo share/locale/es/LC_MESSAGES/akregator_konqplugin.mo share/locale/es/LC_MESSAGES/autorefresh.mo share/locale/es/LC_MESSAGES/babelfish.mo share/locale/es/LC_MESSAGES/dirfilterplugin.mo share/locale/es/LC_MESSAGES/fsview.mo share/locale/es/LC_MESSAGES/imgalleryplugin.mo share/locale/es/LC_MESSAGES/kcmbookmarks.mo share/locale/es/LC_MESSAGES/kcmkonq.mo share/locale/es/LC_MESSAGES/kcmkonqhtml.mo share/locale/es/LC_MESSAGES/kcmperformance.mo share/locale/es/LC_MESSAGES/kfmclient.mo share/locale/es/LC_MESSAGES/kgetplugin.mo share/locale/es/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/es/LC_MESSAGES/khtmltts.mo share/locale/es/LC_MESSAGES/konqueror.mo share/locale/es/LC_MESSAGES/kshellcmdplugin.mo share/locale/es/LC_MESSAGES/libkonq.mo share/locale/es/LC_MESSAGES/searchbarplugin.mo share/locale/es/LC_MESSAGES/uachangerplugin.mo share/locale/es/LC_MESSAGES/webarchiver.mo share/locale/es/LC_MESSAGES/webenginepart.mo share/locale/et/LC_MESSAGES/akregator_konqplugin.mo share/locale/et/LC_MESSAGES/autorefresh.mo share/locale/et/LC_MESSAGES/babelfish.mo share/locale/et/LC_MESSAGES/dirfilterplugin.mo share/locale/et/LC_MESSAGES/fsview.mo share/locale/et/LC_MESSAGES/imgalleryplugin.mo share/locale/et/LC_MESSAGES/kcmbookmarks.mo share/locale/et/LC_MESSAGES/kcmkonq.mo share/locale/et/LC_MESSAGES/kcmkonqhtml.mo share/locale/et/LC_MESSAGES/kcmperformance.mo share/locale/et/LC_MESSAGES/kfmclient.mo share/locale/et/LC_MESSAGES/kgetplugin.mo share/locale/et/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/et/LC_MESSAGES/khtmltts.mo share/locale/et/LC_MESSAGES/konqueror.mo share/locale/et/LC_MESSAGES/kshellcmdplugin.mo share/locale/et/LC_MESSAGES/libkonq.mo share/locale/et/LC_MESSAGES/searchbarplugin.mo share/locale/et/LC_MESSAGES/uachangerplugin.mo share/locale/et/LC_MESSAGES/webenginepart.mo share/locale/eu/LC_MESSAGES/akregator_konqplugin.mo share/locale/eu/LC_MESSAGES/autorefresh.mo share/locale/eu/LC_MESSAGES/babelfish.mo share/locale/eu/LC_MESSAGES/dirfilterplugin.mo share/locale/eu/LC_MESSAGES/fsview.mo share/locale/eu/LC_MESSAGES/imgalleryplugin.mo share/locale/eu/LC_MESSAGES/kcmbookmarks.mo share/locale/eu/LC_MESSAGES/kcmkonq.mo share/locale/eu/LC_MESSAGES/kcmkonqhtml.mo share/locale/eu/LC_MESSAGES/kcmperformance.mo share/locale/eu/LC_MESSAGES/kfmclient.mo share/locale/eu/LC_MESSAGES/kgetplugin.mo share/locale/eu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/eu/LC_MESSAGES/khtmltts.mo share/locale/eu/LC_MESSAGES/konqueror.mo share/locale/eu/LC_MESSAGES/kshellcmdplugin.mo share/locale/eu/LC_MESSAGES/libkonq.mo share/locale/eu/LC_MESSAGES/searchbarplugin.mo share/locale/eu/LC_MESSAGES/uachangerplugin.mo share/locale/eu/LC_MESSAGES/webarchiver.mo share/locale/eu/LC_MESSAGES/webenginepart.mo share/locale/fa/LC_MESSAGES/akregator_konqplugin.mo share/locale/fa/LC_MESSAGES/autorefresh.mo share/locale/fa/LC_MESSAGES/babelfish.mo share/locale/fa/LC_MESSAGES/dirfilterplugin.mo share/locale/fa/LC_MESSAGES/fsview.mo share/locale/fa/LC_MESSAGES/imgalleryplugin.mo share/locale/fa/LC_MESSAGES/kcmbookmarks.mo share/locale/fa/LC_MESSAGES/kcmkonq.mo share/locale/fa/LC_MESSAGES/kcmkonqhtml.mo share/locale/fa/LC_MESSAGES/kcmperformance.mo share/locale/fa/LC_MESSAGES/kfmclient.mo share/locale/fa/LC_MESSAGES/kgetplugin.mo share/locale/fa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fa/LC_MESSAGES/khtmltts.mo share/locale/fa/LC_MESSAGES/konqueror.mo share/locale/fa/LC_MESSAGES/kshellcmdplugin.mo share/locale/fa/LC_MESSAGES/libkonq.mo share/locale/fa/LC_MESSAGES/searchbarplugin.mo share/locale/fa/LC_MESSAGES/uachangerplugin.mo share/locale/fa/LC_MESSAGES/webenginepart.mo share/locale/fi/LC_MESSAGES/akregator_konqplugin.mo share/locale/fi/LC_MESSAGES/autorefresh.mo share/locale/fi/LC_MESSAGES/babelfish.mo share/locale/fi/LC_MESSAGES/dirfilterplugin.mo share/locale/fi/LC_MESSAGES/fsview.mo share/locale/fi/LC_MESSAGES/imgalleryplugin.mo share/locale/fi/LC_MESSAGES/kcmbookmarks.mo share/locale/fi/LC_MESSAGES/kcmkonq.mo share/locale/fi/LC_MESSAGES/kcmkonqhtml.mo share/locale/fi/LC_MESSAGES/kcmperformance.mo share/locale/fi/LC_MESSAGES/kfmclient.mo share/locale/fi/LC_MESSAGES/kgetplugin.mo share/locale/fi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fi/LC_MESSAGES/khtmltts.mo share/locale/fi/LC_MESSAGES/konqueror.mo share/locale/fi/LC_MESSAGES/kshellcmdplugin.mo share/locale/fi/LC_MESSAGES/libkonq.mo share/locale/fi/LC_MESSAGES/searchbarplugin.mo share/locale/fi/LC_MESSAGES/uachangerplugin.mo share/locale/fi/LC_MESSAGES/webarchiver.mo share/locale/fi/LC_MESSAGES/webenginepart.mo share/locale/fr/LC_MESSAGES/akregator_konqplugin.mo share/locale/fr/LC_MESSAGES/autorefresh.mo share/locale/fr/LC_MESSAGES/babelfish.mo share/locale/fr/LC_MESSAGES/dirfilterplugin.mo share/locale/fr/LC_MESSAGES/fsview.mo share/locale/fr/LC_MESSAGES/imgalleryplugin.mo share/locale/fr/LC_MESSAGES/kcmbookmarks.mo share/locale/fr/LC_MESSAGES/kcmkonq.mo share/locale/fr/LC_MESSAGES/kcmkonqhtml.mo share/locale/fr/LC_MESSAGES/kcmperformance.mo share/locale/fr/LC_MESSAGES/kfmclient.mo share/locale/fr/LC_MESSAGES/kgetplugin.mo share/locale/fr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/fr/LC_MESSAGES/khtmltts.mo share/locale/fr/LC_MESSAGES/konqueror.mo share/locale/fr/LC_MESSAGES/kshellcmdplugin.mo share/locale/fr/LC_MESSAGES/libkonq.mo share/locale/fr/LC_MESSAGES/searchbarplugin.mo share/locale/fr/LC_MESSAGES/uachangerplugin.mo share/locale/fr/LC_MESSAGES/webarchiver.mo share/locale/fr/LC_MESSAGES/webenginepart.mo +share/locale/fy/LC_MESSAGES/akregator_konqplugin.mo +share/locale/fy/LC_MESSAGES/autorefresh.mo +share/locale/fy/LC_MESSAGES/babelfish.mo +share/locale/fy/LC_MESSAGES/dirfilterplugin.mo +share/locale/fy/LC_MESSAGES/fsview.mo +share/locale/fy/LC_MESSAGES/imgalleryplugin.mo +share/locale/fy/LC_MESSAGES/kcmbookmarks.mo +share/locale/fy/LC_MESSAGES/kcmkonq.mo +share/locale/fy/LC_MESSAGES/kcmkonqhtml.mo +share/locale/fy/LC_MESSAGES/kcmperformance.mo +share/locale/fy/LC_MESSAGES/kfmclient.mo +share/locale/fy/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/fy/LC_MESSAGES/khtmltts.mo +share/locale/fy/LC_MESSAGES/konqueror.mo +share/locale/fy/LC_MESSAGES/kshellcmdplugin.mo +share/locale/fy/LC_MESSAGES/libkonq.mo +share/locale/fy/LC_MESSAGES/searchbarplugin.mo +share/locale/fy/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/akregator_konqplugin.mo share/locale/ga/LC_MESSAGES/autorefresh.mo share/locale/ga/LC_MESSAGES/babelfish.mo share/locale/ga/LC_MESSAGES/dirfilterplugin.mo share/locale/ga/LC_MESSAGES/fsview.mo share/locale/ga/LC_MESSAGES/imgalleryplugin.mo share/locale/ga/LC_MESSAGES/kcmbookmarks.mo share/locale/ga/LC_MESSAGES/kcmkonq.mo share/locale/ga/LC_MESSAGES/kcmkonqhtml.mo share/locale/ga/LC_MESSAGES/kcmperformance.mo share/locale/ga/LC_MESSAGES/kfmclient.mo share/locale/ga/LC_MESSAGES/kgetplugin.mo share/locale/ga/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ga/LC_MESSAGES/khtmltts.mo share/locale/ga/LC_MESSAGES/konqueror.mo share/locale/ga/LC_MESSAGES/kshellcmdplugin.mo share/locale/ga/LC_MESSAGES/libkonq.mo share/locale/ga/LC_MESSAGES/searchbarplugin.mo share/locale/ga/LC_MESSAGES/uachangerplugin.mo share/locale/ga/LC_MESSAGES/webenginepart.mo share/locale/gl/LC_MESSAGES/akregator_konqplugin.mo share/locale/gl/LC_MESSAGES/autorefresh.mo share/locale/gl/LC_MESSAGES/babelfish.mo share/locale/gl/LC_MESSAGES/dirfilterplugin.mo share/locale/gl/LC_MESSAGES/fsview.mo share/locale/gl/LC_MESSAGES/imgalleryplugin.mo share/locale/gl/LC_MESSAGES/kcmbookmarks.mo share/locale/gl/LC_MESSAGES/kcmkonq.mo share/locale/gl/LC_MESSAGES/kcmkonqhtml.mo share/locale/gl/LC_MESSAGES/kcmperformance.mo share/locale/gl/LC_MESSAGES/kfmclient.mo share/locale/gl/LC_MESSAGES/kgetplugin.mo share/locale/gl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/gl/LC_MESSAGES/khtmltts.mo share/locale/gl/LC_MESSAGES/konqueror.mo share/locale/gl/LC_MESSAGES/kshellcmdplugin.mo share/locale/gl/LC_MESSAGES/libkonq.mo share/locale/gl/LC_MESSAGES/searchbarplugin.mo share/locale/gl/LC_MESSAGES/uachangerplugin.mo share/locale/gl/LC_MESSAGES/webenginepart.mo +share/locale/gu/LC_MESSAGES/kcmbookmarks.mo +share/locale/gu/LC_MESSAGES/kcmkonq.mo +share/locale/gu/LC_MESSAGES/kcmkonqhtml.mo +share/locale/gu/LC_MESSAGES/kcmperformance.mo +share/locale/gu/LC_MESSAGES/kfmclient.mo +share/locale/gu/LC_MESSAGES/khtmltts.mo +share/locale/gu/LC_MESSAGES/konqueror.mo +share/locale/gu/LC_MESSAGES/kshellcmdplugin.mo +share/locale/gu/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/akregator_konqplugin.mo share/locale/he/LC_MESSAGES/autorefresh.mo share/locale/he/LC_MESSAGES/babelfish.mo share/locale/he/LC_MESSAGES/dirfilterplugin.mo share/locale/he/LC_MESSAGES/fsview.mo share/locale/he/LC_MESSAGES/imgalleryplugin.mo share/locale/he/LC_MESSAGES/kcmbookmarks.mo share/locale/he/LC_MESSAGES/kcmkonq.mo share/locale/he/LC_MESSAGES/kcmkonqhtml.mo share/locale/he/LC_MESSAGES/kcmperformance.mo share/locale/he/LC_MESSAGES/kfmclient.mo share/locale/he/LC_MESSAGES/kgetplugin.mo share/locale/he/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/he/LC_MESSAGES/khtmltts.mo share/locale/he/LC_MESSAGES/konqueror.mo share/locale/he/LC_MESSAGES/kshellcmdplugin.mo share/locale/he/LC_MESSAGES/libkonq.mo share/locale/he/LC_MESSAGES/searchbarplugin.mo share/locale/he/LC_MESSAGES/uachangerplugin.mo share/locale/hi/LC_MESSAGES/akregator_konqplugin.mo share/locale/hi/LC_MESSAGES/autorefresh.mo share/locale/hi/LC_MESSAGES/babelfish.mo share/locale/hi/LC_MESSAGES/dirfilterplugin.mo share/locale/hi/LC_MESSAGES/fsview.mo share/locale/hi/LC_MESSAGES/imgalleryplugin.mo share/locale/hi/LC_MESSAGES/kcmbookmarks.mo share/locale/hi/LC_MESSAGES/kcmkonq.mo share/locale/hi/LC_MESSAGES/kcmkonqhtml.mo share/locale/hi/LC_MESSAGES/kcmperformance.mo share/locale/hi/LC_MESSAGES/kfmclient.mo share/locale/hi/LC_MESSAGES/kgetplugin.mo share/locale/hi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hi/LC_MESSAGES/khtmltts.mo share/locale/hi/LC_MESSAGES/konqueror.mo share/locale/hi/LC_MESSAGES/kshellcmdplugin.mo share/locale/hi/LC_MESSAGES/libkonq.mo share/locale/hi/LC_MESSAGES/searchbarplugin.mo share/locale/hi/LC_MESSAGES/uachangerplugin.mo +share/locale/hne/LC_MESSAGES/akregator_konqplugin.mo +share/locale/hne/LC_MESSAGES/autorefresh.mo +share/locale/hne/LC_MESSAGES/babelfish.mo +share/locale/hne/LC_MESSAGES/dirfilterplugin.mo +share/locale/hne/LC_MESSAGES/fsview.mo +share/locale/hne/LC_MESSAGES/imgalleryplugin.mo +share/locale/hne/LC_MESSAGES/kcmbookmarks.mo +share/locale/hne/LC_MESSAGES/kcmkonq.mo +share/locale/hne/LC_MESSAGES/kcmkonqhtml.mo +share/locale/hne/LC_MESSAGES/kcmperformance.mo +share/locale/hne/LC_MESSAGES/kfmclient.mo +share/locale/hne/LC_MESSAGES/kgetplugin.mo +share/locale/hne/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/hne/LC_MESSAGES/khtmltts.mo +share/locale/hne/LC_MESSAGES/konqueror.mo +share/locale/hne/LC_MESSAGES/kshellcmdplugin.mo +share/locale/hne/LC_MESSAGES/libkonq.mo +share/locale/hne/LC_MESSAGES/searchbarplugin.mo +share/locale/hne/LC_MESSAGES/uachangerplugin.mo share/locale/hr/LC_MESSAGES/akregator_konqplugin.mo share/locale/hr/LC_MESSAGES/autorefresh.mo share/locale/hr/LC_MESSAGES/babelfish.mo share/locale/hr/LC_MESSAGES/dirfilterplugin.mo share/locale/hr/LC_MESSAGES/fsview.mo share/locale/hr/LC_MESSAGES/imgalleryplugin.mo share/locale/hr/LC_MESSAGES/kcmbookmarks.mo share/locale/hr/LC_MESSAGES/kcmkonq.mo share/locale/hr/LC_MESSAGES/kcmkonqhtml.mo share/locale/hr/LC_MESSAGES/kcmperformance.mo share/locale/hr/LC_MESSAGES/kfmclient.mo share/locale/hr/LC_MESSAGES/kgetplugin.mo share/locale/hr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hr/LC_MESSAGES/khtmltts.mo share/locale/hr/LC_MESSAGES/konqueror.mo share/locale/hr/LC_MESSAGES/kshellcmdplugin.mo share/locale/hr/LC_MESSAGES/libkonq.mo share/locale/hr/LC_MESSAGES/searchbarplugin.mo share/locale/hr/LC_MESSAGES/uachangerplugin.mo +share/locale/hsb/LC_MESSAGES/kcmbookmarks.mo +share/locale/hsb/LC_MESSAGES/kcmkonq.mo +share/locale/hsb/LC_MESSAGES/kcmkonqhtml.mo +share/locale/hsb/LC_MESSAGES/kcmperformance.mo +share/locale/hsb/LC_MESSAGES/kfmclient.mo +share/locale/hsb/LC_MESSAGES/kgetplugin.mo +share/locale/hsb/LC_MESSAGES/khtmltts.mo +share/locale/hsb/LC_MESSAGES/konqueror.mo +share/locale/hsb/LC_MESSAGES/kshellcmdplugin.mo +share/locale/hsb/LC_MESSAGES/libkonq.mo +share/locale/hsb/LC_MESSAGES/webenginepart.mo share/locale/hu/LC_MESSAGES/akregator_konqplugin.mo share/locale/hu/LC_MESSAGES/autorefresh.mo share/locale/hu/LC_MESSAGES/babelfish.mo share/locale/hu/LC_MESSAGES/dirfilterplugin.mo share/locale/hu/LC_MESSAGES/fsview.mo share/locale/hu/LC_MESSAGES/imgalleryplugin.mo share/locale/hu/LC_MESSAGES/kcmbookmarks.mo share/locale/hu/LC_MESSAGES/kcmkonq.mo share/locale/hu/LC_MESSAGES/kcmkonqhtml.mo share/locale/hu/LC_MESSAGES/kcmperformance.mo share/locale/hu/LC_MESSAGES/kfmclient.mo share/locale/hu/LC_MESSAGES/kgetplugin.mo share/locale/hu/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/hu/LC_MESSAGES/khtmltts.mo share/locale/hu/LC_MESSAGES/konqueror.mo share/locale/hu/LC_MESSAGES/kshellcmdplugin.mo share/locale/hu/LC_MESSAGES/libkonq.mo share/locale/hu/LC_MESSAGES/searchbarplugin.mo share/locale/hu/LC_MESSAGES/uachangerplugin.mo share/locale/hu/LC_MESSAGES/webenginepart.mo share/locale/ia/LC_MESSAGES/akregator_konqplugin.mo share/locale/ia/LC_MESSAGES/autorefresh.mo share/locale/ia/LC_MESSAGES/babelfish.mo share/locale/ia/LC_MESSAGES/dirfilterplugin.mo share/locale/ia/LC_MESSAGES/fsview.mo share/locale/ia/LC_MESSAGES/imgalleryplugin.mo share/locale/ia/LC_MESSAGES/kcmbookmarks.mo share/locale/ia/LC_MESSAGES/kcmkonq.mo share/locale/ia/LC_MESSAGES/kcmkonqhtml.mo share/locale/ia/LC_MESSAGES/kcmperformance.mo share/locale/ia/LC_MESSAGES/kfmclient.mo share/locale/ia/LC_MESSAGES/kgetplugin.mo share/locale/ia/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ia/LC_MESSAGES/khtmltts.mo share/locale/ia/LC_MESSAGES/konqueror.mo share/locale/ia/LC_MESSAGES/kshellcmdplugin.mo share/locale/ia/LC_MESSAGES/libkonq.mo share/locale/ia/LC_MESSAGES/searchbarplugin.mo share/locale/ia/LC_MESSAGES/uachangerplugin.mo share/locale/ia/LC_MESSAGES/webarchiver.mo share/locale/ia/LC_MESSAGES/webenginepart.mo share/locale/id/LC_MESSAGES/akregator_konqplugin.mo share/locale/id/LC_MESSAGES/autorefresh.mo share/locale/id/LC_MESSAGES/babelfish.mo share/locale/id/LC_MESSAGES/dirfilterplugin.mo share/locale/id/LC_MESSAGES/fsview.mo share/locale/id/LC_MESSAGES/imgalleryplugin.mo share/locale/id/LC_MESSAGES/kcmbookmarks.mo share/locale/id/LC_MESSAGES/kcmkonq.mo share/locale/id/LC_MESSAGES/kcmkonqhtml.mo share/locale/id/LC_MESSAGES/kcmperformance.mo share/locale/id/LC_MESSAGES/kfmclient.mo share/locale/id/LC_MESSAGES/kgetplugin.mo share/locale/id/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/id/LC_MESSAGES/khtmltts.mo share/locale/id/LC_MESSAGES/konqueror.mo share/locale/id/LC_MESSAGES/kshellcmdplugin.mo share/locale/id/LC_MESSAGES/libkonq.mo share/locale/id/LC_MESSAGES/searchbarplugin.mo share/locale/id/LC_MESSAGES/uachangerplugin.mo share/locale/id/LC_MESSAGES/webarchiver.mo share/locale/id/LC_MESSAGES/webenginepart.mo share/locale/is/LC_MESSAGES/akregator_konqplugin.mo share/locale/is/LC_MESSAGES/autorefresh.mo share/locale/is/LC_MESSAGES/babelfish.mo share/locale/is/LC_MESSAGES/dirfilterplugin.mo share/locale/is/LC_MESSAGES/fsview.mo share/locale/is/LC_MESSAGES/imgalleryplugin.mo share/locale/is/LC_MESSAGES/kcmbookmarks.mo share/locale/is/LC_MESSAGES/kcmkonq.mo share/locale/is/LC_MESSAGES/kcmkonqhtml.mo share/locale/is/LC_MESSAGES/kcmperformance.mo share/locale/is/LC_MESSAGES/kfmclient.mo share/locale/is/LC_MESSAGES/kgetplugin.mo share/locale/is/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/is/LC_MESSAGES/khtmltts.mo share/locale/is/LC_MESSAGES/konqueror.mo share/locale/is/LC_MESSAGES/kshellcmdplugin.mo share/locale/is/LC_MESSAGES/libkonq.mo share/locale/is/LC_MESSAGES/searchbarplugin.mo share/locale/is/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/akregator_konqplugin.mo share/locale/it/LC_MESSAGES/autorefresh.mo share/locale/it/LC_MESSAGES/babelfish.mo share/locale/it/LC_MESSAGES/dirfilterplugin.mo share/locale/it/LC_MESSAGES/fsview.mo share/locale/it/LC_MESSAGES/imgalleryplugin.mo share/locale/it/LC_MESSAGES/kcmbookmarks.mo share/locale/it/LC_MESSAGES/kcmkonq.mo share/locale/it/LC_MESSAGES/kcmkonqhtml.mo share/locale/it/LC_MESSAGES/kcmperformance.mo share/locale/it/LC_MESSAGES/kfmclient.mo share/locale/it/LC_MESSAGES/kgetplugin.mo share/locale/it/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/it/LC_MESSAGES/khtmltts.mo share/locale/it/LC_MESSAGES/konqueror.mo share/locale/it/LC_MESSAGES/kshellcmdplugin.mo share/locale/it/LC_MESSAGES/libkonq.mo share/locale/it/LC_MESSAGES/searchbarplugin.mo share/locale/it/LC_MESSAGES/uachangerplugin.mo share/locale/it/LC_MESSAGES/webarchiver.mo share/locale/it/LC_MESSAGES/webenginepart.mo share/locale/ja/LC_MESSAGES/akregator_konqplugin.mo share/locale/ja/LC_MESSAGES/autorefresh.mo share/locale/ja/LC_MESSAGES/babelfish.mo share/locale/ja/LC_MESSAGES/dirfilterplugin.mo share/locale/ja/LC_MESSAGES/fsview.mo share/locale/ja/LC_MESSAGES/imgalleryplugin.mo share/locale/ja/LC_MESSAGES/kcmbookmarks.mo share/locale/ja/LC_MESSAGES/kcmkonq.mo share/locale/ja/LC_MESSAGES/kcmkonqhtml.mo share/locale/ja/LC_MESSAGES/kcmperformance.mo share/locale/ja/LC_MESSAGES/kfmclient.mo share/locale/ja/LC_MESSAGES/kgetplugin.mo share/locale/ja/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ja/LC_MESSAGES/khtmltts.mo share/locale/ja/LC_MESSAGES/konqueror.mo share/locale/ja/LC_MESSAGES/kshellcmdplugin.mo share/locale/ja/LC_MESSAGES/libkonq.mo share/locale/ja/LC_MESSAGES/searchbarplugin.mo share/locale/ja/LC_MESSAGES/uachangerplugin.mo share/locale/ja/LC_MESSAGES/webarchiver.mo share/locale/ja/LC_MESSAGES/webenginepart.mo +share/locale/ka/LC_MESSAGES/akregator_konqplugin.mo +share/locale/ka/LC_MESSAGES/autorefresh.mo +share/locale/ka/LC_MESSAGES/babelfish.mo +share/locale/ka/LC_MESSAGES/dirfilterplugin.mo +share/locale/ka/LC_MESSAGES/fsview.mo +share/locale/ka/LC_MESSAGES/imgalleryplugin.mo +share/locale/ka/LC_MESSAGES/kcmbookmarks.mo +share/locale/ka/LC_MESSAGES/kcmkonq.mo +share/locale/ka/LC_MESSAGES/kcmkonqhtml.mo +share/locale/ka/LC_MESSAGES/kcmperformance.mo +share/locale/ka/LC_MESSAGES/kfmclient.mo +share/locale/ka/LC_MESSAGES/kgetplugin.mo +share/locale/ka/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/ka/LC_MESSAGES/khtmltts.mo +share/locale/ka/LC_MESSAGES/konqueror.mo +share/locale/ka/LC_MESSAGES/kshellcmdplugin.mo +share/locale/ka/LC_MESSAGES/libkonq.mo +share/locale/ka/LC_MESSAGES/searchbarplugin.mo +share/locale/ka/LC_MESSAGES/uachangerplugin.mo +share/locale/ka/LC_MESSAGES/webarchiver.mo +share/locale/ka/LC_MESSAGES/webenginepart.mo share/locale/kk/LC_MESSAGES/akregator_konqplugin.mo share/locale/kk/LC_MESSAGES/autorefresh.mo share/locale/kk/LC_MESSAGES/babelfish.mo share/locale/kk/LC_MESSAGES/dirfilterplugin.mo share/locale/kk/LC_MESSAGES/fsview.mo share/locale/kk/LC_MESSAGES/imgalleryplugin.mo share/locale/kk/LC_MESSAGES/kcmbookmarks.mo share/locale/kk/LC_MESSAGES/kcmkonq.mo share/locale/kk/LC_MESSAGES/kcmkonqhtml.mo share/locale/kk/LC_MESSAGES/kcmperformance.mo share/locale/kk/LC_MESSAGES/kfmclient.mo share/locale/kk/LC_MESSAGES/kgetplugin.mo share/locale/kk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/kk/LC_MESSAGES/khtmltts.mo share/locale/kk/LC_MESSAGES/konqueror.mo share/locale/kk/LC_MESSAGES/kshellcmdplugin.mo share/locale/kk/LC_MESSAGES/libkonq.mo share/locale/kk/LC_MESSAGES/searchbarplugin.mo share/locale/kk/LC_MESSAGES/uachangerplugin.mo share/locale/kk/LC_MESSAGES/webenginepart.mo share/locale/km/LC_MESSAGES/akregator_konqplugin.mo share/locale/km/LC_MESSAGES/autorefresh.mo share/locale/km/LC_MESSAGES/babelfish.mo share/locale/km/LC_MESSAGES/dirfilterplugin.mo share/locale/km/LC_MESSAGES/fsview.mo share/locale/km/LC_MESSAGES/imgalleryplugin.mo share/locale/km/LC_MESSAGES/kcmbookmarks.mo share/locale/km/LC_MESSAGES/kcmkonq.mo share/locale/km/LC_MESSAGES/kcmkonqhtml.mo share/locale/km/LC_MESSAGES/kcmperformance.mo share/locale/km/LC_MESSAGES/kfmclient.mo share/locale/km/LC_MESSAGES/kgetplugin.mo share/locale/km/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/km/LC_MESSAGES/khtmltts.mo share/locale/km/LC_MESSAGES/konqueror.mo share/locale/km/LC_MESSAGES/kshellcmdplugin.mo share/locale/km/LC_MESSAGES/libkonq.mo share/locale/km/LC_MESSAGES/searchbarplugin.mo share/locale/km/LC_MESSAGES/uachangerplugin.mo share/locale/km/LC_MESSAGES/webenginepart.mo +share/locale/kn/LC_MESSAGES/kcmbookmarks.mo +share/locale/kn/LC_MESSAGES/kcmkonq.mo +share/locale/kn/LC_MESSAGES/kcmkonqhtml.mo +share/locale/kn/LC_MESSAGES/kcmperformance.mo +share/locale/kn/LC_MESSAGES/khtmltts.mo +share/locale/kn/LC_MESSAGES/konqueror.mo +share/locale/kn/LC_MESSAGES/kshellcmdplugin.mo +share/locale/kn/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/akregator_konqplugin.mo share/locale/ko/LC_MESSAGES/autorefresh.mo share/locale/ko/LC_MESSAGES/babelfish.mo share/locale/ko/LC_MESSAGES/dirfilterplugin.mo share/locale/ko/LC_MESSAGES/fsview.mo share/locale/ko/LC_MESSAGES/imgalleryplugin.mo share/locale/ko/LC_MESSAGES/kcmbookmarks.mo share/locale/ko/LC_MESSAGES/kcmkonq.mo share/locale/ko/LC_MESSAGES/kcmkonqhtml.mo share/locale/ko/LC_MESSAGES/kcmperformance.mo share/locale/ko/LC_MESSAGES/kfmclient.mo share/locale/ko/LC_MESSAGES/kgetplugin.mo share/locale/ko/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ko/LC_MESSAGES/khtmltts.mo share/locale/ko/LC_MESSAGES/konqueror.mo share/locale/ko/LC_MESSAGES/kshellcmdplugin.mo share/locale/ko/LC_MESSAGES/libkonq.mo share/locale/ko/LC_MESSAGES/searchbarplugin.mo share/locale/ko/LC_MESSAGES/uachangerplugin.mo share/locale/ko/LC_MESSAGES/webarchiver.mo share/locale/ko/LC_MESSAGES/webenginepart.mo +share/locale/ku/LC_MESSAGES/akregator_konqplugin.mo +share/locale/ku/LC_MESSAGES/autorefresh.mo +share/locale/ku/LC_MESSAGES/babelfish.mo +share/locale/ku/LC_MESSAGES/dirfilterplugin.mo +share/locale/ku/LC_MESSAGES/fsview.mo +share/locale/ku/LC_MESSAGES/imgalleryplugin.mo +share/locale/ku/LC_MESSAGES/kcmbookmarks.mo +share/locale/ku/LC_MESSAGES/kcmkonq.mo +share/locale/ku/LC_MESSAGES/kcmkonqhtml.mo +share/locale/ku/LC_MESSAGES/kcmperformance.mo +share/locale/ku/LC_MESSAGES/kfmclient.mo +share/locale/ku/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/ku/LC_MESSAGES/khtmltts.mo +share/locale/ku/LC_MESSAGES/konqueror.mo +share/locale/ku/LC_MESSAGES/kshellcmdplugin.mo +share/locale/ku/LC_MESSAGES/libkonq.mo +share/locale/ku/LC_MESSAGES/searchbarplugin.mo +share/locale/ku/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/akregator_konqplugin.mo share/locale/lt/LC_MESSAGES/autorefresh.mo share/locale/lt/LC_MESSAGES/babelfish.mo share/locale/lt/LC_MESSAGES/dirfilterplugin.mo share/locale/lt/LC_MESSAGES/fsview.mo share/locale/lt/LC_MESSAGES/imgalleryplugin.mo share/locale/lt/LC_MESSAGES/kcmbookmarks.mo share/locale/lt/LC_MESSAGES/kcmkonq.mo share/locale/lt/LC_MESSAGES/kcmkonqhtml.mo share/locale/lt/LC_MESSAGES/kcmperformance.mo share/locale/lt/LC_MESSAGES/kfmclient.mo share/locale/lt/LC_MESSAGES/kgetplugin.mo share/locale/lt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lt/LC_MESSAGES/khtmltts.mo share/locale/lt/LC_MESSAGES/konqueror.mo share/locale/lt/LC_MESSAGES/kshellcmdplugin.mo share/locale/lt/LC_MESSAGES/libkonq.mo share/locale/lt/LC_MESSAGES/searchbarplugin.mo share/locale/lt/LC_MESSAGES/uachangerplugin.mo share/locale/lt/LC_MESSAGES/webarchiver.mo share/locale/lt/LC_MESSAGES/webenginepart.mo share/locale/lv/LC_MESSAGES/akregator_konqplugin.mo share/locale/lv/LC_MESSAGES/autorefresh.mo share/locale/lv/LC_MESSAGES/babelfish.mo share/locale/lv/LC_MESSAGES/dirfilterplugin.mo share/locale/lv/LC_MESSAGES/fsview.mo share/locale/lv/LC_MESSAGES/imgalleryplugin.mo share/locale/lv/LC_MESSAGES/kcmbookmarks.mo share/locale/lv/LC_MESSAGES/kcmkonq.mo share/locale/lv/LC_MESSAGES/kcmkonqhtml.mo share/locale/lv/LC_MESSAGES/kcmperformance.mo share/locale/lv/LC_MESSAGES/kfmclient.mo share/locale/lv/LC_MESSAGES/kgetplugin.mo share/locale/lv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/lv/LC_MESSAGES/khtmltts.mo share/locale/lv/LC_MESSAGES/konqueror.mo share/locale/lv/LC_MESSAGES/kshellcmdplugin.mo share/locale/lv/LC_MESSAGES/libkonq.mo share/locale/lv/LC_MESSAGES/searchbarplugin.mo share/locale/lv/LC_MESSAGES/uachangerplugin.mo +share/locale/mai/LC_MESSAGES/akregator_konqplugin.mo +share/locale/mai/LC_MESSAGES/autorefresh.mo +share/locale/mai/LC_MESSAGES/babelfish.mo +share/locale/mai/LC_MESSAGES/dirfilterplugin.mo +share/locale/mai/LC_MESSAGES/fsview.mo +share/locale/mai/LC_MESSAGES/imgalleryplugin.mo +share/locale/mai/LC_MESSAGES/kcmbookmarks.mo +share/locale/mai/LC_MESSAGES/kcmkonq.mo +share/locale/mai/LC_MESSAGES/kcmkonqhtml.mo +share/locale/mai/LC_MESSAGES/kcmperformance.mo +share/locale/mai/LC_MESSAGES/kfmclient.mo +share/locale/mai/LC_MESSAGES/kgetplugin.mo +share/locale/mai/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/mai/LC_MESSAGES/khtmltts.mo +share/locale/mai/LC_MESSAGES/konqueror.mo +share/locale/mai/LC_MESSAGES/kshellcmdplugin.mo +share/locale/mai/LC_MESSAGES/libkonq.mo +share/locale/mai/LC_MESSAGES/searchbarplugin.mo +share/locale/mai/LC_MESSAGES/uachangerplugin.mo +share/locale/mai/LC_MESSAGES/webenginepart.mo +share/locale/mk/LC_MESSAGES/akregator_konqplugin.mo +share/locale/mk/LC_MESSAGES/autorefresh.mo +share/locale/mk/LC_MESSAGES/babelfish.mo +share/locale/mk/LC_MESSAGES/dirfilterplugin.mo +share/locale/mk/LC_MESSAGES/fsview.mo +share/locale/mk/LC_MESSAGES/imgalleryplugin.mo +share/locale/mk/LC_MESSAGES/kcmbookmarks.mo +share/locale/mk/LC_MESSAGES/kcmkonq.mo +share/locale/mk/LC_MESSAGES/kcmkonqhtml.mo +share/locale/mk/LC_MESSAGES/kcmperformance.mo +share/locale/mk/LC_MESSAGES/kfmclient.mo +share/locale/mk/LC_MESSAGES/kgetplugin.mo +share/locale/mk/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/mk/LC_MESSAGES/khtmltts.mo +share/locale/mk/LC_MESSAGES/konqueror.mo +share/locale/mk/LC_MESSAGES/kshellcmdplugin.mo +share/locale/mk/LC_MESSAGES/libkonq.mo +share/locale/mk/LC_MESSAGES/searchbarplugin.mo +share/locale/mk/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/akregator_konqplugin.mo share/locale/ml/LC_MESSAGES/autorefresh.mo share/locale/ml/LC_MESSAGES/babelfish.mo share/locale/ml/LC_MESSAGES/dirfilterplugin.mo share/locale/ml/LC_MESSAGES/fsview.mo share/locale/ml/LC_MESSAGES/imgalleryplugin.mo share/locale/ml/LC_MESSAGES/kcmbookmarks.mo share/locale/ml/LC_MESSAGES/kcmkonq.mo share/locale/ml/LC_MESSAGES/kcmkonqhtml.mo share/locale/ml/LC_MESSAGES/kcmperformance.mo share/locale/ml/LC_MESSAGES/kfmclient.mo share/locale/ml/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ml/LC_MESSAGES/khtmltts.mo share/locale/ml/LC_MESSAGES/konqueror.mo share/locale/ml/LC_MESSAGES/kshellcmdplugin.mo share/locale/ml/LC_MESSAGES/libkonq.mo share/locale/ml/LC_MESSAGES/searchbarplugin.mo share/locale/ml/LC_MESSAGES/uachangerplugin.mo share/locale/ml/LC_MESSAGES/webenginepart.mo share/locale/mr/LC_MESSAGES/akregator_konqplugin.mo share/locale/mr/LC_MESSAGES/autorefresh.mo share/locale/mr/LC_MESSAGES/babelfish.mo share/locale/mr/LC_MESSAGES/dirfilterplugin.mo share/locale/mr/LC_MESSAGES/fsview.mo share/locale/mr/LC_MESSAGES/imgalleryplugin.mo share/locale/mr/LC_MESSAGES/kcmbookmarks.mo share/locale/mr/LC_MESSAGES/kcmkonq.mo share/locale/mr/LC_MESSAGES/kcmkonqhtml.mo share/locale/mr/LC_MESSAGES/kcmperformance.mo share/locale/mr/LC_MESSAGES/kfmclient.mo share/locale/mr/LC_MESSAGES/kgetplugin.mo share/locale/mr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/mr/LC_MESSAGES/khtmltts.mo share/locale/mr/LC_MESSAGES/konqueror.mo share/locale/mr/LC_MESSAGES/kshellcmdplugin.mo share/locale/mr/LC_MESSAGES/libkonq.mo share/locale/mr/LC_MESSAGES/searchbarplugin.mo share/locale/mr/LC_MESSAGES/uachangerplugin.mo share/locale/mr/LC_MESSAGES/webenginepart.mo +share/locale/ms/LC_MESSAGES/akregator_konqplugin.mo +share/locale/ms/LC_MESSAGES/autorefresh.mo +share/locale/ms/LC_MESSAGES/babelfish.mo +share/locale/ms/LC_MESSAGES/dirfilterplugin.mo +share/locale/ms/LC_MESSAGES/fsview.mo +share/locale/ms/LC_MESSAGES/imgalleryplugin.mo +share/locale/ms/LC_MESSAGES/kcmbookmarks.mo +share/locale/ms/LC_MESSAGES/kcmkonq.mo +share/locale/ms/LC_MESSAGES/kcmkonqhtml.mo +share/locale/ms/LC_MESSAGES/kcmperformance.mo +share/locale/ms/LC_MESSAGES/kfmclient.mo +share/locale/ms/LC_MESSAGES/kgetplugin.mo +share/locale/ms/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/ms/LC_MESSAGES/khtmltts.mo +share/locale/ms/LC_MESSAGES/konqueror.mo +share/locale/ms/LC_MESSAGES/kshellcmdplugin.mo +share/locale/ms/LC_MESSAGES/libkonq.mo +share/locale/ms/LC_MESSAGES/searchbarplugin.mo +share/locale/ms/LC_MESSAGES/uachangerplugin.mo +share/locale/ms/LC_MESSAGES/webenginepart.mo +share/locale/my/LC_MESSAGES/akregator_konqplugin.mo +share/locale/my/LC_MESSAGES/autorefresh.mo +share/locale/my/LC_MESSAGES/babelfish.mo +share/locale/my/LC_MESSAGES/dirfilterplugin.mo +share/locale/my/LC_MESSAGES/fsview.mo +share/locale/my/LC_MESSAGES/imgalleryplugin.mo +share/locale/my/LC_MESSAGES/kcmbookmarks.mo +share/locale/my/LC_MESSAGES/kcmkonq.mo +share/locale/my/LC_MESSAGES/kcmkonqhtml.mo +share/locale/my/LC_MESSAGES/kcmperformance.mo +share/locale/my/LC_MESSAGES/kfmclient.mo +share/locale/my/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/my/LC_MESSAGES/khtmltts.mo +share/locale/my/LC_MESSAGES/konqueror.mo +share/locale/my/LC_MESSAGES/kshellcmdplugin.mo +share/locale/my/LC_MESSAGES/libkonq.mo +share/locale/my/LC_MESSAGES/searchbarplugin.mo +share/locale/my/LC_MESSAGES/uachangerplugin.mo +share/locale/my/LC_MESSAGES/webarchiver.mo +share/locale/my/LC_MESSAGES/webenginepart.mo share/locale/nb/LC_MESSAGES/akregator_konqplugin.mo share/locale/nb/LC_MESSAGES/autorefresh.mo share/locale/nb/LC_MESSAGES/babelfish.mo share/locale/nb/LC_MESSAGES/dirfilterplugin.mo share/locale/nb/LC_MESSAGES/fsview.mo share/locale/nb/LC_MESSAGES/imgalleryplugin.mo share/locale/nb/LC_MESSAGES/kcmbookmarks.mo share/locale/nb/LC_MESSAGES/kcmkonq.mo share/locale/nb/LC_MESSAGES/kcmkonqhtml.mo share/locale/nb/LC_MESSAGES/kcmperformance.mo share/locale/nb/LC_MESSAGES/kfmclient.mo share/locale/nb/LC_MESSAGES/kgetplugin.mo share/locale/nb/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nb/LC_MESSAGES/khtmltts.mo share/locale/nb/LC_MESSAGES/konqueror.mo share/locale/nb/LC_MESSAGES/kshellcmdplugin.mo share/locale/nb/LC_MESSAGES/libkonq.mo share/locale/nb/LC_MESSAGES/searchbarplugin.mo share/locale/nb/LC_MESSAGES/uachangerplugin.mo share/locale/nb/LC_MESSAGES/webenginepart.mo share/locale/nds/LC_MESSAGES/akregator_konqplugin.mo share/locale/nds/LC_MESSAGES/autorefresh.mo share/locale/nds/LC_MESSAGES/babelfish.mo share/locale/nds/LC_MESSAGES/dirfilterplugin.mo share/locale/nds/LC_MESSAGES/fsview.mo share/locale/nds/LC_MESSAGES/imgalleryplugin.mo share/locale/nds/LC_MESSAGES/kcmbookmarks.mo share/locale/nds/LC_MESSAGES/kcmkonq.mo share/locale/nds/LC_MESSAGES/kcmkonqhtml.mo share/locale/nds/LC_MESSAGES/kcmperformance.mo share/locale/nds/LC_MESSAGES/kfmclient.mo share/locale/nds/LC_MESSAGES/kgetplugin.mo share/locale/nds/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nds/LC_MESSAGES/khtmltts.mo share/locale/nds/LC_MESSAGES/konqueror.mo share/locale/nds/LC_MESSAGES/kshellcmdplugin.mo share/locale/nds/LC_MESSAGES/libkonq.mo share/locale/nds/LC_MESSAGES/searchbarplugin.mo share/locale/nds/LC_MESSAGES/uachangerplugin.mo share/locale/nds/LC_MESSAGES/webenginepart.mo +share/locale/ne/LC_MESSAGES/akregator_konqplugin.mo +share/locale/ne/LC_MESSAGES/autorefresh.mo +share/locale/ne/LC_MESSAGES/babelfish.mo +share/locale/ne/LC_MESSAGES/dirfilterplugin.mo +share/locale/ne/LC_MESSAGES/fsview.mo +share/locale/ne/LC_MESSAGES/imgalleryplugin.mo +share/locale/ne/LC_MESSAGES/kcmbookmarks.mo +share/locale/ne/LC_MESSAGES/kcmkonq.mo +share/locale/ne/LC_MESSAGES/kcmkonqhtml.mo +share/locale/ne/LC_MESSAGES/kcmperformance.mo +share/locale/ne/LC_MESSAGES/kfmclient.mo +share/locale/ne/LC_MESSAGES/kgetplugin.mo +share/locale/ne/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/ne/LC_MESSAGES/khtmltts.mo +share/locale/ne/LC_MESSAGES/konqueror.mo +share/locale/ne/LC_MESSAGES/kshellcmdplugin.mo +share/locale/ne/LC_MESSAGES/libkonq.mo +share/locale/ne/LC_MESSAGES/searchbarplugin.mo +share/locale/ne/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/akregator_konqplugin.mo share/locale/nl/LC_MESSAGES/autorefresh.mo share/locale/nl/LC_MESSAGES/babelfish.mo share/locale/nl/LC_MESSAGES/dirfilterplugin.mo share/locale/nl/LC_MESSAGES/fsview.mo share/locale/nl/LC_MESSAGES/imgalleryplugin.mo share/locale/nl/LC_MESSAGES/kcmbookmarks.mo share/locale/nl/LC_MESSAGES/kcmkonq.mo share/locale/nl/LC_MESSAGES/kcmkonqhtml.mo share/locale/nl/LC_MESSAGES/kcmperformance.mo share/locale/nl/LC_MESSAGES/kfmclient.mo share/locale/nl/LC_MESSAGES/kgetplugin.mo share/locale/nl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nl/LC_MESSAGES/khtmltts.mo share/locale/nl/LC_MESSAGES/konqueror.mo share/locale/nl/LC_MESSAGES/kshellcmdplugin.mo share/locale/nl/LC_MESSAGES/libkonq.mo share/locale/nl/LC_MESSAGES/searchbarplugin.mo share/locale/nl/LC_MESSAGES/uachangerplugin.mo share/locale/nl/LC_MESSAGES/webarchiver.mo share/locale/nl/LC_MESSAGES/webenginepart.mo share/locale/nn/LC_MESSAGES/akregator_konqplugin.mo share/locale/nn/LC_MESSAGES/autorefresh.mo share/locale/nn/LC_MESSAGES/babelfish.mo share/locale/nn/LC_MESSAGES/dirfilterplugin.mo share/locale/nn/LC_MESSAGES/fsview.mo share/locale/nn/LC_MESSAGES/imgalleryplugin.mo share/locale/nn/LC_MESSAGES/kcmbookmarks.mo share/locale/nn/LC_MESSAGES/kcmkonq.mo share/locale/nn/LC_MESSAGES/kcmkonqhtml.mo share/locale/nn/LC_MESSAGES/kcmperformance.mo share/locale/nn/LC_MESSAGES/kfmclient.mo share/locale/nn/LC_MESSAGES/kgetplugin.mo share/locale/nn/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/nn/LC_MESSAGES/khtmltts.mo share/locale/nn/LC_MESSAGES/konqueror.mo share/locale/nn/LC_MESSAGES/kshellcmdplugin.mo share/locale/nn/LC_MESSAGES/libkonq.mo share/locale/nn/LC_MESSAGES/searchbarplugin.mo share/locale/nn/LC_MESSAGES/uachangerplugin.mo share/locale/nn/LC_MESSAGES/webarchiver.mo share/locale/nn/LC_MESSAGES/webenginepart.mo +share/locale/oc/LC_MESSAGES/akregator_konqplugin.mo +share/locale/oc/LC_MESSAGES/autorefresh.mo +share/locale/oc/LC_MESSAGES/babelfish.mo +share/locale/oc/LC_MESSAGES/dirfilterplugin.mo +share/locale/oc/LC_MESSAGES/fsview.mo +share/locale/oc/LC_MESSAGES/imgalleryplugin.mo +share/locale/oc/LC_MESSAGES/kcmbookmarks.mo +share/locale/oc/LC_MESSAGES/kcmkonq.mo +share/locale/oc/LC_MESSAGES/kcmkonqhtml.mo +share/locale/oc/LC_MESSAGES/kcmperformance.mo +share/locale/oc/LC_MESSAGES/kfmclient.mo +share/locale/oc/LC_MESSAGES/kgetplugin.mo +share/locale/oc/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/oc/LC_MESSAGES/khtmltts.mo +share/locale/oc/LC_MESSAGES/konqueror.mo +share/locale/oc/LC_MESSAGES/kshellcmdplugin.mo +share/locale/oc/LC_MESSAGES/libkonq.mo +share/locale/oc/LC_MESSAGES/searchbarplugin.mo +share/locale/oc/LC_MESSAGES/uachangerplugin.mo +share/locale/or/LC_MESSAGES/kcmbookmarks.mo +share/locale/or/LC_MESSAGES/kcmkonq.mo +share/locale/or/LC_MESSAGES/kcmkonqhtml.mo +share/locale/or/LC_MESSAGES/kcmperformance.mo +share/locale/or/LC_MESSAGES/kfmclient.mo +share/locale/or/LC_MESSAGES/khtmltts.mo +share/locale/or/LC_MESSAGES/konqueror.mo +share/locale/or/LC_MESSAGES/kshellcmdplugin.mo +share/locale/or/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/akregator_konqplugin.mo share/locale/pa/LC_MESSAGES/autorefresh.mo share/locale/pa/LC_MESSAGES/babelfish.mo share/locale/pa/LC_MESSAGES/dirfilterplugin.mo share/locale/pa/LC_MESSAGES/fsview.mo share/locale/pa/LC_MESSAGES/imgalleryplugin.mo share/locale/pa/LC_MESSAGES/kcmbookmarks.mo share/locale/pa/LC_MESSAGES/kcmkonq.mo share/locale/pa/LC_MESSAGES/kcmkonqhtml.mo share/locale/pa/LC_MESSAGES/kcmperformance.mo share/locale/pa/LC_MESSAGES/kfmclient.mo share/locale/pa/LC_MESSAGES/kgetplugin.mo share/locale/pa/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pa/LC_MESSAGES/khtmltts.mo share/locale/pa/LC_MESSAGES/konqueror.mo share/locale/pa/LC_MESSAGES/kshellcmdplugin.mo share/locale/pa/LC_MESSAGES/libkonq.mo share/locale/pa/LC_MESSAGES/searchbarplugin.mo share/locale/pa/LC_MESSAGES/uachangerplugin.mo share/locale/pa/LC_MESSAGES/webenginepart.mo share/locale/pl/LC_MESSAGES/akregator_konqplugin.mo share/locale/pl/LC_MESSAGES/autorefresh.mo share/locale/pl/LC_MESSAGES/babelfish.mo share/locale/pl/LC_MESSAGES/dirfilterplugin.mo share/locale/pl/LC_MESSAGES/fsview.mo share/locale/pl/LC_MESSAGES/imgalleryplugin.mo share/locale/pl/LC_MESSAGES/kcmbookmarks.mo share/locale/pl/LC_MESSAGES/kcmkonq.mo share/locale/pl/LC_MESSAGES/kcmkonqhtml.mo share/locale/pl/LC_MESSAGES/kcmperformance.mo share/locale/pl/LC_MESSAGES/kfmclient.mo share/locale/pl/LC_MESSAGES/kgetplugin.mo share/locale/pl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pl/LC_MESSAGES/khtmltts.mo share/locale/pl/LC_MESSAGES/konqueror.mo share/locale/pl/LC_MESSAGES/kshellcmdplugin.mo share/locale/pl/LC_MESSAGES/libkonq.mo share/locale/pl/LC_MESSAGES/searchbarplugin.mo share/locale/pl/LC_MESSAGES/uachangerplugin.mo share/locale/pl/LC_MESSAGES/webarchiver.mo share/locale/pl/LC_MESSAGES/webenginepart.mo share/locale/pt/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt/LC_MESSAGES/autorefresh.mo share/locale/pt/LC_MESSAGES/babelfish.mo share/locale/pt/LC_MESSAGES/dirfilterplugin.mo share/locale/pt/LC_MESSAGES/fsview.mo share/locale/pt/LC_MESSAGES/imgalleryplugin.mo share/locale/pt/LC_MESSAGES/kcmbookmarks.mo share/locale/pt/LC_MESSAGES/kcmkonq.mo share/locale/pt/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt/LC_MESSAGES/kcmperformance.mo share/locale/pt/LC_MESSAGES/kfmclient.mo share/locale/pt/LC_MESSAGES/kgetplugin.mo share/locale/pt/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt/LC_MESSAGES/khtmltts.mo share/locale/pt/LC_MESSAGES/konqueror.mo share/locale/pt/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt/LC_MESSAGES/libkonq.mo share/locale/pt/LC_MESSAGES/searchbarplugin.mo share/locale/pt/LC_MESSAGES/uachangerplugin.mo share/locale/pt/LC_MESSAGES/webarchiver.mo share/locale/pt/LC_MESSAGES/webenginepart.mo share/locale/pt_BR/LC_MESSAGES/akregator_konqplugin.mo share/locale/pt_BR/LC_MESSAGES/autorefresh.mo share/locale/pt_BR/LC_MESSAGES/babelfish.mo share/locale/pt_BR/LC_MESSAGES/dirfilterplugin.mo share/locale/pt_BR/LC_MESSAGES/fsview.mo share/locale/pt_BR/LC_MESSAGES/imgalleryplugin.mo share/locale/pt_BR/LC_MESSAGES/kcmbookmarks.mo share/locale/pt_BR/LC_MESSAGES/kcmkonq.mo share/locale/pt_BR/LC_MESSAGES/kcmkonqhtml.mo share/locale/pt_BR/LC_MESSAGES/kcmperformance.mo share/locale/pt_BR/LC_MESSAGES/kfmclient.mo share/locale/pt_BR/LC_MESSAGES/kgetplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/pt_BR/LC_MESSAGES/khtmltts.mo share/locale/pt_BR/LC_MESSAGES/konqueror.mo share/locale/pt_BR/LC_MESSAGES/kshellcmdplugin.mo share/locale/pt_BR/LC_MESSAGES/libkonq.mo share/locale/pt_BR/LC_MESSAGES/searchbarplugin.mo share/locale/pt_BR/LC_MESSAGES/uachangerplugin.mo share/locale/pt_BR/LC_MESSAGES/webarchiver.mo share/locale/pt_BR/LC_MESSAGES/webenginepart.mo share/locale/ro/LC_MESSAGES/akregator_konqplugin.mo share/locale/ro/LC_MESSAGES/autorefresh.mo share/locale/ro/LC_MESSAGES/babelfish.mo share/locale/ro/LC_MESSAGES/dirfilterplugin.mo share/locale/ro/LC_MESSAGES/fsview.mo share/locale/ro/LC_MESSAGES/imgalleryplugin.mo share/locale/ro/LC_MESSAGES/kcmbookmarks.mo share/locale/ro/LC_MESSAGES/kcmkonq.mo share/locale/ro/LC_MESSAGES/kcmkonqhtml.mo share/locale/ro/LC_MESSAGES/kcmperformance.mo share/locale/ro/LC_MESSAGES/kfmclient.mo share/locale/ro/LC_MESSAGES/kgetplugin.mo share/locale/ro/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ro/LC_MESSAGES/khtmltts.mo share/locale/ro/LC_MESSAGES/konqueror.mo share/locale/ro/LC_MESSAGES/kshellcmdplugin.mo share/locale/ro/LC_MESSAGES/libkonq.mo share/locale/ro/LC_MESSAGES/searchbarplugin.mo share/locale/ro/LC_MESSAGES/uachangerplugin.mo share/locale/ro/LC_MESSAGES/webenginepart.mo share/locale/ru/LC_MESSAGES/akregator_konqplugin.mo share/locale/ru/LC_MESSAGES/autorefresh.mo share/locale/ru/LC_MESSAGES/babelfish.mo share/locale/ru/LC_MESSAGES/dirfilterplugin.mo share/locale/ru/LC_MESSAGES/fsview.mo share/locale/ru/LC_MESSAGES/imgalleryplugin.mo share/locale/ru/LC_MESSAGES/kcmbookmarks.mo share/locale/ru/LC_MESSAGES/kcmkonq.mo share/locale/ru/LC_MESSAGES/kcmkonqhtml.mo share/locale/ru/LC_MESSAGES/kcmperformance.mo share/locale/ru/LC_MESSAGES/kfmclient.mo share/locale/ru/LC_MESSAGES/kgetplugin.mo share/locale/ru/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ru/LC_MESSAGES/khtmltts.mo share/locale/ru/LC_MESSAGES/konqueror.mo share/locale/ru/LC_MESSAGES/kshellcmdplugin.mo share/locale/ru/LC_MESSAGES/libkonq.mo share/locale/ru/LC_MESSAGES/searchbarplugin.mo share/locale/ru/LC_MESSAGES/uachangerplugin.mo share/locale/ru/LC_MESSAGES/webarchiver.mo share/locale/ru/LC_MESSAGES/webenginepart.mo share/locale/se/LC_MESSAGES/akregator_konqplugin.mo share/locale/se/LC_MESSAGES/autorefresh.mo share/locale/se/LC_MESSAGES/babelfish.mo share/locale/se/LC_MESSAGES/dirfilterplugin.mo share/locale/se/LC_MESSAGES/fsview.mo share/locale/se/LC_MESSAGES/imgalleryplugin.mo share/locale/se/LC_MESSAGES/kcmbookmarks.mo share/locale/se/LC_MESSAGES/kcmkonq.mo share/locale/se/LC_MESSAGES/kcmkonqhtml.mo share/locale/se/LC_MESSAGES/kcmperformance.mo share/locale/se/LC_MESSAGES/kfmclient.mo share/locale/se/LC_MESSAGES/kgetplugin.mo share/locale/se/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/se/LC_MESSAGES/khtmltts.mo share/locale/se/LC_MESSAGES/konqueror.mo share/locale/se/LC_MESSAGES/kshellcmdplugin.mo share/locale/se/LC_MESSAGES/libkonq.mo share/locale/se/LC_MESSAGES/searchbarplugin.mo share/locale/se/LC_MESSAGES/uachangerplugin.mo +share/locale/si/LC_MESSAGES/fsview.mo +share/locale/si/LC_MESSAGES/kcmbookmarks.mo +share/locale/si/LC_MESSAGES/kcmkonq.mo +share/locale/si/LC_MESSAGES/kcmkonqhtml.mo +share/locale/si/LC_MESSAGES/kcmperformance.mo +share/locale/si/LC_MESSAGES/kfmclient.mo +share/locale/si/LC_MESSAGES/kgetplugin.mo +share/locale/si/LC_MESSAGES/khtmltts.mo +share/locale/si/LC_MESSAGES/konqueror.mo +share/locale/si/LC_MESSAGES/kshellcmdplugin.mo +share/locale/si/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/akregator_konqplugin.mo share/locale/sk/LC_MESSAGES/autorefresh.mo share/locale/sk/LC_MESSAGES/babelfish.mo share/locale/sk/LC_MESSAGES/dirfilterplugin.mo share/locale/sk/LC_MESSAGES/fsview.mo share/locale/sk/LC_MESSAGES/imgalleryplugin.mo share/locale/sk/LC_MESSAGES/kcmbookmarks.mo share/locale/sk/LC_MESSAGES/kcmkonq.mo share/locale/sk/LC_MESSAGES/kcmkonqhtml.mo share/locale/sk/LC_MESSAGES/kcmperformance.mo share/locale/sk/LC_MESSAGES/kfmclient.mo share/locale/sk/LC_MESSAGES/kgetplugin.mo share/locale/sk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sk/LC_MESSAGES/khtmltts.mo share/locale/sk/LC_MESSAGES/konqueror.mo share/locale/sk/LC_MESSAGES/kshellcmdplugin.mo share/locale/sk/LC_MESSAGES/libkonq.mo share/locale/sk/LC_MESSAGES/searchbarplugin.mo share/locale/sk/LC_MESSAGES/uachangerplugin.mo share/locale/sk/LC_MESSAGES/webarchiver.mo share/locale/sk/LC_MESSAGES/webenginepart.mo share/locale/sl/LC_MESSAGES/akregator_konqplugin.mo share/locale/sl/LC_MESSAGES/autorefresh.mo share/locale/sl/LC_MESSAGES/babelfish.mo share/locale/sl/LC_MESSAGES/dirfilterplugin.mo share/locale/sl/LC_MESSAGES/fsview.mo share/locale/sl/LC_MESSAGES/imgalleryplugin.mo share/locale/sl/LC_MESSAGES/kcmbookmarks.mo share/locale/sl/LC_MESSAGES/kcmkonq.mo share/locale/sl/LC_MESSAGES/kcmkonqhtml.mo share/locale/sl/LC_MESSAGES/kcmperformance.mo share/locale/sl/LC_MESSAGES/kfmclient.mo share/locale/sl/LC_MESSAGES/kgetplugin.mo share/locale/sl/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sl/LC_MESSAGES/khtmltts.mo share/locale/sl/LC_MESSAGES/konqueror.mo share/locale/sl/LC_MESSAGES/kshellcmdplugin.mo share/locale/sl/LC_MESSAGES/libkonq.mo share/locale/sl/LC_MESSAGES/searchbarplugin.mo share/locale/sl/LC_MESSAGES/uachangerplugin.mo share/locale/sl/LC_MESSAGES/webarchiver.mo share/locale/sl/LC_MESSAGES/webenginepart.mo share/locale/sq/LC_MESSAGES/akregator_konqplugin.mo share/locale/sq/LC_MESSAGES/autorefresh.mo share/locale/sq/LC_MESSAGES/babelfish.mo share/locale/sq/LC_MESSAGES/dirfilterplugin.mo share/locale/sq/LC_MESSAGES/fsview.mo share/locale/sq/LC_MESSAGES/imgalleryplugin.mo share/locale/sq/LC_MESSAGES/kcmbookmarks.mo share/locale/sq/LC_MESSAGES/kcmkonq.mo share/locale/sq/LC_MESSAGES/kcmkonqhtml.mo share/locale/sq/LC_MESSAGES/kcmperformance.mo share/locale/sq/LC_MESSAGES/kfmclient.mo share/locale/sq/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sq/LC_MESSAGES/khtmltts.mo share/locale/sq/LC_MESSAGES/konqueror.mo share/locale/sq/LC_MESSAGES/libkonq.mo share/locale/sq/LC_MESSAGES/searchbarplugin.mo share/locale/sq/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/akregator_konqplugin.mo share/locale/sr/LC_MESSAGES/autorefresh.mo share/locale/sr/LC_MESSAGES/babelfish.mo share/locale/sr/LC_MESSAGES/dirfilterplugin.mo share/locale/sr/LC_MESSAGES/fsview.mo share/locale/sr/LC_MESSAGES/imgalleryplugin.mo share/locale/sr/LC_MESSAGES/kcmbookmarks.mo share/locale/sr/LC_MESSAGES/kcmkonq.mo share/locale/sr/LC_MESSAGES/kcmkonqhtml.mo share/locale/sr/LC_MESSAGES/kcmperformance.mo share/locale/sr/LC_MESSAGES/kfmclient.mo share/locale/sr/LC_MESSAGES/kgetplugin.mo share/locale/sr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sr/LC_MESSAGES/khtmltts.mo share/locale/sr/LC_MESSAGES/konqueror.mo share/locale/sr/LC_MESSAGES/kshellcmdplugin.mo share/locale/sr/LC_MESSAGES/libkonq.mo share/locale/sr/LC_MESSAGES/searchbarplugin.mo share/locale/sr/LC_MESSAGES/uachangerplugin.mo share/locale/sr/LC_MESSAGES/webenginepart.mo +share/locale/sr@ijekavian/LC_MESSAGES/akregator_konqplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/autorefresh.mo +share/locale/sr@ijekavian/LC_MESSAGES/babelfish.mo +share/locale/sr@ijekavian/LC_MESSAGES/dirfilterplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/fsview.mo +share/locale/sr@ijekavian/LC_MESSAGES/imgalleryplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmbookmarks.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkonq.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmkonqhtml.mo +share/locale/sr@ijekavian/LC_MESSAGES/kcmperformance.mo +share/locale/sr@ijekavian/LC_MESSAGES/kfmclient.mo +share/locale/sr@ijekavian/LC_MESSAGES/kgetplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/khtmltts.mo +share/locale/sr@ijekavian/LC_MESSAGES/konqueror.mo +share/locale/sr@ijekavian/LC_MESSAGES/kshellcmdplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/libkonq.mo +share/locale/sr@ijekavian/LC_MESSAGES/searchbarplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/uachangerplugin.mo +share/locale/sr@ijekavian/LC_MESSAGES/webenginepart.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/akregator_konqplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/autorefresh.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/babelfish.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/dirfilterplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/fsview.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/imgalleryplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmbookmarks.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonq.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmkonqhtml.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kcmperformance.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kfmclient.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kgetplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/khtmltts.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/konqueror.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/kshellcmdplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/libkonq.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/searchbarplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/uachangerplugin.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/webenginepart.mo +share/locale/sr@latin/LC_MESSAGES/akregator_konqplugin.mo +share/locale/sr@latin/LC_MESSAGES/autorefresh.mo +share/locale/sr@latin/LC_MESSAGES/babelfish.mo +share/locale/sr@latin/LC_MESSAGES/dirfilterplugin.mo +share/locale/sr@latin/LC_MESSAGES/fsview.mo +share/locale/sr@latin/LC_MESSAGES/imgalleryplugin.mo +share/locale/sr@latin/LC_MESSAGES/kcmbookmarks.mo +share/locale/sr@latin/LC_MESSAGES/kcmkonq.mo +share/locale/sr@latin/LC_MESSAGES/kcmkonqhtml.mo +share/locale/sr@latin/LC_MESSAGES/kcmperformance.mo +share/locale/sr@latin/LC_MESSAGES/kfmclient.mo +share/locale/sr@latin/LC_MESSAGES/kgetplugin.mo +share/locale/sr@latin/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/sr@latin/LC_MESSAGES/khtmltts.mo +share/locale/sr@latin/LC_MESSAGES/konqueror.mo +share/locale/sr@latin/LC_MESSAGES/kshellcmdplugin.mo +share/locale/sr@latin/LC_MESSAGES/libkonq.mo +share/locale/sr@latin/LC_MESSAGES/searchbarplugin.mo +share/locale/sr@latin/LC_MESSAGES/uachangerplugin.mo +share/locale/sr@latin/LC_MESSAGES/webenginepart.mo share/locale/sv/LC_MESSAGES/akregator_konqplugin.mo share/locale/sv/LC_MESSAGES/autorefresh.mo share/locale/sv/LC_MESSAGES/babelfish.mo share/locale/sv/LC_MESSAGES/dirfilterplugin.mo share/locale/sv/LC_MESSAGES/fsview.mo share/locale/sv/LC_MESSAGES/imgalleryplugin.mo share/locale/sv/LC_MESSAGES/kcmbookmarks.mo share/locale/sv/LC_MESSAGES/kcmkonq.mo share/locale/sv/LC_MESSAGES/kcmkonqhtml.mo share/locale/sv/LC_MESSAGES/kcmperformance.mo share/locale/sv/LC_MESSAGES/kfmclient.mo share/locale/sv/LC_MESSAGES/kgetplugin.mo share/locale/sv/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/sv/LC_MESSAGES/khtmltts.mo share/locale/sv/LC_MESSAGES/konqueror.mo share/locale/sv/LC_MESSAGES/kshellcmdplugin.mo share/locale/sv/LC_MESSAGES/libkonq.mo share/locale/sv/LC_MESSAGES/searchbarplugin.mo share/locale/sv/LC_MESSAGES/uachangerplugin.mo share/locale/sv/LC_MESSAGES/webarchiver.mo share/locale/sv/LC_MESSAGES/webenginepart.mo share/locale/ta/LC_MESSAGES/akregator_konqplugin.mo share/locale/ta/LC_MESSAGES/autorefresh.mo share/locale/ta/LC_MESSAGES/babelfish.mo share/locale/ta/LC_MESSAGES/dirfilterplugin.mo share/locale/ta/LC_MESSAGES/fsview.mo share/locale/ta/LC_MESSAGES/imgalleryplugin.mo share/locale/ta/LC_MESSAGES/kcmbookmarks.mo share/locale/ta/LC_MESSAGES/kcmkonq.mo share/locale/ta/LC_MESSAGES/kcmkonqhtml.mo share/locale/ta/LC_MESSAGES/kcmperformance.mo share/locale/ta/LC_MESSAGES/kfmclient.mo share/locale/ta/LC_MESSAGES/kgetplugin.mo share/locale/ta/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ta/LC_MESSAGES/khtmltts.mo share/locale/ta/LC_MESSAGES/konqueror.mo share/locale/ta/LC_MESSAGES/kshellcmdplugin.mo share/locale/ta/LC_MESSAGES/libkonq.mo share/locale/ta/LC_MESSAGES/searchbarplugin.mo share/locale/ta/LC_MESSAGES/uachangerplugin.mo +share/locale/te/LC_MESSAGES/kcmbookmarks.mo +share/locale/te/LC_MESSAGES/kcmkonq.mo +share/locale/te/LC_MESSAGES/kcmkonqhtml.mo +share/locale/te/LC_MESSAGES/kcmperformance.mo +share/locale/te/LC_MESSAGES/kfmclient.mo +share/locale/te/LC_MESSAGES/khtmltts.mo +share/locale/te/LC_MESSAGES/konqueror.mo +share/locale/te/LC_MESSAGES/kshellcmdplugin.mo +share/locale/te/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/akregator_konqplugin.mo share/locale/tg/LC_MESSAGES/autorefresh.mo share/locale/tg/LC_MESSAGES/babelfish.mo share/locale/tg/LC_MESSAGES/dirfilterplugin.mo share/locale/tg/LC_MESSAGES/fsview.mo share/locale/tg/LC_MESSAGES/imgalleryplugin.mo share/locale/tg/LC_MESSAGES/kcmbookmarks.mo share/locale/tg/LC_MESSAGES/kcmkonq.mo share/locale/tg/LC_MESSAGES/kcmkonqhtml.mo share/locale/tg/LC_MESSAGES/kcmperformance.mo share/locale/tg/LC_MESSAGES/kfmclient.mo share/locale/tg/LC_MESSAGES/kgetplugin.mo share/locale/tg/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tg/LC_MESSAGES/khtmltts.mo share/locale/tg/LC_MESSAGES/konqueror.mo share/locale/tg/LC_MESSAGES/kshellcmdplugin.mo share/locale/tg/LC_MESSAGES/libkonq.mo share/locale/tg/LC_MESSAGES/searchbarplugin.mo share/locale/tg/LC_MESSAGES/uachangerplugin.mo share/locale/tg/LC_MESSAGES/webenginepart.mo +share/locale/th/LC_MESSAGES/akregator_konqplugin.mo +share/locale/th/LC_MESSAGES/autorefresh.mo +share/locale/th/LC_MESSAGES/babelfish.mo +share/locale/th/LC_MESSAGES/dirfilterplugin.mo +share/locale/th/LC_MESSAGES/fsview.mo +share/locale/th/LC_MESSAGES/imgalleryplugin.mo +share/locale/th/LC_MESSAGES/kcmbookmarks.mo +share/locale/th/LC_MESSAGES/kcmkonq.mo +share/locale/th/LC_MESSAGES/kcmkonqhtml.mo +share/locale/th/LC_MESSAGES/kcmperformance.mo +share/locale/th/LC_MESSAGES/kfmclient.mo +share/locale/th/LC_MESSAGES/kgetplugin.mo +share/locale/th/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/th/LC_MESSAGES/khtmltts.mo +share/locale/th/LC_MESSAGES/konqueror.mo +share/locale/th/LC_MESSAGES/kshellcmdplugin.mo +share/locale/th/LC_MESSAGES/libkonq.mo +share/locale/th/LC_MESSAGES/searchbarplugin.mo +share/locale/th/LC_MESSAGES/uachangerplugin.mo +share/locale/th/LC_MESSAGES/webenginepart.mo share/locale/tr/LC_MESSAGES/akregator_konqplugin.mo share/locale/tr/LC_MESSAGES/autorefresh.mo share/locale/tr/LC_MESSAGES/babelfish.mo share/locale/tr/LC_MESSAGES/dirfilterplugin.mo share/locale/tr/LC_MESSAGES/fsview.mo share/locale/tr/LC_MESSAGES/imgalleryplugin.mo share/locale/tr/LC_MESSAGES/kcmbookmarks.mo share/locale/tr/LC_MESSAGES/kcmkonq.mo share/locale/tr/LC_MESSAGES/kcmkonqhtml.mo share/locale/tr/LC_MESSAGES/kcmperformance.mo share/locale/tr/LC_MESSAGES/kfmclient.mo share/locale/tr/LC_MESSAGES/kgetplugin.mo share/locale/tr/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/tr/LC_MESSAGES/khtmltts.mo share/locale/tr/LC_MESSAGES/konqueror.mo share/locale/tr/LC_MESSAGES/kshellcmdplugin.mo share/locale/tr/LC_MESSAGES/libkonq.mo share/locale/tr/LC_MESSAGES/searchbarplugin.mo share/locale/tr/LC_MESSAGES/uachangerplugin.mo share/locale/tr/LC_MESSAGES/webarchiver.mo share/locale/tr/LC_MESSAGES/webenginepart.mo share/locale/ug/LC_MESSAGES/akregator_konqplugin.mo share/locale/ug/LC_MESSAGES/autorefresh.mo share/locale/ug/LC_MESSAGES/babelfish.mo share/locale/ug/LC_MESSAGES/dirfilterplugin.mo share/locale/ug/LC_MESSAGES/fsview.mo share/locale/ug/LC_MESSAGES/imgalleryplugin.mo share/locale/ug/LC_MESSAGES/kcmbookmarks.mo share/locale/ug/LC_MESSAGES/kcmkonq.mo share/locale/ug/LC_MESSAGES/kcmkonqhtml.mo share/locale/ug/LC_MESSAGES/kcmperformance.mo share/locale/ug/LC_MESSAGES/kfmclient.mo share/locale/ug/LC_MESSAGES/kgetplugin.mo share/locale/ug/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/ug/LC_MESSAGES/khtmltts.mo share/locale/ug/LC_MESSAGES/konqueror.mo share/locale/ug/LC_MESSAGES/kshellcmdplugin.mo share/locale/ug/LC_MESSAGES/libkonq.mo share/locale/ug/LC_MESSAGES/searchbarplugin.mo share/locale/ug/LC_MESSAGES/uachangerplugin.mo share/locale/ug/LC_MESSAGES/webenginepart.mo share/locale/uk/LC_MESSAGES/akregator_konqplugin.mo share/locale/uk/LC_MESSAGES/autorefresh.mo share/locale/uk/LC_MESSAGES/babelfish.mo share/locale/uk/LC_MESSAGES/dirfilterplugin.mo share/locale/uk/LC_MESSAGES/fsview.mo share/locale/uk/LC_MESSAGES/imgalleryplugin.mo share/locale/uk/LC_MESSAGES/kcmbookmarks.mo share/locale/uk/LC_MESSAGES/kcmkonq.mo share/locale/uk/LC_MESSAGES/kcmkonqhtml.mo share/locale/uk/LC_MESSAGES/kcmperformance.mo share/locale/uk/LC_MESSAGES/kfmclient.mo share/locale/uk/LC_MESSAGES/kgetplugin.mo share/locale/uk/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/uk/LC_MESSAGES/khtmltts.mo share/locale/uk/LC_MESSAGES/konqueror.mo share/locale/uk/LC_MESSAGES/kshellcmdplugin.mo share/locale/uk/LC_MESSAGES/libkonq.mo share/locale/uk/LC_MESSAGES/searchbarplugin.mo share/locale/uk/LC_MESSAGES/uachangerplugin.mo share/locale/uk/LC_MESSAGES/webarchiver.mo share/locale/uk/LC_MESSAGES/webenginepart.mo +share/locale/uz/LC_MESSAGES/akregator_konqplugin.mo +share/locale/uz/LC_MESSAGES/autorefresh.mo +share/locale/uz/LC_MESSAGES/babelfish.mo +share/locale/uz/LC_MESSAGES/dirfilterplugin.mo +share/locale/uz/LC_MESSAGES/fsview.mo +share/locale/uz/LC_MESSAGES/imgalleryplugin.mo +share/locale/uz/LC_MESSAGES/kcmbookmarks.mo +share/locale/uz/LC_MESSAGES/kcmkonq.mo +share/locale/uz/LC_MESSAGES/kcmkonqhtml.mo +share/locale/uz/LC_MESSAGES/kcmperformance.mo +share/locale/uz/LC_MESSAGES/kfmclient.mo +share/locale/uz/LC_MESSAGES/kgetplugin.mo +share/locale/uz/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/uz/LC_MESSAGES/konqueror.mo +share/locale/uz/LC_MESSAGES/kshellcmdplugin.mo +share/locale/uz/LC_MESSAGES/libkonq.mo +share/locale/uz/LC_MESSAGES/searchbarplugin.mo +share/locale/uz/LC_MESSAGES/uachangerplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/akregator_konqplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/autorefresh.mo +share/locale/uz@cyrillic/LC_MESSAGES/babelfish.mo +share/locale/uz@cyrillic/LC_MESSAGES/dirfilterplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/fsview.mo +share/locale/uz@cyrillic/LC_MESSAGES/imgalleryplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmbookmarks.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkonq.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmkonqhtml.mo +share/locale/uz@cyrillic/LC_MESSAGES/kcmperformance.mo +share/locale/uz@cyrillic/LC_MESSAGES/kfmclient.mo +share/locale/uz@cyrillic/LC_MESSAGES/kgetplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/konqueror.mo +share/locale/uz@cyrillic/LC_MESSAGES/kshellcmdplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/libkonq.mo +share/locale/uz@cyrillic/LC_MESSAGES/searchbarplugin.mo +share/locale/uz@cyrillic/LC_MESSAGES/uachangerplugin.mo share/locale/vi/LC_MESSAGES/akregator_konqplugin.mo share/locale/vi/LC_MESSAGES/autorefresh.mo share/locale/vi/LC_MESSAGES/babelfish.mo share/locale/vi/LC_MESSAGES/dirfilterplugin.mo share/locale/vi/LC_MESSAGES/fsview.mo share/locale/vi/LC_MESSAGES/imgalleryplugin.mo share/locale/vi/LC_MESSAGES/kcmbookmarks.mo share/locale/vi/LC_MESSAGES/kcmkonq.mo share/locale/vi/LC_MESSAGES/kcmkonqhtml.mo share/locale/vi/LC_MESSAGES/kcmperformance.mo share/locale/vi/LC_MESSAGES/kfmclient.mo share/locale/vi/LC_MESSAGES/kgetplugin.mo share/locale/vi/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/vi/LC_MESSAGES/khtmltts.mo share/locale/vi/LC_MESSAGES/konqueror.mo share/locale/vi/LC_MESSAGES/kshellcmdplugin.mo share/locale/vi/LC_MESSAGES/libkonq.mo share/locale/vi/LC_MESSAGES/searchbarplugin.mo share/locale/vi/LC_MESSAGES/uachangerplugin.mo share/locale/wa/LC_MESSAGES/akregator_konqplugin.mo share/locale/wa/LC_MESSAGES/autorefresh.mo share/locale/wa/LC_MESSAGES/babelfish.mo share/locale/wa/LC_MESSAGES/dirfilterplugin.mo share/locale/wa/LC_MESSAGES/fsview.mo share/locale/wa/LC_MESSAGES/imgalleryplugin.mo share/locale/wa/LC_MESSAGES/kcmbookmarks.mo share/locale/wa/LC_MESSAGES/kcmkonq.mo share/locale/wa/LC_MESSAGES/kcmkonqhtml.mo share/locale/wa/LC_MESSAGES/kcmperformance.mo share/locale/wa/LC_MESSAGES/kfmclient.mo share/locale/wa/LC_MESSAGES/kgetplugin.mo share/locale/wa/LC_MESSAGES/khtmltts.mo share/locale/wa/LC_MESSAGES/konqueror.mo share/locale/wa/LC_MESSAGES/kshellcmdplugin.mo share/locale/wa/LC_MESSAGES/libkonq.mo share/locale/wa/LC_MESSAGES/uachangerplugin.mo +share/locale/xh/LC_MESSAGES/babelfish.mo +share/locale/xh/LC_MESSAGES/dirfilterplugin.mo +share/locale/xh/LC_MESSAGES/imgalleryplugin.mo +share/locale/xh/LC_MESSAGES/kcmbookmarks.mo +share/locale/xh/LC_MESSAGES/kcmkonq.mo +share/locale/xh/LC_MESSAGES/kcmkonqhtml.mo +share/locale/xh/LC_MESSAGES/kfmclient.mo +share/locale/xh/LC_MESSAGES/kgetplugin.mo +share/locale/xh/LC_MESSAGES/khtmlsettingsplugin.mo +share/locale/xh/LC_MESSAGES/konqueror.mo +share/locale/xh/LC_MESSAGES/kshellcmdplugin.mo +share/locale/xh/LC_MESSAGES/libkonq.mo +share/locale/xh/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_CN/LC_MESSAGES/autorefresh.mo share/locale/zh_CN/LC_MESSAGES/babelfish.mo share/locale/zh_CN/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_CN/LC_MESSAGES/fsview.mo share/locale/zh_CN/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_CN/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_CN/LC_MESSAGES/kcmkonq.mo share/locale/zh_CN/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_CN/LC_MESSAGES/kcmperformance.mo share/locale/zh_CN/LC_MESSAGES/kfmclient.mo share/locale/zh_CN/LC_MESSAGES/kgetplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_CN/LC_MESSAGES/khtmltts.mo share/locale/zh_CN/LC_MESSAGES/konqueror.mo share/locale/zh_CN/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_CN/LC_MESSAGES/libkonq.mo share/locale/zh_CN/LC_MESSAGES/searchbarplugin.mo share/locale/zh_CN/LC_MESSAGES/uachangerplugin.mo share/locale/zh_CN/LC_MESSAGES/webarchiver.mo share/locale/zh_CN/LC_MESSAGES/webenginepart.mo +share/locale/zh_HK/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/akregator_konqplugin.mo share/locale/zh_TW/LC_MESSAGES/autorefresh.mo share/locale/zh_TW/LC_MESSAGES/babelfish.mo share/locale/zh_TW/LC_MESSAGES/dirfilterplugin.mo share/locale/zh_TW/LC_MESSAGES/fsview.mo share/locale/zh_TW/LC_MESSAGES/imgalleryplugin.mo share/locale/zh_TW/LC_MESSAGES/kcmbookmarks.mo share/locale/zh_TW/LC_MESSAGES/kcmkonq.mo share/locale/zh_TW/LC_MESSAGES/kcmkonqhtml.mo share/locale/zh_TW/LC_MESSAGES/kcmperformance.mo share/locale/zh_TW/LC_MESSAGES/kfmclient.mo share/locale/zh_TW/LC_MESSAGES/kgetplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmlsettingsplugin.mo share/locale/zh_TW/LC_MESSAGES/khtmltts.mo share/locale/zh_TW/LC_MESSAGES/konqueror.mo share/locale/zh_TW/LC_MESSAGES/kshellcmdplugin.mo share/locale/zh_TW/LC_MESSAGES/libkonq.mo share/locale/zh_TW/LC_MESSAGES/searchbarplugin.mo share/locale/zh_TW/LC_MESSAGES/uachangerplugin.mo share/locale/zh_TW/LC_MESSAGES/webarchiver.mo share/locale/zh_TW/LC_MESSAGES/webenginepart.mo share/metainfo/org.kde.konqueror.appdata.xml share/qlogging-categories5/akregatorplugin.categories share/qlogging-categories5/fsview.categories share/qlogging-categories5/konqueror.categories share/webenginepart/error.html diff --git a/x11/konsole/distinfo b/x11/konsole/distinfo index 11e74b401514..3d9bfdbb80c9 100644 --- a/x11/konsole/distinfo +++ b/x11/konsole/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539474 -SHA256 (KDE/release-service/22.08.3/konsole-22.08.3.tar.xz) = a6f07c4dc05b52c7844071137b6fe1b21f3cb54c63164d81c9a6332720fac09a -SIZE (KDE/release-service/22.08.3/konsole-22.08.3.tar.xz) = 1504136 +TIMESTAMP = 1670513078 +SHA256 (KDE/release-service/22.12.0/konsole-22.12.0.tar.xz) = a76a929ecde12b60645c0c73aa448c408a778a859c0ca01cba1025a102efa8a8 +SIZE (KDE/release-service/22.12.0/konsole-22.12.0.tar.xz) = 1772196 diff --git a/x11/konsole/pkg-plist b/x11/konsole/pkg-plist index 2572ae25140f..ad4f9e77dda2 100644 --- a/x11/konsole/pkg-plist +++ b/x11/konsole/pkg-plist @@ -1,101 +1,130 @@ bin/konsole bin/konsoleprofile lib/kconf_update_bin/konsole_globalaccel lib/libkonsoleapp.so.1 lib/libkonsoleapp.so.%%KDE_APPLICATIONS_VERSION%% lib/libkonsoleprivate.so.1 lib/libkonsoleprivate.so.%%KDE_APPLICATIONS_VERSION%% %%QT_PLUGINDIR%%/konsolepart.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_quickcommandsplugin.so %%QT_PLUGINDIR%%/konsoleplugins/konsole_sshmanagerplugin.so share/applications/org.kde.konsole.desktop share/kconf_update/konsole_globalaccel.upd share/kio/servicemenus/konsolerun.desktop share/knotifications5/konsole.notifyrc share/knsrcfiles/konsole.knsrc %%DATADIR%%/1x2-terminals.json %%DATADIR%%/2x1-terminals.json %%DATADIR%%/2x2-terminals.json %%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/kservices5/konsolepart.desktop share/kservicetypes5/terminalemulator.desktop +share/locale/af/LC_MESSAGES/konsole.mo 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/be@latin/LC_MESSAGES/konsole.mo share/locale/bg/LC_MESSAGES/konsole.mo +share/locale/bn/LC_MESSAGES/konsole.mo +share/locale/bn_IN/LC_MESSAGES/konsole.mo +share/locale/br/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/csb/LC_MESSAGES/konsole.mo +share/locale/cy/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/fy/LC_MESSAGES/konsole.mo share/locale/ga/LC_MESSAGES/konsole.mo share/locale/gl/LC_MESSAGES/konsole.mo +share/locale/gu/LC_MESSAGES/konsole.mo share/locale/he/LC_MESSAGES/konsole.mo share/locale/hi/LC_MESSAGES/konsole.mo +share/locale/hne/LC_MESSAGES/konsole.mo share/locale/hr/LC_MESSAGES/konsole.mo +share/locale/hsb/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/ie/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/ka/LC_MESSAGES/konsole.mo share/locale/kk/LC_MESSAGES/konsole.mo share/locale/km/LC_MESSAGES/konsole.mo +share/locale/kn/LC_MESSAGES/konsole.mo share/locale/ko/LC_MESSAGES/konsole.mo +share/locale/ku/LC_MESSAGES/konsole.mo share/locale/lt/LC_MESSAGES/konsole.mo share/locale/lv/LC_MESSAGES/konsole.mo +share/locale/mai/LC_MESSAGES/konsole.mo +share/locale/mk/LC_MESSAGES/konsole.mo share/locale/ml/LC_MESSAGES/konsole.mo share/locale/mr/LC_MESSAGES/konsole.mo +share/locale/ms/LC_MESSAGES/konsole.mo share/locale/nb/LC_MESSAGES/konsole.mo share/locale/nds/LC_MESSAGES/konsole.mo +share/locale/ne/LC_MESSAGES/konsole.mo share/locale/nl/LC_MESSAGES/konsole.mo share/locale/nn/LC_MESSAGES/konsole.mo +share/locale/oc/LC_MESSAGES/konsole.mo +share/locale/or/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/si/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/sr@ijekavian/LC_MESSAGES/konsole.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/konsole.mo +share/locale/sr@latin/LC_MESSAGES/konsole.mo share/locale/sv/LC_MESSAGES/konsole.mo share/locale/ta/LC_MESSAGES/konsole.mo +share/locale/te/LC_MESSAGES/konsole.mo share/locale/tg/LC_MESSAGES/konsole.mo +share/locale/th/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/uz/LC_MESSAGES/konsole.mo +share/locale/uz@cyrillic/LC_MESSAGES/konsole.mo share/locale/vi/LC_MESSAGES/konsole.mo share/locale/wa/LC_MESSAGES/konsole.mo +share/locale/xh/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 share/qlogging-categories5/konsole.categories diff --git a/x11/yakuake/distinfo b/x11/yakuake/distinfo index 5991422f3939..d07043a819cf 100644 --- a/x11/yakuake/distinfo +++ b/x11/yakuake/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1667539473 -SHA256 (KDE/release-service/22.08.3/yakuake-22.08.3.tar.xz) = aecf85817eeafd1378975f720c725442dd3a016eb4fd78756b10af6be0f1b685 -SIZE (KDE/release-service/22.08.3/yakuake-22.08.3.tar.xz) = 414092 +TIMESTAMP = 1670513076 +SHA256 (KDE/release-service/22.12.0/yakuake-22.12.0.tar.xz) = 7f95441da4686d887c3b3b596a8d589c398a7d0a8cc0db50846dafc0d45f3e6a +SIZE (KDE/release-service/22.12.0/yakuake-22.12.0.tar.xz) = 426592 diff --git a/x11/yakuake/pkg-plist b/x11/yakuake/pkg-plist index b7eb0948df2c..c1a35ab99c74 100644 --- a/x11/yakuake/pkg-plist +++ b/x11/yakuake/pkg-plist @@ -1,187 +1,194 @@ 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/az/LC_MESSAGES/yakuake.mo share/locale/be/LC_MESSAGES/yakuake.mo share/locale/bg/LC_MESSAGES/yakuake.mo share/locale/bs/LC_MESSAGES/yakuake.mo share/locale/ca/LC_MESSAGES/yakuake.mo share/locale/ca@valencia/LC_MESSAGES/yakuake.mo share/locale/cs/LC_MESSAGES/yakuake.mo share/locale/da/LC_MESSAGES/yakuake.mo share/locale/de/LC_MESSAGES/yakuake.mo share/locale/el/LC_MESSAGES/yakuake.mo share/locale/en_GB/LC_MESSAGES/yakuake.mo share/locale/eo/LC_MESSAGES/yakuake.mo share/locale/es/LC_MESSAGES/yakuake.mo share/locale/et/LC_MESSAGES/yakuake.mo share/locale/eu/LC_MESSAGES/yakuake.mo share/locale/fi/LC_MESSAGES/yakuake.mo share/locale/fr/LC_MESSAGES/yakuake.mo share/locale/ga/LC_MESSAGES/yakuake.mo share/locale/gl/LC_MESSAGES/yakuake.mo share/locale/hi/LC_MESSAGES/yakuake.mo +share/locale/hne/LC_MESSAGES/yakuake.mo share/locale/hr/LC_MESSAGES/yakuake.mo +share/locale/hsb/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/ka/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/mai/LC_MESSAGES/yakuake.mo share/locale/ml/LC_MESSAGES/yakuake.mo share/locale/mr/LC_MESSAGES/yakuake.mo share/locale/nb/LC_MESSAGES/yakuake.mo share/locale/nds/LC_MESSAGES/yakuake.mo share/locale/nl/LC_MESSAGES/yakuake.mo share/locale/nn/LC_MESSAGES/yakuake.mo share/locale/pa/LC_MESSAGES/yakuake.mo share/locale/pl/LC_MESSAGES/yakuake.mo share/locale/pt/LC_MESSAGES/yakuake.mo share/locale/pt_BR/LC_MESSAGES/yakuake.mo share/locale/ro/LC_MESSAGES/yakuake.mo share/locale/ru/LC_MESSAGES/yakuake.mo share/locale/sk/LC_MESSAGES/yakuake.mo share/locale/sl/LC_MESSAGES/yakuake.mo share/locale/sr/LC_MESSAGES/yakuake.mo +share/locale/sr@ijekavian/LC_MESSAGES/yakuake.mo +share/locale/sr@ijekavianlatin/LC_MESSAGES/yakuake.mo +share/locale/sr@latin/LC_MESSAGES/yakuake.mo share/locale/sv/LC_MESSAGES/yakuake.mo share/locale/ta/LC_MESSAGES/yakuake.mo +share/locale/th/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